Windows C Datatypes, and how to define them with FUNCDEF
C Datatype As an argument passed to a function As a field of a struct
ATOM16u16u
BOOL32u

The numeric value you pass must be either 1 (TRUE) or 0 (FALSE).

32u
BYTE8u8u
char

This is not the same as char *.

If the value is supposed to be a number, use 8. Otherwise for text, use charIf 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.

COLORREF32u32u
DWORD32u32u
int

This is not the same as int *.

3232
long

This is not the same as long *.

3232

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 PBOOL32u[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 PBYTE8u[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
LPCTSTRstr or str *str *
LPDWORD or PDWORD32u[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
LPTSTRstr 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 PWORD16u[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
PSZstr 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.

PUCHARchar[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
PUINT32u[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 *
PULONG32u[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 *
PUSHORT16u[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 *.

1616

If there is more than one short (ie, an array), then use 16[xxx]where xxx is the required number of numeric values.

TCHARcharchar

If there is more than one character (ie, a C array), then use char[xxx]where xxx is the required number of characters.

UINT32u32u
UCHARIf the value is supposed to be a number, use 8u. Otherwise for text, use charIf 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.

ULONG32u32u
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 charIf 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 *.

32u32u

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 *.

16u16u

If there is more than one short (ie, an array), then use 16u[xxx]where xxx is the required number of numeric values.

USHORT16u16u
WORD16u16u
void

This is not the same as void *

Only applicable to a function return. Omit the return typeNot applicable to struct
void *voidvoid

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:

BPCFreeMemoryBPCGetCurrentConnectionForDeviceBPCGetNewConnectionForDeviceBPCIndicateStatus
BPCListCountBPCListCreateBPCListDeleteBPCListGet
BPCListIsrGetBPCListIsrPopBPCListIsrPushBPCListIsrPut
BPCListIsrRemoveEntryBPCListPopBPCListPushBPCListPut
BPCListRemoveEntryBPCSetCurrentConnectionForDeviceBPCUpdateMpgConnectionFromDevice
FreeDFPFrameIndicateDFPFrameNsBPCAllocateNsGetDFPPhysicalBuffer
UnmapDFPFrame

Functions in Bdnapi.dll:

msbdnBridgeReportEventPacketBufferComplete

Functions in comctl32.dll:

CreateMappedBitmap
CreatePropertySheetPageACreateStatusWindowACreateToolbarExCreateUpDownControl
DestroyPropertySheetPageDrawInsertDrawStatusTextAFlatSB_EnableScrollBar
FlatSB_GetScrollInfoFlatSB_GetScrollPosFlatSB_GetScrollPropFlatSB_GetScrollRange
FlatSB_SetScrollInfoFlatSB_SetScrollPosFlatSB_SetScrollPropFlatSB_SetScrollRange
FlatSB_ShowScrollBarGetEffectiveClientRectImageList_AddImageList_AddMasked
ImageList_BeginDragImageList_CopyImageList_CreateImageList_Destroy
ImageList_DragEnterImageList_DragLeaveImageList_DragMoveImageList_DragShowNolock
ImageList_DrawImageList_DrawExImageList_DrawIndirectImageList_Duplicate
ImageList_EndDragImageList_GetBkColorImageList_GetDragImageImageList_GetIcon
ImageList_GetIconSizeImageList_GetImageCountImageList_GetImageInfoImageList_LoadImageA
ImageList_MergeImageList_ReadImageList_RemoveImageList_Replace
ImageList_ReplaceIconImageList_SetBkColorImageList_SetDragCursorImageImageList_SetIconSize
ImageList_SetImageCountImageList_SetOverlayImageImageList_WriteInitCommonControls
InitCommonControlsExInitializeFlatSBLBItemFromPtMakeDragList
MenuHelpPropertySheetAShowHideMenuCtlUninitializeFlatSB

Functions in comdlg32.dll:

ChooseColorChooseFontCommDlgExtendedErrorFindText
GetFileTitleGetOpenFileNameGetSaveFileName
PrintDlgReplaceText

Functions in commdlg32.dll:

PageSetupDlg

Functions in crypt32.dll:

CertAddCertificateContextToStoreCertAddCRLContextToStoreCertAddCTLContextToStore
CertAddEncodedCertificateToStoreCertAddEncodedCRLToStoreCertAddEncodedCTLToStore
CertAddSerializedElementToStoreCertAlgIdToOIDCertCloseStoreCertCompareCertificate
CertCompareCertificateNameCertCompareIntegerBlobCertComparePublicKeyInfoCertCreateCertificateContext
CertCreateCRLContextCertCreateCTLContextCertDeleteCertificateFromStoreCertDeleteCRLFromStore
CertDeleteCTLFromStoreCertDuplicateCertificateContextCertDuplicateCRLContextCertDuplicateCTLContext
CertDuplicateStoreCertEnumCertificateContextPropertiesCertEnumCertificatesInStoreCertEnumCRLContextProperties
CertEnumCTLContextPropertiesCertEnumCTLsInStoreCertFindAttributeCertFindCertificateInStore
CertFindCTLInStoreCertFindExtensionCertFindRDNAttrCertFindSubjectInCTL
CertFreeCertificateContextCertFreeCRLContextCertFreeCTLContextCertGetCertificateContextProperty
CertGetCRLContextPropertyCertGetCRLFromStoreCertGetCTLContextPropertyCertGetIntendedKeyUsage
CertGetIssuerCertificateFromStoreCertGetSubjectCertificateFromStoreCertIsRDNAttrsInCertificateNameCertNameToStrA
CertOIDToAlgIdCertOpenStoreCertOpenSystemStoreACertRDNValueToStrA
CertSaveStoreCertSerializeCertificateStoreElementCertSerializeCRLStoreElementCertSerializeCTLStoreElement
CertSetCertificateContextPropertyCertSetCRLContextPropertyCertSetCTLContextPropertyCertStrToNameA
CertVerifyCRLRevocationCertVerifyCRLTimeValidityCertVerifyCTLUsageCertVerifyRevocation
CertVerifySubjectCertificateContextCertVerifyTimeValidityCertVerifyValidityNestingCryptAcquireContextA
CryptCreateHashCryptDecodeMessageCryptDecodeObjectCryptDecrypt
CryptDecryptAndVerifyMessageSignatureCryptDecryptMessageCryptDeriveKeyCryptDestroyHash
CryptDestroyKeyCryptEncodeObjectCryptEncryptCryptEncryptMessage
CryptEnumOIDFunctionCryptExportKeyCryptExportPublicKeyInfoCryptExportPublicKeyInfoEx
CryptFreeOIDFunctionAddressCryptGenKeyCryptGenRandomCryptGetDefaultOIDDllList
CryptGetDefaultOIDFunctionAddressCryptGetHashParamCryptGetKeyParamCryptGetMessageCertificates
CryptGetMessageSignerCountCryptGetOIDFunctionAddressCryptGetOIDFunctionValueCryptGetProvParam
CryptGetUserKeyCryptHashCertificateCryptHashDataCryptHashMessage
CryptHashPublicKeyInfoCryptHashSessionKeyCryptHashToBeSignedCryptImportKey
CryptImportPublicKeyInfoCryptImportPublicKeyInfoExCryptInitOIDFunctionSetCryptInstallOIDFunctionAddress
CryptMsgCalculateEncodedLengthCryptMsgCloseCryptMsgControlCryptMsgCountersign
CryptMsgCountersignEncodedCryptMsgEncodeAndSignCTLCryptMsgGetAndVerifySignerCryptMsgGetParam
CryptMsgOpenToDecodeCryptMsgOpenToEncodeCryptMsgSignCTLCryptMsgUpdate
CryptMsgVerifyCountersignatureEncodedCryptRegisterDefaultOIDFunctionCryptRegisterOIDFunctionCryptReleaseContext
CryptSetHashParamCryptSetKeyParamCryptSetOIDFunctionValueCryptSetProviderA
CryptSetProvParamCryptSignAndEncodeCertificateCryptSignAndEncryptMessageCryptSignCertificate
CryptSignHashACryptSignMessageCryptUnregisterDefaultOIDFunctionCryptUnregisterOIDFunction
CryptVerifyCertificateSignatureCryptVerifyDetachedMessageHashCryptVerifyDetachedMessageSignatureCryptVerifyMessageHash
CryptVerifyMessageSignatureCryptVerifySignatureA

Functions in ddraw.dll:

DirectDrawCreateDirectDrawCreateClipperDirectDrawEnumerateDirectDrawEnumerateExA

Functions in dinput.dll:

DirectInputCreate

Functions in dsound.dll:

DirectSoundCaptureCreateDirectSoundCaptureEnumerateDirectSoundCreateDirectSoundEnumerate

Functions in dsetup.dll:

DirectXDeviceDriverSetupDirectXRegisterApplicationDirectXSetupDirectXSetupGetVersion
DirectXSetupSetCallbackDirectXUnRegisterApplication

Functions in gdi32.dll:

BitBltCreateBitmapCreateBitmapIndirect
CreateCompatibleBitmapCreateDIBitmapCreateDIBSectionExtFloodFill
GetBitmapDimensionExGetDIBColorTableGetDIBitsGetPixel
GetStretchBltModeMaskBltPatBltPlgBlt
SetBitmapDimensionExSetDIBColorTableSetDIBitsSetDIBitsToDevice
SetPixelSetPixelVSetStretchBltModeStretchBlt
StretchDIBitsCreateBrushIndirectCreateDIBPatternBrushPtCreateHatchBrush
CreatePatternBrushCreateSolidBrushGetBrushOrgExCancelDC
SetBrushOrgExExcludeClipRectExtSelectClipRgnGetClipBox
GetClipRgnGetMetaRgnIntersectClipRectOffsetClipRgn
PtVisibleRectVisibleSelectClipPathSelectClipRgn
SetMetaRgnCreateCompatibleDCLineTo
CreateDCACreateICADeleteDCDeleteObject
DrawEscapeEnumObjectsGetCurrentObjectGetDCOrgEx
GetDeviceCapsGetObjectAGetObjectTypeGetStockObject
ResetDCARestoreDCSaveDCSelectObject
SetDCBrushColorSetDCPenColorAngleArcArc
GdiFlushGdiGetBatchLimitGdiSetBatchLimitGetArcDirection
GetBkColorGetBkModeGetBoundsRectGetROP2
ArcToChordEllipseLineDDA
MoveToExPiePolyBezierPolyBezierTo
PolyDrawPolygonPolylinePolylineTo
PolyPolygonPolyPolylineRectangleRoundRect
SetArcDirectionSetBkColorSetBkModeSetBoundsRect
SetROP2AbortDocCloseEnhMetaFileCopyEnhMetaFileA
CreateEnhMetaFileADeleteEnhMetaFileEnumEnhMetaFile
GdiCommentGetEnhMetaFileAGetEnhMetaFileBitsGetEnhMetaFileDescriptionA
GetEnhMetaFileHeaderGetEnhMetaFilePaletteEntriesGetWinMetaFileBitsPlayEnhMetaFile
PlayEnhMetaFileRecordSetEnhMetaFileBitsSetWinMetaFileBitsAnimatePalette
CreateHalftonePaletteCreatePaletteGetColorAdjustmentGetNearestColor
GetNearestPaletteIndexGetPaletteEntriesGetSystemPaletteEntriesGetSystemPaletteUse
RealizePaletteResizePaletteSelectPaletteSetColorAdjustment
SetPaletteEntriesSetSystemPaletteUseUnrealizeObjectUpdateColors
AbortPathBeginPathCloseFigureEndPath
FillPathFlattenPathGetMiterLimitGetPath
PathToRegionSetMiterLimitStrokeAndFillPathStrokePath
WidenPathCreatePenCreatePenIndirectExtCreatePen
StartDocAEndDocEscapeExtEscape
StartPageEndPageSetAbortProcCombineTransform
CreatePolygonRgnCreatePolyPolygonRgnCreateRectRgnCreateRectRgnIndirect
CreateRoundRectRgnEqualRgnExtCreateRegionFillRgn
FrameRgnGetPolyFillModeGetRegionDataGetRgnBox
InvertRgnOffsetRgnPaintRgnPtInRegion
RectInRegionSetPolyFillModeSetRectRgnAddFontResourceA
CreateFontACreateFontIndirectACreateScalableFontResourceAGetTextAlign
GetTextCharacterExtraGetTextExtentExPointAGetTextExtentPoint32GetTextColor
GetTextFaceAGetTextMetricsAPolyTextOutARemoveFontResourceA
SetMapperFlagsSetTextAlignSetTextCharacterExtraSetTextColor
SetTextJustificationGetOutlineTextMetricsAGetWorldTransformLPtoDP
DPtoLPGetCurrentPositionExGetGraphicsModeGetMapMode
GetViewportExtExGetViewportOrgExGetWindowExtExGetWindowOrgEx
EnumFontFamiliesExAExtTextOutGetAspectRatioFilterExGetRasterizerCaps
GetCharABCWidthsAGetCharABCWidthsFloatAGetCharacterPlacementAGetCharWidth32A
GetCharWidthFloatAGetFontDataGetFontLanguageInfoGetFontUnicodeRanges
GetGlyphIndicesGetGlyphOutlineAGetKerningPairsA
CombineRgnCreateEllipticRgnCreateEllipticRgnIndirectTextOut
SetViewportOrgExSetWindowExtExSetWindowOrgExSetWorldTransform
ApplyCallbackFunctionCheckColorsInGamut
EnumICMProfilesACMCheckColorsInGamutDeleteColorSpaceGetColorSpace
CMCheckRGBsCMConvertColorNameToIndexCMConvertIndexToColorNameCMCreateDeviceLinkProfile
CMCreateMultiProfileTransformCMCreateProfileCMCreateProfileWCMCreateTransform
CMCreateTransformExtCMCreateTransformExtWCMCreateTransformWCMDeleteTransform
CMGetInfoCMGetNamedProfileInfoCMGetPS2ColorRenderingDictionaryCMGetPS2ColorRenderingIntent
CMGetPS2ColorSpaceArrayCMIsProfileValidCMTranslateColorsCMTranslateRGB
CMTranslateRGBsCMTranslateRGBsExtColorCorrectPaletteColorMatchToTarget
ConvertColorNameToIndexConvertIndexToColorNameCreateColorSpaceACMCheckColors
ModifyWorldTransformSetGraphicsModeSetMapModeSetViewportExtEx
OffsetViewportOrgExOffsetWindowOrgExScaleViewportExtExScaleWindowExtEx
GetDeviceGammaRampGetICMProfileAGetLogColorSpaceAGetNamedProfileInfo
SetColorSpaceSetDeviceGammaRampSetICMModeSetICMProfile
SetPixelFormatChoosePixelFormatDescribePixelFormatGetPixelFormat
GetTextCharsetGetTextCharsetInfoTranslateCharsetInfoUpdateICMRegKeyA

Functions in user32.dll:

GetSysColorBrushChangeDisplaySettingsA
EnumDisplaySettingsAGetDCGetDCExReleaseDC
BeginPaintEndPaintCopyRectDrawFrameControl
DrawAnimatedRectsDrawCaptionDrawEdgeDrawFocusRect
DrawStateAEqualRectExcludeUpdateRgnFillRect
FrameRectInvalidateRgnInvertRectIsRectEmpty
GetUpdateRectGetUpdateRgnGetWindowDCGetWindowRgn
GrayStringAInflateRectIntersectRectInvalidateRect
LockWindowUpdateOffsetRectPaintDesktopPtInRect
SetRectSetRectEmptyRedrawWindowWindowFromDC
SetWindowRgnSubtractRectUnionRect
ValidateRectValidateRgnDrawTextADrawTextExA
GetTabbedTextExtentATabbedTextOutAClientToScreenMapWindowPoints
ScreenToClientSetDebugErrorLevelAttachThreadInputGetUserObjectSecurity
FlashWindowFlashWindowExMessageBeepSetLastErrorEx
GetGuiResourcesWaitForInputIdleSetUserObjectSecurity
GetKeyboardTypeGetSysColorwsprintfAwvsprintfA
AnimateWindowAnyPopupArrangeIconicWindowsBeginDeferWindowPos
BringWindowToTopCallWindowProcACascadeWindowsChildWindowFromPoint
ChildWindowFromPointExCloseWindowCreateWindowACreateWindowExA
DeferWindowPosDefWindowProcADestroyWindowEndDeferWindowPos
EnumChildWindowsEnumPropsAEnumPropsExAEnumThreadWindows
EnumWindowsFindWindowAFindWindowExAGetClassInfoExA
GetClassLongAGetClassNameAGetClientRectGetDesktopWindow
GetForegroundWindowGetLastActivePopupGetNextWindowGetParent
GetPropAGetTopWindowGetWindowGetWindowLongA
GetWindowPlacementGetWindowRectGetWindowTextAGetWindowTextLengthA
GetWindowThreadProcessIdIsChildIsIconicIsWindow
IsWindowUnicodeIsWindowVisibleIsZoomedMoveWindow
OpenIconRegisterClassARegisterClassExARemovePropA
SetClassLongASetForegroundWindowSetParentSetPropA
SetWindowLongASetWindowPlacementSetWindowPosSetWindowTextA
ShowOwnedPopupsShowWindowShowWindowAsyncTileWindows
UnregisterClassAUpdateWindowWindowFromPointCloseDesktop
CloseWindowStationCreateDesktopACreateWindowStationAEnumDesktopsA
EnumDesktopWindowsEnumWindowStationsAGetProcessWindowStationGetThreadDesktop
GetUserObjectInformationAOpenDesktopAOpenInputDesktopOpenWindowStationA
SetProcessWindowStationSetThreadDesktopSetUserObjectInformationASwitchDesktop
SystemParametersInfoAGetSystemMetricsOemToCharAOemToCharBuffA
IsCharAlphaAIsCharAlphaNumericAIsCharLowerAIsCharUpperA
CharLowerACharLowerBuffACharNextACharNextExA
CharPrevACharPrevExACharToOemACharToOemBuffA
CharUpperACharUpperBuffALookupIconIdFromDirectoryLookupIconIdFromDirectoryEx
SetCaretBlinkTimeSetCaretPosSetCursorSetCursorPos
SetSystemCursorShowCaretShowCursorLoadStringA
SetMenuContextHelpIdSetWindowContextHelpIdGetMenuContextHelpIdGetWindowContextHelpId
WINNLSEnableIMEWINNLSGetEnableStatusWINNLSGetIMEHotkeySendIMEMessageExA
IMPGetIMEAIMPQueryIMEAIMPSetIMEALockWorkStation
MsgWaitForMultipleObjectsMsgWaitForMultipleObjectsExExitWindowsExitWindowsEx
MonitorFromWindowWinHelpAChangeClipboardChainCloseClipboard
CountClipboardFormatsEmptyClipboardEnumClipboardFormatsGetClipboardData
GetClipboardFormatNameAGetClipboardOwnerGetClipboardSequenceNumberGetClipboardViewer
GetOpenClipboardWindowGetPriorityClipboardFormatIsClipboardFormatAvailableOpenClipboard
RegisterClipboardFormatASetClipboardDataSetClipboardViewerCheckDlgButton
CheckRadioButtonDlgDirListADlgDirListComboBoxADlgDirSelectComboBoxExA
DlgDirSelectExAEnableScrollBarGetScrollInfoGetScrollPos
GetScrollRangeIsDlgButtonCheckedScrollDCScrollWindow
ScrollWindowExSetScrollInfoSetScrollPosSetScrollRange
ShowScrollBarDdeAbandonTransactionDdeAccessDataDdeAddData
DdeClientTransactionDdeCmpStringHandlesDdeConnectDdeConnectList
DdeCreateDataHandleDdeCreateStringHandleADdeDisconnectDdeDisconnectList
DdeEnableCallbackDdeFreeDataHandleDdeFreeStringHandleDdeGetData
DdeGetLastErrorDdeImpersonateClientDdeInitializeADdeKeepStringHandle
DdeNameServiceDdePostAdviseDdeQueryConvInfoDdeQueryNextServer
DdeQueryStringADdeReconnectDdeSetQualityOfServiceDdeSetUserHandle
DdeUnaccessDataDdeUninitializeFreeDDElParamImpersonateDdeClientWindow
PackDDElParamReuseDDElParamUnpackDDElParamCreateDialogA
CreateDialogIndirectACreateDialogIndirectParamACreateDialogParamADefDlgProcA
DialogBoxADialogBoxIndirectADialogBoxIndirectParamADialogBoxParamA
EndDialogGetDialogBaseUnitsGetDlgCtrlIDGetDlgItem
GetDlgItemIntGetDlgItemTextAGetNextDlgGroupItemGetNextDlgTabItem
IsDialogMessageAMapDialogRectMessageBoxMessageBoxEx
MessageBoxIndirectASendDlgItemMessageASetDlgItemIntSetDlgItemTextA
CallMsgFilterACallNextHookExSetWindowsHookExAUnhookWindowsHookEx
ActivateKeyboardLayoutCopyAcceleratorTableACreateAcceleratorTableADestroyAcceleratorTable
DragDetectEnableWindowGetActiveWindowGetAsyncKeyState
GetCaptureGetDoubleClickTimeGetFocusGetKeyboardLayout
GetKeyboardLayoutListGetKeyboardLayoutNameAGetKeyboardStateGetKeyNameTextA
GetKeyStateGetMouseMovePointsIsWindowEnabledkeybd_event
LoadAcceleratorsALoadKeyboardLayoutAMapVirtualKeyAMapVirtualKeyExA
mouse_eventOemKeyScanRegisterHotKeyReleaseCapture
SendInputSetActiveWindowSetCaptureSetDoubleClickTime
SetFocusSetKeyboardStateSwapMouseButtonToAscii
ToAsciiExToUnicodeToUnicodeExTrackMouseEvent
TranslateAcceleratorAUnloadKeyboardLayoutUnregisterHotKeyVkKeyScanA
VkKeyScanExACreateMDIWindowADefFrameProcADefMDIChildProcA
TranslateMDISysAccelCheckMenuRadioItemCreateMenuCreatePopupMenu
DeleteMenuDestroyMenuDrawMenuBarEnableMenuItem
GetMenuGetMenuDefaultItemGetMenuItemCountGetMenuItemID
GetMenuItemInfoAGetMenuItemRectGetSubMenuGetSystemMenu
HiliteMenuItemInsertMenuItemAIsMenuLoadMenuA
LoadMenuIndirectAMenuItemFromPointRemoveMenuSetMenu
SetMenuDefaultItemSetMenuItemBitmapsSetMenuItemInfoATrackPopupMenu
TrackPopupMenuExBroadcastSystemMessageADispatchMessageAGetInputState
GetMessageAGetMessageExtraInfoGetMessagePosGetMessageTime
GetQueueStatusInSendMessageInSendMessageExPeekMessageA
PostMessageAPostQuitMessagePostThreadMessageARegisterWindowMessageA
ReplyMessageSendMessageASendMessageCallbackASendMessageTimeoutA
SendNotifyMessageASetMessageExtraInfoTranslateMessageWaitMessage
EnumDisplayMonitorsGetMonitorInfoAMonitorFromPointMonitorFromRect
GetCaretBlinkTimeGetCaretPosGetClipCursorGetCursor
GetCursorPosGetIconInfoHideCaretLoadCursorFromFileA
LoadImageADrawIconExClipCursorCopyCursor
CopyIconCopyImageCreateCaretCreateCursor
CreateIconCreateIconFromResourceCreateIconFromResourceExCreateIconIndirect
DestroyCaretDestroyCursorDestroyIconDrawIcon
KillTimerSetTimerAdjustWindowRectAdjustWindowRectEx
SetSysColors

Functions in winspool.dll:

AbortPrinterAddFormAAddJobAAddMonitorA
AddPrinterAAddPrinterConnectionADeviceCapabilitiesADocumentPropertiesA
AddPrinterDriverAAddPrinterDriverExAAddPrintProcessorAAddPrintProvidorA
AdvancedDocumentPropertiesAClosePrinterConfigurePortAConnectToPrinterDlg
DeleteFormADeleteMonitorADeletePortADeletePrinter
DeletePrinterConnectionADeletePrinterDataADeletePrinterDataExADeletePrinterDriverA
DeletePrinterDriverExADeletePrinterKeyADeletePrintProcessorADeletePrintProvidorA
EndDocPrinterEndPagePrinterEnumFormsAEnumJobsA
EnumMonitorsAEnumPortsAEnumPrinterDataAEnumPrinterDataExA
EnumPrinterDriversAEnumPrinterKeyAEnumPrintersAEnumPrintProcessorDatatypesA
EnumPrintProcessorsAFindClosePrinterChangeNotificationScheduleJobAddPortA
FindFirstPrinterChangeNotificationFindNextPrinterChangeNotificationFreePrinterNotifyInfoGetFormA
GetJobAGetPrinterAGetPrinterDataAGetPrinterDataExA
GetPrinterDriverAGetPrinterDriverDirectoryAGetPrintProcessorDirectoryAOpenPrinterA
PrinterMessageBoxAPrinterPropertiesReadPrinterResetPrinterA
SetPortASetPrinterASetPrinterDataASetPrinterDataExA
SetFormASetJobAStartDocPrinterAStartPagePrinter
WritePrinter

Functions in mscms.dll:

AssociateColorProfileWithDeviceACheckBitmapBitsCheckColorsCloseColorProfile
CreateColorTransformACreateDeviceLinkProfileCreateMultiProfileTransformCreateProfileFromLogColorSpaceA
DeleteColorTransformDisassociateColorProfileFromDeviceAEnumColorProfilesA
GetCMMInfoGetColorDirectoryAGetColorProfileElementGetColorProfileElementTag
GetColorProfileFromHandleGetColorProfileHeaderGetCountColorProfileElementsUnregisterCMMA
GetPS2ColorRenderingDictionaryGetPS2ColorRenderingIntentGetPS2ColorSpaceArrayGetStandardColorSpaceProfileA
InstallColorProfileAIsColorProfileTagPresentIsColorProfileValidOpenColorProfileA
RegisterCMMASelectCMMSetColorProfileElementSetColorProfileElementReference
SetColorProfileElementSizeSetColorProfileHeaderSetStandardColorSpaceProfileAUninstallColorProfileA
TranslateBitmapBitsTranslateColors

Functions in icmui.dll:

SetupColorMatchingA

Functions in msi.dll:

MsiCloseAllHandlesMsiCloseHandleMsiCollectUserInfoA
MsiConfigureFeatureAMsiConfigureProductAMsiCreateRecordMsiDatabaseApplyTransformA
MsiDatabaseCommitMsiDatabaseExportAMsiDatabaseGenerateTransformAMsiDatabaseGetPrimaryKeysA
MsiDatabaseImportAMsiDatabaseIsTablePersistentAMsiDatabaseMergeAMsiDatabaseOpenViewA
MsiDoActionAMsiEnableLogAMsiEnableUIPreviewMsiEnumClientsA
MsiEnumComponentQualifiersAMsiEnumComponentsAMsiEnumFeaturesAMsiEnumProductsA
MsiEvaluateConditionAMsiFormatRecordAMsiGetActiveDatabaseMsiGetComponentStateA
MsiGetDatabaseStateMsiGetFeatureCostAMsiGetFeatureInfoAMsiGetFeatureStateA
MsiGetFeatureUsageAMsiGetFeatureValidStatesAMsiGetLanguageMsiGetMode
MsiGetProductCodeAMsiGetProductInfoAMsiGetProductPropertyAMsiGetPropertyA
MsiGetSourcePathAMsiGetSummaryInformationAMsiGetTargetPathAMsiGetUserInfoA
MsiInstallMissingComponentAMsiInstallMissingFileAMsiInstallProductAMsiLocateComponentA
MsiOpenDatabaseAMsiOpenPackageAMsiOpenProductAMsiPreviewBillboardA
MsiPreviewDialogAMsiProcessMessageMsiProvideComponentAMsiProvideQualifiedComponentA
MsiQueryFeatureStateAMsiQueryProductStateAMsiRecordClearDataMsiRecordDataSize
MsiRecordGetFieldCountMsiRecordGetIntegerMsiRecordGetStringAMsiRecordIsNull
MsiRecordReadStreamMsiRecordSetIntegerMsiRecordSetStreamAMsiRecordSetStringA
MsiReinstallFeatureAMsiReinstallProductAMsiSequenceAMsiSetComponentStateA
MsiSetExternalUIAMsiSetFeatureStateAMsiSetInstallLevelMsiSetInternalUI
MsiSetModeMsiSetPropertyAMsiSetTargetPathAMsiSummaryInfoGetPropertyA
MsiSummaryInfoGetPropertyCountMsiSummaryInfoPersistMsiSummaryInfoSetPropertyAMsiUseFeatureA
MsiVerifyPackageAMsiViewCloseMsiViewExecuteMsiViewFetch
MsiViewGetColumnInfoMsiViewGetErrorAMsiViewModify

Functions in kernel32.dll:

DeleteAtomFindAtomAGetAtomNameAGlobalAddAtomA
GlobalDeleteAtomGlobalFindAtomAGlobalGetAtomNameAInitAtomTable
BuildCommDCBABuildCommDCBAndTimeoutsAClearCommBreakClearCommError
CommConfigDialogAEscapeCommFunctionGetCommConfigGetCommMask
GetCommModemStatusGetCommPropertiesGetCommStateGetCommTimeouts
GetDefaultCommConfigAPurgeCommSetCommBreakSetCommConfig
SetCommMaskSetCommStateSetCommTimeoutsSetDefaultCommConfigA
SetupCommTransmitCommCharWaitCommEventAddAtomA
AllocConsoleCreateConsoleScreenBuffer
FillConsoleOutputAttributeFillConsoleOutputCharacterAFlushConsoleInputBufferFreeConsole
GenerateConsoleCtrlEventGetConsoleCPGetConsoleCursorInfoGetConsoleMode
GetConsoleOutputCPGetConsoleScreenBufferInfoGetConsoleTitleAGetLargestConsoleWindowSize
GetNumberOfConsoleInputEventsGetNumberOfConsoleMouseButtonsGetStdHandlePeekConsoleInputA
ReadConsoleAReadConsoleInputAReadConsoleOutputAReadConsoleOutputAttribute
ReadConsoleOutputCharacterAScrollConsoleScreenBufferASetConsoleActiveScreenBufferSetConsoleCP
SetConsoleCtrlHandlerSetConsoleCursorInfoSetConsoleCursorPositionSetConsoleMode
SetConsoleOutputCPSetConsoleScreenBufferSizeSetConsoleTextAttributeSetConsoleTitleA
SetConsoleWindowInfoWriteConsoleAWriteConsoleInputAWriteConsoleOutputA
WriteConsoleOutputAttributeWriteConsoleOutputCharacterAContinueDebugEventDebugActiveProcess
DebugBreakFatalExitFlushInstructionCacheGetThreadContext
GetThreadSelectorEntryIsDebuggerPresentOutputDebugStringAReadProcessMemory
SetThreadContextWaitForDebugEventWriteProcessMemoryBeep
FatalAppExitAGetLastErrorRaiseExceptionSetErrorMode
SetLastErrorSetUnhandledExceptionFilterUnhandledExceptionFilterAssignProcessToJobObject
ConvertThreadToFiberCreateFiberCreateJobObjectACreateProcessA
CreateRemoteThreadCreateThreadDeleteFiberDisableThreadLibraryCalls
ExitProcessExitThreadFreeEnvironmentStringsAFreeLibrary
FreeLibraryAndExitThreadGetCommandLineGetCurrentFiberGetCurrentProcess
GetCurrentProcessIdGetCurrentThreadGetCurrentThreadIdGetEnvironmentStringsA
GetEnvironmentVariableAGetExitCodeProcessGetExitCodeThreadGetFiberData
ImpersonateLoggedOnUserGetModuleFileNameAGetModuleHandleAGetPriorityClass
GetProcAddressGetProcessAffinityMaskGetProcessPriorityBoostGetProcessShutdownParameters
GetProcessTimesGetProcessVersionGetProcessWorkingSetSizeGetStartupInfoA
GetThreadPriorityGetThreadPriorityBoostGetThreadTimesLoadLibraryA
LoadLibraryExALoadModuleOpenJobObjectAOpenProcess
QueryInformationJobObjectResumeThreadSetEnvironmentVariableASetInformationJobObject
SetPriorityClassSetProcessAffinityMaskSetProcessPriorityBoostSetProcessShutdownParameters
SetProcessWorkingSetSizeSetThreadAffinityMaskSetThreadIdealProcessorSetThreadPriority
SetThreadPriorityBoostSleepSleepExSuspendThread
SwitchToFiberSwitchToThreadTerminateJobObjectTerminateProcess
TerminateThreadTlsAllocTlsFreeTlsGetValue
TlsSetValueUserHandleGrantAccessAreFileApisANSICloseRaw
RegQueryMultipleValuesACancelIoCopyFileACopyFileExA
CreateDirectoryACreateDirectoryExACreateFileACreateHardLinkA
CreateIoCompletionPortDecryptFileADefineDosDeviceADeleteFileA
EncryptFileAFindCloseFindCloseChangeNotificationFindFirstChangeNotificationA
FindFirstFileAFindFirstFileExAFindNextChangeNotificationFindNextFileA
FlushFileBuffersGetBinaryTypeAGetCompressedFileSizeAGetCurrentDirectoryA
GetDiskFreeSpaceAGetDiskFreeSpaceExAGetDriveTypeAGetFileAttributesA
GetFileAttributesExAGetFileInformationByHandleGetFileSizeGetFileType
GetFullPathNameAGetLogicalDrivesGetLogicalDriveStringsAGetLongPathNameA
GetQueuedCompletionStatusGetShortPathNameAGetTempFileNameAGetTempPathA
GetVolumeInformationALockFileLockFileExMoveFileA
MoveFileExAMoveFileWithProgressAOpenRawAPostQueuedCompletionStatus
QueryDosDeviceAReadDirectoryChangesWReadFileReadFileEx
ReadFileScatterReadRawRemoveDirectoryASearchPathA
SetCurrentDirectoryASetEndOfFileSetFileApisToANSISetFileApisToOEM
SetFileAttributesASetFilePointerSetStdHandleSetVolumeLabelA
UnlockFileUnlockFileExWriteFileWriteFileEx
WriteFileGatherWriteRawVerLanguageNameASetThreadExecutionState
CloseHandleDuplicateHandleGetHandleInformationSetHandleInformation
CancelDeviceWakeupRequestGetDevicePowerStateGetSystemPowerStatusIsSystemResumeAutomatic
RequestDeviceWakeupRequestWakeupLatencySetMessageWaitingIndicatorSetSystemPowerState
DeviceIoControlCallNamedPipeA
ConnectNamedPipeCreateFileMappingACreateMailslotACreateNamedPipeA
CreatePipeDisconnectNamedPipeFlushViewOfFileGetMailslotInfo
GetNamedPipeHandleStateAGetNamedPipeInfoMapViewOfFileMapViewOfFileEx
OpenFileMappingAPeekNamedPipeSetMailslotInfoSetNamedPipeHandleState
TransactNamedPipeUnmapViewOfFileWaitNamedPipeAMulDiv
GetProcessHeapGetProcessHeapsGlobalAllocGlobalFlags
GlobalFreeGlobalHandleGlobalLockGlobalMemoryStatus
GlobalReAllocGlobalSizeGlobalUnlockHeapAlloc
HeapCompactHeapCreateHeapDestroyHeapFree
HeapLockHeapReAllocHeapSizeHeapUnlock
HeapValidateHeapWalkIsBadCodePtrIsBadReadPtr
IsBadStringPtrAIsBadWritePtrLocalAllocLocalFlags
LocalFreeLocalHandleLocalLockLocalReAlloc
LocalSizeLocalUnlockVirtualAllocVirtualAllocEx
VirtualFreeVirtualFreeExVirtualLockVirtualProtect
VirtualProtectExVirtualQueryVirtualQueryExVirtualUnlock
ExpandEnvironmentStringsAIsValidCodePageIsValidLocaleLCMapStringA
lstrcmpAlstrcmpiAlstrcpyAlstrcpynA
lstrlenlstrcatASetLocaleInfoASetThreadLocale
IsDBCSLeadByteCompareStringAConvertDefaultLocale
EnumCalendarInfoAEnumCalendarInfoExAEnumDateFormatsAEnumSystemCodePagesA
EnumSystemLocalesAEnumTimeFormatsAFoldStringAFormatMessageA
GetACPGetCPInfoGetCPInfoExAGetCurrencyFormatA
GetDateFormatAGetLocaleInfoAGetNumberFormatAGetOEMCP
GetStringTypeAGetStringTypeExAGetStringTypeWGetSystemDefaultLangID
GetSystemDefaultLCIDGetThreadLocaleGetTimeFormatAGetUserDefaultLangID
GetUserDefaultLCIDLoadResourceSizeofResourceUpdateResourceA
LockResourceBeginUpdateResourceAFindResourceFindResourceEx
EndUpdateResourceAEnumResourceLanguagesEnumResourceNamesEnumResourceTypes
WideCharToMultiByteIsDBCSLeadByteExMultiByteToWideCharOpenEventA
OpenMutexAOpenSemaphoreAOpenWaitableTimerAPulseEvent
QueueUserAPCReleaseMutexReleaseSemaphoreResetEvent
SetCriticalSectionSpinCountSetEventSetWaitableTimerSignalObjectAndWait
TryEnterCriticalSectionWaitForMultipleObjectsWaitForMultipleObjectsExWaitForSingleObject
WaitForSingleObjectExBackupReadBackupSeekBackupWrite
CreateTapePartitionEraseTapeGetTapeParametersGetTapePosition
GetTapeStatusPrepareTapeSetTapeParametersSetTapePosition
WriteTapemarkCompareFileTimeDosDateTimeToFileTimeFileTimeToDosDateTime
FileTimeToLocalFileTimeFileTimeToSystemTimeGetFileTimeGetLocalTime
GetSystemTimeGetSystemTimeAdjustmentGetSystemTimeAsFileTimeGetTickCount
GetTimeZoneInformationLocalFileTimeToFileTimeSetFileTimeSetLocalTime
SetSystemTimeSetSystemTimeAdjustmentSetTimeZoneInformationSystemTimeToFileTime
GetComputerNameASystemTimeToTzSpecificLocalTimeCreateToolhelp32SnapshotHeap32First
Heap32ListFirstHeap32ListNextHeap32NextModule32First
Module32NextProcess32FirstProcess32NextThread32First
Thread32NextToolhelp32ReadProcessMemoryGetSystemDirectoryAGetSystemInfo
CancelWaitableTimerCreateEventACreateMutexALeaveCriticalSection
CreateSemaphoreACreateWaitableTimerADeleteCriticalSectionEnterCriticalSection
GetOverlappedResultInitializeCriticalSectionInitializeCriticalSectionAndSpinCountInterlockedCompareExchange
InterlockedDecrementInterlockedExchangeInterlockedExchangeAddInterlockedIncrement
GetVersionExAGetWindowsDirectoryAIsProcessorFeaturePresentSetComputerNameA
QueryPerformanceCounterQueryPerformanceFrequency

Functions in lz32.dll:

GetExpandedNameALZCloseLZCopyLZInit
LZOpenFileALZReadLZSeek

Functions in advapi32.dll:

BackupEventLogAClearEventLogACloseEventLogDeregisterEventSource
GetNumberOfEventLogRecordsGetOldestEventLogRecordNotifyChangeEventLogOpenBackupEventLogA
OpenEventLogAReadEventLogARegisterEventSourceAReportEventA
RegCloseKeyRegConnectRegistryARegCreateKeyARegCreateKeyExA
RegDeleteKeyARegDeleteValueARegEnumKeyARegEnumKeyExA
RegEnumValueARegFlushKeyRegLoadKeyARegNotifyChangeKeyValue
RegOpenKeyARegOpenKeyExARegQueryInfoKeyAImpersonateNamedPipeClient
ImpersonateSelfInitializeAclInitializeSecurityDescriptorInitializeSid
IsTokenRestrictedIsValidAclIsValidSecurityDescriptorIsValidSid
LogonUserALookupAccountNameALookupAccountSidALookupPrivilegeDisplayNameA
LookupPrivilegeNameALookupPrivilegeValueALookupSecurityDescriptorPartsAMakeAbsoluteSD
MakeSelfRelativeSDMapGenericMaskObjectCloseAuditAlarmAObjectDeleteAuditAlarmA
ObjectOpenAuditAlarmAObjectPrivilegeAuditAlarmAOpenProcessTokenOpenThreadToken
PrivilegeCheckPrivilegedServiceAuditAlarmAQueryServiceObjectSecurityRegGetKeySecurity
RegSetKeySecurityRevertToSelfSetAclInformationSetEntriesInAccessListA
SetEntriesInAclASetEntriesInAuditListASetFileSecurityASetKernelObjectSecurity
SetNamedSecurityInfoASetNamedSecurityInfoExASetPrivateObjectSecuritySetPrivateObjectSecurityEx
SetSecurityDescriptorControlSetSecurityDescriptorDaclSetSecurityDescriptorGroupSetSecurityDescriptorOwner
SetSecurityDescriptorSaclSetSecurityInfoSetSecurityInfoExASetServiceObjectSecurity
SetThreadTokenSetTokenInformationCreateProcessAsUserAGetCurrentHwProfileA
ChangeServiceConfigAChangeServiceConfig2ACloseServiceHandleControlService
CreateServiceADeleteServiceEnumDependentServicesAEnumServicesStatusA
GetServiceDisplayNameAGetServiceKeyNameALockServiceDatabaseNotifyBootConfigStatus
OpenSCManagerAOpenServiceAQueryServiceConfigAQueryServiceConfig2A
QueryServiceLockStatusAQueryServiceStatusRegisterServiceCtrlHandlerASetServiceBits
SetServiceStatusStartServiceAStartServiceCtrlDispatcherAUnlockServiceDatabase
AbortSystemShutdownAInitiateSystemShutdownAIsTextUnicodeTrusteeAccessToObjectA
RegQueryValueARegQueryValueExARegReplaceKeyARegRestoreKeyA
RegSaveKeyARegSetValueARegSetValueExARegUnLoadKeyA
AccessCheckAccessCheckAndAuditAlarmAAccessCheckByTypeAccessCheckByTypeAndAuditAlarmA
AccessCheckByTypeResultListAccessCheckByTypeResultListAndAuditAlarmAAddAccessAllowedAceAddAccessAllowedAceEx
AddAccessAllowedObjectAceAddAccessDeniedAceAddAccessDeniedAceExAddAccessDeniedObjectAce
AddAceAddAuditAccessAceAddAuditAccessAceExAddAuditAccessObjectAce
AdjustTokenGroupsAdjustTokenPrivilegesAllocateAndInitializeSidAllocateLocallyUniqueId
AreAllAccessesGrantedAreAnyAccessesGrantedBuildExplicitAccessWithNameABuildSecurityDescriptorA
BuildTrusteeWithNameABuildTrusteeWithSidACancelOverlappedAccessCheckTokenMembership
ConvertAccessToSecurityDescriptorAConvertSecurityDescriptorToAccessAConvertSecurityDescriptorToAccessNamedAConvertToAutoInheritPrivateObjectSecurity
CopySidCreatePrivateObjectSecurityCreatePrivateObjectSecurityExCreateRestrictedToken
DeleteAceDestroyPrivateObjectSecurityDuplicateTokenDuplicateTokenEx
EqualPrefixSidEqualSidFindFirstFreeAceFreeSid
GetAceGetAclInformationGetAuditedPermissionsFromAclAGetTrusteeTypeA
GetEffectiveRightsFromAclAGetExplicitEntriesFromAclAGetFileSecurityAGetKernelObjectSecurity
GetLengthSidGetNamedSecurityInfoAGetNamedSecurityInfoExAGetOverlappedAccessResults
GetPrivateObjectSecurityGetSecurityDescriptorControlGetSecurityDescriptorDaclGetSecurityDescriptorGroup
GetSecurityDescriptorLengthGetSecurityDescriptorOwnerGetSecurityDescriptorSaclGetSecurityInfo
GetSecurityInfoExAGetSidIdentifierAuthorityGetSidLengthRequiredGetSidSubAuthority
GetSidSubAuthorityCountGetTokenInformationGetTrusteeFormAGetTrusteeNameA
GetUserNameA

Functions in shell32.dll:

CommandLineToArgvW
ExtractAssociatedIconAExtractIconAExtractIconExA
SHGetDataFromIDListASHGetDesktopFolderSHGetFileInfoASHGetInstanceExplorer
SHGetMallocSHGetPathFromIDListASHGetSpecialFolderLocationSHFileOperationA
SHLoadInProcSHFreeNameMappingsFindExecutableADragAcceptFiles
DragFinishDragQueryFileADragQueryPointDuplicateIcon
SHAddToRecentDocsSHAppBarMessageSHBrowseForFolderASHChangeNotify
Shell_NotifyIconAShellAboutAShellExecuteAShellExecuteExA

Functions in version.dll:

GetFileVersionInfoAGetFileVersionInfoSizeAVerFindFileAVerInstallFileA
VerQueryValueA

Functions in imagehlp.dll:

FindDebugInfoFileFindExecutableImageGetImageConfigInformationGetImageUnusedHeaderBytes
GetTimestampForLoadedLibraryImageAddCertificateImageDirectoryEntryToDataImageEnumerateCertificates
ImageGetCertificateDataImageGetCertificateHeaderImageGetDigestStreamImagehlpApiVersion
ImagehlpApiVersionExImageLoadImageNtHeaderImageRemoveCertificate
ImageRvaToSectionImageRvaToVaImageUnloadMakeSureDirectoryPathExists
MapAndLoadMapDebugInformationMapFileAndCheckSumAReBaseImage
RemovePrivateCvSymbolicRemoveRelocationsSearchTreeForFileSetImageConfigInformation
SplitSymbolsStackWalkSymCleanupSymEnumerateModules
SymEnumerateSymbolsSymFunctionTableAccessSymGetModuleBaseSymGetModuleInfo
SymGetOptionsSymGetSearchPathSymGetSymFromAddrSymGetSymFromName
SymGetSymNextSymGetSymPrevSymInitializeSymLoadModule
SymRegisterCallbackSymSetOptionsSymSetSearchPathSymUnDName
SymUnloadModuleUnDecorateSymbolNameUnMapAndLoadUnmapDebugInformation
UpdateDebugInfoFileUpdateDebugInfoFileEx
BindImageBindImageExCheckSumMappedFile

Functions in advapi.dll:

GetAccessPermissionsForObjectA

Functions in lsapi32.dll:

LSEnumProvidersLSFreeHandleLSGetMessage
LSQueryLSReleaseLSRequestLSUpdate

Functions in mapi32.dll:

ACCELERATEABSDIBuildDisplayTableChangeIdleRoutineCheckParameters
CheckParmsCloseIMsgSessionCreateIPropCreateTable
DeinitMapiUtilDeregisterIdleRoutineEnableIdleRoutineFBadColumnSet
FBadEntryListFBadPropFBadPropTagFBadRestriction
FBadRglpNameIDFBadRglpszWFBadRowFBadRowSet
FBadSortOrderSetFBinFromHexFEqualNamesFPropCompareProp
FPropContainsPropFPropExistsFreePadrlistFreeProws
FtAddFtFtgRegisterIdleRoutineFtMulDwFtMulDwDw
FtNegFtFtSubFtGetAttribIMsgOnIStgGetInstance
HexFromBinHrAddColumnsExHrAllocAdviseSinkHrComposeEID
HrComposeMsgIDHrDecomposeEIDHrDecomposeMsgIDHrDispatchNotifications
HrEntryIDFromSzHrGetOnePropHrIStorageFromStreamHrQueryAllRows
HrSetOnePropHrSzFromEntryIDHrThisThreadAdviseSinkHrValidateIPMSubtree
LAUNCHWIZARDENTRYLPropComparePropMAPIAdminProfilesMAPIAllocateBuffer
MAPIAllocateMoreMAPIDeinitIdleMAPIFreeBufferMAPIGetDefaultMalloc
MAPIInitializeMAPIInitIdleMAPILogonExMAPIOpenFormMgr
MAPIOpenLocalFormContainerMAPIUninitializeMapStorageSCodeOpenIMsgOnIStg
OpenIMsgSessionOpenStreamOnFileOpenTnefStreamOpenTnefStreamEx
PpropFindPropPropCopyMoreRTFSyncScBinFromHexBounded
ScCopyNotificationsScCopyPropsScCountNotificationsScCountProps
ScCreateConversationIndexScDupPropsetScInitMapiUtilScLocalPathFromUNC
ScMAPIXFromCMCScMAPIXFromSMAPIScRelocNotificationsScRelocProps
ScUNCFromLocalPathSetAttribIMsgOnIStgSzFindChSzFindLastCh
SzFindSzUFromSzUlAddRefUlFromSzHex
UlPropSizeUlReleaseUlValidateParametersUlValidateParms
ValidateParametersValidateParmsWrapCompressedRTFStreamWrapStoreEntryID

Functions in msacm32.dll:

acmDriverAddAacmDriverCloseacmDriverDetailsAacmDriverEnum
acmDriverIDacmDriverMessageacmDriverOpenacmDriverPriority
acmDriverRemoveacmFilterChooseAacmFilterDetailsAacmFilterEnumA
acmFilterTagDetailsAacmFilterTagEnumAacmFormatChooseAacmFormatDetailsA
acmFormatEnumAacmFormatSuggestacmFormatTagDetailsAacmFormatTagEnumA
acmGetVersionacmMetricsacmStreamCloseacmStreamConvert
acmStreamMessageacmStreamOpenacmStreamPrepareHeaderacmStreamReset
acmStreamSizeacmStreamUnprepareHeader

Functions in winmm.dll:

auxGetDevCapsAauxGetNumDevs
auxGetVolumeauxOutMessageauxSetVolumeCloseDriver
DefDriverProcDriverCallbackDrvGetModuleHandleGetDriverModuleHandle
joyGetDevCapsAjoyGetNumDevsjoyGetPosjoyGetPosEx
joyGetThresholdjoyReleaseCapturejoySetCapturejoySetThreshold
mciGetCreatorTaskmciGetDeviceIDAmciGetErrorStringAmciGetYieldProc
mciSendCommandAmciSendStringAmciSetYieldProcmidiConnect
midiDisconnectmidiInAddBuffermidiInClosemidiInGetDevCapsA
midiInGetErrorTextAmidiInGetIDmidiInGetNumDevsmidiInMessage
midiInOpenmidiInPrepareHeadermidiInResetmidiInStart
midiInStopmidiInUnprepareHeadermidiOutCacheDrumPatchesmidiOutCachePatches
midiOutClosemidiOutGetDevCapsAmidiOutGetErrorTextAmidiOutGetID
midiOutGetNumDevsmidiOutGetVolumemidiOutLongMsgmidiOutMessage
midiOutOpenmidiOutPrepareHeadermidiOutResetmidiOutSetVolume
midiOutShortMsgmidiOutUnprepareHeadermidiStreamClosemidiStreamOpen
midiStreamOutmidiStreamPausemidiStreamPositionmidiStreamProperty
midiStreamRestartmidiStreamStopmixerClosemixerGetControlDetailsA
mixerGetDevCapsAmixerGetIDmixerGetLineControlsAmixerGetLineInfoA
mixerGetNumDevsmixerMessagemixerOpenmixerSetControlDetails
mmioAdvancemmioAscendmmioClosemmioCreateChunk
mmioDescendmmioFlushmmioGetInfommioInstallIOProcA
mmioOpenAmmioReadmmioRenameAmmioSeek
mmioSendMessagemmioSetBuffermmioSetInfommioStringToFOURCCA
mmioWritemmsystemGetVersionOpenDriverPlaySoundA
SendDriverMessagesndPlaySoundAtimeBeginPeriodtimeEndPeriod
timeGetDevCapstimeGetSystemTimetimeGetTimetimeKillEvent
timeSetEventwaveInAddBufferwaveInClosewaveInGetDevCapsA
waveInGetErrorTextAwaveInGetIDwaveInGetNumDevswaveInGetPosition
waveInMessagewaveInOpenwaveInPrepareHeaderwaveInReset
waveInStartwaveInStopwaveInUnprepareHeaderwaveOutBreakLoop
waveOutClosewaveOutGetDevCapsAwaveOutGetErrorTextAwaveOutGetID
waveOutGetNumDevswaveOutGetPitchwaveOutGetPlaybackRatewaveOutGetPosition
waveOutGetVolumewaveOutMessagewaveOutOpenwaveOutPause
waveOutPrepareHeaderwaveOutResetwaveOutRestartwaveOutSetPitch
waveOutSetPlaybackRatewaveOutSetVolumewaveOutUnprepareHeaderwaveOutWrite

Functions in netapi32.dll:

DsValidateSubnetNameANetbiosI_BrowserDebugTraceI_BrowserQueryOtherDomains
I_BrowserQueryStatisticsI_BrowserResetNetlogonStateI_BrowserResetStatisticsI_BrowserServerEnum
I_NetLogonControlI_NetLogonControl2MultinetGetConnectionPerformanceNetAccessAdd
NetAccessCheckNetAccessDelNetAccessEnumNetAccessGetInfo
NetAccessGetUserPermsNetAccessSetInfoNetAlertRaiseNetAlertRaiseEx
NetApiBufferAllocateNetApiBufferFreeNetApiBufferReallocateNetApiBufferSize
NetAuditClearNetAuditReadNetAuditWriteNetConfigGet
NetConfigGetAllNetConfigSetNetConnectionEnumNetDfsAdd
NetDfsEnumNetDfsGetInfoNetDfsRemoveNetDfsSetInfo
NetErrorLogClearNetErrorLogReadNetErrorLogWriteNetFileClose
NetFileEnumNetFileGetInfoNetGetAnyDCNameNetGetDCName
NetGetDisplayInformationIndexNetGroupAddNetGroupAddUserNetGroupDel
NetGroupDelUserNetGroupEnumNetGroupGetInfoNetGroupGetUsers
NetGroupSetInfoNetGroupSetUsersNetHandleGetInfoNetHandleSetInfo
NetLocalGroupAddNetLocalGroupAddMemberNetLocalGroupAddMembersNetLocalGroupDel
NetLocalGroupDelMemberNetLocalGroupDelMembersNetLocalGroupEnumNetLocalGroupGetInfo
NetLocalGroupGetMembersNetLocalGroupSetInfoNetLocalGroupSetMembersNetMessageBufferSend
NetMessageNameAddNetMessageNameDelNetMessageNameEnumNetMessageNameGetInfo
NetQueryDisplayInformationNetRemoteComputerSupportsNetRemoteTODNetReplExportDirAdd
NetReplExportDirDelNetReplExportDirEnumNetReplExportDirGetInfoNetReplExportDirLock
NetReplExportDirSetInfoNetReplExportDirUnlockNetReplGetInfoNetReplImportDirAdd
NetReplImportDirDelNetReplImportDirEnumNetReplImportDirGetInfoNetReplImportDirLock
NetReplImportDirUnlockNetReplSetInfoNetScheduleJobAddNetScheduleJobDel
NetScheduleJobEnumNetScheduleJobGetInfoNetServerDiskEnumNetServerEnum
NetServerGetInfoNetServerSetInfoNetServerTransportAddNetServerTransportDel
NetServerTransportEnumNetServiceControlNetServiceEnumNetServiceGetInfo
NetServiceInstallNetSessionDelNetSessionEnumNetSessionGetInfo
NetShareAddNetShareCheckNetShareDelNetShareDelSticky
NetShareEnumNetShareEnumStickyNetShareGetInfoNetShareSetInfo
NetStatisticsGetNetStatisticsGet2NetUseAddNetUseDel
NetUseEnumNetUseGetInfoNetUserAddNetUserChangePassword
NetUserDelNetUserEnumNetUserGetGroupsNetUserGetInfo
NetUserGetLocalGroupsNetUserModalsGetNetUserModalsSetNetUserSetGroups
NetUserSetInfoNetWkstaGetInfoNetWkstaSetInfoNetWkstaTransportAdd
NetWkstaTransportDelNetWkstaTransportEnumNetWkstaUserEnumNetWkstaUserGetInfo
NetWkstaUserSetInfoRxNetAccessAddRxNetAccessDelRxNetAccessEnum
RxNetAccessGetInfoRxNetAccessGetUserPermsRxNetAccessSetInfoRxRemoteApi
DsGetDcNameADsGetSiteNameA

Functions in mpr.dll:

WNetAddConnectionA
WNetAddConnection2AWNetAddConnection3AWNetCancelConnectionAWNetCancelConnection2A
WNetCloseEnumWNetConnectionDialogWNetConnectionDialog1AWNetDisconnectDialog
WNetDisconnectDialog1AWNetEnumResourceAWNetGetConnectionAWNetGetLastErrorA
WNetGetNetworkInformationAWNetGetProviderNameAWNetGetResourceInformationAWNetGetResourceParentA
WNetGetUniversalNameAWNetGetUserAWNetOpenEnumAWNetUseConnectionA

Functions in nddeapi.dll:

NDdeGetErrorStringANDdeGetShareSecurityANDdeGetTrustedShareANDdeIsValidAppTopicListA
NDdeIsValidShareNameANDdeSetShareSecurityANDdeSetTrustedShareANDdeShareAddA
NDdeShareDelANDdeShareEnumANDdeShareGetInfoANDdeShareSetInfoA
NDdeTrustedShareEnumA

Functions in dlcapi.dll:

AcsLan

Functions in wsnmp32.dll:

SnmpCleanupSnmpCloseSnmpContextToStrSnmpOidToStr
SnmpCountVblSnmpCreatePduSnmpCreateSessionSnmpCreateVbl
SnmpDecodeMsgSnmpDeleteVbSnmpDuplicatePduSnmpDuplicateVbl
SnmpEncodeMsgSnmpEntityToStrSnmpFreeContextSnmpFreeDescriptor
SnmpFreeEntitySnmpFreePduSnmpFreeVblSnmpGetLastError
SnmpGetPduDataSnmpGetRetransmitModeSnmpGetRetrySnmpGetTimeout
SnmpGetTranslateModeSnmpGetVbSnmpStrToEntitySnmpStrToOid
SnmpOpenSnmpRecvMsgSnmpRegisterSnmpSendMsg
SnmpSetPduDataSnmpSetRetransmitModeSnmpSetRetrySnmpSetTimeout
SnmpSetTranslateModeSnmpSetVbSnmpStartupSnmpStrToContext
SnmpOidCompareSnmpOidCopy

Functions in mgmtapi.dll:

SnmpMgrCloseSnmpMgrGetTrapSnmpMgrTrapListen
SnmpMgrOidToStrSnmpMgrOpenSnmpMgrRequestSnmpMgrStrToOid

Functions in snmpapi.dll:

SnmpSvcSetLogTypeSnmpUtilAsnAnyCpySnmpUtilAsnAnyFreeSnmpUtilDbgPrint
SnmpUtilMemAllocSnmpUtilMemFreeSnmpUtilMemReAllocSnmpUtilOctetsCmp
SnmpUtilOctetsCpySnmpUtilOctetsFreeSnmpUtilOctetsNCmpSnmpUtilOidAppend
SnmpUtilOidCmpSnmpUtilOidCpySnmpUtilOidFreeSnmpUtilOidNCmp
SnmpUtilPrintAsnAnySnmpUtilVarBindCpySnmpUtilVarBindFreeSnmpUtilVarBindListCpy
SnmpUtilVarBindListFreeSnmpSvcGetUptimeSnmpSvcSetLogLevel

Functions in imm32.dll:

ImmAssociateContextExImmConfigureIMEAImmCreateContextImmDestroyContext
ImmDisableIMEImmEnumRegisterWordAImmEscapeAImmGetCandidateListA
ImmGetCandidateListCountAImmGetCandidateWindowImmGetCompositionFontAImmGetCompositionStringA
ImmGetCompositionWindowImmGetContextImmGetConversionListAImmGetConversionStatus
ImmGetDefaultIMEWndImmGetDescriptionAImmGetGuideLineAImmGetIMEFileNameA
ImmGetImeMenuItemsAImmGetOpenStatusImmGetPropertyImmGetRegisterWordStyleA
ImmGetStatusWindowPosImmGetVirtualKeyImmInstallIMEAImmIsIME
ImmIsUIMessageAImmNotifyIMEImmRegisterWordAImmReleaseContext
ImmSetCandidateWindowImmSetCompositionFontAImmSetCompositionStringAImmSetCompositionWindow
ImmSetConversionStatusImmSetOpenStatusImmSetStatusWindowPosImmSimulateHotKey
ImmUnregisterWordAImmAssociateContext

Functions in ole32.dll:

CoBuildVersionCoCancelCallCoIsHandlerConnectedCoIsOle1Class
IsEqualGUIDOleBuildVersionStgOpenStorageStgOpenStorageOnILockBytes

Functions in oleaut32.dll:

BstrFromVectorCreateDispTypeInfoCreateErrorInfoCreateStdDispatch
CreateTypeLibDispGetIDsOfNamesDispGetParamDispInvoke
DosDateTimeToVariantTimeGetActiveObjectGetErrorInfoLHashValOfNameSys
LoadRegTypeLibLoadTypeLibOaBuildVersionQueryPathOfRegTypeLib
RegisterActiveObjectRegisterTypeLibRevokeActiveObjectSafeArrayAccessData
SafeArrayAllocDataSafeArrayAllocDescriptorSafeArrayCopySafeArrayCopyData
SafeArrayCreateSafeArrayCreateVectorSafeArrayDestroySafeArrayDestroyData
SafeArrayDestroyDescriptorSafeArrayGetDimSafeArrayGetElementSafeArrayGetElemsize
SafeArrayGetLBoundSafeArrayGetUBoundSafeArrayLockSafeArrayPtrOfIndex
SafeArrayPutElementSafeArrayRedimSafeArrayUnaccessDataSafeArrayUnlock
SetErrorInfoSysAllocStringSysAllocStringByteLenSysAllocStringLen
SysFreeStringSysReAllocStringSysReAllocStringLenSysStringByteLen
SysStringLenSystemTimeToVariantTimeVarBoolFromCyVarBoolFromDate
VarBoolFromDecVarBoolFromDispVarBoolFromI1VarBoolFromI2
VarBoolFromI4VarBoolFromR4VarBoolFromR8VarBoolFromStr
VarBoolFromUI1VarBoolFromUI2VarBoolFromUI4VarBstrFromBool
VarBstrFromCyVarBstrFromDateVarBstrFromDispVarBstrFromI1
VarBstrFromI2VarBstrFromI4VarBstrFromR4VarBstrFromR8
VarBstrFromUI1VarBstrFromUI2VarBstrFromUI4VarCyFromBool
VarCyFromDateVarCyFromDecVarCyFromDispVarCyFromI1
VarCyFromI2VarCyFromI4VarCyFromR4VarCyFromR8
VarCyFromStrVarCyFromUI1VarCyFromUI2VarCyFromUI4
VarDateFromBoolVarDateFromCyVarDateFromDecVarDateFromDisp
VarDateFromI1VarDateFromI2VarDateFromI4VarDateFromR4
VarDateFromR8VarDateFromStrVarDateFromUdateVarDateFromUI1
VarDateFromUI2VarDateFromUI4VarDecFromBoolVarDecFromCy
VarDecFromDateVarDecFromDispVarDecFromI1VarDecFromI2
VarDecFromI4VarDecFromR4VarDecFromR8VarDecFromStr
VarDecFromUI1VarDecFromUI2VarDecFromUI4VarI1FromBool
VarI1FromCyVarI1FromDateVarI1FromDecVarI1FromDisp
VarI1FromI2VarI1FromI4VarI1FromR4VarI1FromR8
VarI1FromStrVarI1FromUI1VarI1FromUI2VarI1FromUI4
VarI2FromBoolVarI2FromCyVarI2FromDateVarI2FromDec
VarI2FromDispVarI2FromI1VarI2FromI4VarI2FromR4
VarI2FromR8VarI2FromStrVarI2FromUI1VarI2FromUI2
VarI2FromUI4VarI4FromBoolVarI4FromCyVarI4FromDate
VarI4FromDecVarI4FromDispVarI4FromI1VarI4FromI2
VarI4FromR4VarI4FromR8VarI4FromStrVarI4FromUI1
VarI4FromUI2VarI4FromUI4VariantChangeTypeVariantChangeTypeEx
VariantClearVariantCopyVariantCopyIndVariantInit
VariantTimeToDosDateTimeVariantTimeToSystemTimeVarNumFromParseNumVarParseNumFromStr
VarR4FromBoolVarR4FromCyVarR4FromDateVarR4FromDec
VarR4FromDispVarR4FromI1VarR4FromI2VarR4FromI4
VarR4FromR8VarR4FromStrVarR4FromUI1VarR4FromUI2
VarR4FromUI4VarR8FromBoolVarR8FromCyVarR8FromDate
VarR8FromDecVarR8FromDispVarR8FromI1VarR8FromI2
VarR8FromI4VarR8FromR4VarR8FromStrVarR8FromUI1
VarR8FromUI2VarR8FromUI4VarUdateFromDateVarUI1FromBool
VarUI1FromCyVarUI1FromDateVarUI1FromDecVarUI1FromDisp
VarUI1FromI1VarUI1FromI2VarUI1FromI4VarUI1FromR4
VarUI1FromR8VarUI1FromStrVarUI1FromUI2VarUI1FromUI4
VarUI2FromBoolVarUI2FromCyVarUI2FromDateVarUI2FromDec
VarUI2FromDispVarUI2FromI1VarUI2FromI2VarUI2FromI4
VarUI2FromR4VarUI2FromR8VarUI2FromStrVarUI2FromUI1
VarUI2FromUI4VarUI4FromBoolVarUI4FromCyVarUI4FromDate
VarUI4FromDecVarUI4FromDispVarUI4FromI1VarUI4FromI2
VarUI4FromI4VarUI4FromR4VarUI4FromR8VarUI4FromStr
VarUI4FromUI1VarUI4FromUI2VectorFromBstr

Functions in opengl32.dll:

glBeginglBitmapglBlendFuncglCallList
glCallListsglClearglClearAccumglClearColor
glClearDepthglClearIndexglClearStencilglClipPlane
glColor3bglColor3bvglColor3dglColor3dv
glColor3fglColor3fvglColor3iglColor3iv
glColor3sglColor3svglColor3ubglColor3ubv
glColor3uiglColor3uivglColor3usglColor3usv
glColor4bglColor4bvglColor4dglColor4dv
glColor4fglColor4fvglColor4iglColor4iv
glColor4sglColor4svglColor4ubglColor4ubv
glColor4uiglColor4uivglColor4usglColor4usv
glColorMaskglColorMaterialglCopyPixelsglCullFace
glDeleteListsglDepthFuncglDepthMaskglDepthRange
glDisableglDrawBufferglDrawPixelsglEdgeFlag
glEdgeFlagvglEnableglEndglEndList
glEvalCoord1dglEvalCoord1dvglEvalCoord1fglEvalCoord1fv
glEvalCoord2dglEvalCoord2dvglEvalCoord2fglEvalCoord2fv
glEvalMesh1glEvalMesh2glEvalPoint1glEvalPoint2
glFeedbackBufferglFinishglFlushglFogf
glFogfvglFogiglFogivglFrontFace
glFrustumglGenListsglGetBooleanvglGetClipPlane
glGetDoublevglGetErrorglGetFloatvglGetIntegerv
glGetLightfvglGetLightivglGetMapdvglGetMapfv
glGetMapivglGetMaterialfvglGetMaterialivglGetPixelMapfv
glGetPixelMapuivglGetPixelMapusvglGetPolygonStippleglGetString
glGetTexEnvfvglGetTexEnvivglGetTexGendvglGetTexGenfv
glGetTexGenivglGetTexImageglGetTexLevelParameterfvglGetTexLevelParameteriv
glGetTexParameterfvglGetTexParameterivglHintglIndexd
glIndexdvglIndexfglIndexfvglIndexi
glIndexivglIndexMaskglIndexsglIndexsv
glInitNamesglIsEnabledglIsListglLightf
glLightfvglLightiglLightivglLightModelf
glLightModelfvglLightModeliglLightModelivglLineStipple
glLineWidthglListBaseglLoadIdentityglLoadMatrixd
glLoadMatrixfglLoadNameglLogicOpglMap1d
glMap1fglMap2dglMap2fglMapGrid1d
glMapGrid1fglMapGrid2dglMapGrid2fglMaterialf
glMaterialfvglMaterialiglMaterialivglMatrixMode
glMultMatrixdglMultMatrixfglNewListglNormal3b
glNormal3bvglNormal3dglNormal3dvglNormal3f
glNormal3fvglNormal3iglNormal3ivglNormal3s
glNormal3svglOrthoglPassThroughglPixelMapfv
glPixelMapuivglPixelMapusvglPixelStorefglPixelStorei
glPixelTransferfglPixelTransferiglPixelZoomglPointSize
glPolygonModeglPolygonStippleglPopAttribglPopMatrix
glPopNameglPushAttribglPushMatrixglPushName
glRasterPos2dglRasterPos2dvglRasterPos2fglRasterPos2fv
glRasterPos2iglRasterPos2ivglRasterPos2sglRasterPos2sv
glRasterPos3dglRasterPos3dvglRasterPos3fglRasterPos3fv
glRasterPos3iglRasterPos3ivglRasterPos3sglRasterPos3sv
glRasterPos4dglRasterPos4dvglRasterPos4fglRasterPos4fv
glRasterPos4iglRasterPos4ivglRasterPos4sglRasterPos4sv
glReadBufferglReadPixelsglRectdglRectdv
glRectfglRectfvglRectiglRectiv
glRectsglRectsvglRenderModeglRotated
glRotatefglScaledglScalefglScissor
glSelectBufferglShadeModelglStencilFuncglStencilMask
glStencilOpglTexCoord1dglTexCoord1dvglTexCoord1f
glTexCoord1fvglTexCoord1iglTexCoord1ivglTexCoord1s
glTexCoord1svglTexCoord2dglTexCoord2dvglTexCoord2f
glTexCoord2fvglTexCoord2iglTexCoord2ivglTexCoord2s
glTexCoord2svglTexCoord3dglTexCoord3dvglTexCoord3f
glTexCoord3fvglTexCoord3iglTexCoord3ivglTexCoord3s
glTexCoord3svglTexCoord4dglTexCoord4dvglTexCoord4f
glTexCoord4fvglTexCoord4iglTexCoord4ivglTexCoord4s
glTexCoord4svglTexEnvfglTexEnvfvglTexEnvi
glTexEnvivglTexGendglTexGendvglTexGenf
glTexGenfvglTexGeniglTexGenivglTexImage1D
glTexImage2DglTexParameterfglTexParameterfvglTexParameteri
glTexParameterivglTranslatedglTranslatefglVertex2d
glVertex2dvglVertex2fglVertex2fvglVertex2i
glVertex2ivglVertex2sglVertex2svglVertex3d
glVertex3dvglVertex3fglVertex3fvglVertex3i
glVertex3ivglVertex3sglVertex3svglVertex4d
glVertex4dvglVertex4fglVertex4fvglVertex4i
glVertex4ivglVertex4sglVertex4svglViewport
glAccumglAlphaFuncwglCopyContextwglCreateContext
wglCreateLayerContextwglDeleteContextwglDescribeLayerPlanewglGetCurrentContext
wglGetCurrentDCwglGetLayerPaletteEntrieswglGetProcAddresswglMakeCurrent
wglRealizeLayerPalettewglSetLayerPaletteEntrieswglShareListswglSwapLayerBuffers
wglUseFontBitmapsAwglUseFontOutlinesAglAddSwapHintRectWINglArrayElement
glColorPointerEXTglDrawArraysEXTglEdgeFlagPointerEXTglGetPointervEXT
glIndexPointEXTglNormalPointerEXTglTexCoordPointerEXTglVertexPointerEXT
SwapBuffers

Functions in glu32.dll:

gluBeginCurvegluBeginPolygongluBeginSurfacegluBeginTrim
gluBuild1DMipmapsgluBuild2DMipmapsgluCylindergluDeleteNurbsRenderer
gluDeleteQuadricgluDeleteTessgluDiskgluEndCurve
gluEndPolygongluEndSurfacegluEndTrimgluErrorString
gluErrorUnicodeStringEXTgluGetNurbsPropertygluGetStringgluGetTessProperty
gluLoadSamplingMatricesgluLookAtgluNewNurbsRenderergluNewQuadric
gluNewTessgluNextContourgluNurbsCallbackgluNurbsCurve
gluNurbsPropertygluNurbsSurfacegluOrtho2DgluPartialDisk
gluPerspectivegluPickMatrixgluProjectgluPwlCurve
gluQuadricCallbackgluQuadricDrawStylegluQuadricNormalsgluQuadricOrientation
gluQuadricTexturegluScaleImagegluSpheregluTessBeginContour
gluTessBeginPolygongluTessCallbackgluTessEndContourgluTessEndPolygon
gluTessNormalgluTessPropertygluTessVertexgluUnProject

Functions in ws2_32.dll:

__WSAFDIsSetacceptbindclosesocket
connectgethostbyaddrgethostbynamegethostname
getprotobynamegetprotobynumbergetservbynamegetservbyport
getsockopthtonlhtonsinet_addr
inet_ntoaioctlsocketlistenntohl
ntohsrecvrecvfromselect
sendsendtosetsockoptshutdown
socketWSANtohlWSANtohsWSAAccept
WSAAddressToStringAWSAAsyncGetHostByAddrWSAAsyncGetHostByNameWSAAsyncGetProtoByName
WSAAsyncGetProtoByNumberWSAAsyncGetServByNameWSAAsyncGetServByPortWSAAsyncSelect
WSACancelAsyncRequestWSACancelBlockingCallWSACleanupWSACloseEvent
WSAConnectWSACreateEventWSADuplicateSocketWSAEnumNameSpaceProviders
WSAEnumNetworkEventsWSAEnumProtocolsWSAEventSelectWSAGetLastError
WSAGetOverlappedResultWSAGetServiceClassInfoWSAGetServiceClassNameByClassIdWSAHtonl
WSAHtonsWSAInstallServiceClassWSAIoctlWSAIsBlocking
WSAJoinLeafWSALookupServiceBeginAWSALookupServiceEndWSALookupServiceNextA
WSAProviderConfigChangeWSARecvWSARecvDisconnectWSARecvFrom
WSAResetEventWSASendWSASendDisconnectWSASendTo
WSASetBlockingHookWSASetEventWSASetLastErrorWSASetServiceA
WSASocketWSAStartupWSAStringToAddressAWSAUnhookBlockingHook
WSAWaitForMultipleEventsWSCDeinstallProviderWSCEnableNSProviderWSCEnumProtocols
WSCGetProviderPathWSCInstallNameSpaceWSCInstallProviderWSCUnInstallNameSpace
WSARemoveServiceClassWSAGetQOSByName

Functions in rasapi32.dll:

RasConnectionNotificationARasCreatePhonebookEntryARasDeleteEntryARasDialA
RasEnumAutodialAddressesARasEnumConnectionsARasEnumDevicesARasEnumEntriesA
RasGetAutodialAddressARasGetAutodialEnableARasGetAutodialParamARasGetConnectStatusA
RasGetCountryInfoARasGetCredentialsARasGetEntryDialParamsARasGetEntryPropertiesA
RasGetErrorStringARasGetProjectionInfoARasGetSubEntryHandleARasGetSubEntryPropertiesA
RasSetAutodialAddressARasSetAutodialEnableARasSetAutodialParamARasSetCredentialsA
RasSetEntryDialParamsARasSetEntryPropertiesARasSetSubEntryPropertiesARasValidateEntryNameA
RasEditPhonebookEntryARasHangUpARasRenameEntryA

Functions in rasdlg.dll:

RasDialDlgARasEntryDlgARasMonitorDlgARasPhonebookDlgA

Functions in rassapi.dll:

RasAdminFreeBufferRasAdminGetErrorStringRasAdminGetUserAccountServerRasAdminPortClearStatistics
RasAdminPortDisconnectRasAdminPortEnumRasAdminPortGetInfoRasAdminServerGetInfo
RasAdminUserGetInfoRasAdminUserSetInfo

Functions in mprapi.dll:

MibEntryGetMibEntryGetFirstMibEntryGetNextMibEntrySet
MprAdminBufferFreeMprAdminConnectionClearStatsMprAdminConnectionEnumMprAdminConnectionGetInfo
MprAdminGetErrorStringMprAdminGetPDCServerMprAdminInterfaceConnectMprAdminInterfaceCreate
MprAdminInterfaceDeleteMprAdminInterfaceDisconnectMprAdminInterfaceEnumMprAdminInterfaceGetHandle
MprAdminInterfaceQueryUpdateResultMprAdminInterfaceTransportAddMprAdminInterfaceTransportGetInfoMprAdminInterfaceTransportRemove
MprAdminInterfaceTransportSetInfoMprAdminInterfaceUpdateRoutesMprAdminIsServiceRunningMprAdminMIBBufferFree
MprAdminMIBEntryCreateMprAdminMIBEntryDeleteMprAdminMIBEntryGetMprAdminMIBEntryGetFirst
MprAdminMIBEntryGetNextMprAdminMIBEntrySetMprAdminMIBServerConnectMprAdminMIBServerDisconnect
MprAdminPortClearStatsMprAdminPortDisconnectMprAdminPortEnumMprAdminPortGetInfo
MprAdminPortResetMprAdminServerConnectMprAdminServerDisconnectMprAdminServerGetInfo
MprAdminTransportGetInfoMprAdminTransportSetInfoMprAdminUserGetInfoMprAdminUserSetInfo
MprConfigBufferFreeMprConfigInterfaceCreateMprConfigInterfaceDeleteMprConfigInterfaceEnum
MprConfigInterfaceGetHandleMprConfigInterfaceGetInfoMprConfigInterfaceSetInfoMprConfigInterfaceTransportAdd
MprConfigInterfaceTransportEnumMprConfigInterfaceTransportGetHandleMprConfigInterfaceTransportGetInfoMprConfigInterfaceTransportRemove
MprConfigInterfaceTransportSetInfoMprConfigServerBackupMprConfigServerConnectMprConfigServerDisconnect
MprConfigServerGetInfoMprConfigServerRestoreMprConfigTransportCreateMprConfigTransportDelete
MprConfigTransportEnumMprConfigTransportGetHandleMprConfigTransportGetInfoMprConfigTransportSetInfo
MibEntryCreateMibEntryDelete

Functions in rtm.dll:

RtmAddRouteRtmBlockDeleteRoutesRtmCloseEnumerationHandleRtmCreateEnumerationHandle
RtmDeleteRouteRtmDequeueRouteChangeMessageRtmDeregisterClientRtmEnumerateGetNextRoute
RtmGetFirstRouteRtmGetNetworkCountRtmGetNextRouteRtmGetRouteAge
RtmIsRouteRtmRegisterClient

Functions in rtutils.dll:

TraceDeregisterATracePrintfATracePrintfExATracePutsA
TracePutsExATraceRegisterATraceRegisterExATraceVprintfA
TraceVprintfExATraceDumpATraceDumpExA

Functions in rpcrt4.dll:

data_into_ndrdata_size_ndrdouble_array_from_ndrdouble_from_ndr
enum_from_ndrfloat_array_from_ndrfloat_from_ndrI_RpcAllocate
I_RpcBindingCopyI_RpcBindingInqDynamicEndpointAI_RpcBindingInqTransportTypeI_RpcBindingIsClientLocal
I_RpcClearMutexI_RpcDeleteMutexI_RpcFreeI_RpcFreeBuffer
I_RpcGetAssociationContextI_RpcGetBufferI_RpcGetCurrentCallHandleI_RpcIfInqTransferSyntaxes
I_RpcMapWin32StatusI_RpcMonitorAssociationI_RpcNsBindingSetEntryNameAchar_array_from_ndr
RpcObjectSetInqFnRpcObjectSetTypeRpcStringBindingComposeARpcStringBindingParseA
RpcStringFreeARpcTestCancelRpcObjectInqTypeRpcNsBindingInqEntryNameA
char_from_ndrdata_from_ndr

Functions in rpcns4.dll:

/TR>
I_RpcNsGetBufferI_RpcNsRaiseExceptionI_RpcNsSendReceiveI_RpcReBindBuffer
I_RpcRequestMutexI_RpcSendReceiveI_RpcServerRegisterForwardFunctionI_RpcSetAssociationContext
I_RpcSsDontSerializeContextI_RpcStopMonitorAssociationI_UuidCreatelong_array_from_ndr
long_from_ndrlong_from_ndr_tempMesBufferHandleResetMesDecodeBufferHandleCreate
MesDecodeIncrementalHandleCreateMesEncodeDynBufferHandleCreateMesEncodeFixedBufferHandleCreateMesEncodeIncrementalHandleCreate
MesHandleFreeMesIncrementalHandleResetMesInqProcEncodingIdMIDL_wchar_strcpy
MIDL_wchar_strlenNDRCContextBindingNDRCContextMarshallNDRCContextUnmarshall
NDRcopyNDRSContextMarshallNDRSContextUnmarshallRpcBindingInqAuthClientA
RpcBindingServerFromClientRpcBindingSetAuthInfoARpcImpersonateClientRpcMacSetYieldInfo
RpcMgmtInqDefaultProtectLevelRpcMgmtInqIfIdsRpcProtseqVectorFreeARpcRaiseException
RpcRevertToSelfRpcRevertToSelfExRpcServerInqBindingsRpcServerInqIf
RpcServerListenRpcServerRegisterAuthInfoARpcServerRegisterIfRpcServerRegisterIfEx
RpcServerUnregisterIfRpcServerUseAllProtseqsRpcServerUseAllProtseqsExRpcServerUseAllProtseqsIf
RpcServerUseAllProtseqsIfExRpcServerUseProtseqARpcServerUseProtseqEpARpcServerUseProtseqEpExA
RpcServerUseProtseqExARpcServerUseProtseqIfARpcServerUseProtseqIfExARpcSmAllocate
RpcSmClientFreeRpcSmDestroyClientContextRpcSmDisableAllocateRpcSmEnableAllocate
RpcSmFreeRpcSmGetThreadHandleRpcSmSetClientAllocFreeRpcSmSetThreadHandle
RpcSmSwapClientAllocFreeRpcSsAllocateRpcSsDestroyClientContextRpcSsDisableAllocate
RpcSsDontSerializeContextRpcSsEnableAllocateRpcSsFreeRpcSsGetThreadHandle
RpcSsSetClientAllocFreeRpcSsSetThreadHandleRpcSsSwapClientAllocFreeRpcWinSetYieldInfo
RpcWinSetYieldTimeoutshort_array_from_ndrshort_from_ndrshort_from_ndr_temp
tree_into_ndrtree_peek_ndrtree_size_ndrUuidCompare
UuidCreateUuidCreateNilUuidEqualUuidFromStringA
UuidHashUuidIsNilUuidToStringADceErrorInqTextA
RpcBindingCopyRpcBindingFreeRpcBindingFromStringBindingARpcBindingInqAuthInfoA
RpcBindingInqObjectRpcBindingResetRpcBindingSetObjectRpcBindingToStringBindingA
RpcBindingVectorFreeRpcCancelThreadRpcEpRegisterARpcEpRegisterNoReplaceA
RpcEpResolveBindingRpcEpUnregisterRpcIfIdVectorFreeRpcIfInqId
RpcMgmtEnableIdleCleanupRpcMgmtEpEltInqBeginRpcMgmtEpEltInqDoneRpcMgmtEpEltInqNextA
RpcMgmtEpUnregisterRpcMgmtInqComTimeoutRpcMgmtInqServerPrincNameARpcMgmtInqStats
RpcMgmtIsServerListeningRpcMgmtSetAuthorizationFnRpcMgmtSetCancelTimeoutRpcMgmtSetComTimeout
RpcMgmtSetServerStackSizeRpcMgmtStatsVectorFreeRpcMgmtStopServerListeningRpcMgmtWaitServerListen
RpcNetworkInqProtseqsARpcNetworkIsProtseqValidAI_RpcPauseExecution
RpcNsBindingExportARpcNsBindingImportBeginARpcNsBindingImportDoneRpcNsBindingImportNext
RpcNsBindingLookupDoneRpcNsBindingLookupNextRpcNsBindingSelectRpcNsBindingUnexportA
RpcNsEntryExpandNameARpcNsEntryObjectInqBeginARpcNsEntryObjectInqDoneRpcNsEntryObjectInqNext
RpcNsGroupDeleteARpcNsGroupMbrAddARpcNsGroupMbrInqBeginARpcNsGroupMbrInqDone
RpcNsGroupMbrInqNextARpcNsGroupMbrRemoveARpcNsMgmtBindingUnexportARpcNsMgmtEntryCreateA
RpcNsMgmtEntryDeleteARpcNsMgmtEntryInqIfIdsARpcNsMgmtHandleSetExpAgeRpcNsMgmtInqExpAge
RpcNsMgmtSetExpAgeRpcNsProfileDeleteARpcNsProfileEltAddARpcNsProfileEltInqBeginA
RpcNsProfileEltInqDoneRpcNsProfileEltInqNextARpcNsProfileEltRemoveARpcNsBindingLookupBeginA

Functions in setupapi.dll:

SetupAddToDiskSpaceListASetupAddToSourceListASetupCancelTemporarySourceListSetupCloseFileQueue
SetupCloseInfFileSetupCommitFileQueueASetupCopyErrorASetupCreateDiskSpaceListA
SetupDecompressOrCopyFileASetupDefaultQueueCallbackASetupDeleteErrorASetupDestroyDiskSpaceList
SetupFindFirstLineASetupFindNextLineSetupFindNextMatchLineASetupFreeSourceListA
SetupGetBinaryFieldSetupGetFieldCountSetupGetFileCompressionInfoASetupGetInfFileListA
SetupGetInflnformationSetupGetIntFieldSetupGetLineByIndexASetupGetLineCountA
SetupGetLineTextASetupGetMultiSzFieldASetupGetSourceFileLocationASetupGetSourceFileSizeA
SetupGetSourceInfoASetupGetStringFieldASetupGetTargetPathASetupInitDefaultQueueCallback
SetupInitDefaultQueueCallbackExSetupInitializeFileLogASetupInstallFileASetupInstallFileExA
SetupInstallFilesFromInfSectionASetupInstallFromInfSectionASetupInstallServicesFromInfSectionASetupIterateCabinetA
SetupLogErrorASetupLogFileASetupOpenAppendInfFileASetupOpenFileQueue
SetupOpenInfFileASetupOpenMasterInfSetupPromptForDiskASetupPromptReboot
SetupQueryDrivesInDiskSpaceListASetupQueryFileLogASetupQueryInfFileInformationASetupQueryInfVersionInformationA
SetupQuerySourceListASetupQuerySpaceRequiredOnDriveASetupQueueCopyASetupQueueCopySectionA
SetupQueueDefaultCopyASetupQueueDeleteASetupQueueDeleteSectionASetupQueueRenameA
SetupQueueRenameSectionASetupRemoveFileLogEntryASetupRemoveFromDiskSpaceListASetupRemoveFromSourceListA
SetupRemoveInstallSectionFromDiskSpaceListASetupRemoveSectionFromDiskSpaceListASetupRenameErrorASetupScanFileQueueA
SetupSetDirectoryIdASetupSetPlatformPathOverrideASetupSetSourceListASetupTermDefaultQueueCallback
SetupTerminateFileLogSetupAddInstallSectionToDiskSpaceListASetupAddSectionToDiskSpaceListA

Functions in scrnsave.dll:

DefScreenSaverProcRegisterDialogClassesScreenSaverConfigureDialogScreenSaverProc

Functions in shlwapi.dll:

TR>
SHDeleteEmptyKeyASHDeleteKeyASHDeleteValueASHEnumKeyExA
SHEnumValueA
SHGetValueASHOpenRegStreamASHQueryInfoKeyA
SHQueryValueExAChrCmplPathAddBackslashAStrTrimA
PathAddExtentionPathAppendAPathBuildRootAPathCanonicalizeA
PathCombineAPathCommonPrefixAPathCompactPathAPathCompactPathExA
PathFileExistsAPathFindExtensionAPathFindFileNameAPathFindNextComponentA
PathFindOnPathAPathGetArgsAPathGetCharTypePathGetDriveNumberA
PathIsContentTypeAPathIsDirectoryAPathIsFileSpecAPathIsHTMLFileA
PathIsPrefixAPathIsRelativeAPathIsRootAPathIsSameRootA
PathIsSystemFolderAPathIsUNCAPathIsUNCServerAPathIsUNCServerShareA
PathIsURLAPathMakePrettyAPathMakeSystemFolderAPathMatchSpecA
PathParseIconLocationAPathQuoteSpacesAPathRelativePathToAPathRemoveArgsA
PathRemoveBackslashAPathRemoveBlanksAPathRemoveExtensionAPathRemoveFileSpecA
PathRenameExtensionAPathSearchAndQualifyAPathSetDlgItemPathAPathSkipRootA
PathStripPathAPathStripToRootAPathUnmakeSystemFolderAPathUnquoteSpacesA
SHRegCreateUSKeyASHRegDeleteEmptyUSKeyASHRegDeleteUSValueASHRegEnumUSKeyA
SHRegEnumUSValueASHRegGetUSValueASHRegOpenUSKeyASHRegQueryInfoUSKeyA
SHRegQueryUSValueASHRegSetUSValueASHRegWriteUSValueASHSetValueA
StrChrAStrChrlAStrCmpNAStrCmpNIA
StrCpyNStrCSpnAStrCSpnlStrDupA
StrFormatByteSizeAStrFromTimeIntervalAStrIsIntlEqualAStrNCatA
StrPBrkAStrRChrAStrRStrlAStrSpnA
StrStrAStrStrlAStrToIntAStrToIntExA

Functions in winscard.dll:

SCardCancelSCardConnectASCardControlSCardDisconnect
SCardEndTransactionSCardEstablishContextSCardForgetCardTypeASCardForgetReaderA
SCardForgetReaderGroupASCardFreeMemorySCardGetAttribSCardGetProviderIdA
SCardGetStatusChangeASCardIntroduceCardTypeASCardIntroduceReaderASCardIntroduceReaderGroupA
SCardListCardsASCardListInterfacesASCardListReaderGroupsASCardListReadersA
SCardLocateCardsASCardReconnectSCardReleaseContextSCardRemoveReaderFromGroupA
SCardSetAttribSCardStateSCardTransmitSCardBeginTransaction
SCardAddReaderToGroupA

Functions in mswsock.dll:

AcceptExGetAcceptExSockaddrsTransmitFileWSARecvEx

Functions in wsock32.dll:

EnumProtocolsAGetAddressByNameAGetNameByTypeAgetpeername
GetServiceAgetsocknameGetTypeByNameASetServiceA

Functions in tapi32.dll:

lineAcceptlineAddProviderAlineAddToConferencelineAgentSpecific
lineAnswerlineBlindTransferAlineCloselineCompleteCall
lineCompleteTransferlineConfigDialogAlineConfigDialogEditAlineConfigProvider
lineDeallocateCalllineDevSpecificlineDevSpecificFeaturelineDialA
lineDroplineForwardAlineGatherDigitsAlineGenerateDigitsA
lineGenerateTonelineGetAddressCapsAlineGetAddressIDAlineGetAddressStatusA
lineGetAgentActivityListAlineGetAgentCapsAlineGetAgentGroupListAlineGetAgentStatusA
lineGetAppPriorityAlineGetCallInfoAlineGetCallStatuslineGetConfRelatedCalls
lineGetCountryAlineGetDevCapsAlineGetDevConfigAlineGetIconA
lineGetIDAlineGetLineDevStatusAlineGetMessagelineGetNewCalls
lineGetNumRingslineGetProviderListAlineGetRequestAlineGetStatusMessages
lineGetTranslateCapsAlineHandoffAlineHoldlineInitialize
lineInitializeExAlineMakeCallAlineMonitorDigitslineMonitorMedia
lineMonitorToneslineNegotiateAPIVersionlineNegotiateExtVersionlineOpenA
lineParkAlinePickupAlinePrepareAddToConferenceAlineProxyMessage
lineProxyResponselineRedirectAlineRegisterRequestRecipientlineReleaseUserUserInfo
lineRemoveFromConferencelineRemoveProviderlineSecureCalllineSendUserUserInfo
lineSetAgentActivitylineSetAgentGrouplineSetAgentStatelineSetAppPriorityA
lineSetAppSpecificlineSetCallDatalineSetCallParamslineSetCallPrivilege
lineSetCallQualityOfServicelineSetCallTreatmentlineSetCurrentLocationlineSetDevConfigA
lineSetLineDevStatuslineSetMediaControllineSetMediaModelineSetNumRings
lineSetStatusMessageslineSetTerminallineSetTollListAlineSetupConferenceA
lineSetupTransferAlineShutdownlineSwapHoldlineTranslateAddressA
lineTranslateDialogAlineUncompleteCalllineUnholdlineUnparkA
phoneClosephoneConfigDialogAphoneDevSpecificphoneGetButtonInfoA
phoneGetDataphoneGetDevCapsAphoneGetDisplayphoneGetGain
phoneGetHookSwitchphoneGetIconAphoneGetIDAphoneGetLamp
phoneGetMessagephoneGetRingphoneGetStatusAphoneGetStatusMessages
phoneGetVolumephoneInitializephoneInitializeExAphoneNegotiateAPIVersion
phoneNegotiateExtVersionphoneOpenphoneSetButtonInfoAphoneSetData
phoneSetDisplayphoneSetGainphoneSetHookSwitchphoneSetLamp
phoneSetRingphoneSetStatusMessagesphoneSetVolumephoneShutdown
tapiGetLocationInfoAtapiRequestMakeCallA

Functions in vfw32.dll:

AVIBuildFilterAAVIClearClipboardAVIFileAddRefAVIFileCreateStreamA
AVIFileEndRecordAVIFileExitAVIFileGetStreamAVIFileInfoA
AVIFileInitAVIFileOpenAAVIFileReadDataAVIFileRelease
AVIFileWriteDataAVIGetFromClipboardAVIMakeCompressedStreamAVIMakeFileFromStreams
AVIMakeStreamFromClipboardAVIPutFileOnClipboardAVISaveAAVISaveOptions
AVISaveOptionsFreeAVISaveVAAVIStreamAddRefAVIStreamBeginStreaming
AVIStreamCreateAVIStreamEndStreamingAVIStreamFindSampleAVIStreamGetFrame
AVIStreamGetFrameCloseAVIStreamGetFrameOpenAVIStreamInfoAAVIStreamLength
AVIStreamOpenFromFileAAVIStreamReadAVIStreamReadDataAVIStreamReadFormat
AVIStreamReleaseAVIStreamSampleToTimeAVIStreamSetFormatAVIStreamStart
AVIStreamTimeToSampleAVIStreamWriteAVIStreamWriteDatacapCreateCaptureWindowA
capGetDriverDescriptionACreateEditableStreamDrawDibBeginDrawDibChangePalette
DrawDibCloseDrawDibDrawDrawDibEndDrawDibGetBuffer
DrawDibGetPaletteDrawDibOpenDrawDibProfileDisplayDrawDibRealize
DrawDibSetPaletteDrawDibStartDrawDibStopDrawDibTime
EditStreamCloneEditStreamCopyEditStreamCutEditStreamPaste
EditStreamSetInfoAEditStreamSetNameAGetOpenFileNamePreviewAGetSaveFileNamePreviewA
ICCloseICCompressICCompressorChooseICCompressorFree
ICDecompressICDecompressExICDecompressExBeginICDecompressExQuery
ICDrawICDrawBeginICDrawSuggestFormatICGetDisplayFormat
ICGetInfoICImageCompressICImageDecompressICInfo
ICInstallICLocateICOpenICOpenFunction
ICRemoveICSendMessageICSeqCompressFrameICSeqCompressFrameEnd
ICSeqCompressFrameStartICSetStatusProcMCIWndCreateAMCIWndRegisterClass

Functions in wintrust.dll:

WinVerifyTrust