C Datatype | As an argument passed to a function | As a field of a struct |
ATOM | 16u | 16u |
BOOL | 32u The numeric value you pass must be either 1 (TRUE) or 0 (FALSE). | 32u |
BYTE | 8u | 8u |
char This is not the same as char *. | If the value is supposed to be a number, use 8. Otherwise for text, use char | If the value is supposed to be a number, use 8. Otherwise for text, use char If there is more than one character (ie, a C array), then use char[xxx]where xxx is the required number of characters, or 8[xxx] for numeric values. |
COLORREF | 32u | 32u |
DWORD | 32u | 32u |
int This is not the same as int *. | 32 | 32 |
long This is not the same as long *. | 32 | 32 If there is more than one long (ie, an array), then use 32[xxx]where xxx is the required number of numeric values. |
LPBOOL or PBOOL | 32u[xxx] or 32u[xxx] * where xxx is the number of numeric values in the array. If there is only one numeric value (ie, no array), then you can use 32u *, and you do not need to append a tail name of 1 to the REXX variable. The numeric value you pass must be either 1 (TRUE) or 0 (FALSE). | 32u[xxx] * or 32u * if only one number |
LPBYTE or PBYTE | 8u[xxx] or 8u[xxx] * where xxx is the number of numeric values in the array. If there is only one numeric value (ie, no array), then you can use 8u *, and you do not need to append a tail name of 1 to the REXX variable. | 8u[xxx] * or 8u * if only one number |
LPCTSTR | str or str * | str * |
LPDWORD or PDWORD | 32u[xxx] or 32u[xxx] * where xxx is the number of numeric values in the array. If there is only one numeric value (ie, no array), then you can use 32u *, and you do not need to append a tail name of 1 to the REXX variable. | 32u[xxx] * or 32u * if only one number |
LPTSTR | str or str * If you're required to pass a buffer of a particular size in conjunction with 'stor' or 'dual', then use str[xxx] or str[xxx] * where xxx specifies the required size. | str * If you're required to specify a buffer of a particular size in conjunction with 'stor' or 'dual', then use str[xxx] * where xxx specifies the required size. |
LPWORD or PWORD | 16u[xxx] or 16u[xxx] * where xxx is the number of numeric values in the array. If there is only one numeric value (ie, no array), then you can use 16u *, and you do not need to append a tail name of 1 to the REXX variable. | 16u[xxx] * or 16u * if only one number |
PSZ | str or str * If you're required to pass a buffer of a particular size in conjunction with 'stor' or 'dual', then use str[xxx] or str[xxx] * where xxx specifies the required size. | str * If you're required to specify a buffer of a particular size in conjunction with 'stor' or 'dual', then use str[xxx] * where xxx specifies the required size. |
PUCHAR | char[xxx] or char[xxx] * where xxx is the number of characters in the array. If the value is supposed to be a number (instead of text), use 8[xxx] or 8[xxx] * If there is only one character (ie, no array), then you can use char *, and you do not need to append a tail name of 1 to the REXX variable. | char[xxx] or char * for text, or 8[xxx] or 8[xxx] * for numbers |
PUINT | 32u[xxx] or 32u[xxx] * where xxx is the number of numeric values in the array. If there is only one numeric value (ie, no array), then you can use 32u *, and you do not need to append a tail name of 1 to the REXX variable. | 32u[xxx] or 32u * |
PULONG | 32u[xxx] or 32u[xxx] * where xxx is the number of numeric values in the array. If there is only one numeric value (ie, no array), then you can use 32u *, and you do not need to append a tail name of 1 to the REXX variable. | 32u[xxx] or 32u * |
PUSHORT | 16u[xxx] or 16u[xxx] * where xxx is the number of numeric values in the array. If there is only one numeric value (ie, no array), then you can use 16u *, and you do not need to append a tail name of 1 to the REXX variable. | 16u[xxx] or 16u * |
short This is not the same as short *. | 16 | 16 If there is more than one short (ie, an array), then use 16[xxx]where xxx is the required number of numeric values. |
TCHAR | char | char If there is more than one character (ie, a C array), then use char[xxx]where xxx is the required number of characters. |
UINT | 32u | 32u |
UCHAR | If the value is supposed to be a number, use 8u. Otherwise for text, use char | If the value is supposed to be a number, use 8u. Otherwise for text, use char If there is more than one character (ie, a C array), then use char[xxx]where xxx is the required number of characters, or 8u[xxx] for numeric values. |
ULONG | 32u | 32u |
unsigned char This is not the same as unsigned char *. | If the value is supposed to be a number, use 8u. Otherwise for text, use char | If the value is supposed to be a number, use 8u. Otherwise for text, use char If there is more than one character (ie, a C array), then use char[xxx]where xxx is the required number of characters, or 8u[xxx] for numeric values. |
unsigned long This is not the same as unsigned long *. | 32u | 32u If there is more than one long (ie, an array), then use 32u[xxx]where xxx is the required number of numeric values. |
unsigned short This is not the same as unsigned short *. | 16u | 16u If there is more than one short (ie, an array), then use 16u[xxx]where xxx is the required number of numeric values. |
USHORT | 16u | 16u |
WORD | 16u | 16u |
void This is not the same as void * | Only applicable to a function return. Omit the return type | Not applicable to struct |
void * | void | void |
Most everything else is either a structure (which will contain many fields comprised of the above datatypes, and you'll have to figure out its Definition string using the above chart), or a handle (ie, something that you're not meant to access in which case it should be defined as void). If you see a stuct with the letters "LP" prepended to its name, then use the * qualifier. For example, a RECT struct's Definition string would be as so:
RECT = '32, 32, 32, 32'If some function that you're FUNCDEF'ing requires an argument of type LPRECT, then you'd define that arg's datatype as struct RECT *.
Functions in BPCMini.dll:
BPCFreeMemory | BPCGetCurrentConnectionForDevice | BPCGetNewConnectionForDevice | BPCIndicateStatus |
BPCListCount | BPCListCreate | BPCListDelete | BPCListGet |
BPCListIsrGet | BPCListIsrPop | BPCListIsrPush | BPCListIsrPut |
BPCListIsrRemoveEntry | BPCListPop | BPCListPush | BPCListPut |
BPCListRemoveEntry | BPCSetCurrentConnectionForDevice | BPCUpdateMpg | ConnectionFromDevice |
FreeDFPFrame | IndicateDFPFrame | NsBPCAllocate | NsGetDFPPhysicalBuffer |
UnmapDFPFrame |
Functions in Bdnapi.dll:
msbdnBridgeReportEvent | PacketBufferComplete |
Functions in comctl32.dll:
CreateMappedBitmap | |||
CreatePropertySheetPageA | CreateStatusWindowA | CreateToolbarEx | CreateUpDownControl |
DestroyPropertySheetPage | DrawInsert | DrawStatusTextA | FlatSB_EnableScrollBar |
FlatSB_GetScrollInfo | FlatSB_GetScrollPos | FlatSB_GetScrollProp | FlatSB_GetScrollRange |
FlatSB_SetScrollInfo | FlatSB_SetScrollPos | FlatSB_SetScrollProp | FlatSB_SetScrollRange |
FlatSB_ShowScrollBar | GetEffectiveClientRect | ImageList_Add | ImageList_AddMasked |
ImageList_BeginDrag | ImageList_Copy | ImageList_Create | ImageList_Destroy |
ImageList_DragEnter | ImageList_DragLeave | ImageList_DragMove | ImageList_DragShowNolock |
ImageList_Draw | ImageList_DrawEx | ImageList_DrawIndirect | ImageList_Duplicate |
ImageList_EndDrag | ImageList_GetBkColor | ImageList_GetDragImage | ImageList_GetIcon |
ImageList_GetIconSize | ImageList_GetImageCount | ImageList_GetImageInfo | ImageList_LoadImageA |
ImageList_Merge | ImageList_Read | ImageList_Remove | ImageList_Replace |
ImageList_ReplaceIcon | ImageList_SetBkColor | ImageList_SetDragCursorImage | ImageList_SetIconSize |
ImageList_SetImageCount | ImageList_SetOverlayImage | ImageList_Write | InitCommonControls |
InitCommonControlsEx | InitializeFlatSB | LBItemFromPt | MakeDragList |
MenuHelp | PropertySheetA | ShowHideMenuCtl | UninitializeFlatSB |
Functions in comdlg32.dll:
ChooseColor | ChooseFont | CommDlgExtendedError | FindText |
GetFileTitle | GetOpenFileName | GetSaveFileName | |
PrintDlg | ReplaceText |
Functions in commdlg32.dll:
PageSetupDlg |
Functions in crypt32.dll:
CertAddCertificateContextToStore | CertAddCRLContextToStore | CertAddCTLContextToStore | |
CertAddEncodedCertificateToStore | CertAddEncodedCRLToStore | CertAddEncodedCTLToStore | |
CertAddSerializedElementToStore | CertAlgIdToOID | CertCloseStore | CertCompareCertificate |
CertCompareCertificateName | CertCompareIntegerBlob | CertComparePublicKeyInfo | CertCreateCertificateContext |
CertCreateCRLContext | CertCreateCTLContext | CertDeleteCertificateFromStore | CertDeleteCRLFromStore |
CertDeleteCTLFromStore | CertDuplicateCertificateContext | CertDuplicateCRLContext | CertDuplicateCTLContext |
CertDuplicateStore | CertEnumCertificateContextProperties | CertEnumCertificatesInStore | CertEnumCRLContextProperties |
CertEnumCTLContextProperties | CertEnumCTLsInStore | CertFindAttribute | CertFindCertificateInStore |
CertFindCTLInStore | CertFindExtension | CertFindRDNAttr | CertFindSubjectInCTL |
CertFreeCertificateContext | CertFreeCRLContext | CertFreeCTLContext | CertGetCertificateContextProperty |
CertGetCRLContextProperty | CertGetCRLFromStore | CertGetCTLContextProperty | CertGetIntendedKeyUsage |
CertGetIssuerCertificateFromStore | CertGetSubjectCertificateFromStore | CertIsRDNAttrsInCertificateName | CertNameToStrA |
CertOIDToAlgId | CertOpenStore | CertOpenSystemStoreA | CertRDNValueToStrA |
CertSaveStore | CertSerializeCertificateStoreElement | CertSerializeCRLStoreElement | CertSerializeCTLStoreElement |
CertSetCertificateContextProperty | CertSetCRLContextProperty | CertSetCTLContextProperty | CertStrToNameA |
CertVerifyCRLRevocation | CertVerifyCRLTimeValidity | CertVerifyCTLUsage | CertVerifyRevocation |
CertVerifySubjectCertificateContext | CertVerifyTimeValidity | CertVerifyValidityNesting | CryptAcquireContextA |
CryptCreateHash | CryptDecodeMessage | CryptDecodeObject | CryptDecrypt |
CryptDecryptAndVerifyMessageSignature | CryptDecryptMessage | CryptDeriveKey | CryptDestroyHash |
CryptDestroyKey | CryptEncodeObject | CryptEncrypt | CryptEncryptMessage |
CryptEnumOIDFunction | CryptExportKey | CryptExportPublicKeyInfo | CryptExportPublicKeyInfoEx |
CryptFreeOIDFunctionAddress | CryptGenKey | CryptGenRandom | CryptGetDefaultOIDDllList |
CryptGetDefaultOIDFunctionAddress | CryptGetHashParam | CryptGetKeyParam | CryptGetMessageCertificates |
CryptGetMessageSignerCount | CryptGetOIDFunctionAddress | CryptGetOIDFunctionValue | CryptGetProvParam |
CryptGetUserKey | CryptHashCertificate | CryptHashData | CryptHashMessage |
CryptHashPublicKeyInfo | CryptHashSessionKey | CryptHashToBeSigned | CryptImportKey |
CryptImportPublicKeyInfo | CryptImportPublicKeyInfoEx | CryptInitOIDFunctionSet | CryptInstallOIDFunctionAddress |
CryptMsgCalculateEncodedLength | CryptMsgClose | CryptMsgControl | CryptMsgCountersign |
CryptMsgCountersignEncoded | CryptMsgEncodeAndSignCTL | CryptMsgGetAndVerifySigner | CryptMsgGetParam |
CryptMsgOpenToDecode | CryptMsgOpenToEncode | CryptMsgSignCTL | CryptMsgUpdate |
CryptMsgVerifyCountersignatureEncoded | CryptRegisterDefaultOIDFunction | CryptRegisterOIDFunction | CryptReleaseContext |
CryptSetHashParam | CryptSetKeyParam | CryptSetOIDFunctionValue | CryptSetProviderA |
CryptSetProvParam | CryptSignAndEncodeCertificate | CryptSignAndEncryptMessage | CryptSignCertificate |
CryptSignHashA | CryptSignMessage | CryptUnregisterDefaultOIDFunction | CryptUnregisterOIDFunction |
CryptVerifyCertificateSignature | CryptVerifyDetachedMessageHash | CryptVerifyDetachedMessageSignature | CryptVerifyMessageHash |
CryptVerifyMessageSignature | CryptVerifySignatureA |
Functions in ddraw.dll:
DirectDrawCreate | DirectDrawCreateClipper | DirectDrawEnumerate | DirectDrawEnumerateExA |
Functions in dinput.dll:
DirectInputCreate |
Functions in dsound.dll:
DirectSoundCaptureCreate | DirectSoundCaptureEnumerate | DirectSoundCreate | DirectSoundEnumerate |
Functions in dsetup.dll:
DirectXDeviceDriverSetup | DirectXRegisterApplication | DirectXSetup | DirectXSetupGetVersion |
DirectXSetupSetCallback | DirectXUnRegisterApplication |
Functions in gdi32.dll:
BitBlt | CreateBitmap | CreateBitmapIndirect | |
CreateCompatibleBitmap | CreateDIBitmap | CreateDIBSection | ExtFloodFill |
GetBitmapDimensionEx | GetDIBColorTable | GetDIBits | GetPixel |
GetStretchBltMode | MaskBlt | PatBlt | PlgBlt |
SetBitmapDimensionEx | SetDIBColorTable | SetDIBits | SetDIBitsToDevice |
SetPixel | SetPixelV | SetStretchBltMode | StretchBlt |
StretchDIBits | CreateBrushIndirect | CreateDIBPatternBrushPt | CreateHatchBrush |
CreatePatternBrush | CreateSolidBrush | GetBrushOrgEx | CancelDC |
SetBrushOrgEx | ExcludeClipRect | ExtSelectClipRgn | GetClipBox |
GetClipRgn | GetMetaRgn | IntersectClipRect | OffsetClipRgn |
PtVisible | RectVisible | SelectClipPath | SelectClipRgn |
SetMetaRgn | CreateCompatibleDC | LineTo | |
CreateDCA | CreateICA | DeleteDC | DeleteObject |
DrawEscape | EnumObjects | GetCurrentObject | GetDCOrgEx | GetDeviceCaps | GetObjectA | GetObjectType | GetStockObject |
ResetDCA | RestoreDC | SaveDC | SelectObject |
SetDCBrushColor | SetDCPenColor | AngleArc | Arc |
GdiFlush | GdiGetBatchLimit | GdiSetBatchLimit | GetArcDirection |
GetBkColor | GetBkMode | GetBoundsRect | GetROP2 |
ArcTo | Chord | Ellipse | LineDDA |
MoveToEx | Pie | PolyBezier | PolyBezierTo |
PolyDraw | Polygon | Polyline | PolylineTo |
PolyPolygon | PolyPolyline | Rectangle | RoundRect |
SetArcDirection | SetBkColor | SetBkMode | SetBoundsRect |
SetROP2 | AbortDoc | CloseEnhMetaFile | CopyEnhMetaFileA |
CreateEnhMetaFileA | DeleteEnhMetaFile | EnumEnhMetaFile | |
GdiComment | GetEnhMetaFileA | GetEnhMetaFileBits | GetEnhMetaFileDescriptionA |
GetEnhMetaFileHeader | GetEnhMetaFilePaletteEntries | GetWinMetaFileBits | PlayEnhMetaFile |
PlayEnhMetaFileRecord | SetEnhMetaFileBits | SetWinMetaFileBits | AnimatePalette |
CreateHalftonePalette | CreatePalette | GetColorAdjustment | GetNearestColor |
GetNearestPaletteIndex | GetPaletteEntries | GetSystemPaletteEntries | GetSystemPaletteUse |
RealizePalette | ResizePalette | SelectPalette | SetColorAdjustment |
SetPaletteEntries | SetSystemPaletteUse | UnrealizeObject | UpdateColors |
AbortPath | BeginPath | CloseFigure | EndPath |
FillPath | FlattenPath | GetMiterLimit | GetPath |
PathToRegion | SetMiterLimit | StrokeAndFillPath | StrokePath |
WidenPath | CreatePen | CreatePenIndirect | ExtCreatePen |
StartDocA | EndDoc | Escape | ExtEscape |
StartPage | EndPage | SetAbortProc | CombineTransform |
CreatePolygonRgn | CreatePolyPolygonRgn | CreateRectRgn | CreateRectRgnIndirect |
CreateRoundRectRgn | EqualRgn | ExtCreateRegion | FillRgn |
FrameRgn | GetPolyFillMode | GetRegionData | GetRgnBox |
InvertRgn | OffsetRgn | PaintRgn | PtInRegion |
RectInRegion | SetPolyFillMode | SetRectRgn | AddFontResourceA |
CreateFontA | CreateFontIndirectA | CreateScalableFontResourceA | GetTextAlign |
GetTextCharacterExtra | GetTextExtentExPointA | GetTextExtentPoint32 | GetTextColor |
GetTextFaceA | GetTextMetricsA | PolyTextOutA | RemoveFontResourceA |
SetMapperFlags | SetTextAlign | SetTextCharacterExtra | SetTextColor |
SetTextJustification | GetOutlineTextMetricsA | GetWorldTransform | LPtoDP |
DPtoLP | GetCurrentPositionEx | GetGraphicsMode | GetMapMode |
GetViewportExtEx | GetViewportOrgEx | GetWindowExtEx | GetWindowOrgEx |
EnumFontFamiliesExA | ExtTextOut | GetAspectRatioFilterEx | GetRasterizerCaps |
GetCharABCWidthsA | GetCharABCWidthsFloatA | GetCharacterPlacementA | GetCharWidth32A |
GetCharWidthFloatA | GetFontData | GetFontLanguageInfo | GetFontUnicodeRanges |
GetGlyphIndices | GetGlyphOutlineA | GetKerningPairsA | |
CombineRgn | CreateEllipticRgn | CreateEllipticRgnIndirect | TextOut |
SetViewportOrgEx | SetWindowExtEx | SetWindowOrgEx | SetWorldTransform |
ApplyCallbackFunction | CheckColorsInGamut | ||
EnumICMProfilesA | CMCheckColorsInGamut | DeleteColorSpace | GetColorSpace |
CMCheckRGBs | CMConvertColorNameToIndex | CMConvertIndexToColorName | CMCreateDeviceLinkProfile |
CMCreateMultiProfileTransform | CMCreateProfile | CMCreateProfileW | CMCreateTransform |
CMCreateTransformExt | CMCreateTransformExtW | CMCreateTransformW | CMDeleteTransform |
CMGetInfo | CMGetNamedProfileInfo | CMGetPS2ColorRenderingDictionary | CMGetPS2ColorRenderingIntent |
CMGetPS2ColorSpaceArray | CMIsProfileValid | CMTranslateColors | CMTranslateRGB |
CMTranslateRGBs | CMTranslateRGBsExt | ColorCorrectPalette | ColorMatchToTarget |
ConvertColorNameToIndex | ConvertIndexToColorName | CreateColorSpaceA | CMCheckColors |
ModifyWorldTransform | SetGraphicsMode | SetMapMode | SetViewportExtEx |
OffsetViewportOrgEx | OffsetWindowOrgEx | ScaleViewportExtEx | ScaleWindowExtEx |
GetDeviceGammaRamp | GetICMProfileA | GetLogColorSpaceA | GetNamedProfileInfo |
SetColorSpace | SetDeviceGammaRamp | SetICMMode | SetICMProfile |
SetPixelFormat | ChoosePixelFormat | DescribePixelFormat | GetPixelFormat |
GetTextCharset | GetTextCharsetInfo | TranslateCharsetInfo | UpdateICMRegKeyA |
Functions in user32.dll:
GetSysColorBrush | ChangeDisplaySettingsA | ||
EnumDisplaySettingsA | GetDC | GetDCEx | ReleaseDC |
BeginPaint | EndPaint | CopyRect | DrawFrameControl |
DrawAnimatedRects | DrawCaption | DrawEdge | DrawFocusRect |
DrawStateA | EqualRect | ExcludeUpdateRgn | FillRect |
FrameRect | InvalidateRgn | InvertRect | IsRectEmpty |
GetUpdateRect | GetUpdateRgn | GetWindowDC | GetWindowRgn |
GrayStringA | InflateRect | IntersectRect | InvalidateRect |
LockWindowUpdate | OffsetRect | PaintDesktop | PtInRect |
SetRect | SetRectEmpty | RedrawWindow | WindowFromDC |
SetWindowRgn | SubtractRect | UnionRect | |
ValidateRect | ValidateRgn | DrawTextA | DrawTextExA |
GetTabbedTextExtentA | TabbedTextOutA | ClientToScreen | MapWindowPoints |
ScreenToClient | SetDebugErrorLevel | AttachThreadInput | GetUserObjectSecurity |
FlashWindow | FlashWindowEx | MessageBeep | SetLastErrorEx |
GetGuiResources | WaitForInputIdle | SetUserObjectSecurity | |
GetKeyboardType | GetSysColor | wsprintfA | wvsprintfA |
AnimateWindow | AnyPopup | ArrangeIconicWindows | BeginDeferWindowPos |
BringWindowToTop | CallWindowProcA | CascadeWindows | ChildWindowFromPoint |
ChildWindowFromPointEx | CloseWindow | CreateWindowA | CreateWindowExA |
DeferWindowPos | DefWindowProcA | DestroyWindow | EndDeferWindowPos |
EnumChildWindows | EnumPropsA | EnumPropsExA | EnumThreadWindows |
EnumWindows | FindWindowA | FindWindowExA | GetClassInfoExA |
GetClassLongA | GetClassNameA | GetClientRect | GetDesktopWindow |
GetForegroundWindow | GetLastActivePopup | GetNextWindow | GetParent |
GetPropA | GetTopWindow | GetWindow | GetWindowLongA |
GetWindowPlacement | GetWindowRect | GetWindowTextA | GetWindowTextLengthA |
GetWindowThreadProcessId | IsChild | IsIconic | IsWindow |
IsWindowUnicode | IsWindowVisible | IsZoomed | MoveWindow |
OpenIcon | RegisterClassA | RegisterClassExA | RemovePropA |
SetClassLongA | SetForegroundWindow | SetParent | SetPropA |
SetWindowLongA | SetWindowPlacement | SetWindowPos | SetWindowTextA |
ShowOwnedPopups | ShowWindow | ShowWindowAsync | TileWindows |
UnregisterClassA | UpdateWindow | WindowFromPoint | CloseDesktop |
CloseWindowStation | CreateDesktopA | CreateWindowStationA | EnumDesktopsA |
EnumDesktopWindows | EnumWindowStationsA | GetProcessWindowStation | GetThreadDesktop |
GetUserObjectInformationA | OpenDesktopA | OpenInputDesktop | OpenWindowStationA |
SetProcessWindowStation | SetThreadDesktop | SetUserObjectInformationA | SwitchDesktop |
SystemParametersInfoA | GetSystemMetrics | OemToCharA | OemToCharBuffA |
IsCharAlphaA | IsCharAlphaNumericA | IsCharLowerA | IsCharUpperA |
CharLowerA | CharLowerBuffA | CharNextA | CharNextExA |
CharPrevA | CharPrevExA | CharToOemA | CharToOemBuffA |
CharUpperA | CharUpperBuffA | LookupIconIdFromDirectory | LookupIconIdFromDirectoryEx |
SetCaretBlinkTime | SetCaretPos | SetCursor | SetCursorPos |
SetSystemCursor | ShowCaret | ShowCursor | LoadStringA |
SetMenuContextHelpId | SetWindowContextHelpId | GetMenuContextHelpId | GetWindowContextHelpId |
WINNLSEnableIME | WINNLSGetEnableStatus | WINNLSGetIMEHotkey | SendIMEMessageExA |
IMPGetIMEA | IMPQueryIMEA | IMPSetIMEA | LockWorkStation |
MsgWaitForMultipleObjects | MsgWaitForMultipleObjectsEx | ExitWindows | ExitWindowsEx |
MonitorFromWindow | WinHelpA | ChangeClipboardChain | CloseClipboard |
CountClipboardFormats | EmptyClipboard | EnumClipboardFormats | GetClipboardData |
GetClipboardFormatNameA | GetClipboardOwner | GetClipboardSequenceNumber | GetClipboardViewer |
GetOpenClipboardWindow | GetPriorityClipboardFormat | IsClipboardFormatAvailable | OpenClipboard |
RegisterClipboardFormatA | SetClipboardData | SetClipboardViewer | CheckDlgButton |
CheckRadioButton | DlgDirListA | DlgDirListComboBoxA | DlgDirSelectComboBoxExA |
DlgDirSelectExA | EnableScrollBar | GetScrollInfo | GetScrollPos |
GetScrollRange | IsDlgButtonChecked | ScrollDC | ScrollWindow |
ScrollWindowEx | SetScrollInfo | SetScrollPos | SetScrollRange |
ShowScrollBar | DdeAbandonTransaction | DdeAccessData | DdeAddData |
DdeClientTransaction | DdeCmpStringHandles | DdeConnect | DdeConnectList |
DdeCreateDataHandle | DdeCreateStringHandleA | DdeDisconnect | DdeDisconnectList |
DdeEnableCallback | DdeFreeDataHandle | DdeFreeStringHandle | DdeGetData |
DdeGetLastError | DdeImpersonateClient | DdeInitializeA | DdeKeepStringHandle |
DdeNameService | DdePostAdvise | DdeQueryConvInfo | DdeQueryNextServer |
DdeQueryStringA | DdeReconnect | DdeSetQualityOfService | DdeSetUserHandle |
DdeUnaccessData | DdeUninitialize | FreeDDElParam | ImpersonateDdeClientWindow |
PackDDElParam | ReuseDDElParam | UnpackDDElParam | CreateDialogA |
CreateDialogIndirectA | CreateDialogIndirectParamA | CreateDialogParamA | DefDlgProcA |
DialogBoxA | DialogBoxIndirectA | DialogBoxIndirectParamA | DialogBoxParamA |
EndDialog | GetDialogBaseUnits | GetDlgCtrlID | GetDlgItem |
GetDlgItemInt | GetDlgItemTextA | GetNextDlgGroupItem | GetNextDlgTabItem |
IsDialogMessageA | MapDialogRect | MessageBox | MessageBoxEx |
MessageBoxIndirectA | SendDlgItemMessageA | SetDlgItemInt | SetDlgItemTextA |
CallMsgFilterA | CallNextHookEx | SetWindowsHookExA | UnhookWindowsHookEx |
ActivateKeyboardLayout | CopyAcceleratorTableA | CreateAcceleratorTableA | DestroyAcceleratorTable |
DragDetect | EnableWindow | GetActiveWindow | GetAsyncKeyState |
GetCapture | GetDoubleClickTime | GetFocus | GetKeyboardLayout |
GetKeyboardLayoutList | GetKeyboardLayoutNameA | GetKeyboardState | GetKeyNameTextA |
GetKeyState | GetMouseMovePoints | IsWindowEnabled | keybd_event |
LoadAcceleratorsA | LoadKeyboardLayoutA | MapVirtualKeyA | MapVirtualKeyExA |
mouse_event | OemKeyScan | RegisterHotKey | ReleaseCapture |
SendInput | SetActiveWindow | SetCapture | SetDoubleClickTime |
SetFocus | SetKeyboardState | SwapMouseButton | ToAscii |
ToAsciiEx | ToUnicode | ToUnicodeEx | TrackMouseEvent |
TranslateAcceleratorA | UnloadKeyboardLayout | UnregisterHotKey | VkKeyScanA |
VkKeyScanExA | CreateMDIWindowA | DefFrameProcA | DefMDIChildProcA |
TranslateMDISysAccel | CheckMenuRadioItem | CreateMenu | CreatePopupMenu |
DeleteMenu | DestroyMenu | DrawMenuBar | EnableMenuItem |
GetMenu | GetMenuDefaultItem | GetMenuItemCount | GetMenuItemID |
GetMenuItemInfoA | GetMenuItemRect | GetSubMenu | GetSystemMenu |
HiliteMenuItem | InsertMenuItemA | IsMenu | LoadMenuA |
LoadMenuIndirectA | MenuItemFromPoint | RemoveMenu | SetMenu |
SetMenuDefaultItem | SetMenuItemBitmaps | SetMenuItemInfoA | TrackPopupMenu |
TrackPopupMenuEx | BroadcastSystemMessageA | DispatchMessageA | GetInputState |
GetMessageA | GetMessageExtraInfo | GetMessagePos | GetMessageTime |
GetQueueStatus | InSendMessage | InSendMessageEx | PeekMessageA |
PostMessageA | PostQuitMessage | PostThreadMessageA | RegisterWindowMessageA |
ReplyMessage | SendMessageA | SendMessageCallbackA | SendMessageTimeoutA |
SendNotifyMessageA | SetMessageExtraInfo | TranslateMessage | WaitMessage |
EnumDisplayMonitors | GetMonitorInfoA | MonitorFromPoint | MonitorFromRect |
GetCaretBlinkTime | GetCaretPos | GetClipCursor | GetCursor |
GetCursorPos | GetIconInfo | HideCaret | LoadCursorFromFileA |
LoadImageA | DrawIconEx | ClipCursor | CopyCursor |
CopyIcon | CopyImage | CreateCaret | CreateCursor |
CreateIcon | CreateIconFromResource | CreateIconFromResourceEx | CreateIconIndirect |
DestroyCaret | DestroyCursor | DestroyIcon | DrawIcon |
KillTimer | SetTimer | AdjustWindowRect | AdjustWindowRectEx |
SetSysColors |
Functions in winspool.dll:
AbortPrinter | AddFormA | AddJobA | AddMonitorA | AddPrinterA | AddPrinterConnectionA | DeviceCapabilitiesA | DocumentPropertiesA |
AddPrinterDriverA | AddPrinterDriverExA | AddPrintProcessorA | AddPrintProvidorA |
AdvancedDocumentPropertiesA | ClosePrinter | ConfigurePortA | ConnectToPrinterDlg |
DeleteFormA | DeleteMonitorA | DeletePortA | DeletePrinter |
DeletePrinterConnectionA | DeletePrinterDataA | DeletePrinterDataExA | DeletePrinterDriverA |
DeletePrinterDriverExA | DeletePrinterKeyA | DeletePrintProcessorA | DeletePrintProvidorA |
EndDocPrinter | EndPagePrinter | EnumFormsA | EnumJobsA |
EnumMonitorsA | EnumPortsA | EnumPrinterDataA | EnumPrinterDataExA |
EnumPrinterDriversA | EnumPrinterKeyA | EnumPrintersA | EnumPrintProcessorDatatypesA |
EnumPrintProcessorsA | FindClosePrinterChangeNotification | ScheduleJob | AddPortA |
FindFirstPrinterChangeNotification | FindNextPrinterChangeNotification | FreePrinterNotifyInfo | GetFormA |
GetJobA | GetPrinterA | GetPrinterDataA | GetPrinterDataExA |
GetPrinterDriverA | GetPrinterDriverDirectoryA | GetPrintProcessorDirectoryA | OpenPrinterA |
PrinterMessageBoxA | PrinterProperties | ReadPrinter | ResetPrinterA |
SetPortA | SetPrinterA | SetPrinterDataA | SetPrinterDataExA |
SetFormA | SetJobA | StartDocPrinterA | StartPagePrinter |
WritePrinter |
Functions in mscms.dll:
AssociateColorProfileWithDeviceA | CheckBitmapBits | CheckColors | CloseColorProfile |
CreateColorTransformA | CreateDeviceLinkProfile | CreateMultiProfileTransform | CreateProfileFromLogColorSpaceA |
DeleteColorTransform | DisassociateColorProfileFromDeviceA | EnumColorProfilesA | |
GetCMMInfo | GetColorDirectoryA | GetColorProfileElement | GetColorProfileElementTag |
GetColorProfileFromHandle | GetColorProfileHeader | GetCountColorProfileElements | UnregisterCMMA |
GetPS2ColorRenderingDictionary | GetPS2ColorRenderingIntent | GetPS2ColorSpaceArray | GetStandardColorSpaceProfileA |
InstallColorProfileA | IsColorProfileTagPresent | IsColorProfileValid | OpenColorProfileA |
RegisterCMMA | SelectCMM | SetColorProfileElement | SetColorProfileElementReference |
SetColorProfileElementSize | SetColorProfileHeader | SetStandardColorSpaceProfileA | UninstallColorProfileA |
TranslateBitmapBits | TranslateColors |
Functions in icmui.dll:
SetupColorMatchingA |
Functions in msi.dll:
MsiCloseAllHandles | MsiCloseHandle | MsiCollectUserInfoA | |
MsiConfigureFeatureA | MsiConfigureProductA | MsiCreateRecord | MsiDatabaseApplyTransformA |
MsiDatabaseCommit | MsiDatabaseExportA | MsiDatabaseGenerateTransformA | MsiDatabaseGetPrimaryKeysA |
MsiDatabaseImportA | MsiDatabaseIsTablePersistentA | MsiDatabaseMergeA | MsiDatabaseOpenViewA |
MsiDoActionA | MsiEnableLogA | MsiEnableUIPreview | MsiEnumClientsA |
MsiEnumComponentQualifiersA | MsiEnumComponentsA | MsiEnumFeaturesA | MsiEnumProductsA |
MsiEvaluateConditionA | MsiFormatRecordA | MsiGetActiveDatabase | MsiGetComponentStateA |
MsiGetDatabaseState | MsiGetFeatureCostA | MsiGetFeatureInfoA | MsiGetFeatureStateA |
MsiGetFeatureUsageA | MsiGetFeatureValidStatesA | MsiGetLanguage | MsiGetMode |
MsiGetProductCodeA | MsiGetProductInfoA | MsiGetProductPropertyA | MsiGetPropertyA |
MsiGetSourcePathA | MsiGetSummaryInformationA | MsiGetTargetPathA | MsiGetUserInfoA |
MsiInstallMissingComponentA | MsiInstallMissingFileA | MsiInstallProductA | MsiLocateComponentA |
MsiOpenDatabaseA | MsiOpenPackageA | MsiOpenProductA | MsiPreviewBillboardA |
MsiPreviewDialogA | MsiProcessMessage | MsiProvideComponentA | MsiProvideQualifiedComponentA |
MsiQueryFeatureStateA | MsiQueryProductStateA | MsiRecordClearData | MsiRecordDataSize |
MsiRecordGetFieldCount | MsiRecordGetInteger | MsiRecordGetStringA | MsiRecordIsNull |
MsiRecordReadStream | MsiRecordSetInteger | MsiRecordSetStreamA | MsiRecordSetStringA |
MsiReinstallFeatureA | MsiReinstallProductA | MsiSequenceA | MsiSetComponentStateA |
MsiSetExternalUIA | MsiSetFeatureStateA | MsiSetInstallLevel | MsiSetInternalUI |
MsiSetMode | MsiSetPropertyA | MsiSetTargetPathA | MsiSummaryInfoGetPropertyA |
MsiSummaryInfoGetPropertyCount | MsiSummaryInfoPersist | MsiSummaryInfoSetPropertyA | MsiUseFeatureA |
MsiVerifyPackageA | MsiViewClose | MsiViewExecute | MsiViewFetch |
MsiViewGetColumnInfo | MsiViewGetErrorA | MsiViewModify |
Functions in kernel32.dll:
DeleteAtom | FindAtomA | GetAtomNameA | GlobalAddAtomA |
GlobalDeleteAtom | GlobalFindAtomA | GlobalGetAtomNameA | InitAtomTable |
BuildCommDCBA | BuildCommDCBAndTimeoutsA | ClearCommBreak | ClearCommError |
CommConfigDialogA | EscapeCommFunction | GetCommConfig | GetCommMask |
GetCommModemStatus | GetCommProperties | GetCommState | GetCommTimeouts |
GetDefaultCommConfigA | PurgeComm | SetCommBreak | SetCommConfig |
SetCommMask | SetCommState | SetCommTimeouts | SetDefaultCommConfigA |
SetupComm | TransmitCommChar | WaitCommEvent | AddAtomA |
AllocConsole | CreateConsoleScreenBuffer | ||
FillConsoleOutputAttribute | FillConsoleOutputCharacterA | FlushConsoleInputBuffer | FreeConsole |
GenerateConsoleCtrlEvent | GetConsoleCP | GetConsoleCursorInfo | GetConsoleMode |
GetConsoleOutputCP | GetConsoleScreenBufferInfo | GetConsoleTitleA | GetLargestConsoleWindowSize |
GetNumberOfConsoleInputEvents | GetNumberOfConsoleMouseButtons | GetStdHandle | PeekConsoleInputA |
ReadConsoleA | ReadConsoleInputA | ReadConsoleOutputA | ReadConsoleOutputAttribute |
ReadConsoleOutputCharacterA | ScrollConsoleScreenBufferA | SetConsoleActiveScreenBuffer | SetConsoleCP |
SetConsoleCtrlHandler | SetConsoleCursorInfo | SetConsoleCursorPosition | SetConsoleMode |
SetConsoleOutputCP | SetConsoleScreenBufferSize | SetConsoleTextAttribute | SetConsoleTitleA |
SetConsoleWindowInfo | WriteConsoleA | WriteConsoleInputA | WriteConsoleOutputA |
WriteConsoleOutputAttribute | WriteConsoleOutputCharacterA | ContinueDebugEvent | DebugActiveProcess |
DebugBreak | FatalExit | FlushInstructionCache | GetThreadContext |
GetThreadSelectorEntry | IsDebuggerPresent | OutputDebugStringA | ReadProcessMemory |
SetThreadContext | WaitForDebugEvent | WriteProcessMemory | Beep |
FatalAppExitA | GetLastError | RaiseException | SetErrorMode |
SetLastError | SetUnhandledExceptionFilter | UnhandledExceptionFilter | AssignProcessToJobObject |
ConvertThreadToFiber | CreateFiber | CreateJobObjectA | CreateProcessA |
CreateRemoteThread | CreateThread | DeleteFiber | DisableThreadLibraryCalls |
ExitProcess | ExitThread | FreeEnvironmentStringsA | FreeLibrary |
FreeLibraryAndExitThread | GetCommandLine | GetCurrentFiber | GetCurrentProcess |
GetCurrentProcessId | GetCurrentThread | GetCurrentThreadId | GetEnvironmentStringsA |
GetEnvironmentVariableA | GetExitCodeProcess | GetExitCodeThread | GetFiberData |
ImpersonateLoggedOnUser | GetModuleFileNameA | GetModuleHandleA | GetPriorityClass |
GetProcAddress | GetProcessAffinityMask | GetProcessPriorityBoost | GetProcessShutdownParameters |
GetProcessTimes | GetProcessVersion | GetProcessWorkingSetSize | GetStartupInfoA |
GetThreadPriority | GetThreadPriorityBoost | GetThreadTimes | LoadLibraryA |
LoadLibraryExA | LoadModule | OpenJobObjectA | OpenProcess |
QueryInformationJobObject | ResumeThread | SetEnvironmentVariableA | SetInformationJobObject |
SetPriorityClass | SetProcessAffinityMask | SetProcessPriorityBoost | SetProcessShutdownParameters |
SetProcessWorkingSetSize | SetThreadAffinityMask | SetThreadIdealProcessor | SetThreadPriority |
SetThreadPriorityBoost | Sleep | SleepEx | SuspendThread |
SwitchToFiber | SwitchToThread | TerminateJobObject | TerminateProcess |
TerminateThread | TlsAlloc | TlsFree | TlsGetValue |
TlsSetValue | UserHandleGrantAccess | AreFileApisANSI | CloseRaw |
RegQueryMultipleValuesA | CancelIo | CopyFileA | CopyFileExA |
CreateDirectoryA | CreateDirectoryExA | CreateFileA | CreateHardLinkA |
CreateIoCompletionPort | DecryptFileA | DefineDosDeviceA | DeleteFileA |
EncryptFileA | FindClose | FindCloseChangeNotification | FindFirstChangeNotificationA |
FindFirstFileA | FindFirstFileExA | FindNextChangeNotification | FindNextFileA |
FlushFileBuffers | GetBinaryTypeA | GetCompressedFileSizeA | GetCurrentDirectoryA |
GetDiskFreeSpaceA | GetDiskFreeSpaceExA | GetDriveTypeA | GetFileAttributesA |
GetFileAttributesExA | GetFileInformationByHandle | GetFileSize | GetFileType |
GetFullPathNameA | GetLogicalDrives | GetLogicalDriveStringsA | GetLongPathNameA |
GetQueuedCompletionStatus | GetShortPathNameA | GetTempFileNameA | GetTempPathA |
GetVolumeInformationA | LockFile | LockFileEx | MoveFileA |
MoveFileExA | MoveFileWithProgressA | OpenRawA | PostQueuedCompletionStatus |
QueryDosDeviceA | ReadDirectoryChangesW | ReadFile | ReadFileEx |
ReadFileScatter | ReadRaw | RemoveDirectoryA | SearchPathA |
SetCurrentDirectoryA | SetEndOfFile | SetFileApisToANSI | SetFileApisToOEM |
SetFileAttributesA | SetFilePointer | SetStdHandle | SetVolumeLabelA |
UnlockFile | UnlockFileEx | WriteFile | WriteFileEx |
WriteFileGather | WriteRaw | VerLanguageNameA | SetThreadExecutionState |
CloseHandle | DuplicateHandle | GetHandleInformation | SetHandleInformation |
CancelDeviceWakeupRequest | GetDevicePowerState | GetSystemPowerStatus | IsSystemResumeAutomatic |
RequestDeviceWakeup | RequestWakeupLatency | SetMessageWaitingIndicator | SetSystemPowerState |
DeviceIoControl | CallNamedPipeA | ||
ConnectNamedPipe | CreateFileMappingA | CreateMailslotA | CreateNamedPipeA |
CreatePipe | DisconnectNamedPipe | FlushViewOfFile | GetMailslotInfo |
GetNamedPipeHandleStateA | GetNamedPipeInfo | MapViewOfFile | MapViewOfFileEx |
OpenFileMappingA | PeekNamedPipe | SetMailslotInfo | SetNamedPipeHandleState |
TransactNamedPipe | UnmapViewOfFile | WaitNamedPipeA | MulDiv |
GetProcessHeap | GetProcessHeaps | GlobalAlloc | GlobalFlags |
GlobalFree | GlobalHandle | GlobalLock | GlobalMemoryStatus |
GlobalReAlloc | GlobalSize | GlobalUnlock | HeapAlloc |
HeapCompact | HeapCreate | HeapDestroy | HeapFree |
HeapLock | HeapReAlloc | HeapSize | HeapUnlock |
HeapValidate | HeapWalk | IsBadCodePtr | IsBadReadPtr |
IsBadStringPtrA | IsBadWritePtr | LocalAlloc | LocalFlags |
LocalFree | LocalHandle | LocalLock | LocalReAlloc |
LocalSize | LocalUnlock | VirtualAlloc | VirtualAllocEx |
VirtualFree | VirtualFreeEx | VirtualLock | VirtualProtect |
VirtualProtectEx | VirtualQuery | VirtualQueryEx | VirtualUnlock |
ExpandEnvironmentStringsA | IsValidCodePage | IsValidLocale | LCMapStringA |
lstrcmpA | lstrcmpiA | lstrcpyA | lstrcpynA |
lstrlen | lstrcatA | SetLocaleInfoA | SetThreadLocale |
IsDBCSLeadByte | CompareStringA | ConvertDefaultLocale | |
EnumCalendarInfoA | EnumCalendarInfoExA | EnumDateFormatsA | EnumSystemCodePagesA |
EnumSystemLocalesA | EnumTimeFormatsA | FoldStringA | FormatMessageA |
GetACP | GetCPInfo | GetCPInfoExA | GetCurrencyFormatA |
GetDateFormatA | GetLocaleInfoA | GetNumberFormatA | GetOEMCP |
GetStringTypeA | GetStringTypeExA | GetStringTypeW | GetSystemDefaultLangID |
GetSystemDefaultLCID | GetThreadLocale | GetTimeFormatA | GetUserDefaultLangID |
GetUserDefaultLCID | LoadResource | SizeofResource | UpdateResourceA |
LockResource | BeginUpdateResourceA | FindResource | FindResourceEx |
EndUpdateResourceA | EnumResourceLanguages | EnumResourceNames | EnumResourceTypes |
WideCharToMultiByte | IsDBCSLeadByteEx | MultiByteToWideChar | OpenEventA |
OpenMutexA | OpenSemaphoreA | OpenWaitableTimerA | PulseEvent |
QueueUserAPC | ReleaseMutex | ReleaseSemaphore | ResetEvent |
SetCriticalSectionSpinCount | SetEvent | SetWaitableTimer | SignalObjectAndWait |
TryEnterCriticalSection | WaitForMultipleObjects | WaitForMultipleObjectsEx | WaitForSingleObject |
WaitForSingleObjectEx | BackupRead | BackupSeek | BackupWrite |
CreateTapePartition | EraseTape | GetTapeParameters | GetTapePosition |
GetTapeStatus | PrepareTape | SetTapeParameters | SetTapePosition |
WriteTapemark | CompareFileTime | DosDateTimeToFileTime | FileTimeToDosDateTime |
FileTimeToLocalFileTime | FileTimeToSystemTime | GetFileTime | GetLocalTime |
GetSystemTime | GetSystemTimeAdjustment | GetSystemTimeAsFileTime | GetTickCount |
GetTimeZoneInformation | LocalFileTimeToFileTime | SetFileTime | SetLocalTime |
SetSystemTime | SetSystemTimeAdjustment | SetTimeZoneInformation | SystemTimeToFileTime |
GetComputerNameA | SystemTimeToTzSpecificLocalTime | CreateToolhelp32Snapshot | Heap32First |
Heap32ListFirst | Heap32ListNext | Heap32Next | Module32First |
Module32Next | Process32First | Process32Next | Thread32First |
Thread32Next | Toolhelp32ReadProcessMemory | GetSystemDirectoryA | GetSystemInfo |
CancelWaitableTimer | CreateEventA | CreateMutexA | LeaveCriticalSection |
CreateSemaphoreA | CreateWaitableTimerA | DeleteCriticalSection | EnterCriticalSection |
GetOverlappedResult | InitializeCriticalSection | InitializeCriticalSectionAndSpinCount | InterlockedCompareExchange |
InterlockedDecrement | InterlockedExchange | InterlockedExchangeAdd | InterlockedIncrement |
GetVersionExA | GetWindowsDirectoryA | IsProcessorFeaturePresent | SetComputerNameA |
QueryPerformanceCounter | QueryPerformanceFrequency |
Functions in lz32.dll:
GetExpandedNameA | LZClose | LZCopy | LZInit |
LZOpenFileA | LZRead | LZSeek |
Functions in advapi32.dll:
BackupEventLogA | ClearEventLogA | CloseEventLog | DeregisterEventSource |
GetNumberOfEventLogRecords | GetOldestEventLogRecord | NotifyChangeEventLog | OpenBackupEventLogA |
OpenEventLogA | ReadEventLogA | RegisterEventSourceA | ReportEventA |
RegCloseKey | RegConnectRegistryA | RegCreateKeyA | RegCreateKeyExA |
RegDeleteKeyA | RegDeleteValueA | RegEnumKeyA | RegEnumKeyExA |
RegEnumValueA | RegFlushKey | RegLoadKeyA | RegNotifyChangeKeyValue |
RegOpenKeyA | RegOpenKeyExA | RegQueryInfoKeyA | ImpersonateNamedPipeClient |
ImpersonateSelf | InitializeAcl | InitializeSecurityDescriptor | InitializeSid |
IsTokenRestricted | IsValidAcl | IsValidSecurityDescriptor | IsValidSid |
LogonUserA | LookupAccountNameA | LookupAccountSidA | LookupPrivilegeDisplayNameA |
LookupPrivilegeNameA | LookupPrivilegeValueA | LookupSecurityDescriptorPartsA | MakeAbsoluteSD |
MakeSelfRelativeSD | MapGenericMask | ObjectCloseAuditAlarmA | ObjectDeleteAuditAlarmA |
ObjectOpenAuditAlarmA | ObjectPrivilegeAuditAlarmA | OpenProcessToken | OpenThreadToken |
PrivilegeCheck | PrivilegedServiceAuditAlarmA | QueryServiceObjectSecurity | RegGetKeySecurity |
RegSetKeySecurity | RevertToSelf | SetAclInformation | SetEntriesInAccessListA |
SetEntriesInAclA | SetEntriesInAuditListA | SetFileSecurityA | SetKernelObjectSecurity |
SetNamedSecurityInfoA | SetNamedSecurityInfoExA | SetPrivateObjectSecurity | SetPrivateObjectSecurityEx |
SetSecurityDescriptorControl | SetSecurityDescriptorDacl | SetSecurityDescriptorGroup | SetSecurityDescriptorOwner |
SetSecurityDescriptorSacl | SetSecurityInfo | SetSecurityInfoExA | SetServiceObjectSecurity |
SetThreadToken | SetTokenInformation | CreateProcessAsUserA | GetCurrentHwProfileA |
ChangeServiceConfigA | ChangeServiceConfig2A | CloseServiceHandle | ControlService |
CreateServiceA | DeleteService | EnumDependentServicesA | EnumServicesStatusA |
GetServiceDisplayNameA | GetServiceKeyNameA | LockServiceDatabase | NotifyBootConfigStatus |
OpenSCManagerA | OpenServiceA | QueryServiceConfigA | QueryServiceConfig2A |
QueryServiceLockStatusA | QueryServiceStatus | RegisterServiceCtrlHandlerA | SetServiceBits |
SetServiceStatus | StartServiceA | StartServiceCtrlDispatcherA | UnlockServiceDatabase |
AbortSystemShutdownA | InitiateSystemShutdownA | IsTextUnicode | TrusteeAccessToObjectA |
RegQueryValueA | RegQueryValueExA | RegReplaceKeyA | RegRestoreKeyA |
RegSaveKeyA | RegSetValueA | RegSetValueExA | RegUnLoadKeyA |
AccessCheck | AccessCheckAndAuditAlarmA | AccessCheckByType | AccessCheckByTypeAndAuditAlarmA |
AccessCheckByTypeResultList | AccessCheckByTypeResultListAndAuditAlarmA | AddAccessAllowedAce | AddAccessAllowedAceEx |
AddAccessAllowedObjectAce | AddAccessDeniedAce | AddAccessDeniedAceEx | AddAccessDeniedObjectAce |
AddAce | AddAuditAccessAce | AddAuditAccessAceEx | AddAuditAccessObjectAce |
AdjustTokenGroups | AdjustTokenPrivileges | AllocateAndInitializeSid | AllocateLocallyUniqueId |
AreAllAccessesGranted | AreAnyAccessesGranted | BuildExplicitAccessWithNameA | BuildSecurityDescriptorA |
BuildTrusteeWithNameA | BuildTrusteeWithSidA | CancelOverlappedAccess | CheckTokenMembership |
ConvertAccessToSecurityDescriptorA | ConvertSecurityDescriptorToAccessA | ConvertSecurityDescriptorToAccessNamedA | ConvertToAutoInheritPrivateObjectSecurity |
CopySid | CreatePrivateObjectSecurity | CreatePrivateObjectSecurityEx | CreateRestrictedToken |
DeleteAce | DestroyPrivateObjectSecurity | DuplicateToken | DuplicateTokenEx |
EqualPrefixSid | EqualSid | FindFirstFreeAce | FreeSid |
GetAce | GetAclInformation | GetAuditedPermissionsFromAclA | GetTrusteeTypeA |
GetEffectiveRightsFromAclA | GetExplicitEntriesFromAclA | GetFileSecurityA | GetKernelObjectSecurity |
GetLengthSid | GetNamedSecurityInfoA | GetNamedSecurityInfoExA | GetOverlappedAccessResults |
GetPrivateObjectSecurity | GetSecurityDescriptorControl | GetSecurityDescriptorDacl | GetSecurityDescriptorGroup |
GetSecurityDescriptorLength | GetSecurityDescriptorOwner | GetSecurityDescriptorSacl | GetSecurityInfo |
GetSecurityInfoExA | GetSidIdentifierAuthority | GetSidLengthRequired | GetSidSubAuthority |
GetSidSubAuthorityCount | GetTokenInformation | GetTrusteeFormA | GetTrusteeNameA |
GetUserNameA |
Functions in shell32.dll:
CommandLineToArgvW | ExtractAssociatedIconA | ExtractIconA | ExtractIconExA |
SHGetDataFromIDListA | SHGetDesktopFolder | SHGetFileInfoA | SHGetInstanceExplorer |
SHGetMalloc | SHGetPathFromIDListA | SHGetSpecialFolderLocation | SHFileOperationA |
SHLoadInProc | SHFreeNameMappings | FindExecutableA | DragAcceptFiles |
DragFinish | DragQueryFileA | DragQueryPoint | DuplicateIcon |
SHAddToRecentDocs | SHAppBarMessage | SHBrowseForFolderA | SHChangeNotify |
Shell_NotifyIconA | ShellAboutA | ShellExecuteA | ShellExecuteExA |
Functions in version.dll:
GetFileVersionInfoA | GetFileVersionInfoSizeA | VerFindFileA | VerInstallFileA |
VerQueryValueA |
Functions in imagehlp.dll:
FindDebugInfoFile | FindExecutableImage | GetImageConfigInformation | GetImageUnusedHeaderBytes |
GetTimestampForLoadedLibrary | ImageAddCertificate | ImageDirectoryEntryToData | ImageEnumerateCertificates |
ImageGetCertificateData | ImageGetCertificateHeader | ImageGetDigestStream | ImagehlpApiVersion |
ImagehlpApiVersionEx | ImageLoad | ImageNtHeader | ImageRemoveCertificate |
ImageRvaToSection | ImageRvaToVa | ImageUnload | MakeSureDirectoryPathExists |
MapAndLoad | MapDebugInformation | MapFileAndCheckSumA | ReBaseImage |
RemovePrivateCvSymbolic | RemoveRelocations | SearchTreeForFile | SetImageConfigInformation |
SplitSymbols | StackWalk | SymCleanup | SymEnumerateModules |
SymEnumerateSymbols | SymFunctionTableAccess | SymGetModuleBase | SymGetModuleInfo |
SymGetOptions | SymGetSearchPath | SymGetSymFromAddr | SymGetSymFromName |
SymGetSymNext | SymGetSymPrev | SymInitialize | SymLoadModule |
SymRegisterCallback | SymSetOptions | SymSetSearchPath | SymUnDName |
SymUnloadModule | UnDecorateSymbolName | UnMapAndLoad | UnmapDebugInformation |
UpdateDebugInfoFile | UpdateDebugInfoFileEx | ||
BindImage | BindImageEx | CheckSumMappedFile |
Functions in advapi.dll:
GetAccessPermissionsForObjectA |
Functions in lsapi32.dll:
LSEnumProviders | LSFreeHandle | LSGetMessage | |
LSQuery | LSRelease | LSRequest | LSUpdate |
Functions in mapi32.dll:
ACCELERATEABSDI | BuildDisplayTable | ChangeIdleRoutine | CheckParameters |
CheckParms | CloseIMsgSession | CreateIProp | CreateTable |
DeinitMapiUtil | DeregisterIdleRoutine | EnableIdleRoutine | FBadColumnSet |
FBadEntryList | FBadProp | FBadPropTag | FBadRestriction |
FBadRglpNameID | FBadRglpszW | FBadRow | FBadRowSet |
FBadSortOrderSet | FBinFromHex | FEqualNames | FPropCompareProp |
FPropContainsProp | FPropExists | FreePadrlist | FreeProws |
FtAddFt | FtgRegisterIdleRoutine | FtMulDw | FtMulDwDw |
FtNegFt | FtSubFt | GetAttribIMsgOnIStg | GetInstance |
HexFromBin | HrAddColumnsEx | HrAllocAdviseSink | HrComposeEID |
HrComposeMsgID | HrDecomposeEID | HrDecomposeMsgID | HrDispatchNotifications |
HrEntryIDFromSz | HrGetOneProp | HrIStorageFromStream | HrQueryAllRows |
HrSetOneProp | HrSzFromEntryID | HrThisThreadAdviseSink | HrValidateIPMSubtree |
LAUNCHWIZARDENTRY | LPropCompareProp | MAPIAdminProfiles | MAPIAllocateBuffer |
MAPIAllocateMore | MAPIDeinitIdle | MAPIFreeBuffer | MAPIGetDefaultMalloc |
MAPIInitialize | MAPIInitIdle | MAPILogonEx | MAPIOpenFormMgr |
MAPIOpenLocalFormContainer | MAPIUninitialize | MapStorageSCode | OpenIMsgOnIStg |
OpenIMsgSession | OpenStreamOnFile | OpenTnefStream | OpenTnefStreamEx |
PpropFindProp | PropCopyMore | RTFSync | ScBinFromHexBounded |
ScCopyNotifications | ScCopyProps | ScCountNotifications | ScCountProps |
ScCreateConversationIndex | ScDupPropset | ScInitMapiUtil | ScLocalPathFromUNC |
ScMAPIXFromCMC | ScMAPIXFromSMAPI | ScRelocNotifications | ScRelocProps |
ScUNCFromLocalPath | SetAttribIMsgOnIStg | SzFindCh | SzFindLastCh |
SzFindSz | UFromSz | UlAddRef | UlFromSzHex |
UlPropSize | UlRelease | UlValidateParameters | UlValidateParms |
ValidateParameters | ValidateParms | WrapCompressedRTFStream | WrapStoreEntryID |
Functions in msacm32.dll:
acmDriverAddA | acmDriverClose | acmDriverDetailsA | acmDriverEnum |
acmDriverID | acmDriverMessage | acmDriverOpen | acmDriverPriority |
acmDriverRemove | acmFilterChooseA | acmFilterDetailsA | acmFilterEnumA |
acmFilterTagDetailsA | acmFilterTagEnumA | acmFormatChooseA | acmFormatDetailsA |
acmFormatEnumA | acmFormatSuggest | acmFormatTagDetailsA | acmFormatTagEnumA |
acmGetVersion | acmMetrics | acmStreamClose | acmStreamConvert |
acmStreamMessage | acmStreamOpen | acmStreamPrepareHeader | acmStreamReset |
acmStreamSize | acmStreamUnprepareHeader |
Functions in winmm.dll:
auxGetDevCapsA | auxGetNumDevs | ||
auxGetVolume | auxOutMessage | auxSetVolume | CloseDriver |
DefDriverProc | DriverCallback | DrvGetModuleHandle | GetDriverModuleHandle |
joyGetDevCapsA | joyGetNumDevs | joyGetPos | joyGetPosEx |
joyGetThreshold | joyReleaseCapture | joySetCapture | joySetThreshold |
mciGetCreatorTask | mciGetDeviceIDA | mciGetErrorStringA | mciGetYieldProc |
mciSendCommandA | mciSendStringA | mciSetYieldProc | midiConnect |
midiDisconnect | midiInAddBuffer | midiInClose | midiInGetDevCapsA |
midiInGetErrorTextA | midiInGetID | midiInGetNumDevs | midiInMessage |
midiInOpen | midiInPrepareHeader | midiInReset | midiInStart |
midiInStop | midiInUnprepareHeader | midiOutCacheDrumPatches | midiOutCachePatches |
midiOutClose | midiOutGetDevCapsA | midiOutGetErrorTextA | midiOutGetID |
midiOutGetNumDevs | midiOutGetVolume | midiOutLongMsg | midiOutMessage |
midiOutOpen | midiOutPrepareHeader | midiOutReset | midiOutSetVolume |
midiOutShortMsg | midiOutUnprepareHeader | midiStreamClose | midiStreamOpen |
midiStreamOut | midiStreamPause | midiStreamPosition | midiStreamProperty |
midiStreamRestart | midiStreamStop | mixerClose | mixerGetControlDetailsA |
mixerGetDevCapsA | mixerGetID | mixerGetLineControlsA | mixerGetLineInfoA |
mixerGetNumDevs | mixerMessage | mixerOpen | mixerSetControlDetails |
mmioAdvance | mmioAscend | mmioClose | mmioCreateChunk |
mmioDescend | mmioFlush | mmioGetInfo | mmioInstallIOProcA |
mmioOpenA | mmioRead | mmioRenameA | mmioSeek |
mmioSendMessage | mmioSetBuffer | mmioSetInfo | mmioStringToFOURCCA |
mmioWrite | mmsystemGetVersion | OpenDriver | PlaySoundA |
SendDriverMessage | sndPlaySoundA | timeBeginPeriod | timeEndPeriod |
timeGetDevCaps | timeGetSystemTime | timeGetTime | timeKillEvent |
timeSetEvent | waveInAddBuffer | waveInClose | waveInGetDevCapsA |
waveInGetErrorTextA | waveInGetID | waveInGetNumDevs | waveInGetPosition |
waveInMessage | waveInOpen | waveInPrepareHeader | waveInReset |
waveInStart | waveInStop | waveInUnprepareHeader | waveOutBreakLoop |
waveOutClose | waveOutGetDevCapsA | waveOutGetErrorTextA | waveOutGetID |
waveOutGetNumDevs | waveOutGetPitch | waveOutGetPlaybackRate | waveOutGetPosition |
waveOutGetVolume | waveOutMessage | waveOutOpen | waveOutPause |
waveOutPrepareHeader | waveOutReset | waveOutRestart | waveOutSetPitch |
waveOutSetPlaybackRate | waveOutSetVolume | waveOutUnprepareHeader | waveOutWrite |
Functions in netapi32.dll:
DsValidateSubnetNameA | Netbios | I_BrowserDebugTrace | I_BrowserQueryOtherDomains |
I_BrowserQueryStatistics | I_BrowserResetNetlogonState | I_BrowserResetStatistics | I_BrowserServerEnum |
I_NetLogonControl | I_NetLogonControl2 | MultinetGetConnectionPerformance | NetAccessAdd |
NetAccessCheck | NetAccessDel | NetAccessEnum | NetAccessGetInfo |
NetAccessGetUserPerms | NetAccessSetInfo | NetAlertRaise | NetAlertRaiseEx |
NetApiBufferAllocate | NetApiBufferFree | NetApiBufferReallocate | NetApiBufferSize |
NetAuditClear | NetAuditRead | NetAuditWrite | NetConfigGet |
NetConfigGetAll | NetConfigSet | NetConnectionEnum | NetDfsAdd |
NetDfsEnum | NetDfsGetInfo | NetDfsRemove | NetDfsSetInfo |
NetErrorLogClear | NetErrorLogRead | NetErrorLogWrite | NetFileClose |
NetFileEnum | NetFileGetInfo | NetGetAnyDCName | NetGetDCName |
NetGetDisplayInformationIndex | NetGroupAdd | NetGroupAddUser | NetGroupDel |
NetGroupDelUser | NetGroupEnum | NetGroupGetInfo | NetGroupGetUsers |
NetGroupSetInfo | NetGroupSetUsers | NetHandleGetInfo | NetHandleSetInfo |
NetLocalGroupAdd | NetLocalGroupAddMember | NetLocalGroupAddMembers | NetLocalGroupDel |
NetLocalGroupDelMember | NetLocalGroupDelMembers | NetLocalGroupEnum | NetLocalGroupGetInfo |
NetLocalGroupGetMembers | NetLocalGroupSetInfo | NetLocalGroupSetMembers | NetMessageBufferSend |
NetMessageNameAdd | NetMessageNameDel | NetMessageNameEnum | NetMessageNameGetInfo |
NetQueryDisplayInformation | NetRemoteComputerSupports | NetRemoteTOD | NetReplExportDirAdd |
NetReplExportDirDel | NetReplExportDirEnum | NetReplExportDirGetInfo | NetReplExportDirLock |
NetReplExportDirSetInfo | NetReplExportDirUnlock | NetReplGetInfo | NetReplImportDirAdd |
NetReplImportDirDel | NetReplImportDirEnum | NetReplImportDirGetInfo | NetReplImportDirLock |
NetReplImportDirUnlock | NetReplSetInfo | NetScheduleJobAdd | NetScheduleJobDel |
NetScheduleJobEnum | NetScheduleJobGetInfo | NetServerDiskEnum | NetServerEnum |
NetServerGetInfo | NetServerSetInfo | NetServerTransportAdd | NetServerTransportDel |
NetServerTransportEnum | NetServiceControl | NetServiceEnum | NetServiceGetInfo |
NetServiceInstall | NetSessionDel | NetSessionEnum | NetSessionGetInfo |
NetShareAdd | NetShareCheck | NetShareDel | NetShareDelSticky |
NetShareEnum | NetShareEnumSticky | NetShareGetInfo | NetShareSetInfo |
NetStatisticsGet | NetStatisticsGet2 | NetUseAdd | NetUseDel |
NetUseEnum | NetUseGetInfo | NetUserAdd | NetUserChangePassword |
NetUserDel | NetUserEnum | NetUserGetGroups | NetUserGetInfo |
NetUserGetLocalGroups | NetUserModalsGet | NetUserModalsSet | NetUserSetGroups |
NetUserSetInfo | NetWkstaGetInfo | NetWkstaSetInfo | NetWkstaTransportAdd |
NetWkstaTransportDel | NetWkstaTransportEnum | NetWkstaUserEnum | NetWkstaUserGetInfo |
NetWkstaUserSetInfo | RxNetAccessAdd | RxNetAccessDel | RxNetAccessEnum |
RxNetAccessGetInfo | RxNetAccessGetUserPerms | RxNetAccessSetInfo | RxRemoteApi |
DsGetDcNameA | DsGetSiteNameA |
Functions in mpr.dll:
WNetAddConnectionA | |||
WNetAddConnection2A | WNetAddConnection3A | WNetCancelConnectionA | WNetCancelConnection2A |
WNetCloseEnum | WNetConnectionDialog | WNetConnectionDialog1A | WNetDisconnectDialog |
WNetDisconnectDialog1A | WNetEnumResourceA | WNetGetConnectionA | WNetGetLastErrorA |
WNetGetNetworkInformationA | WNetGetProviderNameA | WNetGetResourceInformationA | WNetGetResourceParentA |
WNetGetUniversalNameA | WNetGetUserA | WNetOpenEnumA | WNetUseConnectionA |
Functions in nddeapi.dll:
NDdeGetErrorStringA | NDdeGetShareSecurityA | NDdeGetTrustedShareA | NDdeIsValidAppTopicListA |
NDdeIsValidShareNameA | NDdeSetShareSecurityA | NDdeSetTrustedShareA | NDdeShareAddA |
NDdeShareDelA | NDdeShareEnumA | NDdeShareGetInfoA | NDdeShareSetInfoA |
NDdeTrustedShareEnumA |
Functions in dlcapi.dll:
AcsLan |
Functions in wsnmp32.dll:
SnmpCleanup | SnmpClose | SnmpContextToStr | SnmpOidToStr |
SnmpCountVbl | SnmpCreatePdu | SnmpCreateSession | SnmpCreateVbl |
SnmpDecodeMsg | SnmpDeleteVb | SnmpDuplicatePdu | SnmpDuplicateVbl |
SnmpEncodeMsg | SnmpEntityToStr | SnmpFreeContext | SnmpFreeDescriptor |
SnmpFreeEntity | SnmpFreePdu | SnmpFreeVbl | SnmpGetLastError |
SnmpGetPduData | SnmpGetRetransmitMode | SnmpGetRetry | SnmpGetTimeout |
SnmpGetTranslateMode | SnmpGetVb | SnmpStrToEntity | SnmpStrToOid |
SnmpOpen | SnmpRecvMsg | SnmpRegister | SnmpSendMsg |
SnmpSetPduData | SnmpSetRetransmitMode | SnmpSetRetry | SnmpSetTimeout |
SnmpSetTranslateMode | SnmpSetVb | SnmpStartup | SnmpStrToContext |
SnmpOidCompare | SnmpOidCopy |
Functions in mgmtapi.dll:
SnmpMgrClose | SnmpMgrGetTrap | SnmpMgrTrapListen | |
SnmpMgrOidToStr | SnmpMgrOpen | SnmpMgrRequest | SnmpMgrStrToOid |
Functions in snmpapi.dll:
SnmpSvcSetLogType | SnmpUtilAsnAnyCpy | SnmpUtilAsnAnyFree | SnmpUtilDbgPrint |
SnmpUtilMemAlloc | SnmpUtilMemFree | SnmpUtilMemReAlloc | SnmpUtilOctetsCmp |
SnmpUtilOctetsCpy | SnmpUtilOctetsFree | SnmpUtilOctetsNCmp | SnmpUtilOidAppend |
SnmpUtilOidCmp | SnmpUtilOidCpy | SnmpUtilOidFree | SnmpUtilOidNCmp |
SnmpUtilPrintAsnAny | SnmpUtilVarBindCpy | SnmpUtilVarBindFree | SnmpUtilVarBindListCpy |
SnmpUtilVarBindListFree | SnmpSvcGetUptime | SnmpSvcSetLogLevel |
Functions in imm32.dll:
ImmAssociateContextEx | ImmConfigureIMEA | ImmCreateContext | ImmDestroyContext |
ImmDisableIME | ImmEnumRegisterWordA | ImmEscapeA | ImmGetCandidateListA |
ImmGetCandidateListCountA | ImmGetCandidateWindow | ImmGetCompositionFontA | ImmGetCompositionStringA |
ImmGetCompositionWindow | ImmGetContext | ImmGetConversionListA | ImmGetConversionStatus |
ImmGetDefaultIMEWnd | ImmGetDescriptionA | ImmGetGuideLineA | ImmGetIMEFileNameA |
ImmGetImeMenuItemsA | ImmGetOpenStatus | ImmGetProperty | ImmGetRegisterWordStyleA |
ImmGetStatusWindowPos | ImmGetVirtualKey | ImmInstallIMEA | ImmIsIME |
ImmIsUIMessageA | ImmNotifyIME | ImmRegisterWordA | ImmReleaseContext |
ImmSetCandidateWindow | ImmSetCompositionFontA | ImmSetCompositionStringA | ImmSetCompositionWindow |
ImmSetConversionStatus | ImmSetOpenStatus | ImmSetStatusWindowPos | ImmSimulateHotKey |
ImmUnregisterWordA | ImmAssociateContext |
Functions in ole32.dll:
CoBuildVersion | CoCancelCall | CoIsHandlerConnected | CoIsOle1Class |
IsEqualGUID | OleBuildVersion | StgOpenStorage | StgOpenStorageOnILockBytes |
Functions in oleaut32.dll:
BstrFromVector | CreateDispTypeInfo | CreateErrorInfo | CreateStdDispatch |
CreateTypeLib | DispGetIDsOfNames | DispGetParam | DispInvoke |
DosDateTimeToVariantTime | GetActiveObject | GetErrorInfo | LHashValOfNameSys |
LoadRegTypeLib | LoadTypeLib | OaBuildVersion | QueryPathOfRegTypeLib |
RegisterActiveObject | RegisterTypeLib | RevokeActiveObject | SafeArrayAccessData |
SafeArrayAllocData | SafeArrayAllocDescriptor | SafeArrayCopy | SafeArrayCopyData |
SafeArrayCreate | SafeArrayCreateVector | SafeArrayDestroy | SafeArrayDestroyData |
SafeArrayDestroyDescriptor | SafeArrayGetDim | SafeArrayGetElement | SafeArrayGetElemsize |
SafeArrayGetLBound | SafeArrayGetUBound | SafeArrayLock | SafeArrayPtrOfIndex |
SafeArrayPutElement | SafeArrayRedim | SafeArrayUnaccessData | SafeArrayUnlock |
SetErrorInfo | SysAllocString | SysAllocStringByteLen | SysAllocStringLen |
SysFreeString | SysReAllocString | SysReAllocStringLen | SysStringByteLen |
SysStringLen | SystemTimeToVariantTime | VarBoolFromCy | VarBoolFromDate |
VarBoolFromDec | VarBoolFromDisp | VarBoolFromI1 | VarBoolFromI2 |
VarBoolFromI4 | VarBoolFromR4 | VarBoolFromR8 | VarBoolFromStr |
VarBoolFromUI1 | VarBoolFromUI2 | VarBoolFromUI4 | VarBstrFromBool |
VarBstrFromCy | VarBstrFromDate | VarBstrFromDisp | VarBstrFromI1 |
VarBstrFromI2 | VarBstrFromI4 | VarBstrFromR4 | VarBstrFromR8 |
VarBstrFromUI1 | VarBstrFromUI2 | VarBstrFromUI4 | VarCyFromBool |
VarCyFromDate | VarCyFromDec | VarCyFromDisp | VarCyFromI1 |
VarCyFromI2 | VarCyFromI4 | VarCyFromR4 | VarCyFromR8 |
VarCyFromStr | VarCyFromUI1 | VarCyFromUI2 | VarCyFromUI4 |
VarDateFromBool | VarDateFromCy | VarDateFromDec | VarDateFromDisp |
VarDateFromI1 | VarDateFromI2 | VarDateFromI4 | VarDateFromR4 |
VarDateFromR8 | VarDateFromStr | VarDateFromUdate | VarDateFromUI1 |
VarDateFromUI2 | VarDateFromUI4 | VarDecFromBool | VarDecFromCy |
VarDecFromDate | VarDecFromDisp | VarDecFromI1 | VarDecFromI2 |
VarDecFromI4 | VarDecFromR4 | VarDecFromR8 | VarDecFromStr |
VarDecFromUI1 | VarDecFromUI2 | VarDecFromUI4 | VarI1FromBool |
VarI1FromCy | VarI1FromDate | VarI1FromDec | VarI1FromDisp |
VarI1FromI2 | VarI1FromI4 | VarI1FromR4 | VarI1FromR8 |
VarI1FromStr | VarI1FromUI1 | VarI1FromUI2 | VarI1FromUI4 |
VarI2FromBool | VarI2FromCy | VarI2FromDate | VarI2FromDec |
VarI2FromDisp | VarI2FromI1 | VarI2FromI4 | VarI2FromR4 |
VarI2FromR8 | VarI2FromStr | VarI2FromUI1 | VarI2FromUI2 |
VarI2FromUI4 | VarI4FromBool | VarI4FromCy | VarI4FromDate |
VarI4FromDec | VarI4FromDisp | VarI4FromI1 | VarI4FromI2 |
VarI4FromR4 | VarI4FromR8 | VarI4FromStr | VarI4FromUI1 |
VarI4FromUI2 | VarI4FromUI4 | VariantChangeType | VariantChangeTypeEx |
VariantClear | VariantCopy | VariantCopyInd | VariantInit |
VariantTimeToDosDateTime | VariantTimeToSystemTime | VarNumFromParseNum | VarParseNumFromStr |
VarR4FromBool | VarR4FromCy | VarR4FromDate | VarR4FromDec |
VarR4FromDisp | VarR4FromI1 | VarR4FromI2 | VarR4FromI4 |
VarR4FromR8 | VarR4FromStr | VarR4FromUI1 | VarR4FromUI2 |
VarR4FromUI4 | VarR8FromBool | VarR8FromCy | VarR8FromDate |
VarR8FromDec | VarR8FromDisp | VarR8FromI1 | VarR8FromI2 |
VarR8FromI4 | VarR8FromR4 | VarR8FromStr | VarR8FromUI1 |
VarR8FromUI2 | VarR8FromUI4 | VarUdateFromDate | VarUI1FromBool |
VarUI1FromCy | VarUI1FromDate | VarUI1FromDec | VarUI1FromDisp |
VarUI1FromI1 | VarUI1FromI2 | VarUI1FromI4 | VarUI1FromR4 |
VarUI1FromR8 | VarUI1FromStr | VarUI1FromUI2 | VarUI1FromUI4 |
VarUI2FromBool | VarUI2FromCy | VarUI2FromDate | VarUI2FromDec |
VarUI2FromDisp | VarUI2FromI1 | VarUI2FromI2 | VarUI2FromI4 |
VarUI2FromR4 | VarUI2FromR8 | VarUI2FromStr | VarUI2FromUI1 |
VarUI2FromUI4 | VarUI4FromBool | VarUI4FromCy | VarUI4FromDate |
VarUI4FromDec | VarUI4FromDisp | VarUI4FromI1 | VarUI4FromI2 |
VarUI4FromI4 | VarUI4FromR4 | VarUI4FromR8 | VarUI4FromStr |
VarUI4FromUI1 | VarUI4FromUI2 | VectorFromBstr |
Functions in opengl32.dll:
glBegin | glBitmap | glBlendFunc | glCallList |
glCallLists | glClear | glClearAccum | glClearColor |
glClearDepth | glClearIndex | glClearStencil | glClipPlane |
glColor3b | glColor3bv | glColor3d | glColor3dv |
glColor3f | glColor3fv | glColor3i | glColor3iv |
glColor3s | glColor3sv | glColor3ub | glColor3ubv |
glColor3ui | glColor3uiv | glColor3us | glColor3usv |
glColor4b | glColor4bv | glColor4d | glColor4dv |
glColor4f | glColor4fv | glColor4i | glColor4iv |
glColor4s | glColor4sv | glColor4ub | glColor4ubv |
glColor4ui | glColor4uiv | glColor4us | glColor4usv |
glColorMask | glColorMaterial | glCopyPixels | glCullFace |
glDeleteLists | glDepthFunc | glDepthMask | glDepthRange |
glDisable | glDrawBuffer | glDrawPixels | glEdgeFlag |
glEdgeFlagv | glEnable | glEnd | glEndList |
glEvalCoord1d | glEvalCoord1dv | glEvalCoord1f | glEvalCoord1fv |
glEvalCoord2d | glEvalCoord2dv | glEvalCoord2f | glEvalCoord2fv |
glEvalMesh1 | glEvalMesh2 | glEvalPoint1 | glEvalPoint2 |
glFeedbackBuffer | glFinish | glFlush | glFogf |
glFogfv | glFogi | glFogiv | glFrontFace |
glFrustum | glGenLists | glGetBooleanv | glGetClipPlane |
glGetDoublev | glGetError | glGetFloatv | glGetIntegerv |
glGetLightfv | glGetLightiv | glGetMapdv | glGetMapfv |
glGetMapiv | glGetMaterialfv | glGetMaterialiv | glGetPixelMapfv |
glGetPixelMapuiv | glGetPixelMapusv | glGetPolygonStipple | glGetString |
glGetTexEnvfv | glGetTexEnviv | glGetTexGendv | glGetTexGenfv |
glGetTexGeniv | glGetTexImage | glGetTexLevelParameterfv | glGetTexLevelParameteriv |
glGetTexParameterfv | glGetTexParameteriv | glHint | glIndexd |
glIndexdv | glIndexf | glIndexfv | glIndexi |
glIndexiv | glIndexMask | glIndexs | glIndexsv |
glInitNames | glIsEnabled | glIsList | glLightf |
glLightfv | glLighti | glLightiv | glLightModelf |
glLightModelfv | glLightModeli | glLightModeliv | glLineStipple |
glLineWidth | glListBase | glLoadIdentity | glLoadMatrixd |
glLoadMatrixf | glLoadName | glLogicOp | glMap1d |
glMap1f | glMap2d | glMap2f | glMapGrid1d |
glMapGrid1f | glMapGrid2d | glMapGrid2f | glMaterialf |
glMaterialfv | glMateriali | glMaterialiv | glMatrixMode |
glMultMatrixd | glMultMatrixf | glNewList | glNormal3b |
glNormal3bv | glNormal3d | glNormal3dv | glNormal3f |
glNormal3fv | glNormal3i | glNormal3iv | glNormal3s |
glNormal3sv | glOrtho | glPassThrough | glPixelMapfv |
glPixelMapuiv | glPixelMapusv | glPixelStoref | glPixelStorei |
glPixelTransferf | glPixelTransferi | glPixelZoom | glPointSize |
glPolygonMode | glPolygonStipple | glPopAttrib | glPopMatrix |
glPopName | glPushAttrib | glPushMatrix | glPushName |
glRasterPos2d | glRasterPos2dv | glRasterPos2f | glRasterPos2fv |
glRasterPos2i | glRasterPos2iv | glRasterPos2s | glRasterPos2sv |
glRasterPos3d | glRasterPos3dv | glRasterPos3f | glRasterPos3fv |
glRasterPos3i | glRasterPos3iv | glRasterPos3s | glRasterPos3sv |
glRasterPos4d | glRasterPos4dv | glRasterPos4f | glRasterPos4fv |
glRasterPos4i | glRasterPos4iv | glRasterPos4s | glRasterPos4sv |
glReadBuffer | glReadPixels | glRectd | glRectdv |
glRectf | glRectfv | glRecti | glRectiv |
glRects | glRectsv | glRenderMode | glRotated |
glRotatef | glScaled | glScalef | glScissor |
glSelectBuffer | glShadeModel | glStencilFunc | glStencilMask |
glStencilOp | glTexCoord1d | glTexCoord1dv | glTexCoord1f |
glTexCoord1fv | glTexCoord1i | glTexCoord1iv | glTexCoord1s |
glTexCoord1sv | glTexCoord2d | glTexCoord2dv | glTexCoord2f |
glTexCoord2fv | glTexCoord2i | glTexCoord2iv | glTexCoord2s |
glTexCoord2sv | glTexCoord3d | glTexCoord3dv | glTexCoord3f |
glTexCoord3fv | glTexCoord3i | glTexCoord3iv | glTexCoord3s |
glTexCoord3sv | glTexCoord4d | glTexCoord4dv | glTexCoord4f |
glTexCoord4fv | glTexCoord4i | glTexCoord4iv | glTexCoord4s |
glTexCoord4sv | glTexEnvf | glTexEnvfv | glTexEnvi |
glTexEnviv | glTexGend | glTexGendv | glTexGenf |
glTexGenfv | glTexGeni | glTexGeniv | glTexImage1D |
glTexImage2D | glTexParameterf | glTexParameterfv | glTexParameteri |
glTexParameteriv | glTranslated | glTranslatef | glVertex2d |
glVertex2dv | glVertex2f | glVertex2fv | glVertex2i |
glVertex2iv | glVertex2s | glVertex2sv | glVertex3d |
glVertex3dv | glVertex3f | glVertex3fv | glVertex3i |
glVertex3iv | glVertex3s | glVertex3sv | glVertex4d |
glVertex4dv | glVertex4f | glVertex4fv | glVertex4i |
glVertex4iv | glVertex4s | glVertex4sv | glViewport |
glAccum | glAlphaFunc | wglCopyContext | wglCreateContext |
wglCreateLayerContext | wglDeleteContext | wglDescribeLayerPlane | wglGetCurrentContext |
wglGetCurrentDC | wglGetLayerPaletteEntries | wglGetProcAddress | wglMakeCurrent |
wglRealizeLayerPalette | wglSetLayerPaletteEntries | wglShareLists | wglSwapLayerBuffers |
wglUseFontBitmapsA | wglUseFontOutlinesA | glAddSwapHintRectWIN | glArrayElement |
glColorPointerEXT | glDrawArraysEXT | glEdgeFlagPointerEXT | glGetPointervEXT |
glIndexPointEXT | glNormalPointerEXT | glTexCoordPointerEXT | glVertexPointerEXT |
SwapBuffers |
Functions in glu32.dll:
gluBeginCurve | gluBeginPolygon | gluBeginSurface | gluBeginTrim |
gluBuild1DMipmaps | gluBuild2DMipmaps | gluCylinder | gluDeleteNurbsRenderer |
gluDeleteQuadric | gluDeleteTess | gluDisk | gluEndCurve |
gluEndPolygon | gluEndSurface | gluEndTrim | gluErrorString |
gluErrorUnicodeStringEXT | gluGetNurbsProperty | gluGetString | gluGetTessProperty |
gluLoadSamplingMatrices | gluLookAt | gluNewNurbsRenderer | gluNewQuadric |
gluNewTess | gluNextContour | gluNurbsCallback | gluNurbsCurve |
gluNurbsProperty | gluNurbsSurface | gluOrtho2D | gluPartialDisk |
gluPerspective | gluPickMatrix | gluProject | gluPwlCurve |
gluQuadricCallback | gluQuadricDrawStyle | gluQuadricNormals | gluQuadricOrientation |
gluQuadricTexture | gluScaleImage | gluSphere | gluTessBeginContour |
gluTessBeginPolygon | gluTessCallback | gluTessEndContour | gluTessEndPolygon |
gluTessNormal | gluTessProperty | gluTessVertex | gluUnProject |
Functions in ws2_32.dll:
__WSAFDIsSet | accept | bind | closesocket |
connect | gethostbyaddr | gethostbyname | gethostname |
getprotobyname | getprotobynumber | getservbyname | getservbyport |
getsockopt | htonl | htons | inet_addr |
inet_ntoa | ioctlsocket | listen | ntohl |
ntohs | recv | recvfrom | select |
send | sendto | setsockopt | shutdown |
socket | WSANtohl | WSANtohs | WSAAccept |
WSAAddressToStringA | WSAAsyncGetHostByAddr | WSAAsyncGetHostByName | WSAAsyncGetProtoByName |
WSAAsyncGetProtoByNumber | WSAAsyncGetServByName | WSAAsyncGetServByPort | WSAAsyncSelect |
WSACancelAsyncRequest | WSACancelBlockingCall | WSACleanup | WSACloseEvent |
WSAConnect | WSACreateEvent | WSADuplicateSocket | WSAEnumNameSpaceProviders |
WSAEnumNetworkEvents | WSAEnumProtocols | WSAEventSelect | WSAGetLastError |
WSAGetOverlappedResult | WSAGetServiceClassInfo | WSAGetServiceClassNameByClassId | WSAHtonl |
WSAHtons | WSAInstallServiceClass | WSAIoctl | WSAIsBlocking |
WSAJoinLeaf | WSALookupServiceBeginA | WSALookupServiceEnd | WSALookupServiceNextA |
WSAProviderConfigChange | WSARecv | WSARecvDisconnect | WSARecvFrom |
WSAResetEvent | WSASend | WSASendDisconnect | WSASendTo |
WSASetBlockingHook | WSASetEvent | WSASetLastError | WSASetServiceA |
WSASocket | WSAStartup | WSAStringToAddressA | WSAUnhookBlockingHook |
WSAWaitForMultipleEvents | WSCDeinstallProvider | WSCEnableNSProvider | WSCEnumProtocols |
WSCGetProviderPath | WSCInstallNameSpace | WSCInstallProvider | WSCUnInstallNameSpace |
WSARemoveServiceClass | WSAGetQOSByName |
Functions in rasapi32.dll:
RasConnectionNotificationA | RasCreatePhonebookEntryA | RasDeleteEntryA | RasDialA |
RasEnumAutodialAddressesA | RasEnumConnectionsA | RasEnumDevicesA | RasEnumEntriesA |
RasGetAutodialAddressA | RasGetAutodialEnableA | RasGetAutodialParamA | RasGetConnectStatusA |
RasGetCountryInfoA | RasGetCredentialsA | RasGetEntryDialParamsA | RasGetEntryPropertiesA |
RasGetErrorStringA | RasGetProjectionInfoA | RasGetSubEntryHandleA | RasGetSubEntryPropertiesA |
RasSetAutodialAddressA | RasSetAutodialEnableA | RasSetAutodialParamA | RasSetCredentialsA |
RasSetEntryDialParamsA | RasSetEntryPropertiesA | RasSetSubEntryPropertiesA | RasValidateEntryNameA |
RasEditPhonebookEntryA | RasHangUpA | RasRenameEntryA |
Functions in rasdlg.dll:
RasDialDlgA | RasEntryDlgA | RasMonitorDlgA | RasPhonebookDlgA |
Functions in rassapi.dll:
RasAdminFreeBuffer | RasAdminGetErrorString | RasAdminGetUserAccountServer | RasAdminPortClearStatistics |
RasAdminPortDisconnect | RasAdminPortEnum | RasAdminPortGetInfo | RasAdminServerGetInfo |
RasAdminUserGetInfo | RasAdminUserSetInfo |
Functions in mprapi.dll:
MibEntryGet | MibEntryGetFirst | MibEntryGetNext | MibEntrySet |
MprAdminBufferFree | MprAdminConnectionClearStats | MprAdminConnectionEnum | MprAdminConnectionGetInfo |
MprAdminGetErrorString | MprAdminGetPDCServer | MprAdminInterfaceConnect | MprAdminInterfaceCreate |
MprAdminInterfaceDelete | MprAdminInterfaceDisconnect | MprAdminInterfaceEnum | MprAdminInterfaceGetHandle |
MprAdminInterfaceQueryUpdateResult | MprAdminInterfaceTransportAdd | MprAdminInterfaceTransportGetInfo | MprAdminInterfaceTransportRemove |
MprAdminInterfaceTransportSetInfo | MprAdminInterfaceUpdateRoutes | MprAdminIsServiceRunning | MprAdminMIBBufferFree |
MprAdminMIBEntryCreate | MprAdminMIBEntryDelete | MprAdminMIBEntryGet | MprAdminMIBEntryGetFirst |
MprAdminMIBEntryGetNext | MprAdminMIBEntrySet | MprAdminMIBServerConnect | MprAdminMIBServerDisconnect |
MprAdminPortClearStats | MprAdminPortDisconnect | MprAdminPortEnum | MprAdminPortGetInfo |
MprAdminPortReset | MprAdminServerConnect | MprAdminServerDisconnect | MprAdminServerGetInfo |
MprAdminTransportGetInfo | MprAdminTransportSetInfo | MprAdminUserGetInfo | MprAdminUserSetInfo |
MprConfigBufferFree | MprConfigInterfaceCreate | MprConfigInterfaceDelete | MprConfigInterfaceEnum |
MprConfigInterfaceGetHandle | MprConfigInterfaceGetInfo | MprConfigInterfaceSetInfo | MprConfigInterfaceTransportAdd |
MprConfigInterfaceTransportEnum | MprConfigInterfaceTransportGetHandle | MprConfigInterfaceTransportGetInfo | MprConfigInterfaceTransportRemove |
MprConfigInterfaceTransportSetInfo | MprConfigServerBackup | MprConfigServerConnect | MprConfigServerDisconnect |
MprConfigServerGetInfo | MprConfigServerRestore | MprConfigTransportCreate | MprConfigTransportDelete |
MprConfigTransportEnum | MprConfigTransportGetHandle | MprConfigTransportGetInfo | MprConfigTransportSetInfo |
MibEntryCreate | MibEntryDelete |
Functions in rtm.dll:
RtmAddRoute | RtmBlockDeleteRoutes | RtmCloseEnumerationHandle | RtmCreateEnumerationHandle |
RtmDeleteRoute | RtmDequeueRouteChangeMessage | RtmDeregisterClient | RtmEnumerateGetNextRoute |
RtmGetFirstRoute | RtmGetNetworkCount | RtmGetNextRoute | RtmGetRouteAge |
RtmIsRoute | RtmRegisterClient |
Functions in rtutils.dll:
TraceDeregisterA | TracePrintfA | TracePrintfExA | TracePutsA |
TracePutsExA | TraceRegisterA | TraceRegisterExA | TraceVprintfA |
TraceVprintfExA | TraceDumpA | TraceDumpExA |
Functions in rpcrt4.dll:
data_into_ndr | data_size_ndr | double_array_from_ndr | double_from_ndr |
enum_from_ndr | float_array_from_ndr | float_from_ndr | I_RpcAllocate |
I_RpcBindingCopy | I_RpcBindingInqDynamicEndpointA | I_RpcBindingInqTransportType | I_RpcBindingIsClientLocal |
I_RpcClearMutex | I_RpcDeleteMutex | I_RpcFree | I_RpcFreeBuffer |
I_RpcGetAssociationContext | I_RpcGetBuffer | I_RpcGetCurrentCallHandle | I_RpcIfInqTransferSyntaxes |
I_RpcMapWin32Status | I_RpcMonitorAssociation | I_RpcNsBindingSetEntryNameA | char_array_from_ndr |
RpcObjectSetInqFn | RpcObjectSetType | RpcStringBindingComposeA | RpcStringBindingParseA |
RpcStringFreeA | RpcTestCancel | RpcObjectInqType | RpcNsBindingInqEntryNameA |
char_from_ndr | data_from_ndr |
Functions in rpcns4.dll:
I_RpcNsGetBuffer | I_RpcNsRaiseException | I_RpcNsSendReceive | I_RpcReBindBuffer |
I_RpcRequestMutex | I_RpcSendReceive | I_RpcServerRegisterForwardFunction | I_RpcSetAssociationContext |
I_RpcSsDontSerializeContext | I_RpcStopMonitorAssociation | I_UuidCreate | long_array_from_ndr | /TR>
long_from_ndr | long_from_ndr_temp | MesBufferHandleReset | MesDecodeBufferHandleCreate |
MesDecodeIncrementalHandleCreate | MesEncodeDynBufferHandleCreate | MesEncodeFixedBufferHandleCreate | MesEncodeIncrementalHandleCreate |
MesHandleFree | MesIncrementalHandleReset | MesInqProcEncodingId | MIDL_wchar_strcpy |
MIDL_wchar_strlen | NDRCContextBinding | NDRCContextMarshall | NDRCContextUnmarshall |
NDRcopy | NDRSContextMarshall | NDRSContextUnmarshall | RpcBindingInqAuthClientA |
RpcBindingServerFromClient | RpcBindingSetAuthInfoA | RpcImpersonateClient | RpcMacSetYieldInfo |
RpcMgmtInqDefaultProtectLevel | RpcMgmtInqIfIds | RpcProtseqVectorFreeA | RpcRaiseException |
RpcRevertToSelf | RpcRevertToSelfEx | RpcServerInqBindings | RpcServerInqIf |
RpcServerListen | RpcServerRegisterAuthInfoA | RpcServerRegisterIf | RpcServerRegisterIfEx |
RpcServerUnregisterIf | RpcServerUseAllProtseqs | RpcServerUseAllProtseqsEx | RpcServerUseAllProtseqsIf |
RpcServerUseAllProtseqsIfEx | RpcServerUseProtseqA | RpcServerUseProtseqEpA | RpcServerUseProtseqEpExA |
RpcServerUseProtseqExA | RpcServerUseProtseqIfA | RpcServerUseProtseqIfExA | RpcSmAllocate |
RpcSmClientFree | RpcSmDestroyClientContext | RpcSmDisableAllocate | RpcSmEnableAllocate |
RpcSmFree | RpcSmGetThreadHandle | RpcSmSetClientAllocFree | RpcSmSetThreadHandle |
RpcSmSwapClientAllocFree | RpcSsAllocate | RpcSsDestroyClientContext | RpcSsDisableAllocate |
RpcSsDontSerializeContext | RpcSsEnableAllocate | RpcSsFree | RpcSsGetThreadHandle |
RpcSsSetClientAllocFree | RpcSsSetThreadHandle | RpcSsSwapClientAllocFree | RpcWinSetYieldInfo |
RpcWinSetYieldTimeout | short_array_from_ndr | short_from_ndr | short_from_ndr_temp |
tree_into_ndr | tree_peek_ndr | tree_size_ndr | UuidCompare |
UuidCreate | UuidCreateNil | UuidEqual | UuidFromStringA |
UuidHash | UuidIsNil | UuidToStringA | DceErrorInqTextA |
RpcBindingCopy | RpcBindingFree | RpcBindingFromStringBindingA | RpcBindingInqAuthInfoA |
RpcBindingInqObject | RpcBindingReset | RpcBindingSetObject | RpcBindingToStringBindingA |
RpcBindingVectorFree | RpcCancelThread | RpcEpRegisterA | RpcEpRegisterNoReplaceA |
RpcEpResolveBinding | RpcEpUnregister | RpcIfIdVectorFree | RpcIfInqId |
RpcMgmtEnableIdleCleanup | RpcMgmtEpEltInqBegin | RpcMgmtEpEltInqDone | RpcMgmtEpEltInqNextA |
RpcMgmtEpUnregister | RpcMgmtInqComTimeout | RpcMgmtInqServerPrincNameA | RpcMgmtInqStats |
RpcMgmtIsServerListening | RpcMgmtSetAuthorizationFn | RpcMgmtSetCancelTimeout | RpcMgmtSetComTimeout |
RpcMgmtSetServerStackSize | RpcMgmtStatsVectorFree | RpcMgmtStopServerListening | RpcMgmtWaitServerListen |
RpcNetworkInqProtseqsA | RpcNetworkIsProtseqValidA | I_RpcPauseExecution | |
RpcNsBindingExportA | RpcNsBindingImportBeginA | RpcNsBindingImportDone | RpcNsBindingImportNext |
RpcNsBindingLookupDone | RpcNsBindingLookupNext | RpcNsBindingSelect | RpcNsBindingUnexportA |
RpcNsEntryExpandNameA | RpcNsEntryObjectInqBeginA | RpcNsEntryObjectInqDone | RpcNsEntryObjectInqNext |
RpcNsGroupDeleteA | RpcNsGroupMbrAddA | RpcNsGroupMbrInqBeginA | RpcNsGroupMbrInqDone |
RpcNsGroupMbrInqNextA | RpcNsGroupMbrRemoveA | RpcNsMgmtBindingUnexportA | RpcNsMgmtEntryCreateA |
RpcNsMgmtEntryDeleteA | RpcNsMgmtEntryInqIfIdsA | RpcNsMgmtHandleSetExpAge | RpcNsMgmtInqExpAge |
RpcNsMgmtSetExpAge | RpcNsProfileDeleteA | RpcNsProfileEltAddA | RpcNsProfileEltInqBeginA |
RpcNsProfileEltInqDone | RpcNsProfileEltInqNextA | RpcNsProfileEltRemoveA | RpcNsBindingLookupBeginA |
Functions in setupapi.dll:
SetupAddToDiskSpaceListA | SetupAddToSourceListA | SetupCancelTemporarySourceList | SetupCloseFileQueue |
SetupCloseInfFile | SetupCommitFileQueueA | SetupCopyErrorA | SetupCreateDiskSpaceListA |
SetupDecompressOrCopyFileA | SetupDefaultQueueCallbackA | SetupDeleteErrorA | SetupDestroyDiskSpaceList |
SetupFindFirstLineA | SetupFindNextLine | SetupFindNextMatchLineA | SetupFreeSourceListA |
SetupGetBinaryField | SetupGetFieldCount | SetupGetFileCompressionInfoA | SetupGetInfFileListA |
SetupGetInflnformation | SetupGetIntField | SetupGetLineByIndexA | SetupGetLineCountA |
SetupGetLineTextA | SetupGetMultiSzFieldA | SetupGetSourceFileLocationA | SetupGetSourceFileSizeA |
SetupGetSourceInfoA | SetupGetStringFieldA | SetupGetTargetPathA | SetupInitDefaultQueueCallback |
SetupInitDefaultQueueCallbackEx | SetupInitializeFileLogA | SetupInstallFileA | SetupInstallFileExA |
SetupInstallFilesFromInfSectionA | SetupInstallFromInfSectionA | SetupInstallServicesFromInfSectionA | SetupIterateCabinetA |
SetupLogErrorA | SetupLogFileA | SetupOpenAppendInfFileA | SetupOpenFileQueue |
SetupOpenInfFileA | SetupOpenMasterInf | SetupPromptForDiskA | SetupPromptReboot |
SetupQueryDrivesInDiskSpaceListA | SetupQueryFileLogA | SetupQueryInfFileInformationA | SetupQueryInfVersionInformationA |
SetupQuerySourceListA | SetupQuerySpaceRequiredOnDriveA | SetupQueueCopyA | SetupQueueCopySectionA |
SetupQueueDefaultCopyA | SetupQueueDeleteA | SetupQueueDeleteSectionA | SetupQueueRenameA |
SetupQueueRenameSectionA | SetupRemoveFileLogEntryA | SetupRemoveFromDiskSpaceListA | SetupRemoveFromSourceListA |
SetupRemoveInstallSectionFromDiskSpaceListA | SetupRemoveSectionFromDiskSpaceListA | SetupRenameErrorA | SetupScanFileQueueA |
SetupSetDirectoryIdA | SetupSetPlatformPathOverrideA | SetupSetSourceListA | SetupTermDefaultQueueCallback |
SetupTerminateFileLog | SetupAddInstallSectionToDiskSpaceListA | SetupAddSectionToDiskSpaceListA |
Functions in scrnsave.dll:
DefScreenSaverProc | RegisterDialogClasses | ScreenSaverConfigureDialog | ScreenSaverProc |
Functions in shlwapi.dll:
SHDeleteEmptyKeyA | SHDeleteKeyA | SHDeleteValueA | SHEnumKeyExA |
SHEnumValueA | |||
SHGetValueA | SHOpenRegStreamA | SHQueryInfoKeyA | |
SHQueryValueExA | ChrCmpl | PathAddBackslashA | StrTrimA |
PathAddExtention | PathAppendA | PathBuildRootA | PathCanonicalizeA |
PathCombineA | PathCommonPrefixA | PathCompactPathA | PathCompactPathExA |
PathFileExistsA | PathFindExtensionA | PathFindFileNameA | PathFindNextComponentA |
PathFindOnPathA | PathGetArgsA | PathGetCharType | PathGetDriveNumberA |
PathIsContentTypeA | PathIsDirectoryA | PathIsFileSpecA | PathIsHTMLFileA |
PathIsPrefixA | PathIsRelativeA | PathIsRootA | PathIsSameRootA |
PathIsSystemFolderA | PathIsUNCA | PathIsUNCServerA | PathIsUNCServerShareA |
PathIsURLA | PathMakePrettyA | PathMakeSystemFolderA | PathMatchSpecA |
PathParseIconLocationA | PathQuoteSpacesA | PathRelativePathToA | PathRemoveArgsA |
PathRemoveBackslashA | PathRemoveBlanksA | PathRemoveExtensionA | PathRemoveFileSpecA |
PathRenameExtensionA | PathSearchAndQualifyA | PathSetDlgItemPathA | PathSkipRootA |
PathStripPathA | PathStripToRootA | PathUnmakeSystemFolderA | PathUnquoteSpacesA |
SHRegCreateUSKeyA | SHRegDeleteEmptyUSKeyA | SHRegDeleteUSValueA | SHRegEnumUSKeyA |
SHRegEnumUSValueA | SHRegGetUSValueA | SHRegOpenUSKeyA | SHRegQueryInfoUSKeyA |
SHRegQueryUSValueA | SHRegSetUSValueA | SHRegWriteUSValueA | SHSetValueA |
StrChrA | StrChrlA | StrCmpNA | StrCmpNIA |
StrCpyN | StrCSpnA | StrCSpnl | StrDupA |
StrFormatByteSizeA | StrFromTimeIntervalA | StrIsIntlEqualA | StrNCatA |
StrPBrkA | StrRChrA | StrRStrlA | StrSpnA | StrStrA | StrStrlA | StrToIntA | StrToIntExA |
Functions in winscard.dll:
SCardCancel | SCardConnectA | SCardControl | SCardDisconnect |
SCardEndTransaction | SCardEstablishContext | SCardForgetCardTypeA | SCardForgetReaderA |
SCardForgetReaderGroupA | SCardFreeMemory | SCardGetAttrib | SCardGetProviderIdA |
SCardGetStatusChangeA | SCardIntroduceCardTypeA | SCardIntroduceReaderA | SCardIntroduceReaderGroupA |
SCardListCardsA | SCardListInterfacesA | SCardListReaderGroupsA | SCardListReadersA |
SCardLocateCardsA | SCardReconnect | SCardReleaseContext | SCardRemoveReaderFromGroupA |
SCardSetAttrib | SCardState | SCardTransmit | SCardBeginTransaction |
SCardAddReaderToGroupA |
Functions in mswsock.dll:
AcceptEx | GetAcceptExSockaddrs | TransmitFile | WSARecvEx |
Functions in wsock32.dll:
EnumProtocolsA | GetAddressByNameA | GetNameByTypeA | getpeername |
GetServiceA | getsockname | GetTypeByNameA | SetServiceA |
Functions in tapi32.dll:
lineAccept | lineAddProviderA | lineAddToConference | lineAgentSpecific |
lineAnswer | lineBlindTransferA | lineClose | lineCompleteCall |
lineCompleteTransfer | lineConfigDialogA | lineConfigDialogEditA | lineConfigProvider |
lineDeallocateCall | lineDevSpecific | lineDevSpecificFeature | lineDialA |
lineDrop | lineForwardA | lineGatherDigitsA | lineGenerateDigitsA |
lineGenerateTone | lineGetAddressCapsA | lineGetAddressIDA | lineGetAddressStatusA |
lineGetAgentActivityListA | lineGetAgentCapsA | lineGetAgentGroupListA | lineGetAgentStatusA |
lineGetAppPriorityA | lineGetCallInfoA | lineGetCallStatus | lineGetConfRelatedCalls |
lineGetCountryA | lineGetDevCapsA | lineGetDevConfigA | lineGetIconA |
lineGetIDA | lineGetLineDevStatusA | lineGetMessage | lineGetNewCalls |
lineGetNumRings | lineGetProviderListA | lineGetRequestA | lineGetStatusMessages |
lineGetTranslateCapsA | lineHandoffA | lineHold | lineInitialize |
lineInitializeExA | lineMakeCallA | lineMonitorDigits | lineMonitorMedia |
lineMonitorTones | lineNegotiateAPIVersion | lineNegotiateExtVersion | lineOpenA |
lineParkA | linePickupA | linePrepareAddToConferenceA | lineProxyMessage |
lineProxyResponse | lineRedirectA | lineRegisterRequestRecipient | lineReleaseUserUserInfo |
lineRemoveFromConference | lineRemoveProvider | lineSecureCall | lineSendUserUserInfo |
lineSetAgentActivity | lineSetAgentGroup | lineSetAgentState | lineSetAppPriorityA |
lineSetAppSpecific | lineSetCallData | lineSetCallParams | lineSetCallPrivilege |
lineSetCallQualityOfService | lineSetCallTreatment | lineSetCurrentLocation | lineSetDevConfigA |
lineSetLineDevStatus | lineSetMediaControl | lineSetMediaMode | lineSetNumRings |
lineSetStatusMessages | lineSetTerminal | lineSetTollListA | lineSetupConferenceA |
lineSetupTransferA | lineShutdown | lineSwapHold | lineTranslateAddressA |
lineTranslateDialogA | lineUncompleteCall | lineUnhold | lineUnparkA |
phoneClose | phoneConfigDialogA | phoneDevSpecific | phoneGetButtonInfoA |
phoneGetData | phoneGetDevCapsA | phoneGetDisplay | phoneGetGain |
phoneGetHookSwitch | phoneGetIconA | phoneGetIDA | phoneGetLamp |
phoneGetMessage | phoneGetRing | phoneGetStatusA | phoneGetStatusMessages |
phoneGetVolume | phoneInitialize | phoneInitializeExA | phoneNegotiateAPIVersion |
phoneNegotiateExtVersion | phoneOpen | phoneSetButtonInfoA | phoneSetData |
phoneSetDisplay | phoneSetGain | phoneSetHookSwitch | phoneSetLamp |
phoneSetRing | phoneSetStatusMessages | phoneSetVolume | phoneShutdown |
tapiGetLocationInfoA | tapiRequestMakeCallA |
Functions in vfw32.dll:
AVIBuildFilterA | AVIClearClipboard | AVIFileAddRef | AVIFileCreateStreamA |
AVIFileEndRecord | AVIFileExit | AVIFileGetStream | AVIFileInfoA |
AVIFileInit | AVIFileOpenA | AVIFileReadData | AVIFileRelease |
AVIFileWriteData | AVIGetFromClipboard | AVIMakeCompressedStream | AVIMakeFileFromStreams |
AVIMakeStreamFromClipboard | AVIPutFileOnClipboard | AVISaveA | AVISaveOptions |
AVISaveOptionsFree | AVISaveVA | AVIStreamAddRef | AVIStreamBeginStreaming |
AVIStreamCreate | AVIStreamEndStreaming | AVIStreamFindSample | AVIStreamGetFrame |
AVIStreamGetFrameClose | AVIStreamGetFrameOpen | AVIStreamInfoA | AVIStreamLength |
AVIStreamOpenFromFileA | AVIStreamRead | AVIStreamReadData | AVIStreamReadFormat |
AVIStreamRelease | AVIStreamSampleToTime | AVIStreamSetFormat | AVIStreamStart |
AVIStreamTimeToSample | AVIStreamWrite | AVIStreamWriteData | capCreateCaptureWindowA |
capGetDriverDescriptionA | CreateEditableStream | DrawDibBegin | DrawDibChangePalette |
DrawDibClose | DrawDibDraw | DrawDibEnd | DrawDibGetBuffer |
DrawDibGetPalette | DrawDibOpen | DrawDibProfileDisplay | DrawDibRealize |
DrawDibSetPalette | DrawDibStart | DrawDibStop | DrawDibTime |
EditStreamClone | EditStreamCopy | EditStreamCut | EditStreamPaste |
EditStreamSetInfoA | EditStreamSetNameA | GetOpenFileNamePreviewA | GetSaveFileNamePreviewA |
ICClose | ICCompress | ICCompressorChoose | ICCompressorFree |
ICDecompress | ICDecompressEx | ICDecompressExBegin | ICDecompressExQuery |
ICDraw | ICDrawBegin | ICDrawSuggestFormat | ICGetDisplayFormat |
ICGetInfo | ICImageCompress | ICImageDecompress | ICInfo |
ICInstall | ICLocate | ICOpen | ICOpenFunction |
ICRemove | ICSendMessage | ICSeqCompressFrame | ICSeqCompressFrameEnd |
ICSeqCompressFrameStart | ICSetStatusProc | MCIWndCreateA | MCIWndRegisterClass |
Functions in wintrust.dll:
WinVerifyTrust |