关于API的一些资料

lmby 2003-12-17 12:24:58
加精
FUNCTION long _hread(ulong hFile, ref blob) LIBRARY "Kernel32.dll"
FUNCTION long _hwrite(ulong hFile, ref blob) LIBRARY "Kernel32.dll"
FUNCTION int _lclose(ulong hFile) LIBRARY "Kernel32.dll"
FUNCTION int _lcreat(ref string str, int num) LIBRARY "Kernel32.dll"
FUNCTION long _llseek(ulong hFile, long lParam, int num) LIBRARY "Kernel32.dll"
FUNCTION int _lopen(ref string str, int num) LIBRARY "Kernel32.dll"
FUNCTION ulong _lread(ulong hFile, ref blob) LIBRARY "Kernel32.dll"
FUNCTION ulong _lwrite(ulong hFile, ref blob) LIBRARY "Kernel32.dll"
FUNCTION int AbortDoc(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int AccessResource(ulong hInstance, ulong hRsrc) LIBRARY "Kernel32.dll"
FUNCTION ulong AddAtom(ref string str) LIBRARY "Kernel32.dll"
FUNCTION int AddFontResource(ref string str) LIBRARY "Gdi32.dll"
FUNCTION AdjustWindowRect(ref RectStruct rect, ulong lParam, int num) LIBRARY "User32.dll"
FUNCTION AdjustWindowRectEx(ref RectStruct rect, ulong lParam, int num, ulong lParam) LIBRARY "User32.dll"
FUNCTION ulong AllocDStoCSAlias(uint num) LIBRARY "Kernel32.dll"
FUNCTION ulong AllocResource(ulong hInstance, ulong hRsrc, ulong lParam) LIBRARY "Kernel32.dll"
FUNCTION ulong AllocSelector(uint num) LIBRARY "Kernel32.dll"
FUNCTION AnimatePalette(ulong hPalette, uint num, uint num, ref PaletteEntryStruct pes) LIBRARY "Gdi32.dll"
FUNCTION string AnsiLower(ref string str) LIBRARY "User32.dll"
FUNCTION ulong AnsiLowerBuff(ref string str, uint num) LIBRARY "User32.dll"
FUNCTION string AnsiNext(ref string str) LIBRARY "User32.dll"
FUNCTION string AnsiPrev(ref string str, ref string str) LIBRARY "User32.dll"
FUNCTION AnsiToOem( ref string str, ref string str) LIBRARY "Kernel32.dll"
FUNCTION AnsiToOemBuff(ref string str, ref string str, uint num) LIBRARY "Kernel32.dll"
FUNCTION string AnsiUpper(ref string str) LIBRARY "User32.dll"
FUNCTION ulong AnsiUpperBuff(ref string str, uint num) LIBRARY "User32.dll"
FUNCTION int AnyPopup( ) LIBRARY "User32.dll"
FUNCTION int AppendMenu(ulong hMenu, uint num, uint num, ref string str) LIBRARY "User32.dll"
FUNCTION int Arc(ulong hDC, int num, int num, int num, int num, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong ArrangeIconicWindows(ulong handle) LIBRARY "User32.dll"
FUNCTION ulong BeginDeferWindowPos(int num) LIBRARY "User32.dll"
FUNCTION ulong BeginPaint(ulong handle, ref PaintStruct) LIBRARY "User32.dll"
FUNCTION int BitBlt(ulong hDC, int num, int num, int num, int num, ulong hDC, int num, int num, ulong lParam) LIBRARY "Gdi32.dll"
FUNCTION int BringWindowToTop(ulong handle) LIBRARY "User32.dll"
FUNCTION int BuildCommDCB(ref string str, ref DcbStruct dcbs) LIBRARY "User32.dll"
...全文
443 20 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
20 条回复
切换为时间正序
请发表友善的回复…
发表回复
lipowerbuilder2000 2004-01-15
  • 打赏
  • 举报
回复
大家好,我公布一个自已做的用户控件,对于用户界面的美观还是有帮助的。
是用来自动创建仿Delphi的datagrid控件前的行标识符的,代码如下。
//****************************************************//
//仿造Delphi的DataGrid控件前的行标记;单击列标题排序 //
// //
//注意先创造计算域,再创造文本
// //
// 数据窗口的Constructor事件中的代码 //
//作者:李江 日期:2003-08-14 //
//****************************************************//



//使用户不能拖动行,列对象
this.Modify("DataWindow.Grid.ColumnMove=No")
this.Modify("DataWindow.Row.Resize=0")
//////////////////////////////////////

string ls_text,ls_button,ls_compute
//创造按钮对象NAME=B_1 用于在CLICK事件中引用
ls_button='create button(band=detail text=""filename=""action="0" border="0" color="0" x="0" y="0" height="70" width="67" vtextalign="0" htextalign="0" name=b_1 font.face="@宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="2" background.color="67108864" )'
this.modify(ls_button)
//创造计算域对象
ls_compute='create compute(band=detail alignment="0" expression="~'▼~'"border="0" color="0" x="0" y="0" height="70" width="50" format="[GENERAL]" name=compute_1 visible="1~tif(getrow()=currentrow(),1,0)" font.face="@宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="553648127" )'
this.modify(ls_compute)
//创造标题文本对象
ls_text='create text(band=header alignment="0" text="" border="6" color="0" x="0" y="0" height="70" width="60" name=t_1 font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="2" background.color="67108864" )'
this.modify(ls_text)

//////////以下为自动使行标识与细节带等高///////

///////////标题上的文本对象的高度同步////////
string text_height
long ll_i=1 //以第一列的高度为基准
string ls_column //列名

ls_column=This.Describe("#"+String(ll_i)+".Name") //第一列的列名
text_height=This.Describe(ls_column+"_t.Height")
text_height=String(long(text_height)+9) //列标题高度加9
This.Modify("t_1.Height='"+text_height+"'")
//////////////////////////////////////////////////


/////////////细节带的按钮与计算域的高度同步/////
String Detail_height
Detail_height=This.Describe("#"+String(ll_i)+".Height") //第一列的高度
Detail_height=String(long(Detail_height) - 2)
This.Modify("b_1.Height='"+Detail_height+"'") //按钮的高度同步
This.Modify("compute_1.Height='"+Detail_height+"'") //按钮的高度同步

///////////////////////////////////////////////////////




///////////////////////////////////////////////////////
//
//以下为数据窗口CLICKED事件的代码
//
//



//*************************使行焦点转移*************//

String ls_pointer
Long ll_row
//GetObjectAtPointer()返回“b_1~t23”(对象名~t行号)
ls_Pointer = this.GetObjectAtPointer()
//如果单击的是行标记b_1,则使行焦点转到相应行上
IF Left(ls_pointer,3)='b_1' THEN
ll_Row=Long( Mid( ls_Pointer, Pos( ls_Pointer, "~t" ) + 1 ))
IF ll_row>0 THEN
this.ScrollToRow(ll_row)
END IF
END IF

//***********************************************//




//************************单击列标题排序************************//
string ls_addpict,ls_curobj,ls_picture,ls_curcol
integer li_pictpos
ls_curobj=string(dwo.name)

if row=0 and this.describe(ls_curobj+".text")<> "!" and this.describe(ls_curobj+".band")="header" then
//确认CLICK的是标题栏
ls_curcol=left(ls_curobj,len(ls_curobj) - 2)
//取得列名,即“列名”+“_t"
if is_ordercol <> ls_curcol then //CLICK的列与上次不同
this.modify("Destroy p_"+is_ordercol) //删除上次所建图标
is_ordercol=ls_curcol //给实例变量赋值,记录当前排序列
ls_picture="up.bmp"
is_sorttype="A" //ascending
li_pictpos=integer(this.describe(ls_curobj+".X"))+(integer(this.describe(ls_curobj+".width")) - 70)
//图形在标题栏中显示的位置

ls_addpict='create bitmap(band=foreground filename="'+ls_picture+'"'+ &
'X="'+string(li_pictpos)+"~tinteger(describe('"+is_ordercol+ &
".X'))+(integer(describe('"+is_ordercol+".width'))"+' - 70)" Y="24"'+ &
' height="33" width="51" border="0" name=p_'+is_ordercol+' visible="1")'

this.modify(ls_addpict)
this.setsort(is_ordercol+" "+is_sorttype)
this.sort()
else
//若CLICK列与上次相同,反序排列
if is_sorttype="A" then
ls_picture="down.bmp"
is_sorttype="D"
else
ls_picture="up.bmp"
is_sorttype="A"
end if
this.modify('p_'+is_ordercol+'.filename="'+ls_picture+'"')
this.setsort(is_ordercol+" "+is_sorttype)
this.sort()
end if
return 1 //CLICK HEADER 时,不让列反色显示
end if

//********************************************************//



tommyhuanglei 2003-12-20
  • 打赏
  • 举报
回复
恩,是啊!
现在我就在困惑!
咱们pb版有自己的qq群吗?
我的qq是:22443800
希望大家能帮我!
hzhxxx 2003-12-18
  • 打赏
  • 举报
回复


最好制作未 .chm ,加上中文的解释和使用介绍

那就更要大力支持了,就像 我们使用的 vb api 浏览工具一样
flwen139 2003-12-18
  • 打赏
  • 举报
回复
这样的资料早就有了,但无法知道参数的含义.
workhand 2003-12-17
  • 打赏
  • 举报
回复
多谢版主,收藏
lmby 2003-12-17
  • 打赏
  • 举报
回复
FUNCTION int UngetCommChar(int num, char) LIBRARY "User32.dll"
FUNCTION int UnhookWindowsHookEx(ulong hHook) LIBRARY "User32.dll"
FUNCTION int UnionRect(ref RectStruct rect, ref RectStruct rect, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION UnlockSegment(uint num) LIBRARY "Kernel32.dll"
FUNCTION int UnrealizeObject(ulong hGDIObj) LIBRARY "Gdi32.dll"
FUNCTION int UnregisterClass(ref string str, ulong hInstance) LIBRARY "User32.dll"
FUNCTION int UpdateColors(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION UpdateWindow(ulong handle) LIBRARY "User32.dll"
FUNCTION ValidateCodeSegments( ) LIBRARY "Kernel32.dll"
FUNCTION ValidateFreeSpaces( ) LIBRARY "Kernel32.dll"
FUNCTION ValidateRect(ulong handle, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION ValidateRgn(ulong handle, ulong hRgn) LIBRARY "User32.dll"
FUNCTION ulong VerFindFile(ulong uFlags, ref string szFileName, ref string szWinDir, ref string szAppDir, ref string szCurDir, ref ulong lpuCurDirLen, ref string szDestDir, ref ulong lpuDestDirLen) LIBRARY "VER.DLL"
FUNCTION ulong VerInstallFile(ulong uFlags, ref string szSrcFileName, ref string szDestFileName, ref string szSrcDir, ref string szDestDir, ref string szCurDir, ref string szTmpFile, ref ulong lpuTmpFileLen) LIBRARY "VER.DLL"
FUNCTION ulong VerLanguageName(ulong wLang, ref string szLang, ulong nSize) LIBRARY "VER.DLL"
FUNCTION int VerQueryValue(ref string pBlock, ref string lpSubBlock, ref string lplpBuffer, ref ulong lpuLen) LIBRARY "VER.DLL"
FUNCTION ulong VkKeyScan(uint num) LIBRARY "Kernel32.dll"
FUNCTION WaitMessage( ) LIBRARY "User32.dll"
FUNCTION ulong WindowFromPoint(PointStruct point) LIBRARY "User32.dll"
FUNCTION ulong WinExec(ref string str, uint num) LIBRARY "Kernel32.dll"
FUNCTION int WinHelp(ulong hwndMain, ref string lpszHelp, ulong usCommand, ulong ulData) LIBRARY "User32.dll"
FUNCTION ulong WNetAddConnection(ref string str, ref string str, ref string str) LIBRARY "User32.dll"
FUNCTION ulong WNetCancelConnection(ref string str, int num) LIBRARY "User32.dll"
FUNCTION ulong WNetGetConnection(ref string str, ref string str, ref uint num) LIBRARY "User32.dll"
FUNCTION int WriteComm(int num, ref string str, int num) LIBRARY "User32.dll"
FUNCTION int WritePrivateProfileString(ref string str, ref string str, ref string str, ref string str) LIBRARY "Kernel32.dll"
FUNCTION int WriteProfileString(ref string str, ref string str, ref string str) LIBRARY "Kernel32.dll"
FUNCTION int wvsprintf(ref string lpszOut, ref string lpszFmt, ref string lpParams) LIBRARY "User32.dll"
FUNCTION Yield( ) LIBRARY "Kernel32.dll"
lmby 2003-12-17
  • 打赏
  • 举报
回复
FUNCTION ulong ShellExecute(ulong hwnd, ref string lpOperation, ref string lpFile, ref string lpParameters, ref string lpDirectory, int iShowCmd) LIBRARY "Shell.dll"
FUNCTION ShowCaret(ulong handle) LIBRARY "User32.dll"
FUNCTION int ShowCursor(int num) LIBRARY "User32.dll"
FUNCTION ShowOwnedPopups(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION ShowScrollBar(ulong handle, int num, int num) LIBRARY "User32.dll"
FUNCTION int ShowWindow(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION ulong SizeofResource(ulong hInstance, ulong hRsrc) LIBRARY "Kernel32.dll"
FUNCTION ulong SpoolFile(ref string str, ref string str, ref string str, ref string str) LIBRARY "Gdi32.dll"
FUNCTION int StackTraceCSIPFirst(ref StackTraceEntryStruct lpStackTrace, ulong wSS, ulong wCS, ulong wIP, ulong wBP) LIBRARY "TOOLHELP.DLL"
FUNCTION int StackTraceFirst(ref StackTraceEntryStruct lpStackTrace, ulong hTask) LIBRARY "TOOLHELP.DLL"
FUNCTION int StackTraceNext(ref StackTraceEntryStruct lpStackTrace) LIBRARY "TOOLHELP.DLL"
FUNCTION int StartDoc(ulong hDC, ref DocInfoStruct dis) LIBRARY "Gdi32.dll"
FUNCTION int StartPage(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int StretchBlt(ulong hDC, int num, int num, int num, int num, ulong hDC, int num, int num, int num, int num, ulong lParam) LIBRARY "Gdi32.dll"
FUNCTION int StretchDIBits(ulong hDC, int num, int num, int num, int num, int num, LIBRARY "Gdi32.dll"
FUNCTION int SubtractRect(ref RectStruct rect, ref RectStruct rect, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION int SwapMouseButton(int num) LIBRARY "User32.dll"
FUNCTION SwapRecording(uint num) LIBRARY "Kernel32.dll"
FUNCTION SwitchStackBack( ) LIBRARY "Kernel32.dll"
FUNCTION SwitchStackTo(uint num, uint num, uint num) LIBRARY "Kernel32.dll"
FUNCTION int SystemHeapInfo(ref SysHeapInfoStruct lpSysHeap) LIBRARY "TOOLHELP.DLL"
FUNCTION int SystemParametersInfo(uint num, uint num, VOID FAR*, uint num) LIBRARY "User32.dll"
FUNCTION long TabbedTextOut(ulong hDC, int num, int num, ref string str, int num, int num, ref int num, int num) LIBRARY "User32.dll"
FUNCTION int TaskFindHandle(ref TaskEntryStruct lpTask, ulong hTask) LIBRARY "TOOLHELP.DLL"
FUNCTION int TaskFirst(ref TaskEntryStruct lpTask) LIBRARY "TOOLHELP.DLL"
FUNCTION ulong TaskGetCSIP(ulong hTask) LIBRARY "TOOLHELP.DLL"
FUNCTION int TaskNext(ref TaskEntryStruct lpTask) LIBRARY "TOOLHELP.DLL"
FUNCTION ulong TaskSetCSIP(ulong hTask, ulong wCS, ulong wIP) LIBRARY "TOOLHELP.DLL"
FUNCTION int TaskSwitch(ulong hTask, ulong dwNewCSIP) LIBRARY "TOOLHELP.DLL"
FUNCTION TerminateApp(ulong hTask, ulong wFlags) LIBRARY "TOOLHELP.DLL"
FUNCTION int TextOut(ulong hDC, int num, int num, ref string str, int num) LIBRARY "Gdi32.dll"
FUNCTION Throw(ref int num, int num) LIBRARY "Kernel32.dll"
FUNCTION int TimerCount(ref TimerInfoStruct lpTimer) LIBRARY "TOOLHELP.DLL"
FUNCTION int ToAscii(ulong wVirtKey, ulong wScanCode, ref uchar lpKeyState, ref ulong lpChar, ulong wFlags) LIBRARY "Kernel32.dll"
FUNCTION int TrackPopupMenu(ulong hMenu, uint num, int num, int num, int num, ulong handle, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION int TranslateAccelerator(ulong handle, ulong hAccel, ref MsgStruct ms) LIBRARY "User32.dll"
FUNCTION int TranslateMDISysAccel(ulong handle, ref MsgStruct ms) LIBRARY "User32.dll"
FUNCTION int TranslateMessage(ref MsgStruct ms) LIBRARY "User32.dll"
FUNCTION int TransmitCommChar(int num, char) LIBRARY "User32.dll"
lmby 2003-12-17
  • 打赏
  • 举报
回复
FUNCTION int SaveDC(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION ulong ScaleViewportExt(ulong hDC, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int ScaleViewportExtEx(ulong hDC, int num, int num, int num, int num, ref SizeStruct sizestr) LIBRARY "Gdi32.dll"
FUNCTION ulong ScaleWindowExt(ulong hDC, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int ScaleWindowExtEx(ulong hDC, int num, int num, int num, int num, ref SizeStruct sizestr) LIBRARY "Gdi32.dll"
FUNCTION ScreenToClient(ulong handle, ref PointStruct point) LIBRARY "User32.dll"
FUNCTION int ScrollDC(ulong hDC, int num, int num, ref RectStruct rect, ref RectStruct rect, ulong hRgn, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION ScrollWindow(ulong handle, int num, int num, ref RectStruct rect, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION int ScrollWindowEx(ulong hwnd, int dx, int dy, ref RectStruct prcScroll, ref RectStruct prcClip, ulong hRgn hrgnUpdate, ref RectStruct prcUpdate, ulong flags) LIBRARY "User32.dll"
FUNCTION int SelectClipRgn(ulong hDC, ulong hRgn) LIBRARY "Gdi32.dll"
FUNCTION ulong SelectObject(ulong hDC, ulong hGDIObj) LIBRARY "Gdi32.dll"
FUNCTION ulong SelectPalette(ulong hDC, ulong hPalette, int num) LIBRARY "User32.dll"
FUNCTION long SendDlgItemMessage(ulong handle, int num, uint num, ulong wParam, long lParam) LIBRARY "User32.dll"
FUNCTION long SendDriverMessage(ulong hDriver, ulong message, long lParam, long lParam) LIBRARY "User32.dll"
FUNCTION long SendMessage(ulong handle, uint num, ulong wParam, long lParam) LIBRARY "User32.dll"
FUNCTION ulong SetActiveWindow(ulong handle) LIBRARY "User32.dll"
FUNCTION long SetBitmapBits(ulong hBitmap, ulong lParam, ref string str) LIBRARY "Gdi32.dll"
FUNCTION ulong SetBitmapDimension(ulong hBitmap, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int SetBitmapDimensionEx(ulong hBitmap, int num, int num, ref SizeStruct sizestr) LIBRARY "Gdi32.dll"
FUNCTION ulong SetBkColor(ulong hDC, ulong ColorRef) LIBRARY "Gdi32.dll"
FUNCTION int SetBkMode(ulong hDC, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong SetBoundsRect(ulong hDC, ref RectStruct lprcBounds, ulong flags) LIBRARY "Gdi32.dll"
FUNCTION ulong SetBrushOrg(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong SetCapture(ulong handle) LIBRARY "User32.dll"
FUNCTION SetCaretBlinkTime(uint num) LIBRARY "User32.dll"
FUNCTION SetCaretPos(int num, int num) LIBRARY "User32.dll"
FUNCTION long SetClassLong(ulong handle, int num, long lParam) LIBRARY "User32.dll"
FUNCTION ulong SetClassWord(ulong handle, int num, uint num) LIBRARY "User32.dll"
FUNCTION ulong SetClipboardData(uint num, uint num) LIBRARY "User32.dll"
FUNCTION ulong SetClipboardViewer(ulong handle) LIBRARY "User32.dll"
FUNCTION int SetCommBreak(int num) LIBRARY "User32.dll"
FUNCTION ulong SetCommEventMask(int num, uint num) LIBRARY "User32.dll"
FUNCTION int SetCommState(ref DcbStruct dcbs) LIBRARY "User32.dll"
FUNCTION ulong SetCursor(ulong hCursor) LIBRARY "User32.dll"
FUNCTION SetCursorPos(int num, int num) LIBRARY "User32.dll"
FUNCTION int SetDIBits(ulong hDC, ulong hBitmap, uint num, uint num, ref string str, ref Bitmapinfostruct bmis, uint num) LIBRARY "Gdi32.dll"
FUNCTION int SetDIBitsToDevice(ulong hDC, int num, int num, int num, int num, int num, int num, uint num, uint num, LIBRARY "Gdi32.dll"
FUNCTION SetDlgItemInt(ulong handle, int num, uint num, int num) LIBRARY "User32.dll"
FUNCTION SetDlgItemText(ulong handle, int num, ref string str) LIBRARY "User32.dll"
FUNCTION SetDoubleClickTime(uint num) LIBRARY "User32.dll"
FUNCTION ulong SetErrorMode(uint num) LIBRARY "Kernel32.dll"
FUNCTION ulong SetFocus(ulong handle) LIBRARY "User32.dll"
FUNCTION ulong SetHandleCount(uint num) LIBRARY "Kernel32.dll"
FUNCTION SetKeyboardState(ref uchar ch) LIBRARY "User32.dll"
FUNCTION int SetMapMode(ulong hDC, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong SetMapperFlags(ulong hDC, ulong lParam) LIBRARY "Gdi32.dll"
FUNCTION int SetMenu(ulong handle, ulong hMenu) LIBRARY "User32.dll"
FUNCTION int SetMenuItemBitmaps(ulong hMenu, uint num, uint num, ulong hBitmap, ulong hBitmap) LIBRARY "User32.dll"
FUNCTION int SetMessageQueue(int num) LIBRARY "User32.dll"
FUNCTION ulong SetMetaFileBits(ulong hGlobal) LIBRARY "Gdi32.dll"
FUNCTION ulong SetMetaFileBitsBetter(ulong hGlobal) LIBRARY "Gdi32.dll"
FUNCTION ulong SetPaletteEntries(ulong hPalette, uint num, uint num, ref PaletteEntryStruct pes) LIBRARY "Gdi32.dll"
FUNCTION ulong SetParent(ulong handle, uint num) LIBRARY "User32.dll"
FUNCTION ulong SetPixel(ulong hDC, int num, int num, ulong ColorRef) LIBRARY "Gdi32.dll"
FUNCTION int SetPolyFillMode(ulong hDC, int num) LIBRARY "Gdi32.dll"
FUNCTION int SetProp(ulong handle, ref string str, uint num) LIBRARY "User32.dll"
FUNCTION SetRect(ref RectStruct rect, int num, int num, int num, int num) LIBRARY "User32.dll"
FUNCTION SetRectEmpty(ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION SetRectRgn(ulong hRgn, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int SetROP2(ulong hDC, int num) LIBRARY "Gdi32.dll"
FUNCTION int SetScrollPos(ulong handle, int num, int num, int num) LIBRARY "User32.dll"
FUNCTION SetScrollRange(ulong handle, int num, int num, int num, int num) LIBRARY "User32.dll"
FUNCTION ulong SetSelectorBase(uint num, ulong lParam) LIBRARY "Kernel32.dll"
FUNCTION ulong SetSelectorLimit(uint num, ulong lParam) LIBRARY "Kernel32.dll"
FUNCTION int SetStretchBltMode(ulong hDC, int num) LIBRARY "Gdi32.dll"
FUNCTION long SetSwapAreaSize(uint num) LIBRARY "Kernel32.dll"
FUNCTION SetSysColors(int num, ref int num, ref ulong ColorRef) LIBRARY "User32.dll"
FUNCTION ulong SetSysModalWindow(ulong handle) LIBRARY "User32.dll"
FUNCTION ulong SetSystemPaletteUse(ulong hDC, uint num) LIBRARY "Gdi32.dll"
FUNCTION ulong SetTextAlign(ulong hDC, uint num) LIBRARY "Gdi32.dll"
FUNCTION int SetTextCharacterExtra(ulong hDC, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong SetTextColor(ulong hDC, ulong ColorRef) LIBRARY "Gdi32.dll"
FUNCTION int SetTextJustification(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong SetViewportExt(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int SetViewportExtEx(ulong hDC, int num, int num, ref SizeStruct sizestr) LIBRARY "Gdi32.dll"
FUNCTION ulong SetViewportOrg(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int SetViewportOrgEx(ulong hDC, int num, int num, ref PointStruct point) LIBRARY "Gdi32.dll"
FUNCTION int SetWinDebugInfo(ref WinDebugInfoStruct lpwdi) LIBRARY "Kernel32.dll"
FUNCTION ulong SetWindowExt(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int SetWindowExtEx(ulong hDC, int num, int num, ref SizeStruct sizestr) LIBRARY "Gdi32.dll"
FUNCTION long SetWindowLong(ulong handle, int num, long lParam) LIBRARY "User32.dll"
FUNCTION ulong SetWindowOrg(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int SetWindowOrgEx(ulong hDC, int num, int num, ref PointStruct point) LIBRARY "Gdi32.dll"
FUNCTION int SetWindowPlacement(ulong handle, ref WindowPlacementStruct wps) LIBRARY "User32.dll"
FUNCTION int SetWindowPos(ulong handle, ulong handle, int num, int num, int num, int num, uint num) LIBRARY "User32.dll"
FUNCTION SetWindowText(ulong handle, ref string str) LIBRARY "User32.dll"
FUNCTION ulong SetWindowWord(ulong handle, int num, uint num) LIBRARY "User32.dll"
lmby 2003-12-17
  • 打赏
  • 举报
回复
FUNCTION int NotifyUnRegister(ulong hTask) LIBRARY "TOOLHELP.DLL"
FUNCTION ulong OemKeyScan(uint num) LIBRARY "Kernel32.dll"
FUNCTION OemToAnsi( ref string str, ref string str) LIBRARY "Kernel32.dll"
FUNCTION OemToAnsiBuff(ref string str, ref string str, uint num) LIBRARY "Kernel32.dll"
FUNCTION int OffsetClipRgn(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION OffsetRect(ref RectStruct rect, int num, int num) LIBRARY "User32.dll"
FUNCTION int OffsetRgn(ulong hRgn, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong OffsetViewportOrg(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int OffsetViewportOrgEx(ulong hDC, int num, int num, ref PointStruct point) LIBRARY "Gdi32.dll"
FUNCTION ulong OffsetWindowOrg(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int OffsetWindowOrgEx(ulong hDC, int num, int num, ref PointStruct point) LIBRARY "Gdi32.dll"
FUNCTION int OleIsDcMeta(ulong hDC) LIBRARY "OLE2.DLL"
FUNCTION ulong OleQueryClientVersion( ) LIBRARY "OLE2.DLL"
FUNCTION ulong OleQueryServerVersion( ) LIBRARY "OLE2.DLL"
FUNCTION int OpenClipboard(ulong handle) LIBRARY "User32.dll"
FUNCTION int OpenComm(ref string str, uint num, uint num) LIBRARY "User32.dll"
FUNCTION ulong OpenDriver(ref string szDriverName, ref string szSectionName, long lParam) LIBRARY "User32.dll"
FUNCTION int OpenFile(ref string str, ref OFStruct OutputFile, uint num) LIBRARY "Kernel32.dll"
FUNCTION int OpenIcon(ulong handle) LIBRARY "User32.dll"
FUNCTION OutputDebugString(ref string str) LIBRARY "Kernel32.dll"
FUNCTION int PaintRgn(ulong hDC, ulong hRgn) LIBRARY "Gdi32.dll"
FUNCTION int PatBlt(ulong hDC, int num, int num, int num, int num, ulong lParam) LIBRARY "Gdi32.dll"
FUNCTION int PeekMessage(ref MsgStruct ms, ulong handle, uint num, uint num, uint num) LIBRARY "User32.dll"
FUNCTION int Pie(ulong hDC, int num, int num, int num, int num, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int PlayMetaFile(ulong hDC, ulong hMetaFile) LIBRARY "Gdi32.dll"
FUNCTION int Polygon(ulong hDC, ref PointStruct point, int num) LIBRARY "Gdi32.dll"
FUNCTION int Polyline(ulong hDC, ref PointStruct point, int num) LIBRARY "Gdi32.dll"
FUNCTION int PolyPolygon(ulong hDC, ref PointStruct point, ref int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int PostAppMessage(ulong hTask, uint num, ulong wParam, long lParam) LIBRARY "User32.dll"
FUNCTION int PostMessage(ulong handle, uint num, ulong wParam, long lParam) LIBRARY "User32.dll"
FUNCTION PostQuitMessage(int num) LIBRARY "User32.dll"
FUNCTION ulong PrestoChangoSelector(ulong sourceSel, ulong destSel) LIBRARY "Kernel32.dll"
FUNCTION ProfClear( ) LIBRARY "Kernel32.dll"
FUNCTION ProfFinish( ) LIBRARY "Kernel32.dll"
FUNCTION ProfFlush( ) LIBRARY "Kernel32.dll"
FUNCTION int ProfInsChk( ) LIBRARY "Kernel32.dll"
FUNCTION ProfSampRate(int num,int num) LIBRARY "Kernel32.dll"
FUNCTION ProfSetup(int num,int num) LIBRARY "Kernel32.dll"
FUNCTION ProfStart( ) LIBRARY "Kernel32.dll"
FUNCTION ProfStop( ) LIBRARY "Kernel32.dll"
FUNCTION int PtInRect(ref RectStruct rect, PointStruct point) LIBRARY "User32.dll"
FUNCTION int QuerySendMessage(ulong h1, ulong h2, ulong h3, MsgStruct lpmsg) LIBRARY "User32.dll"
FUNCTION int ReadComm(int num, ref string str, int num) LIBRARY "User32.dll"
FUNCTION ulong RealizePalette(ulong hDC) LIBRARY "User32.dll"
FUNCTION int Rectangle(ulong hDC, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int RectInRegion(ulong hRgn, ref RectStruct rect) LIBRARY "Gdi32.dll"
FUNCTION int RectVisible(ulong hDC, ref RectStruct rect) LIBRARY "Gdi32.dll"
FUNCTION int RedrawWindow(ulong hwnd, ref RectStruct lprcUpdate, ulong hRgn hrgnUpdate, ulong flags) LIBRARY "User32.dll"
FUNCTION long RegCloseKey(ulong hKey) LIBRARY "Shell.dll"
FUNCTION long RegCreateKey(ulong hKey, ref string str, ref ulong hKey) LIBRARY "Shell.dll"
FUNCTION long RegDeleteKey(ulong hKey, ref string str) LIBRARY "Shell.dll"
FUNCTION long RegEnumKey(ulong hKey, ulong lParam, ref string str, ulong lParam) LIBRARY "Shell.dll"
FUNCTION ulong RegisterClipboardFormat(ref string str) LIBRARY "User32.dll"
FUNCTION ulong RegisterWindowMessage(ref string str) LIBRARY "User32.dll"
FUNCTION long RegOpenKey(ulong hKey, ref string str, ref ulong hKey) LIBRARY "Shell.dll"
FUNCTION long RegQueryValue(ulong hKey, ref string str, ref string str, long FAR*) LIBRARY "Shell.dll"
FUNCTION long RegSetValue(ulong hKey, ref string str, ulong lParam, ref string str, ulong lParam) LIBRARY "Shell.dll"
FUNCTION ReleaseCapture( ) LIBRARY "User32.dll"
FUNCTION int ReleaseDC(ulong handle, ulong hDC) LIBRARY "User32.dll"
FUNCTION int RemoveFontResource(ref string str) LIBRARY "Gdi32.dll"
FUNCTION int RemoveMenu(ulong hMenu, uint num, uint num) LIBRARY "User32.dll"
FUNCTION ulong RemoveProp(ulong handle, ref string str) LIBRARY "User32.dll"
FUNCTION ReplyMessage(long lResult) LIBRARY "User32.dll"
FUNCTION int ResizePalette(ulong hPalette, uint num) LIBRARY "Gdi32.dll"
FUNCTION int RestoreDC(ulong hDC, int num) LIBRARY "Gdi32.dll"
FUNCTION int RoundRect(ulong hDC, int num, int num, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
lmby 2003-12-17
  • 打赏
  • 举报
回复
FUNCTION int LineTo(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong LoadAccelerators(ulong hInstance, ref string str) LIBRARY "User32.dll"
FUNCTION ulong LoadBitmap(ulong hInstance, ref string str) LIBRARY "User32.dll"
FUNCTION ulong LoadCursor(ulong hInstance, ref string str) LIBRARY "User32.dll"
FUNCTION ulong LoadIcon(ulong hInstance, ref string str) LIBRARY "User32.dll"
FUNCTION ulong LoadLibrary(ref string str) LIBRARY "Kernel32.dll"
FUNCTION ulong LoadMenu(ulong hInstance, ref string str) LIBRARY "User32.dll"
FUNCTION ulong LoadMenuIndirect(ref string str) LIBRARY "User32.dll"
FUNCTION ulong LoadModule(ref string str, ref string str) LIBRARY "Kernel32.dll"
FUNCTION ulong LoadResource(ulong hInstance, ulong hRsrc) LIBRARY "Kernel32.dll"
FUNCTION int LoadString(ulong hInstance, uint num, ref string str, int num) LIBRARY "User32.dll"
FUNCTION ulong LocalAlloc(uint num, uint num) LIBRARY "Kernel32.dll"
FUNCTION ulong LocalCompact(uint num) LIBRARY "Kernel32.dll"
FUNCTION int LocalFirst(ref LocalEntryStruct lpLocal, ulong hGlobal hHeap) LIBRARY "TOOLHELP.DLL"
FUNCTION ulong LocalFlags(ulong hLocal) LIBRARY "Kernel32.dll"
FUNCTION ulong LocalFree(ulong hLocal) LIBRARY "Kernel32.dll"
FUNCTION ulong LocalHandle(uint num) LIBRARY "Kernel32.dll"
FUNCTION int LocalInfo(ref LocalInfoStruct lpLocal, ulong hGlobal hHeap) LIBRARY "TOOLHELP.DLL"
FUNCTION int LocalInit(uint num, uint num, uint num) LIBRARY "Kernel32.dll"
FUNCTION string LocalLock(ulong hLocal) LIBRARY "Kernel32.dll"
FUNCTION int LocalNext(ref LocalEntryStruct lpLocal) LIBRARY "TOOLHELP.DLL"
FUNCTION ulong LocalReAlloc(ulong hLocal, uint num, uint num) LIBRARY "Kernel32.dll"
FUNCTION ulong LocalShrink(ulong hLocal, uint num) LIBRARY "Kernel32.dll"
FUNCTION int LocalUnlock(ulong hLocal) LIBRARY "Kernel32.dll"
FUNCTION int LockInput(ulong h1, ulong hwndInput, int fLock) LIBRARY "User32.dll"
FUNCTION string LockResource(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION ulong LockSegment(uint num) LIBRARY "Kernel32.dll"
FUNCTION int LockWindowUpdate(ulong hwndLock) LIBRARY "User32.dll"
FUNCTION LogError(ulong err, ref string lpInfo) LIBRARY "Kernel32.dll"
FUNCTION int LPtoDP(ulong hDC, ref PointStruct point, int num) LIBRARY "Gdi32.dll"
FUNCTION string lstrcat(ref string str, ref string str) LIBRARY "Kernel32.dll"
FUNCTION int lstrcmp(ref string str, ref string str) LIBRARY "User32.dll"
FUNCTION int lstrcmpi(ref string str, ref string str) LIBRARY "User32.dll"
FUNCTION string lstrcpy(ref string str, ref string str) LIBRARY "Kernel32.dll"
FUNCTION string lstrcpyn(ref string str, ref string str, int num) LIBRARY "Kernel32.dll"
FUNCTION int lstrlen(ref string str) LIBRARY "Kernel32.dll"
FUNCTION LZClose(ulong hFile) LIBRARY "LZEXPAND.DLL"
FUNCTION long LZCopy(ulong hFile, ulong hFile) LIBRARY "LZEXPAND.DLL"
FUNCTION LZDone( ) LIBRARY "LZEXPAND.DLL"
FUNCTION int LZInit(ulong hFile) LIBRARY "LZEXPAND.DLL"
FUNCTION int LZOpenFile(ref string str, ref OFStruct OutputFile, uint num) LIBRARY "LZEXPAND.DLL"
FUNCTION int LZRead(ulong hFile, ref string str, int num) LIBRARY "LZEXPAND.DLL"
FUNCTION long LZSeek(ulong hFile, long lParam, int num) LIBRARY "LZEXPAND.DLL"
FUNCTION int LZStart( ) LIBRARY "LZEXPAND.DLL"
FUNCTION MapDialogRect(ulong handle, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION ulong MapVirtualKey(uint num, uint num) LIBRARY "Kernel32.dll"
FUNCTION MapWindowPoints(ulong hwndFrom, ulong hwndTo, ref PointStruct lppt, ulong cpt) LIBRARY "User32.dll"
FUNCTION int MemManInfo(ref MemManInfoStruct lpEnhMode) LIBRARY "TOOLHELP.DLL"
FUNCTION ulong MemoryRead(ulong wSel, ulong dwOffset, ref string lpBuffer, ulong dwcb) LIBRARY "TOOLHELP.DLL"
FUNCTION ulong MemoryWrite(ulong wSel, ulong dwOffset, ref string lpBuffer, ulong dwcb) LIBRARY "TOOLHELP.DLL"
FUNCTION MessageBeep(uint num) LIBRARY "User32.dll"
FUNCTION int MessageBox(ulong handle, ref string str, ref string str, uint num) LIBRARY "User32.dll"
FUNCTION int ModifyMenu(ulong hMenu, uint num, uint num, uint num, ref string str) LIBRARY "User32.dll"
FUNCTION ulong ModuleFindHandle(ref ModuleEntryStruct lpModule, ulong hModule hModule) LIBRARY "TOOLHELP.DLL"
FUNCTION ulong ModuleFindName(ref ModuleEntryStruct lpModule, ref string lpstrName) LIBRARY "TOOLHELP.DLL"
FUNCTION int ModuleFirst(ref ModuleEntryStruct lpModule) LIBRARY "TOOLHELP.DLL"
FUNCTION int ModuleNext(ref ModuleEntryStruct lpModule) LIBRARY "TOOLHELP.DLL"
FUNCTION ulong MoveTo(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int MoveToEx(ulong hDC, int num, int num, ref PointStruct point) LIBRARY "Gdi32.dll"
FUNCTION int MoveWindow(ulong handle, int num, int num, int num, int num, int num) LIBRARY "User32.dll"
FUNCTION int MulDiv(int num, int num, int num) LIBRARY "Kernel32.dll"
lmby 2003-12-17
  • 打赏
  • 举报
回复
FUNCTION ulong GlobalAddAtom(ref string str) LIBRARY "User32.dll"
FUNCTION ulong GlobalAlloc(uint num, ulong lParam) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalCompact(ulong lParam) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalDeleteAtom(ulong atom) LIBRARY "User32.dll"
FUNCTION ulong GlobalDosAlloc(ulong lParam) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalDosFree(uint num) LIBRARY "Kernel32.dll"
FUNCTION int GlobalEntryHandle(ref GlobalEntryStruct lpGlobal, ulong hGlobal hItem) LIBRARY "TOOLHELP.DLL"
FUNCTION int GlobalEntryModule(ref GlobalEntryStruct lpGlobal, ulong hModule hModule, ulong wSeg) LIBRARY "TOOLHELP.DLL"
FUNCTION ulong GlobalFindAtom(ref string str) LIBRARY "User32.dll"
FUNCTION int GlobalFirst(ref GlobalEntryStruct lpGlobal, ulong wFlags) LIBRARY "TOOLHELP.DLL"
FUNCTION GlobalFix(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalFlags(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalFree(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalGetAtomName(ulong atom, ref string str, int num) LIBRARY "User32.dll"
FUNCTION ulong GlobalHandle(uint num) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalHandleToSel(ulong hGlobal hMem) LIBRARY "TOOLHELP.DLL"
FUNCTION int GlobalInfo(ref GlobalInfoStruct lpGlobalInfo) LIBRARY "TOOLHELP.DLL"
FUNCTION string GlobalLock(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalLRUNewest(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalLRUOldest(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION int GlobalNext(ref GlobalEntryStruct lpGlobal, ulong wFlags) LIBRARY "TOOLHELP.DLL"
FUNCTION ulong GlobalPageLock(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalPageUnlock(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalReAlloc(ulong hGlobal, ulong lParam, uint num) LIBRARY "Kernel32.dll"
FUNCTION ulong GlobalSize(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION GlobalUnfix(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION int GlobalUnlock(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION HideCaret(ulong handle) LIBRARY "User32.dll"
FUNCTION int HiliteMenuItem(ulong handle, ulong hMenu, uint num, uint num) LIBRARY "User32.dll"
FUNCTION hmemcpy(ref blob blob1, ref blob blob2, long lParam) LIBRARY "Kernel32.dll"
FUNCTION InflateRect(ref RectStruct rect, int num, int num) LIBRARY "User32.dll"
FUNCTION int InitAtomTable(int num) LIBRARY "Kernel32.dll"
FUNCTION int InSendMessage( ) LIBRARY "User32.dll"
FUNCTION int InsertMenu(ulong hMenu, uint num, uint num, uint num, ref string str) LIBRARY "User32.dll"
FUNCTION int InterruptUnRegister(ulong hTask) LIBRARY "TOOLHELP.DLL"
FUNCTION int IntersectClipRect(ulong hDC, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int IntersectRect(ref RectStruct rect, ref RectStruct rect, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION InvalidateRect(ulong handle, ref RectStruct rect, int num) LIBRARY "User32.dll"
FUNCTION InvalidateRgn(ulong handle, ulong hRgn, int num) LIBRARY "User32.dll"
FUNCTION InvertRect(ulong hDC, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION int InvertRgn(ulong hDC, ulong hRgn) LIBRARY "Gdi32.dll"
FUNCTION int IsBadHugeReadPtr(ref blob lp, ulong cb) LIBRARY "Kernel32.dll"
FUNCTION int IsBadHugeWritePtr(ref blob lp, ulong cb) LIBRARY "Kernel32.dll"
FUNCTION int IsBadReadPtr(ref string lp, ulong cb) LIBRARY "Kernel32.dll"
FUNCTION int IsBadStringPtr(ref string lpsz, ulong cchMax) LIBRARY "Kernel32.dll"
FUNCTION int IsBadWritePtr(ref string lp, ulong cb) LIBRARY "Kernel32.dll"
FUNCTION int IsCharAlpha(char) LIBRARY "User32.dll"
FUNCTION int IsCharAlphaNumeric(char) LIBRARY "User32.dll"
FUNCTION int IsCharLower(char) LIBRARY "User32.dll"
FUNCTION int IsCharUpper(char) LIBRARY "User32.dll"
FUNCTION int IsChild(ulong handle, uint num) LIBRARY "User32.dll"
FUNCTION int IsClipboardFormatAvailable(uint num) LIBRARY "User32.dll"
FUNCTION int IsDBCSLeadByte(uchar ch) LIBRARY "Kernel32.dll"
FUNCTION int IsDialogMessage(ulong handle, ref MsgStruct ms) LIBRARY "User32.dll"
FUNCTION ulong IsDlgButtonChecked(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION int IsGDIObject(ulong hGDIObj) LIBRARY "Gdi32.dll"
FUNCTION int IsIconic(ulong handle) LIBRARY "User32.dll"
FUNCTION int IsMenu(ulong hMenu) LIBRARY "User32.dll"
FUNCTION int IsRectEmpty(ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION int IsTask(ulong hTask) LIBRARY "Kernel32.dll"
FUNCTION int IsWindow(ulong handle) LIBRARY "User32.dll"
FUNCTION int IsWindowEnabled(ulong handle) LIBRARY "User32.dll"
FUNCTION int IsWindowVisible(ulong handle) LIBRARY "User32.dll"
FUNCTION int IsZoomed(ulong handle) LIBRARY "User32.dll"
FUNCTION int KillTimer(ulong handle, uint num) LIBRARY "User32.dll"
lmby 2003-12-17
  • 打赏
  • 举报
回复
FUNCTION int GetKBCodePage( ) LIBRARY "Kernel32.dll"
FUNCTION int GetKerningPairs(ulong hDC, int num, ref KerningPairStruct kps) LIBRARY "Gdi32.dll"
FUNCTION GetKeyboardState(ref uchar ch) LIBRARY "User32.dll"
FUNCTION int GetKeyboardType(int num) LIBRARY "Kernel32.dll"
FUNCTION int GetKeyNameText(long lParam, ref string str, int num) LIBRARY "Kernel32.dll"
FUNCTION int GetKeyState(int num) LIBRARY "User32.dll"
FUNCTION ulong GetLastActivePopup(ulong handle) LIBRARY "User32.dll"
FUNCTION int GetMapMode(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION ulong GetMenu(ulong handle) LIBRARY "User32.dll"
FUNCTION ulong GetMenuCheckMarkDimensions( ) LIBRARY "User32.dll"
FUNCTION int GetMenuItemCount(ulong hMenu) LIBRARY "User32.dll"
FUNCTION ulong GetMenuItemID(ulong hMenu, int num) LIBRARY "User32.dll"
FUNCTION ulong GetMenuState(ulong hMenu, uint num, uint num) LIBRARY "User32.dll"
FUNCTION int GetMenuString(ulong hMenu, uint num, ref string str, int num, uint num) LIBRARY "User32.dll"
FUNCTION int GetMessage(ref MsgStruct ms, ulong handle, uint num, uint num) LIBRARY "User32.dll"
FUNCTION long GetMessageExtraInfo( ) LIBRARY "User32.dll"
FUNCTION ulong GetMessagePos( ) LIBRARY "User32.dll"
FUNCTION long GetMessageTime( ) LIBRARY "User32.dll"
FUNCTION ulong GetMetaFile(ref string str) LIBRARY "Gdi32.dll"
FUNCTION ulong GetMetaFileBits(ulong hMetaFile) LIBRARY "Gdi32.dll"
FUNCTION int GetModuleFileName(ulong hInstance, ref string str, int num) LIBRARY "Kernel32.dll"
FUNCTION ulong GetModuleHandle(ref string str) LIBRARY "Kernel32.dll"
FUNCTION int GetModuleUsage(ulong hInstance) LIBRARY "Kernel32.dll"
FUNCTION ulong GetNearestColor(ulong hDC, ulong ColorRef) LIBRARY "Gdi32.dll"
FUNCTION ulong GetNearestPaletteIndex(ulong hPalette, ulong ColorRef) LIBRARY "Gdi32.dll"
FUNCTION ulong GetNextDlgGroupItem(ulong handle, ulong handle, int num) LIBRARY "User32.dll"
FUNCTION ulong GetNextDlgTabItem(ulong handle, ulong handle, int num) LIBRARY "User32.dll"
FUNCTION ulong GetNextDriver(ulong hDrvr, ulong lParam) LIBRARY "User32.dll"
FUNCTION ulong GetNextWindow(ulong handle, uint num) LIBRARY "User32.dll"
FUNCTION ulong GetNumTasks( ) LIBRARY "Kernel32.dll"
FUNCTION int GetObject(ulong hGDIObj, int num, ref string str) LIBRARY "Gdi32.dll"
FUNCTION ulong GetOpenClipboardWindow( ) LIBRARY "User32.dll"
FUNCTION ulong GetPaletteEntries(ulong hPalette, uint num, uint num, ref PaletteEntryStruct pes) LIBRARY "Gdi32.dll"
FUNCTION ulong GetParent(ulong handle) LIBRARY "User32.dll"
FUNCTION ulong GetPixel(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int GetPolyFillMode(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int GetPriorityClipboardFormat(ref uint num, int num) LIBRARY "User32.dll"
FUNCTION ulong GetPrivateProfileInt(ref string str, ref string str, int num, ref string str) LIBRARY "Kernel32.dll"
FUNCTION int GetPrivateProfileString(ref string str, ref string str, ref string str, ref string str, int num, ref string str) LIBRARY "Kernel32.dll"
FUNCTION ulong GetProfileInt(ref string str, ref string str, int num) LIBRARY "Kernel32.dll"
FUNCTION int GetProfileString(ref string str, ref string str, ref string str, ref string str, int num) LIBRARY "Kernel32.dll"
FUNCTION ulong GetProp(ulong handle, ref string str) LIBRARY "User32.dll"
FUNCTION ulong GetQueueStatus(ulong flags) LIBRARY "User32.dll"
FUNCTION int GetRasterizerCaps(ref Rasterizer_statusStruct rast, int num) LIBRARY "Gdi32.dll"
FUNCTION int GetRgnBox(ulong hRgn, ref RectStruct rect) LIBRARY "Gdi32.dll"
FUNCTION int GetROP2(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int GetScrollPos(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION GetScrollRange(ulong handle, int num, ref int num, ref int num) LIBRARY "User32.dll"
FUNCTION ulong GetSelectorBase(uint num) LIBRARY "Kernel32.dll"
FUNCTION ulong GetSelectorLimit(uint num) LIBRARY "Kernel32.dll"
FUNCTION ulong GetStockObject(int num) LIBRARY "Gdi32.dll"
FUNCTION int GetStretchBltMode(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION ulong GetSubMenu(ulong hMenu, int num) LIBRARY "User32.dll"
FUNCTION ulong GetSysColor(int num) LIBRARY "User32.dll"
FUNCTION ulong GetSysModalWindow( ) LIBRARY "User32.dll"
FUNCTION long GetSystemDebugState( ) LIBRARY "User32.dll"
FUNCTION ulong GetSystemDir(ref string szAppDir, ref string lpBuffer, int nSize) LIBRARY "VER.DLL"
FUNCTION ulong GetSystemDirectory(ref string str, uint num) LIBRARY "Kernel32.dll"
FUNCTION ulong GetSystemMenu(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION ulong GetSystemPaletteEntries(ulong hDC, uint num, uint num, ref PaletteEntryStruct pes) LIBRARY "Gdi32.dll"
FUNCTION ulong GetSystemPaletteUse(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION ulong GetTabbedTextExtent(ulong hDC, ref string str, int num, int num, ref int num) LIBRARY "User32.dll"
FUNCTION uchar GetTempDrive(char) LIBRARY "Kernel32.dll"
FUNCTION int GetTempFileName(uchar ch, ref string str, uint num, ref string str) LIBRARY "Kernel32.dll"
FUNCTION ulong GetTextAlign(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int GetTextCharacterExtra(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION ulong GetTextColor(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION ulong GetTextExtent(ulong hDC, ref string str, int num) LIBRARY "Gdi32.dll"
FUNCTION int GetTextExtentPoint(ulong hDC, ref string str, int num, ref SizeStruct sizestr) LIBRARY "Gdi32.dll"
FUNCTION int GetTextFace(ulong hDC, int num, ref string str) LIBRARY "Gdi32.dll"
FUNCTION ulong GetTickCount( ) LIBRARY "User32.dll"
FUNCTION ulong GetTimerResolution( ) LIBRARY "User32.dll"
FUNCTION ulong GetTopWindow(ulong handle) LIBRARY "User32.dll"
FUNCTION int GetUpdateRect(ulong handle, ref RectStruct rect, int num) LIBRARY "User32.dll"
FUNCTION int GetUpdateRgn(ulong handle, ulong hRgn, int num) LIBRARY "User32.dll"
FUNCTION ulong GetVersion( ) LIBRARY "Kernel32.dll"
FUNCTION ulong GetViewportExt(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int GetViewportExtEx(ulong hDC, ref SizeStruct sizestr) LIBRARY "Gdi32.dll"
FUNCTION ulong GetViewportOrg(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int GetViewportOrgEx(ulong hDC, ref PointStruct point) LIBRARY "Gdi32.dll"
FUNCTION int GetWinDebugInfo(ref WinDebugInfoStruct lpwdi, ulong flags) LIBRARY "Kernel32.dll"
FUNCTION ulong GetWindow(ulong handle, uint num) LIBRARY "User32.dll"
FUNCTION ulong GetWindowDC(ulong handle) LIBRARY "User32.dll"
FUNCTION ulong GetWindowExt(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int GetWindowExtEx(ulong hDC, ref SizeStruct sizestr) LIBRARY "Gdi32.dll"
FUNCTION long GetWindowLong(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION ulong GetWindowOrg(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int GetWindowOrgEx(ulong hDC, ref PointStruct point) LIBRARY "Gdi32.dll"
FUNCTION int GetWindowPlacement(ulong handle, ref WindowPlacementStruct wps) LIBRARY "User32.dll"
FUNCTION GetWindowRect(ulong handle, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION ulong GetWindowsDir(ref string szAppDir, ref string lpBuffer, int nSize) LIBRARY "VER.DLL"
FUNCTION ulong GetWindowsDirectory(ref string str, uint num) LIBRARY "Kernel32.dll"
FUNCTION ulong GetWindowTask(ulong handle) LIBRARY "User32.dll"
FUNCTION int GetWindowText(ulong handle, ref string str, int num) LIBRARY "User32.dll"
FUNCTION int GetWindowTextLength(ulong handle) LIBRARY "User32.dll"
FUNCTION ulong GetWindowWord(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION ulong GetWinFlags( ) LIBRARY "Kernel32.dll"
lmby 2003-12-17
  • 打赏
  • 举报
回复
FUNCTION int GetABCWidths(ulong hDC, uint num, uint num, ref ABCStruct ABC) LIBRARY "Gdi32.dll"
FUNCTION ulong GetActiveWindow( ) LIBRARY "User32.dll"
FUNCTION ulong GetAspectRatioFilter(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int GetAspectRatioFilterEx(ulong hDC, ref SizeStruct sizestr) LIBRARY "Gdi32.dll"
FUNCTION int GetAsyncKeyState(int num) LIBRARY "User32.dll"
FUNCTION ulong GetAtomHandle(ulong atom) LIBRARY "Kernel32.dll"
FUNCTION ulong GetAtomName(ulong atom, ref string str, int num) LIBRARY "Kernel32.dll"
FUNCTION long GetBitmapBits(ulong hBitmap, long lParam, ref string str) LIBRARY "Gdi32.dll"
FUNCTION ulong GetBitmapDimension(ulong hBitmap) LIBRARY "Gdi32.dll"
FUNCTION int GetBitmapDimensionEx(ulong hBitmap, ref SizeStruct sizestr) LIBRARY "Gdi32.dll"
FUNCTION ulong GetBkColor(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int GetBkMode(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION ulong GetBoundsRect(ulong hDC, ref RectStruct lprcBounds, ulong flags) LIBRARY "Gdi32.dll"
FUNCTION ulong GetBrushOrg(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int GetBrushOrgEx(ulong hDC, ref PointStruct point) LIBRARY "Gdi32.dll"
FUNCTION ulong GetCapture( ) LIBRARY "User32.dll"
FUNCTION ulong GetCaretBlinkTime( ) LIBRARY "User32.dll"
FUNCTION GetCaretPos(ref PointStruct point) LIBRARY "User32.dll"
FUNCTION int GetCharWidth(ulong hDC, uint num, uint num, ref int num) LIBRARY "Gdi32.dll"
FUNCTION long GetClassLong(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION int GetClassName(ulong handle, ref string str, int num) LIBRARY "User32.dll"
FUNCTION ulong GetClassWord(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION GetClientRect(ulong handle, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION ulong GetClipboardData(uint num) LIBRARY "User32.dll"
FUNCTION int GetClipboardFormatName(uint num, ref string str, int num) LIBRARY "User32.dll"
FUNCTION ulong GetClipboardOwner( ) LIBRARY "User32.dll"
FUNCTION ulong GetClipboardViewer( ) LIBRARY "User32.dll"
FUNCTION int GetClipBox(ulong hDC, ref RectStruct rect) LIBRARY "Gdi32.dll"
FUNCTION GetClipCursor(ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION int GetCommError(int num, ref ComStatStruct css) LIBRARY "User32.dll"
FUNCTION ulong GetCommEventMask(int num, int num) LIBRARY "User32.dll"
FUNCTION int GetCommState(int num, ref DcbStruct dcbs) LIBRARY "User32.dll"
FUNCTION ulong GetCurrentPDB( ) LIBRARY "Kernel32.dll"
FUNCTION ulong GetCurrentPosition(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int GetCurrentPositionEx(ulong hDC, ref PointStruct point) LIBRARY "Gdi32.dll"
FUNCTION ulong GetCurrentTask( ) LIBRARY "Kernel32.dll"
FUNCTION ulong GetCurrentTime( ) LIBRARY "User32.dll"
FUNCTION ulong GetCursor( ) LIBRARY "User32.dll"
FUNCTION GetCursorPos(ref PointStruct point) LIBRARY "User32.dll"
FUNCTION ulong GetDC(ulong handle) LIBRARY "User32.dll"
FUNCTION ulong GetDCEx(register ulong hwnd, ulong hRgn hrgnClip, ulong flags) LIBRARY "User32.dll"
FUNCTION ulong GetDCOrg(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION ulong GetDesktopWindow( ) LIBRARY "User32.dll"
FUNCTION int GetDeviceCaps(ulong hDC, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong GetDialogBaseUnits( ) LIBRARY "User32.dll"
FUNCTION int GetDIBits(ulong hDC, ulong hBitmap, uint num, uint num, ref string str, ref Bitmapinfostruct bmis, uint num) LIBRARY "Gdi32.dll"
FUNCTION int GetDlgCtrlID(ulong handle) LIBRARY "User32.dll"
FUNCTION ulong GetDlgItem(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION ulong GetDlgItemInt(ulong handle, int num, ref int , int num) LIBRARY "User32.dll"
FUNCTION int GetDlgItemText(ulong handle, int num, ref string str, int num) LIBRARY "User32.dll"
FUNCTION string GetDOSEnvironment( ) LIBRARY "Kernel32.dll"
FUNCTION ulong GetDoubleClickTime( ) LIBRARY "User32.dll"
FUNCTION int GetDriverInfo(ulong hDrvr, ref DriverInfoStruct dis) LIBRARY "User32.dll"
FUNCTION ulong GetDriverModuleHandle(ulong hDriver) LIBRARY "User32.dll"
FUNCTION ulong GetDriveType(int num) LIBRARY "Kernel32.dll"
FUNCTION int GetExpandedName(ref string str, ref string str) LIBRARY "LZEXPAND.DLL"
FUNCTION int GetFileResource(ref string lpstrFilename, ref string lpstrResType, ref string lpstrResID, ulong dwFileOffset, ulong dwResLen, ref string lpData) LIBRARY "VER.DLL"
FUNCTION ulong GetFileResourceSize(ref string lpstrFilename, ref string lpstrResType, ref string lpstrResID, ref ulong lpdwFileOffset) LIBRARY "VER.DLL"
FUNCTION int GetFileTitle(ref string str, ref string str, uint num) LIBRARY "COMMDLG.DLL"
FUNCTION int GetFileVersionInfo(ref string lpstrFilename, ulong dwHandle, ulong dwLen, ref string lpData) LIBRARY "VER.DLL"
FUNCTION ulong GetFileVersionInfoSize(ref string lpstrFilename, ref ulong lpdwHandle) LIBRARY "VER.DLL"
FUNCTION ulong GetFocus( ) LIBRARY "User32.dll"
FUNCTION ulong GetFontData(ulong hDC, ulong lParam, ulong lParam, ref string str, ulong lParam) LIBRARY "Gdi32.dll"
FUNCTION ulong GetFreeSpace(uint num) LIBRARY "Kernel32.dll"
FUNCTION ulong GetFreeSystemResources(uint num) LIBRARY "User32.dll"
FUNCTION ulong GetGlyphOutline(ulong hDC, uint num, uint num, ref GlyphMetricsStruct gms, ulong lParam, ref string str, ref Mat2Struct) LIBRARY "Gdi32.dll"
FUNCTION int GetInputState( ) LIBRARY "User32.dll"
FUNCTION int GetInstanceData(ulong hInstance, ref string ch, int num) LIBRARY "Kernel32.dll"
lmby 2003-12-17
  • 打赏
  • 举报
回复
FUNCTION int Ellipse(ulong hDC, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int EmptyClipboard( ) LIBRARY "User32.dll"
FUNCTION int EnableCommNotification(int num, ulong handle, int num, int num) LIBRARY "User32.dll"
FUNCTION int EnableHardwareInput(int num) LIBRARY "User32.dll"
FUNCTION int EnableMenuItem(ulong hMenu, uint num, uint num) LIBRARY "User32.dll"
FUNCTION int EnableScrollBar(ulong handle, int num, uint num) LIBRARY "User32.dll"
FUNCTION int EnableWindow(ulong handle,int num) LIBRARY "User32.dll"
FUNCTION int EndDeferWindowPos(ulong hDwp) LIBRARY "User32.dll"
FUNCTION EndDialog(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION int EndDoc(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int EndPage(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION EndPaint(ulong handle, ref PaintStruct) LIBRARY "User32.dll"
FUNCTION ulong EnumClipboardFormats(uint num) LIBRARY "User32.dll"
FUNCTION int EqualRect(ref RectStruct rect, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION int EqualRgn(ulong hRgn, ulong hRgn) LIBRARY "Gdi32.dll"
FUNCTION int Escape(ulong hDC, int num, int num, ref string str, ref string str) LIBRARY "Gdi32.dll"
FUNCTION long EscapeCommFunction(int num, int num) LIBRARY "User32.dll"
FUNCTION int ExcludeClipRect(ulong hDC, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int ExcludeUpdateRgn(ulong hDC, uint num) LIBRARY "User32.dll"
FUNCTION int ExitWindows(ulong dwReturnCode, ulong wReserved) LIBRARY "User32.dll"
FUNCTION int ExitWindowsExec(ref string str, ref string str) LIBRARY "User32.dll"
FUNCTION int ExtFloodFill(ulong hDC, int num, int num, ulong ColorRef, uint num) LIBRARY "Gdi32.dll"
FUNCTION ulong ExtractIcon(ulong hInstance hInst, ref string lpszExeFileName, ulong nIconIndex) LIBRARY "Shell.dll"
FUNCTION int ExtTextOut(ulong hDC, int num, int num, uint num, ref RectStruct rect, ref string str, uint num, ref int num) LIBRARY "Gdi32.dll"
FUNCTION FatalAppExit(uint num, ref string str) LIBRARY "Kernel32.dll"
FUNCTION FatalExit(int num) LIBRARY "Kernel32.dll"
FUNCTION int FillRect(ulong hDC, ref RectStruct rect, ulong hBrush) LIBRARY "User32.dll"
FUNCTION int FillRgn(ulong hDC, ulong hRgn, ulong hBrush) LIBRARY "Gdi32.dll"
FUNCTION ulong FindAtom(ref string str) LIBRARY "Kernel32.dll"
FUNCTION ulong FindExecutable(ref string lpFile, ref string lpDirectory, ref string lpResult) LIBRARY "Shell.dll"
FUNCTION ulong FindResource(ulong hInstance, ref string str, ref string str) LIBRARY "Kernel32.dll"
FUNCTION ulong FindWindow(ref string str, ref string str) LIBRARY "User32.dll"
FUNCTION int FlashWindow(ulong handle, int num) LIBRARY "User32.dll"
FUNCTION int FloodFill(ulong hDC, int num, int num, ulong ColorRef) LIBRARY "Gdi32.dll"
FUNCTION int FlushComm(int num, int num) LIBRARY "User32.dll"
FUNCTION int FrameRect(ulong hDC, ref RectStruct rect, ulong hBrush) LIBRARY "User32.dll"
FUNCTION int FrameRgn(ulong hDC, ulong hRgn, ulong hBrush, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION FreeLibrary(ulong hInstance) LIBRARY "Kernel32.dll"
FUNCTION int FreeModule(ulong hInstance) LIBRARY "Kernel32.dll"
FUNCTION int FreeResource(ulong hGlobal) LIBRARY "Kernel32.dll"
FUNCTION ulong FreeSelector(uint num) LIBRARY "Kernel32.dll"
lmby 2003-12-17
  • 打赏
  • 举报
回复
FUNCTION int DdeAbandonTransaction(ulong idInst, ulong hConv, ulong idTransaction) LIBRARY "Ddeml.dll"
FUNCTION string DdeAccessData(ulong hData, ref ulong pcbDataSize) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeAddData(ulong hData, ref string pSrc, ulong cb, ulong cbOff) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeClientTransaction(ref string pData, ulong cbData, ulong hConv, ulong hszItem, ulong wFmt, ulong wType, ulong dwTimeout, ref ulong pdwResult) LIBRARY "Ddeml.dll"
FUNCTION int DdeCmpStringHandles(ulong hsz1, ulong hsz2) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeConnect(ulong idInst, ulong hszService, ulong hszTopic, ref ConvConText pCC) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeConnectList(ulong idInst, ulong hszService, ulong hszTopic, ulong hConvList, ref ConvConText pCC) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeCreateDataHandle(ulong idInst, ref string pSrc, ulong cb, ulong cbOff, ulong hszItem, ulong wFmt, ulong afCmd) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeCreateStringHandle(ulong idInst, ref string psz, int iCodePage) LIBRARY "Ddeml.dll"
FUNCTION int DdeDisconnect(ulong hConv) LIBRARY "Ddeml.dll"
FUNCTION int DdeDisconnectList(ulong hConvList) LIBRARY "Ddeml.dll"
FUNCTION int DdeEnableCallback(ulong idInst, ulong hConv, ulong wCmd) LIBRARY "Ddeml.dll"
FUNCTION int DdeFreeDataHandle(ulong hData) LIBRARY "Ddeml.dll"
FUNCTION int DdeFreeStringHandle(ulong idInst, ulong hsz) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeGetData(ulong hData, ref string pDst, ulong cbMax, ulong cbOff) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeGetLastError(ulong idInst) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeInitialize(ref ulong pidInst, ref function *pfnCallback, ulong afCmd, ulong ulRes) LIBRARY "Ddeml.dll"
FUNCTION int DdeKeepStringHandle(ulong idInst, ulong hsz) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeNameService(ulong idInst, ulong hsz1, ulong hsz2, ulong afCmd) LIBRARY "Ddeml.dll"
FUNCTION int DdePostAdvise(ulong idInst, ulong hszTopic, ulong hszItem) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeQueryConvInfo(ulong hConv, ulong idTransaction, ref ConvInfo pConvInfo) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeQueryNextServer(ulong hConvList, ulong hConvPrev) LIBRARY "Ddeml.dll"
FUNCTION long DdeQueryString(ulong idInst, ulong hsz, ref string psz, ulong cchMax, int iCodePage) LIBRARY "Ddeml.dll"
FUNCTION ulong DdeReconnect(ulong hConv) LIBRARY "Ddeml.dll"
FUNCTION int DdeSetUserHandle(ulong hConv, ulong id, ulong hUser) LIBRARY "Ddeml.dll"
FUNCTION int DdeUnaccessData(ulong hData) LIBRARY "Ddeml.dll"
FUNCTION int DdeUninitialize(ulong idInst) LIBRARY "Ddeml.dll"
FUNCTION DebugBreak( ) LIBRARY "Kernel32.dll"
FUNCTION long DefDlgProc(ulong handle, uint num, ulong wParam, long lParam) LIBRARY "User32.dll"
FUNCTION long DefDriverProc(ulong dwDriverIdentifier, ulong driverID, ulong message, long lParam, long lParam) LIBRARY "User32.dll"
FUNCTION ulong DeferWindowPos(ulong hDwp, ulong handle, ulong handle, int num, int num, int num, int num, uint num) LIBRARY "User32.dll"
FUNCTION long DefFrameProc(ulong handle, ulong handle, uint num, ulong wParam, long lParam) LIBRARY "User32.dll"
FUNCTION long DefMDIChildProc(ulong handle, uint num, ulong wParam, long lParam) LIBRARY "User32.dll"
FUNCTION long DefWindowProc(ulong handle, uint num, ulong wParam, long lParam) LIBRARY "User32.dll"
FUNCTION ulong DeleteAtom(ulong atom) LIBRARY "Kernel32.dll"
FUNCTION int DeleteDC(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION int DeleteMenu(ulong hMenu, uint num, uint num) LIBRARY "User32.dll"
FUNCTION int DeleteMetaFile(ulong hMetaFile) LIBRARY "Gdi32.dll"
FUNCTION int DeleteObject(ulong hGDIObj) LIBRARY "Gdi32.dll"
FUNCTION DestroyCaret( ) LIBRARY "User32.dll"
FUNCTION int DestroyCursor(ulong hCursor) LIBRARY "User32.dll"
FUNCTION int DestroyIcon(ulong hIcon) LIBRARY "User32.dll"
FUNCTION int DestroyMenu(ulong hMenu) LIBRARY "User32.dll"
FUNCTION int DestroyWindow(ulong handle) LIBRARY "User32.dll"
FUNCTION DirectedYield(ulong hTask) LIBRARY "Kernel32.dll"
FUNCTION long DispatchMessage(ref MsgStruct ms) LIBRARY "User32.dll"
FUNCTION int DlgDirList(ulong handle, ref string str, int num, int num, uint num) LIBRARY "User32.dll"
FUNCTION int DlgDirListComboBox(ulong handle, ref string str, int num, int num, uint num) LIBRARY "User32.dll"
FUNCTION int DlgDirSelect(ulong handle, ref string str, int num) LIBRARY "User32.dll"
FUNCTION int DlgDirSelectComboBox(ulong handle, ref string str, int num) LIBRARY "User32.dll"
FUNCTION int DlgDirSelectComboBoxEx(ulong handle, ref string str, int num, int num) LIBRARY "User32.dll"
FUNCTION int DlgDirSelectEx(ulong handle, ref string str, int num, int num) LIBRARY "User32.dll"
FUNCTION int DPtoLP(ulong hDC, ref PointStruct point, int num) LIBRARY "Gdi32.dll"
FUNCTION DragAcceptFiles(ulong handle, int num) LIBRARY "Shell.dll"
FUNCTION DragFinish(ulong hDrop) LIBRARY "Shell.dll"
FUNCTION ulong DragQueryFile(ulong hDrop, uint num, ref string str, uint num) LIBRARY "Shell.dll"
FUNCTION int DragQueryPoint(ulong hDrop, ref PointStruct point) LIBRARY "Shell.dll"
FUNCTION DrawFocusRect(ulong hDC, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION int DrawIcon(ulong hDC, int num, int num, ulong hIcon) LIBRARY "User32.dll"
FUNCTION DrawMenuBar(ulong handle) LIBRARY "User32.dll"
FUNCTION int DrawText(ulong hDC, ref string str, int num, ref RectStruct rect, uint num) LIBRARY "User32.dll"
lmby 2003-12-17
  • 打赏
  • 举报
回复
FUNCTION int CallMsgFilter(ref MsgStruct ms, int num) LIBRARY "User32.dll"
FUNCTION long CallNextHookEx(ulong hHook, int code, ulong wParam, long lParam) LIBRARY "User32.dll"
FUNCTION int Catch(ref int num) LIBRARY "Kernel32.dll"
FUNCTION int ChangeClipboardChain(ulong handle, uint num) LIBRARY "User32.dll"
FUNCTION CheckDlgButton(ulong handle, int num, uint num) LIBRARY "User32.dll"
FUNCTION int CheckMenuItem(ulong hMenu, uint num, uint num) LIBRARY "User32.dll"
FUNCTION CheckRadioButton(ulong handle, int num, int num, int num) LIBRARY "User32.dll"
FUNCTION ulong ChildWindowFromPoint(ulong handle, PointStruct point) LIBRARY "User32.dll"
FUNCTION int Chord(ulong hDC, int num, int num, int num, int num, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int ClassFirst(ref ClassEntryStruct lpClass) LIBRARY "Toolhelp.dll"
FUNCTION int ClassNext(ref ClassEntryStruct lpClass) LIBRARY "Toolhelp.dll"
FUNCTION int ClearCommBreak(int num) LIBRARY "User32.dll"
FUNCTION ClientToScreen(ulong handle, ref PointStruct point) LIBRARY "User32.dll"
FUNCTION ClipCursor(ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION int CloseClipboard( ) LIBRARY "User32.dll"
FUNCTION int CloseComm(int num) LIBRARY "User32.dll"
FUNCTION long CloseDriver(ulong hDriver, long lParam, long lParam) LIBRARY "User32.dll"
FUNCTION ulong CloseMetaFile(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION CloseWindow(ulong handle) LIBRARY "User32.dll"
FUNCTION int CombineRgn(ulong hRgn, ulong hRgn, ulong hRgn, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong CommDlgExtendedError( ) LIBRARY "COMMDLG.DLL"
FUNCTION ulong CopyCursor(ulong hInstance, ulong hCursor) LIBRARY "User32.dll"
FUNCTION ulong CopyIcon(ulong hInstance, ulong hIcon) LIBRARY "User32.dll"
FUNCTION long CopyLZFile(ulong hFile, ulong hFile) LIBRARY "Lzexpand.dll"
FUNCTION ulong CopyMetaFile(ulong hMetaFile, ref string str) LIBRARY "Gdi32.dll"
FUNCTION CopyRect(ref RectStruct rect, ref RectStruct rect) LIBRARY "User32.dll"
FUNCTION int CountClipboardFormats( ) LIBRARY "User32.dll"
FUNCTION ulong CreateBitmap(int num, int num, uint num, uint num, ref string str) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateBitmapIndirect(ref BitMapStruct) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateBrushIndirect(ref LogBrushStruct) LIBRARY "Gdi32.dll"
FUNCTION CreateCaret(ulong handle, ulong hBitmap, int num, int num) LIBRARY "User32.dll"
FUNCTION ulong CreateCompatibleBitmap(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateCompatibleDC(ulong hDC) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateCursor(ulong hInstance, int num, int num, int num, int num, ref string str, ref string str) LIBRARY "User32.dll"
FUNCTION ulong CreateDC(ref string str, ref string str, ref string str, ref string str) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateDIBitmap(ulong hDC, ref BitMapInfoHeaderStruct bmihs, ulong lParam, ref string str, ref Bitmapinfostruct bmis, uint num) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateDIBPatternBrush(ulong hGlobal, uint num) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateDiscardableBitmap(ulong hDC, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateEllipticRgn(int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateEllipticRgnIndirect(ref RectStruct rect) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateFont(int num, int num, int num, int num, int num, uchar ch, uchar ch, uchar ch, uchar ch, uchar ch, uchar ch, uchar ch, uchar ch, ref string str) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateFontIndirect(ref LogFontStruct lfs) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateHatchBrush(int num, ulong ColorRef) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateIC(ref string str, ref string str, ref string str, ref string str) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateIcon(ulong hInstance, int num, int num, uchar ch, uchar ch, ref string str, ref string str) LIBRARY "User32.dll"
FUNCTION ulong CreateMenu( ) LIBRARY "User32.dll"
FUNCTION ulong CreateMetaFile(ref string str) LIBRARY "Gdi32.dll"
FUNCTION ulong CreatePalette(ref LogPaletteStruct) LIBRARY "Gdi32.dll"
FUNCTION ulong CreatePatternBrush(ulong hBitmap) LIBRARY "Gdi32.dll"
FUNCTION ulong CreatePen(int num, int num, ulong ColorRef) LIBRARY "Gdi32.dll"
FUNCTION ulong CreatePenIndirect(ref LogPenStruct) LIBRARY "Gdi32.dll"
FUNCTION ulong CreatePolygonRgn(ref PointStruct point, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong CreatePolyPolygonRgn(ref PointStruct point, ref int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong CreatePopupMenu( ) LIBRARY "User32.dll"
FUNCTION ulong CreateRectRgn(int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateRectRgnIndirect(ref RectStruct rect) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateRoundRectRgn(int num, int num, int num, int num, int num, int num) LIBRARY "Gdi32.dll"
FUNCTION int CreateScalableFontResource(uint num, ref string str, ref string str, ref string str) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateSolidBrush(ulong ColorRef) LIBRARY "Gdi32.dll"
FUNCTION ulong CreateWindow(ref string str, ref string str, ulong lParam, int num, int num, int num, int num, ulong handle, ulong hMenu, ulong hInstance, ref string str) LIBRARY "User32.dll"
FUNCTION ulong CreateWindowEx(ulong lParam, ref string str, ref string str, ulong lParam, int num, int num, int num, int num, ulong handle, ulong hMenu, ulong hInstance, ref string str) LIBRARY "User32.dll"
jdsnhan 2003-12-17
  • 打赏
  • 举报
回复
布衣又在做好事了。
klbt 2003-12-17
  • 打赏
  • 举报
回复
洋洋大观,对大家很有帮助,支持。
jb99334 2003-12-17
  • 打赏
  • 举报
回复
谢版主,收藏!
wwwafa9 2003-12-17
  • 打赏
  • 举报
回复
多谢斑竹,不过要是给些如何使用的例子,那就更好了。
JAVA开发人员必备是HTML格式的 JavaTM 2 Platform Standard Edition 6 API 规范 本文档是 Java 2 Platform Standard Edition 6.0 的 API 规范。 请参见: 描述 Java 2 Platform 软件包 java.applet 提供创建 applet 所必需的类和 applet 用来与其 applet 上下文通信的类。 java.awt 包含用于创建用户界面和绘制图形图像的所有类。 java.awt.color 提供用于颜色空间的类。 java.awt.datatransfer 提供在应用程序之间和在应用程序内部传输数据的接口和类。 java.awt.dnd Drag 和 Drop 是一种直接操作动作,在许多图形用户界面系统中都会遇到它,它提供了一种机制,能够在两个与 GUI 中显示元素逻辑相关的实体之间传输信息。 java.awt.event 提供处理由 AWT 组件所激发的各类事件的接口和类。 java.awt.font 提供与字体相关的类和接口。 java.awt.geom 提供用于在与二维几何形状相关的对象上定义和执行操作的 Java 2D 类。 java.awt.im 提供输入方法框架所需的类和接口。 java.awt.im.spi 提供启用可以与 Java 运行时环境一起使用的输入方法开发的接口。 java.awt.image 提供创建和修改图像的各种类。 java.awt.image.renderable 提供用于生成与呈现无关的图像的类和接口。 java.awt.print 为通用的打印 API 提供类和接口。 java.beans 包含与开发 beans 有关的类,即基于 JavaBeansTM 架构的组件。 java.beans.beancontext 提供与 bean 上下文有关的类和接口。 java.io 通过数据流、序列化和文件系统提供系统输入和输出。 java.lang 提供利用 Java 编程语言进行程序设计的基础类。 java.lang.annotation 为 Java 编程语言注释设施提供库支持。 java.lang.instrument 提供允许 Java 编程语言代理检测运行在 JVM 上的程序的服务。 java.lang.management 提供管理接口,用于监视和管理 Java 虚拟机以及 Java 虚拟机在其上运行的操作系统。 java.lang.ref 提供了引用对象类,支持在某种程度上与垃圾回收器之间的交互。 java.lang.reflect 提供类和接口,以获得关于类和对象的反射信息。 java.math 提供用于执行任意精度整数算法 (BigInteger) 和任意精度小数算法 (BigDecimal) 的类。 java.net 为实现网络应用程序提供类。 java.nio 定义作为数据容器的缓冲区,并提供其他 NIO 包的概述。 java.nio.channels 定义了各种通道,这些通道表示到能够执行 I/O 操作的实体(如文件和套接字)的连接;定义了用于多路复用的、非阻塞 I/O 操作的选择器。 java.nio.channels.spi 用于 java.nio.channels 包的服务提供者类。 java.nio.charset 定义用来在字节和 Unicode 字符之间转换的 charset、解码器和编码器。 java.nio.charset.spi java.nio.charset 包的服务提供者类。 java.rmi 提供 RMI 包。 java.rmi.activation 为 RMI 对象激活提供支持。 java.rmi.dgc 为 RMI 分布式垃圾回收提供了类和接口。 java.rmi.registry 提供 RMI 注册表的一个类和两个接口。 java.rmi.server 提供支持服务器端 RMI 的类和接口。 java.security 为安全框架提供类和接口。 java.security.acl 此包中的类和接口已经被 java.security 包中的类取代。 java.security.cert 提供用于解析和管理证书、证书撤消列表 (CRL) 和证书路径的类和接口。 java.security.interfaces 提供的接口用于生成 RSA Laboratory Technical Note PKCS#1 中定义的 RSA(Rivest、Shamir 和 Adleman AsymmetricCipher 算法)密钥,以及 NIST 的 FIPS-186 中定义的 DSA(数字签名算法)密钥。 java.security.spec 提供密钥规范和算法参数规范的类和接口。 java.sql 提供使用 JavaTM 编程语言访问并处理存储在数据源(通常是一个关系数据库)中的数据的 API。 java.text 提供以与自然语言无关的方式来处理文本、日期、数字和消息的类和接口。 java.text.spi java.text 包中类的服务提供者类。 java.util 包含 collection 框架、遗留的 collection 类、事件模型、日期和时间设施、国际化和各种实用工具类(字符串标记生成器、随机数生成器和位数组)。 java.util.concurrent 在并发编程中很常用的实用工具类。 java.util.concurrent.atomic 类的小工具包,支持在单个变量上解除锁的线程安全编程。 java.util.concurrent.locks 为锁和等待条件提供一个框架的接口和类,它不同于内置同步和监视器。 java.util.jar 提供读写 JAR (Java ARchive) 文件格式的类,该格式基于具有可选清单文件的标准 ZIP 文件格式。 java.util.logging 提供 JavaTM 2 平台核心日志工具的类和接口。 java.util.prefs 此包允许应用程序存储并获取用户和系统首选项和配置数据。 java.util.regex 用于匹配字符序列与正则表达式指定模式的类。 java.util.spi java.util 包中类的服务提供者类。 java.util.zip 提供用于读写标准 ZIP 和 GZIP 文件格式的类。 javax.accessibility 定义了用户界面组件与提供对这些组件进行访问的辅助技术之间的协定。 javax.crypto 为加密操作提供类和接口。 javax.crypto.interfaces 根据 RSA Laboratories' PKCS #3 的定义,提供 Diffie-Hellman 密钥接口。 javax.crypto.spec 为密钥规范和算法参数规范提供类和接口。 javax.imageio Java Image I/O API 的主要包。 javax.imageio.event Java Image I/O API 的一个包,用于在读取和写入图像期间处理事件的同步通知。 javax.imageio.metadata 用于处理读写元数据的 Java Image I/O API 的包。 javax.imageio.plugins.bmp 包含供内置 BMP 插件使用的公共类的包。 javax.imageio.plugins.jpeg 支持内置 JPEG 插件的类。 javax.imageio.spi 包含用于 reader、writer、transcoder 和流的插件接口以及一个运行时注册表的 Java Image I/O API 包。 javax.imageio.stream Java Image I/O API 的一个包,用来处理从文件和流中产生的低级别 I/O。 javax.management 提供 Java Management Extensions 的核心类。 javax.management.loading 提供实现高级动态加载的类。 javax.management.modelmbean 提供了 ModelMBean 类的定义。 javax.management.monitor 提供 monitor 类的定义。 javax.management.openmbean 提供开放数据类型和 Open MBean 描述符类。 javax.management.relation 提供 Relation Service 的定义。 javax.management.remote 对 JMX MBean 服务器进行远程访问使用的接口。 javax.management.remote.rmi RMI 连接器是供 JMX Remote API 使用的一种连接器,后者使用 RMI 将客户端请求传输到远程 MBean 服务器。 javax.management.timer 提供对 Timer MBean(计时器 MBean)的定义。 javax.naming 为访问命名服务提供类和接口。 javax.naming.directory 扩展 javax.naming 包以提供访问目录服务的功能。 javax.naming.event 在访问命名和目录服务时提供对事件通知的支持。 javax.naming.ldap 提供对 LDAPv3 扩展操作和控件的支持。 javax.naming.spi 提供一些方法来动态地插入对通过 javax.naming 和相关包访问命名和目录服务的支持。 javax.net 提供用于网络应用程序的类。 javax.net.ssl 提供用于安全套接字包的类。 javax.print 为 JavaTM Print Service API 提供了主要类和接口。 javax.print.attribute 提供了描述 JavaTM Print Service 属性的类型以及如何分类这些属性的类和接口。 javax.print.attribute.standard 包 javax.print.attribute.standard 包括特定打印属性的类。 javax.print.event 包 javax.print.event 包含事件类和侦听器接口。 javax.rmi 包含 RMI-IIOP 的用户 API。 javax.rmi.CORBA 包含用于 RMI-IIOP 的可移植性 API。 javax.rmi.ssl 通过安全套接字层 (SSL) 或传输层安全 (TLS) 协议提供 RMIClientSocketFactory 和 RMIServerSocketFactory 的实现。 javax.security.auth 此包提供用于进行验证和授权的框架。 javax.security.auth.callback 此包提供与应用程序进行交互所必需的类,以便检索信息(例如,包括用户名和密码的验证数据)或显示信息(例如,错误和警告消息)。 javax.security.auth.kerberos 此包包含与 Kerberos 网络验证协议相关的实用工具类。 javax.security.auth.login 此包提供可插入的验证框架。 javax.security.auth.spi 此包提供用于实现可插入验证模块的接口。 javax.security.auth.x500 此包包含应该用来在 Subject 中存储 X500 Principal 和 X500 Private Crendentials 的类。 javax.security.cert 为公钥证书提供类。 javax.security.sasl 包含用于支持 SASL 的类和接口。 javax.sound.midi 提供用于 MIDI(音乐乐器数字接口)数据的 I/O、序列化和合成的接口和类。 javax.sound.midi.spi 在提供新的 MIDI 设备、MIDI 文件 reader 和 writer、或音库 reader 时提供服务提供者要实现的接口。 javax.sound.sampled 提供用于捕获、处理和回放取样的音频数据的接口和类。 javax.sound.sampled.spi 在提供新音频设备、声音文件 reader 和 writer,或音频格式转换器时,提供将为其创建子类的服务提供者的抽象类。 javax.sql 为通过 JavaTM 编程语言进行服务器端数据源访问和处理提供 API。 javax.sql.rowset JDBC RowSet 实现的标准接口和基类。 javax.sql.rowset.serial 提供实用工具类,允许 SQL 类型与 Java 编程语言数据类型之间的可序列化映射关系。 javax.sql.rowset.spi 第三方供应商在其同步提供者的实现中必须使用的标准类和接口。 javax.swing 提供一组“轻量级”(全部是 Java 语言)组件,尽量让这些组件在所有平台上的工作方式都相同。 javax.swing.border 提供围绕 Swing 组件绘制特殊边框的类和接口。 javax.swing.colorchooser 包含供 JColorChooser 组件使用的类和接口。 javax.swing.event 供 Swing 组件触发的事件使用。 javax.swing.filechooser 包含 JFileChooser 组件使用的类和接口。 javax.swing.plaf 提供一个接口和许多抽象类,Swing 用它们来提供自己的可插入外观功能。 javax.swing.plaf.basic 提供了根据基本外观构建的用户界面对象。 javax.swing.plaf.metal 提供根据 Java 外观(曾经代称为 Metal)构建的用户界面对象,Java 外观是默认外观。 javax.swing.plaf.multi 提供了组合两个或多个外观的用户界面对象。 javax.swing.plaf.synth Synth 是一个可更换皮肤 (skinnable) 的外观,在其中可委托所有绘制。 javax.swing.table 提供用于处理 javax.swing.JTable 的类和接口。 javax.swing.text 提供类 HTMLEditorKit 和创建 HTML 文本编辑器的支持类。 javax.swing.text.html 提供类 HTMLEditorKit 和创建 HTML 文本编辑器的支持类。 javax.swing.text.html.parser 提供默认的 HTML 解析器以及支持类。 javax.swing.text.rtf 提供一个类 (RTFEditorKit),用于创建富文本格式(Rich-Text-Format)的文本编辑器。 javax.swing.tree 提供处理 javax.swing.JTree 的类和接口。 javax.swing.undo 允许开发人员为应用程序(例如文本编辑器)中的撤消/恢复提供支持。 javax.transaction 包含解组期间通过 ORB 机制抛出的三个异常。 javax.transaction.xa 提供定义事务管理器和资源管理器之间的协定的 API,它允许事务管理器添加或删除 JTA 事务中的资源对象(由资源管理器驱动程序提供)。 javax.xml 根据 XML 规范定义核心 XML 常量和功能。 javax.xml.bind 为包含解组、编组和验证功能的客户端应用程序提供运行时绑定框架。 javax.xml.bind.annotation 定义将 Java 程序元素定制成 XML 模式映射的注释。 javax.xml.bind.annotation.adapters XmlAdapter 及其规范定义的子类允许任意 Java 类与 JAXB 一起使用。 javax.xml.bind.attachment 此包由基于 MIME 的包处理器实现,该处理器能够解释并创建基于 MIME 的包格式的已优化的二进制数据。 javax.xml.bind.helpers 仅由 JAXB 提供者用于: 提供某些 javax.xml.bind 接口的部分默认实现。 javax.xml.bind.util 有用的客户端实用工具类。 javax.xml.crypto 用于 XML 加密的通用类。 javax.xml.crypto.dom javax.xml.crypto 包的特定于 DOM 的类。 javax.xml.crypto.dsig 用于生成和验证 XML 数字签名的类。 javax.xml.crypto.dsig.dom javax.xml.crypto.dsig 包特定于 DOM 的类。 javax.xml.crypto.dsig.keyinfo 用来解析和处理 KeyInfo 元素和结构的类。 javax.xml.crypto.dsig.spec XML 数字签名的参数类。 javax.xml.datatype XML/Java 类型映射关系。 javax.xml.namespace XML 名称空间处理。 javax.xml.parsers 提供允许处理 XML 文档的类。 javax.xml.soap 提供用于创建和构建 SOAP 消息的 API。 javax.xml.stream javax.xml.stream.events javax.xml.stream.util javax.xml.transform 此包定义了用于处理转换指令,以及执行从源到结果的转换的一般 API。 javax.xml.transform.dom 此包实现特定于 DOM 的转换 API。 javax.xml.transform.sax 此包实现特定于 SAX2 的转换 API。 javax.xml.transform.stax 提供特定于 StAX 的转换 API。 javax.xml.transform.stream 此包实现特定于流和 URI 的转换 API。 javax.xml.validation 此包提供了用于 XML 文档验证的 API。 javax.xml.ws 此包包含核心 JAX-WS API。 javax.xml.ws.handler 该包定义用于消息处理程序的 API。 javax.xml.ws.handler.soap 该包定义用于 SOAP 消息处理程序的 API。 javax.xml.ws.http 该包定义特定于 HTTP 绑定的 API。 javax.xml.ws.soap 该包定义特定于 SOAP 绑定的 API。 javax.xml.ws.spi 该包定义用于 JAX-WS 2.0 的 SPI。 javax.xml.xpath 此包提供了用于 XPath 表达式的计算和访问计算环境的 object-model neutral API。 org.ietf.jgss 此包提供一个框架,该框架允许应用程序开发人员通过利用统一的 API 使用一些来自各种基础安全机制(如 Kerberos)的安全服务,如验证、数据完整性和和数据机密性。 org.omg.CORBA 提供 OMG CORBA API 到 JavaTM 编程语言的映射,包括 ORB 类,如果已实现该类,则程序员可以使用此类作为全功能对象请求代理(Object Request Broker,ORB)。 org.omg.CORBA_2_3 CORBA_2_3 包定义对 Java[tm] Standard Edition 6 中现有 CORBA 接口所进行的添加。 org.omg.CORBA_2_3.portable 提供输入和输出值类型的各种方法,并包含 org/omg/CORBA/portable 包的其他更新。 org.omg.CORBA.DynAnyPackage 提供与 DynAny 接口一起使用的异常(InvalidValue、Invalid、InvalidSeq 和 TypeMismatch)。 org.omg.CORBA.ORBPackage 提供由 ORB.resolve_initial_references 方法抛出的异常 InvalidName,以及由 ORB 类中的动态 Any 创建方法抛出的异常 InconsistentTypeCode。 org.omg.CORBA.portable 提供可移植性层,即可以使一个供应商生成的代码运行在另一个供应商 ORB 上的 ORB API 集合。 org.omg.CORBA.TypeCodePackage 提供用户定义的异常 BadKind 和 Bounds,它们将由 TypeCode 类中的方法抛出。 org.omg.CosNaming 为 Java IDL 提供命名服务。 org.omg.CosNaming.NamingContextExtPackage 此包包含以下在 org.omg.CosNaming.NamingContextExt 中使用的类: AddressHelper StringNameHelper URLStringHelper InvalidAddress 包规范 有关 Java[tm] Platform, Standard Edition 6 ORB 遵守的官方规范的受支持部分的明确列表,请参阅 Official Specifications for CORBA support in Java[tm] SE 6。 org.omg.CosNaming.NamingContextPackage 此包包含 org.omg.CosNaming 包的 Exception 类。 org.omg.Dynamic 此包包含 OMG Portable Interceptor 规范 http://cgi.omg.org/cgi-bin/doc?ptc/2000-08-06 的第 21.9 小节中指定的 Dynamic 模块。 org.omg.DynamicAny 提供一些类和接口使得在运行时能够遍历与 any 有关联的数据值,并提取数据值的基本成分。 org.omg.DynamicAny.DynAnyFactoryPackage 此包包含 DynamicAny 模块的 DynAnyFactory 接口中的类和异常,该模块在 OMG The Common Object Request Broker: Architecture and Specification http://cgi.omg.org/cgi-bin/doc?formal/99-10-07 的第 9.2.2 小节中指定。 org.omg.DynamicAny.DynAnyPackage 此包包含 DynAny 模块的 DynAnyFactory 接口中的类和异常,该模块在 OMG The Common Object Request Broker: Architecture and Specification http://cgi.omg.org/cgi-bin/doc?formal/99-10-07 的第 9.2 小节中指定。 org.omg.IOP 此包包含在 OMG 文档 The Common Object Request Broker: Architecture and Specification http://cgi.omg.org/cgi-bin/doc?formal/99-10-07 的 13.6.小节中指定的 IOP 模块。 org.omg.IOP.CodecFactoryPackage 此包包含 IOP::CodeFactory 接口中指定的异常(作为 Portable Interceptor 规范的一部分)。 org.omg.IOP.CodecPackage 此包根据 IOP::Codec IDL 接口定义生成。 org.omg.Messaging 此包包含 OMG Messaging Interceptor 规范 http://cgi.omg.org/cgi-bin/doc?formal/99-10-07 中指定的 Messaging 模块。 org.omg.PortableInterceptor 提供一个注册 ORB 钩子 (hook) 的机制,通过这些钩子 ORB 服务可以截取执行 ORB 的正常流。 org.omg.PortableInterceptor.ORBInitInfoPackage 此包包含 OMG Portable Interceptor 规范 http://cgi.omg.org/cgi-bin/doc?ptc/2000-08-06 的第 21.7.2 小节中指定的 PortableInterceptor 模块的 ORBInitInfo 本地接口中的异常和 typedef。 org.omg.PortableServer 提供一些类和接口,用来生成跨多个供应商 ORB 的可移植应用程序的服务器端。 org.omg.PortableServer.CurrentPackage 提供各种方法实现,这些实现能够访问调用方法的对象的身份。 org.omg.PortableServer.POAManagerPackage 封装 POA 关联的处理状态。 org.omg.PortableServer.POAPackage 允许程序员构造可在不同 ORB 产品间移植的对象实现。 org.omg.PortableServer.portable 提供一些类和接口,用来生成跨多个供应商 ORB 的可移植应用程序的服务器端。 org.omg.PortableServer.ServantLocatorPackage 提供定位 servant 的类和接口。 org.omg.SendingContext 为值类型的编组提供支持。 org.omg.stub.java.rmi 包含用于 java.rmi 包中出现的 Remote 类型的 RMI-IIOP Stub。 org.w3c.dom 为文档对象模型 (DOM) 提供接口,该模型是 Java API for XML Processing 的组件 API。 org.w3c.dom.bootstrap org.w3c.dom.events org.w3c.dom.ls org.xml.sax 此包提供了核心 SAX API。 org.xml.sax.ext 此包包含适合的 SAX 驱动程序不一定支持的 SAX2 设施的接口。 org.xml.sax.helpers 此包包含“帮助器”类,其中包括对引导基于 SAX 的应用程序的支持。

680

社区成员

发帖
与我相关
我的任务
社区描述
PowerBuilder API 调用
社区管理员
  • API 调用社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧