WinApi

Creates a script function for many windows dlls functions automatically.

OutputVar := Function(Arg1, Arg2, ...)
Function Example: cmd := GetCommandLine()

Parameters

OutputVar

The name of the variable in which to store the actual return value of a function same as in DllCall or DynaCall. If the function is of a type that does not return a value, the result is an undefined integer. If the function cannot be called due to an error, the OutputVar is set blank (an empty string) and ErrorLevel is set.

Function

The name of dll function to call. See example.

Arg1, Arg2, ... (optional)

Parameters to be passed to function.
All parameters are optional, when omitted "" will be used for AStr, WStr and Str and 0 otherwise.

General Remarks

Some functions are in conflict with ahk functions, those are appended an underscore: Sleep_, SendInput_, SendMessage_, PostMessage_, BlockInput_, GetKeyState_, SetTimer_, Send_, Shutdown_.

Parameter * or P is not used in WinApi, instead such parameters are of type PTR, use getvar(var:=0) if you like to store the value in variable directly.
The variable is of type Int64 by default, to convert to desired type use Cast or ToChar, ToShort, ToInt, ToUChar, ToUShort, ToUInt, this is mainly required to convert Unsigned value to Signed.

Related

DynaCall, #DllImport

Examples

MsgBox LoadLibrary(A_AhkPath)

GetCommandLine,cmd
MsgBox cmd

StrToIntEx("-2147483648",0,getvar(var:=0))
MsgBox ToInt(var)

OnMessage(0x999,"Ox999")
SendMessage_(A_ScriptHwnd,0x999) ; same as DllCall("user32\SendMessage","PTR",A_ScriptHwnd,"UINT",0x999,"PTR",0,"PTR",0,"PTR")
ExitApp
Ox999(w,l,m,h){
  MsgBox w "`n" l "`n" m "`n" h
  return 1
}

Definitions

Each table below has 3 columns.
First column contains ahk definition using following types (last parameter is always the return type).

DllCall DynaCall equivalent
Int i
Str s
AStr a
WStr w
Short h
Char c
Float f
Double d
PTR t
Int64 i6
U unsigned prefix u
Int (64-bit) / Short (32-bit) v
Uint (64-bit) / Ushort (32-bit) x
Short (Unicode) / Char (Ansi) y
Ushort (Unicode) / Uchar (Ansi) z

Second column shows windows return type of function.
Third column shows the function and original parameter definition.

Advapi32.dll, Comctl32.dll, Comdlg32.dll, Crypt32.dll, Gdi32.dll, Gdiplus.dll, Glu32.dll, Hid.dll, Kernel32.dll, Ole32.dll, Oleacc.dll, OleAut32.dll, Opengl32.dll, Rasapi32.dll, Rasdlg.dll, Rasman.dll, Shell32.dll, Shlwapi.dll, Tapi32.dll, User32.dll, Userenv.dll, UxTheme.dll, Version.dll, Winhttp.dll, Wininet.dll, Winmm.dll, Ws2_32.dll

Advapi32.dll

siBOOLAbortSystemShutdown(_In_opt_ LPTSTR lpMachineName)
aiBOOLAbortSystemShutdownA(_In_opt_ LPSTR lpMachineName)
wiBOOLAbortSystemShutdownW(_In_opt_ LPWSTR lpMachineName)
ttuitttttiBOOLAccessCheck(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ HANDLE ClientToken, _In_ DWORD DesiredAccess, _In_ PGENERIC_MAPPING GenericMapping, _Out_opt_ PPRIVILEGE_SET PrivilegeSet, _Inout_ LPDWORD PrivilegeSetLength, _Out_ LPDWORD GrantedAccess, _Out_ LPBOOL AccessStatus)
stsstuititttiBOOLAccessCheckAndAuditAlarm(_In_ LPCTSTR SubsystemName, _In_opt_ LPVOID HandleId, _In_ LPTSTR ObjectTypeName, _In_opt_ LPTSTR ObjectName, _In_ PSECURITY_DESCRIPTOR SecurityDescriptor, _In_ DWORD DesiredAccess, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPBOOL AccessStatus, _Out_ LPBOOL pfGenerateOnClose)
ataatuititttiBOOLAccessCheckAndAuditAlarmA(_In_ LPCSTR SubsystemName, _In_opt_ LPVOID HandleId, _In_ LPSTR ObjectTypeName, _In_opt_ LPSTR ObjectName, _In_ PSECURITY_DESCRIPTOR SecurityDescriptor, _In_ DWORD DesiredAccess, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPBOOL AccessStatus, _Out_ LPBOOL pfGenerateOnClose)
wtwwtuititttiBOOLAccessCheckAndAuditAlarmW(_In_ LPCWSTR SubsystemName, _In_opt_ LPVOID HandleId, _In_ LPWSTR ObjectTypeName, _In_opt_ LPWSTR ObjectName, _In_ PSECURITY_DESCRIPTOR SecurityDescriptor, _In_ DWORD DesiredAccess, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPBOOL AccessStatus, _Out_ LPBOOL pfGenerateOnClose)
tttuituitttttiBOOLAccessCheckByType(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID PrincipalSelfSid, _In_ HANDLE ClientToken, _In_ DWORD DesiredAccess, _Inout_opt_ POBJECT_TYPE_LIST ObjectTypeList, _In_ DWORD ObjectTypeListLength, _In_ PGENERIC_MAPPING GenericMapping, _Out_opt_ PPRIVILEGE_SET PrivilegeSet, _Inout_ LPDWORD PrivilegeSetLength, _Out_ LPDWORD GrantedAccess, _Out_ LPBOOL AccessStatus)
stssttuiiuituititttiBOOLAccessCheckByTypeAndAuditAlarm(_In_ LPCTSTR SubsystemName, _In_ LPVOID HandleId, _In_ LPCTSTR ObjectTypeName, _In_opt_ LPCTSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID PrincipalSelfSid, _In_ DWORD DesiredAccess, _In_ AUDIT_EVENT_TYPE AuditType, _In_ DWORD Flags, _Inout_opt_ POBJECT_TYPE_LIST ObjectTypeList, _In_ DWORD ObjectTypeListLength, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPBOOL AccessStatus, _Out_ LPBOOL pfGenerateOnClose)
ataattuiiuituititttiBOOLAccessCheckByTypeAndAuditAlarmA(_In_ LPCSTR SubsystemName, _In_ LPVOID HandleId, _In_ LPCSTR ObjectTypeName, _In_opt_ LPCSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID PrincipalSelfSid, _In_ DWORD DesiredAccess, _In_ AUDIT_EVENT_TYPE AuditType, _In_ DWORD Flags, _Inout_opt_ POBJECT_TYPE_LIST ObjectTypeList, _In_ DWORD ObjectTypeListLength, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPBOOL AccessStatus, _Out_ LPBOOL pfGenerateOnClose)
wtwwttuiiuituititttiBOOLAccessCheckByTypeAndAuditAlarmW(_In_ LPCWSTR SubsystemName, _In_ LPVOID HandleId, _In_ LPCWSTR ObjectTypeName, _In_opt_ LPCWSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID PrincipalSelfSid, _In_ DWORD DesiredAccess, _In_ AUDIT_EVENT_TYPE AuditType, _In_ DWORD Flags, _Inout_opt_ POBJECT_TYPE_LIST ObjectTypeList, _In_ DWORD ObjectTypeListLength, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPBOOL AccessStatus, _Out_ LPBOOL pfGenerateOnClose)
tttuituitttttiBOOLAccessCheckByTypeResultList(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID PrincipalSelfSid, _In_ HANDLE ClientToken, _In_ DWORD DesiredAccess, _Inout_opt_ POBJECT_TYPE_LIST ObjectTypeList, _In_ DWORD ObjectTypeListLength, _Out_ PGENERIC_MAPPING GenericMapping, _Out_opt_ PPRIVILEGE_SET PrivilegeSet, _Inout_ LPDWORD PrivilegeSetLength, _Out_ LPDWORD GrantedAccessList, _Out_ LPDWORD AccessStatusList)
stssttuiiuituititttiBOOLAccessCheckByTypeResultListAndAuditAlarm(_In_ LPCTSTR SubsystemName, _In_ LPVOID HandleId, _In_ LPCTSTR ObjectTypeName, _In_opt_ LPCTSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID PrincipalSelfSid, _In_ DWORD DesiredAccess, _In_ AUDIT_EVENT_TYPE AuditType, _In_ DWORD Flags, _Inout_opt_ POBJECT_TYPE_LIST ObjectTypeList, _In_ DWORD ObjectTypeListLength, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPDWORD AccessStatusList, _Out_ LPBOOL pfGenerateOnClose)
ataattuiiuituititttiBOOLAccessCheckByTypeResultListAndAuditAlarmA(_In_ LPCSTR SubsystemName, _In_ LPVOID HandleId, _In_ LPCSTR ObjectTypeName, _In_opt_ LPCSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID PrincipalSelfSid, _In_ DWORD DesiredAccess, _In_ AUDIT_EVENT_TYPE AuditType, _In_ DWORD Flags, _Inout_opt_ POBJECT_TYPE_LIST ObjectTypeList, _In_ DWORD ObjectTypeListLength, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPDWORD AccessStatusList, _Out_ LPBOOL pfGenerateOnClose)
sttssttuiiuituititttiBOOLAccessCheckByTypeResultListAndAuditAlarmByHandle(_In_ LPCTSTR SubsystemName, _In_ LPVOID HandleId, _In_ HANDLE ClientToken, _In_ LPCTSTR ObjectTypeName, _In_opt_ LPCTSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID PrincipalSelfSid, _In_ DWORD DesiredAccess, _In_ AUDIT_EVENT_TYPE AuditType, _In_ DWORD Flags, _Inout_opt_ POBJECT_TYPE_LIST ObjectTypeList, _In_ DWORD ObjectTypeListLength, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPDWORD AccessStatusList, _Out_ LPBOOL pfGenerateOnClose)
attaattuiiuituititttiBOOLAccessCheckByTypeResultListAndAuditAlarmByHandleA(_In_ LPCSTR SubsystemName, _In_ LPVOID HandleId, _In_ HANDLE ClientToken, _In_ LPCSTR ObjectTypeName, _In_opt_ LPCSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID PrincipalSelfSid, _In_ DWORD DesiredAccess, _In_ AUDIT_EVENT_TYPE AuditType, _In_ DWORD Flags, _Inout_opt_ POBJECT_TYPE_LIST ObjectTypeList, _In_ DWORD ObjectTypeListLength, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPDWORD AccessStatusList, _Out_ LPBOOL pfGenerateOnClose)
wttwwttuiiuituititttiBOOLAccessCheckByTypeResultListAndAuditAlarmByHandleW(_In_ LPCWSTR SubsystemName, _In_ LPVOID HandleId, _In_ HANDLE ClientToken, _In_ LPCWSTR ObjectTypeName, _In_opt_ LPCWSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID PrincipalSelfSid, _In_ DWORD DesiredAccess, _In_ AUDIT_EVENT_TYPE AuditType, _In_ DWORD Flags, _Inout_opt_ POBJECT_TYPE_LIST ObjectTypeList, _In_ DWORD ObjectTypeListLength, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPDWORD AccessStatusList, _Out_ LPBOOL pfGenerateOnClose)
wtwwttuiiuituititttiBOOLAccessCheckByTypeResultListAndAuditAlarmW(_In_ LPCWSTR SubsystemName, _In_ LPVOID HandleId, _In_ LPCWSTR ObjectTypeName, _In_opt_ LPCWSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID PrincipalSelfSid, _In_ DWORD DesiredAccess, _In_ AUDIT_EVENT_TYPE AuditType, _In_ DWORD Flags, _Inout_opt_ POBJECT_TYPE_LIST ObjectTypeList, _In_ DWORD ObjectTypeListLength, _In_ PGENERIC_MAPPING GenericMapping, _In_ BOOL ObjectCreation, _Out_ LPDWORD GrantedAccess, _Out_ LPDWORD AccessStatusList, _Out_ LPBOOL pfGenerateOnClose)
tuiuitiBOOLAddAccessAllowedAce(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AccessMask, _In_ PSID pSid)
tuiuiuitiBOOLAddAccessAllowedAceEx(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AceFlags, _In_ DWORD AccessMask, _In_ PSID pSid)
tuiuiuitttiBOOLAddAccessAllowedObjectAce(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AceFlags, _In_ DWORD AccessMask, _In_opt_ GUID *ObjectTypeGuid, _In_opt_ GUID *InheritedObjectTypeGuid, _In_ PSID pSid)
tuiuitiBOOLAddAccessDeniedAce(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AccessMask, _In_ PSID pSid)
tuiuiuitiBOOLAddAccessDeniedAceEx(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AceFlags, _In_ DWORD AccessMask, _In_ PSID pSid)
tuiuiuitttiBOOLAddAccessDeniedObjectAce(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AceFlags, _In_ DWORD AccessMask, _In_opt_ GUID *ObjectTypeGuid, _In_opt_ GUID *InheritedObjectTypeGuid, _In_ PSID pSid)
tuiuituiiBOOLAddAce(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD dwStartingAceIndex, _In_ LPVOID pAceList, _In_ DWORD nAceListLength)
tuiuitiiiBOOLAddAuditAccessAce(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD dwAccessMask, _In_ PSID pSid, _In_ BOOL bAuditSuccess, _In_ BOOL bAuditFailure)
tuiuiuitiiiBOOLAddAuditAccessAceEx(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AceFlags, _In_ DWORD dwAccessMask, _In_ PSID pSid, _In_ BOOL bAuditSuccess, _In_ BOOL bAuditFailure)
tuiuiuitttiiiBOOLAddAuditAccessObjectAce(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AceFlags, _In_ DWORD AccessMask, _In_opt_ GUID *ObjectTypeGuid, _In_opt_ GUID *InheritedObjectTypeGuid, _In_ PSID pSid, _In_ BOOL bAuditSuccess, _In_ BOOL bAuditFailure)
tuiuiucuitwtiBOOLAddConditionalAce(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AceFlags, _In_ UCHAR AceType, _In_ DWORD AccessMask, _In_ PSID pSid, _In_ PWCHAR ConditionStr, _Out_ DWORD *ReturnLength)
tuiuiuitiBOOLAddMandatoryAce(_Inout_ PACL pAcl, _In_ DWORD dwAceRevision, _In_ DWORD AceFlags, _In_ DWORD MandatoryPolicy, _In_ PSID pLabelSid)
wtuiDWORDAddUsersToEncryptedFile(_In_ LPCWSTR lpFileName, _In_ PENCRYPTION_CERTIFICATE_LIST pUsers)
tituittiBOOLAdjustTokenGroups(_In_ HANDLE TokenHandle, _In_ BOOL ResetToDefault, _In_opt_ PTOKEN_GROUPS NewState, _In_ DWORD BufferLength, _Out_opt_ PTOKEN_GROUPS PreviousState, _Out_opt_ PDWORD ReturnLength)
tituittiBOOLAdjustTokenPrivileges(_In_ HANDLE TokenHandle, _In_ BOOL DisableAllPrivileges, _In_opt_ PTOKEN_PRIVILEGES NewState, _In_ DWORD BufferLength, _Out_opt_ PTOKEN_PRIVILEGES PreviousState, _Out_opt_ PDWORD ReturnLength)
tucuiuiuiuiuiuiuiuitiBOOLAllocateAndInitializeSid(_In_ PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority, _In_ BYTE nSubAuthorityCount, _In_ DWORD dwSubAuthority0, _In_ DWORD dwSubAuthority1, _In_ DWORD dwSubAuthority2, _In_ DWORD dwSubAuthority3, _In_ DWORD dwSubAuthority4, _In_ DWORD dwSubAuthority5, _In_ DWORD dwSubAuthority6, _In_ DWORD dwSubAuthority7, _Out_ PSID *pSid)
tiBOOLAllocateLocallyUniqueId(_Out_ PLUID Luid)
uiuiiBOOLAreAllAccessesGranted(_In_ DWORD GrantedAccess, _In_ DWORD DesiredAccess)
uiuiiBOOLAreAnyAccessesGranted(_In_ DWORD GrantedAccess, _In_ DWORD DesiredAccess)
ttuitucBOOLEANAuditComputeEffectivePolicyBySid(_In_ const PSID pSid, _In_ const GUID *pSubCategoryGuids, _In_ ULONG PolicyCount, _Out_ PAUDIT_POLICY_INFORMATION *ppAuditPolicy)
ttuitucBOOLEANAuditComputeEffectivePolicyByToken(_In_ HANDLE hTokenHandle, _In_ const GUID *pSubCategoryGuids, _In_ ULONG PolicyCount, _Out_ PAUDIT_POLICY_INFORMATION *ppAuditPolicy)
ttucBOOLEANAuditEnumerateCategories(_Out_ GUID **ppAuditCategoriesArray, _Out_ PULONG pCountReturned)
tucBOOLEANAuditEnumeratePerUserPolicy(_Out_ PPOLICY_AUDIT_SID_ARRAY *ppAuditSidArray)
tucttucBOOLEANAuditEnumerateSubCategories(_In_ const GUID *pAuditCategoryGuid, _In_ BOOLEAN bRetrieveAllSubCategories, _Out_ GUID **ppAuditSubCategoriesArray, _Out_ PULONG pCountReturned)
tiVOIDAuditFree(_In_ PVOID Buffer)
uitucBOOLEANAuditLookupCategoryGuidFromCategoryId(_In_ POLICY_AUDIT_EVENT_TYPE AuditCategoryId, _Out_ GUID *pAuditCategoryGuid)
ttucBOOLEANAuditLookupCategoryIdFromCategoryGuid(_In_ const GUID *pAuditCategoryGuid, _Out_ PPOLICY_AUDIT_EVENT_TYPE pAuditCategoryId)
tsucBOOLEANAuditLookupCategoryName(_In_ const GUID *pAuditCategoryGuid, _Out_ PTSTR *ppszCategoryName)
taucBOOLEANAuditLookupCategoryNameA(_In_ const GUID *pAuditCategoryGuid, _Out_ PTSTR *ppszCategoryName)
twucBOOLEANAuditLookupCategoryNameW(_In_ const GUID *pAuditCategoryGuid, _Out_ PTSTR *ppszCategoryName)
tsucBOOLEANAuditLookupSubCategoryName(_In_ const GUID *pAuditSubCategoryGuid, _Out_ PTSTR *ppszSubCategoryName)
taucBOOLEANAuditLookupSubCategoryNameA(_In_ const GUID *pAuditSubCategoryGuid, _Out_ PTSTR *ppszSubCategoryName)
twucBOOLEANAuditLookupSubCategoryNameW(_In_ const GUID *pAuditSubCategoryGuid, _Out_ PTSTR *ppszSubCategoryName)
wtucBOOLEANAuditQueryGlobalSacl(_In_ PCWSTR ObjectTypeName, _Out_ PACL *Acl)
atucBOOLEANAuditQueryGlobalSaclA(_In_ PCWSTR ObjectTypeName, _Out_ PACL *Acl)
wtucBOOLEANAuditQueryGlobalSaclW(_In_ PCWSTR ObjectTypeName, _Out_ PACL *Acl)
ttuitucBOOLEANAuditQueryPerUserPolicy(_In_ const PSID pSid, _In_ const GUID *pSubCategoryGuids, _In_ ULONG PolicyCount, _Out_ PAUDIT_POLICY_INFORMATION *ppAuditPolicy)
uitucBOOLEANAuditQuerySecurity(_In_ SECURITY_INFORMATION SecurityInformation, _Out_ PSECURITY_DESCRIPTOR *ppSecurityDescriptor)
tuitucBOOLEANAuditQuerySystemPolicy(_In_ const GUID *pSubCategoryGuids, _In_ ULONG PolicyCount, _Out_ PAUDIT_POLICY_INFORMATION *ppAuditPolicy)
wtucBOOLEANAuditSetGlobalSacl(_In_ PCWSTR ObjectTypeName, _In_opt_ PACL Acl)
atucBOOLEANAuditSetGlobalSaclA(_In_ PCWSTR ObjectTypeName, _In_opt_ PACL Acl)
wtucBOOLEANAuditSetGlobalSaclW(_In_ PCWSTR ObjectTypeName, _In_opt_ PACL Acl)
ttuiucBOOLEANAuditSetPerUserPolicy(_In_ const PSID pSid, _In_ PCAUDIT_POLICY_INFORMATION pAuditPolicy, _In_ ULONG PolicyCount)
uitucBOOLEANAuditSetSecurity(_In_ SECURITY_INFORMATION SecurityInformation, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor)
tuiucBOOLEANAuditSetSystemPolicy(_In_ PCAUDIT_POLICY_INFORMATION pAuditPolicy, _In_ ULONG PolicyCount)
tsiBOOLBackupEventLog(_In_ HANDLE hEventLog, _In_ LPCTSTR lpBackupFileName)
taiBOOLBackupEventLogA(_In_ HANDLE hEventLog, _In_ LPCSTR lpBackupFileName)
twiBOOLBackupEventLogW(_In_ HANDLE hEventLog, _In_ LPCWSTR lpBackupFileName)
tsuiuiuiiVOIDBuildExplicitAccessWithName(_Inout_ PEXPLICIT_ACCESS pExplicitAccess, _In_opt_ LPTSTR pTrusteeName, _In_ DWORD AccessPermissions, _In_ ACCESS_MODE AccessMode, _In_ DWORD Inheritance)
tauiuiuiiVOIDBuildExplicitAccessWithNameA(_Inout_ PEXPLICIT_ACCESS pExplicitAccess, _In_opt_ LPSTR pTrusteeName, _In_ DWORD AccessPermissions, _In_ ACCESS_MODE AccessMode, _In_ DWORD Inheritance)
twuiuiuiiVOIDBuildExplicitAccessWithNameW(_Inout_ PEXPLICIT_ACCESS pExplicitAccess, _In_opt_ LPWSTR pTrusteeName, _In_ DWORD AccessPermissions, _In_ ACCESS_MODE AccessMode, _In_ DWORD Inheritance)
ttuituittttuiDWORDBuildSecurityDescriptor(_In_opt_ PTRUSTEE pOwner, _In_opt_ PTRUSTEE pGroup, _In_ ULONG cCountOfAccessEntries, _In_opt_ PEXPLICIT_ACCESS pListOfAccessEntries, _In_ ULONG cCountOfAuditEntries, _In_opt_ PEXPLICIT_ACCESS pListOfAuditEntries, _In_opt_ PSECURITY_DESCRIPTOR pOldSD, _Out_ PULONG pSizeNewSD, _Out_ PSECURITY_DESCRIPTOR *pNewSD)
ttuituittttuiDWORDBuildSecurityDescriptorA(_In_opt_ PTRUSTEE pOwner, _In_opt_ PTRUSTEE pGroup, _In_ ULONG cCountOfAccessEntries, _In_opt_ PEXPLICIT_ACCESS pListOfAccessEntries, _In_ ULONG cCountOfAuditEntries, _In_opt_ PEXPLICIT_ACCESS pListOfAuditEntries, _In_opt_ PSECURITY_DESCRIPTOR pOldSD, _Out_ PULONG pSizeNewSD, _Out_ PSECURITY_DESCRIPTOR *pNewSD)
ttuituittttuiDWORDBuildSecurityDescriptorW(_In_opt_ PTRUSTEE pOwner, _In_opt_ PTRUSTEE pGroup, _In_ ULONG cCountOfAccessEntries, _In_opt_ PEXPLICIT_ACCESS pListOfAccessEntries, _In_ ULONG cCountOfAuditEntries, _In_opt_ PEXPLICIT_ACCESS pListOfAuditEntries, _In_opt_ PSECURITY_DESCRIPTOR pOldSD, _Out_ PULONG pSizeNewSD, _Out_ PSECURITY_DESCRIPTOR *pNewSD)
tsiVOIDBuildTrusteeWithName(_Inout_ PTRUSTEE pTrustee, _In_opt_ LPTSTR pName)
taiVOIDBuildTrusteeWithNameA(_Inout_ PTRUSTEE pTrustee, _In_opt_ LPSTR pName)
twiVOIDBuildTrusteeWithNameW(_Inout_ PTRUSTEE pTrustee, _In_opt_ LPWSTR pName)
ttuisssiVOIDBuildTrusteeWithObjectsAndName(_Inout_ PTRUSTEE pTrustee, _In_opt_ POBJECTS_AND_NAME pObjName, _In_opt_ SE_OBJECT_TYPE ObjectType, _In_opt_ LPTSTR ObjectTypeName, _In_opt_ LPTSTR InheritedObjectTypeName, _In_opt_ LPTSTR Name)
ttuiaaaiVOIDBuildTrusteeWithObjectsAndNameA(_Inout_ PTRUSTEE pTrustee, _In_opt_ POBJECTS_AND_NAME pObjName, _In_opt_ SE_OBJECT_TYPE ObjectType, _In_opt_ LPSTR ObjectTypeName, _In_opt_ LPSTR InheritedObjectTypeName, _In_opt_ LPSTR Name)
ttuiwwwiVOIDBuildTrusteeWithObjectsAndNameW(_Inout_ PTRUSTEE pTrustee, _In_opt_ POBJECTS_AND_NAME pObjName, _In_opt_ SE_OBJECT_TYPE ObjectType, _In_opt_ LPWSTR ObjectTypeName, _In_opt_ LPWSTR InheritedObjectTypeName, _In_opt_ LPWSTR Name)
tttttiVOIDBuildTrusteeWithObjectsAndSid(_Inout_ PTRUSTEE pTrustee, _In_opt_ POBJECTS_AND_SID pObjSid, _In_opt_ GUID *pObjectGuid, _In_opt_ GUID *pInheritedObjectGuid, _In_opt_ PSID pSid)
tttttiVOIDBuildTrusteeWithObjectsAndSidA(_Inout_ PTRUSTEE pTrustee, _In_opt_ POBJECTS_AND_SID pObjSid, _In_opt_ GUID *pObjectGuid, _In_opt_ GUID *pInheritedObjectGuid, _In_opt_ PSID pSid)
tttttiVOIDBuildTrusteeWithObjectsAndSidW(_Inout_ PTRUSTEE pTrustee, _In_opt_ POBJECTS_AND_SID pObjSid, _In_opt_ GUID *pObjectGuid, _In_opt_ GUID *pInheritedObjectGuid, _In_opt_ PSID pSid)
ttiVOIDBuildTrusteeWithSid(_Inout_ PTRUSTEE pTrustee, _In_opt_ PSID pSid)
ttiVOIDBuildTrusteeWithSidA(_Inout_ PTRUSTEE pTrustee, _In_opt_ PSID pSid)
ttiVOIDBuildTrusteeWithSidW(_Inout_ PTRUSTEE pTrustee, _In_opt_ PSID pSid)
tuiuiuisstssssiBOOLChangeServiceConfig(_In_ SC_HANDLE hService, _In_ DWORD dwServiceType, _In_ DWORD dwStartType, _In_ DWORD dwErrorControl, _In_opt_ LPCTSTR lpBinaryPathName, _In_opt_ LPCTSTR lpLoadOrderGroup, _Out_opt_ LPDWORD lpdwTagId, _In_opt_ LPCTSTR lpDependencies, _In_opt_ LPCTSTR lpServiceStartName, _In_opt_ LPCTSTR lpPassword, _In_opt_ LPCTSTR lpDisplayName)
tuitiBOOLChangeServiceConfig2(_In_ SC_HANDLE hService, _In_ DWORD dwInfoLevel, _In_opt_ LPVOID lpInfo)
tuitiBOOLChangeServiceConfig2A(_In_ SC_HANDLE hService, _In_ DWORD dwInfoLevel, _In_opt_ LPVOID lpInfo)
tuitiBOOLChangeServiceConfig2W(_In_ SC_HANDLE hService, _In_ DWORD dwInfoLevel, _In_opt_ LPVOID lpInfo)
tuiuiuiaataaaaiBOOLChangeServiceConfigA(_In_ SC_HANDLE hService, _In_ DWORD dwServiceType, _In_ DWORD dwStartType, _In_ DWORD dwErrorControl, _In_opt_ LPCSTR lpBinaryPathName, _In_opt_ LPCSTR lpLoadOrderGroup, _Out_opt_ LPDWORD lpdwTagId, _In_opt_ LPCSTR lpDependencies, _In_opt_ LPCSTR lpServiceStartName, _In_opt_ LPCSTR lpPassword, _In_opt_ LPCSTR lpDisplayName)
tuiuiuiwwtwwwwiBOOLChangeServiceConfigW(_In_ SC_HANDLE hService, _In_ DWORD dwServiceType, _In_ DWORD dwStartType, _In_ DWORD dwErrorControl, _In_opt_ LPCWSTR lpBinaryPathName, _In_opt_ LPCWSTR lpLoadOrderGroup, _Out_opt_ LPDWORD lpdwTagId, _In_opt_ LPCWSTR lpDependencies, _In_opt_ LPCWSTR lpServiceStartName, _In_opt_ LPCWSTR lpPassword, _In_opt_ LPCWSTR lpDisplayName)
tttiBOOLCheckTokenMembership(_In_opt_ HANDLE TokenHandle, _In_ PSID SidToCheck, _Out_ PBOOL IsMember)
tsiBOOLClearEventLog(_In_ HANDLE hEventLog, _In_ LPCTSTR lpBackupFileName)
taiBOOLClearEventLogA(_In_ HANDLE hEventLog, _In_ LPCSTR lpBackupFileName)
twiBOOLClearEventLogW(_In_ HANDLE hEventLog, _In_ LPCWSTR lpBackupFileName)
tiVOIDCloseEncryptedFileRaw(_In_ PVOID pvContext)
tiBOOLCloseEventLog(_Inout_ HANDLE hEventLog)
tiBOOLCloseServiceHandle(_In_ SC_HANDLE hSCObject)
tiVOIDCloseThreadWaitChainSession(_In_ HWCT WctHandle)
tuitiBOOLControlService(_In_ SC_HANDLE hService, _In_ DWORD dwControl, _Out_ LPSERVICE_STATUS lpServiceStatus)
tuiuitiBOOLControlServiceEx(_In_ SC_HANDLE hService, _In_ DWORD dwControl, _In_ DWORD dwInfoLevel, _Inout_ PVOID pControlParams)
tuiuitiBOOLControlServiceExA(_In_ SC_HANDLE hService, _In_ DWORD dwControl, _In_ DWORD dwInfoLevel, _Inout_ PVOID pControlParams)
tuiuitiBOOLControlServiceExW(_In_ SC_HANDLE hService, _In_ DWORD dwControl, _In_ DWORD dwInfoLevel, _Inout_ PVOID pControlParams)
tuiuittiBOOLConvertSecurityDescriptorToStringSecurityDescriptor(_In_ PSECURITY_DESCRIPTOR SecurityDescriptor, _In_ DWORD RequestedStringSDRevision, _In_ SECURITY_INFORMATION SecurityInformation, _Out_ LPTSTR *StringSecurityDescriptor, _Out_ PULONG StringSecurityDescriptorLen)
tuiuittiBOOLConvertSecurityDescriptorToStringSecurityDescriptorA(_In_ PSECURITY_DESCRIPTOR SecurityDescriptor, _In_ DWORD RequestedStringSDRevision, _In_ SECURITY_INFORMATION SecurityInformation, _Out_ LPSTR *StringSecurityDescriptor, _Out_ PULONG StringSecurityDescriptorLen)
tuiuittiBOOLConvertSecurityDescriptorToStringSecurityDescriptorW(_In_ PSECURITY_DESCRIPTOR SecurityDescriptor, _In_ DWORD RequestedStringSDRevision, _In_ SECURITY_INFORMATION SecurityInformation, _Out_ LPWSTR *StringSecurityDescriptor, _Out_ PULONG StringSecurityDescriptorLen)
ttiBOOLConvertSidToStringSid(_In_ PSID Sid, _Out_ LPTSTR *StringSid)
ttiBOOLConvertSidToStringSidA(_In_ PSID Sid, _Out_ LPSTR *StringSid)
ttiBOOLConvertSidToStringSidW(_In_ PSID Sid, _Out_ LPWSTR *StringSid)
suittiBOOLConvertStringSecurityDescriptorToSecurityDescriptor(_In_ LPCTSTR StringSecurityDescriptor, _In_ DWORD StringSDRevision, _Out_ PSECURITY_DESCRIPTOR *SecurityDescriptor, _Out_ PULONG SecurityDescriptorSize)
auittiBOOLConvertStringSecurityDescriptorToSecurityDescriptorA(_In_ LPCSTR StringSecurityDescriptor, _In_ DWORD StringSDRevision, _Out_ PSECURITY_DESCRIPTOR *SecurityDescriptor, _Out_ PULONG SecurityDescriptorSize)
wuittiBOOLConvertStringSecurityDescriptorToSecurityDescriptorW(_In_ LPCWSTR StringSecurityDescriptor, _In_ DWORD StringSDRevision, _Out_ PSECURITY_DESCRIPTOR *SecurityDescriptor, _Out_ PULONG SecurityDescriptorSize)
stiBOOLConvertStringSidToSid(_In_ LPCTSTR StringSid, _Out_ PSID *Sid)
atiBOOLConvertStringSidToSidA(_In_ LPCSTR StringSid, _Out_ PSID *Sid)
wtiBOOLConvertStringSidToSidW(_In_ LPCWSTR StringSid, _Out_ PSID *Sid)
ttttuctiBOOLConvertToAutoInheritPrivateObjectSecurity(_In_opt_ PSECURITY_DESCRIPTOR ParentDescriptor, _In_ PSECURITY_DESCRIPTOR CurrentSecurityDescriptor, _Out_ PSECURITY_DESCRIPTOR *NewSecurityDescriptor, _In_opt_ GUID *ObjectType, _In_ BOOLEAN IsDirectoryObject, _In_ PGENERIC_MAPPING GenericMapping)
uittiBOOLCopySid(_In_ DWORD nDestinationSidLength, _Out_ PSID pDestinationSid, _In_ PSID pSourceSid)
tttittiBOOLCreatePrivateObjectSecurity(_In_opt_ PSECURITY_DESCRIPTOR ParentDescriptor, _In_opt_ PSECURITY_DESCRIPTOR CreatorDescriptor, _Out_ PSECURITY_DESCRIPTOR *NewDescriptor, _In_ BOOL IsDirectoryObject, _In_opt_ HANDLE Token, _In_ PGENERIC_MAPPING GenericMapping)
ttttiuittiBOOLCreatePrivateObjectSecurityEx(_In_opt_ PSECURITY_DESCRIPTOR ParentDescriptor, _In_opt_ PSECURITY_DESCRIPTOR CreatorDescriptor, _Out_ PSECURITY_DESCRIPTOR *NewDescriptor, _In_opt_ GUID *ObjectType, _In_ BOOL IsContainerObject, _In_ ULONG AutoInheritFlags, _In_opt_ HANDLE Token, _In_ PGENERIC_MAPPING GenericMapping)
ttttuiiuittiBOOLCreatePrivateObjectSecurityWithMultipleInheritance(_In_opt_ PSECURITY_DESCRIPTOR ParentDescriptor, _In_opt_ PSECURITY_DESCRIPTOR CreatorDescriptor, _Out_ PSECURITY_DESCRIPTOR *NewDescriptor, _In_opt_ GUID **ObjectTypes, _In_ ULONG GuidCount, _In_ BOOL IsContainerObject, _In_ ULONG AutoInheritFlags, _In_opt_ HANDLE Token, _In_ PGENERIC_MAPPING GenericMapping)
tssttiuitsttiBOOLCreateProcessAsUser(_In_opt_ HANDLE hToken, _In_opt_ LPCTSTR lpApplicationName, _Inout_opt_ LPTSTR lpCommandLine, _In_opt_ LPSECURITY_ATTRIBUTES lpProcessAttributes, _In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes, _In_ BOOL bInheritHandles, _In_ DWORD dwCreationFlags, _In_opt_ LPVOID lpEnvironment, _In_opt_ LPCTSTR lpCurrentDirectory, _In_ LPSTARTUPINFO lpStartupInfo, _Out_ LPPROCESS_INFORMATION lpProcessInformation)
taattiuitattiBOOLCreateProcessAsUserA(_In_opt_ HANDLE hToken, _In_opt_ LPCSTR lpApplicationName, _Inout_opt_ LPSTR lpCommandLine, _In_opt_ LPSECURITY_ATTRIBUTES lpProcessAttributes, _In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes, _In_ BOOL bInheritHandles, _In_ DWORD dwCreationFlags, _In_opt_ LPVOID lpEnvironment, _In_opt_ LPCSTR lpCurrentDirectory, _In_ LPSTARTUPINFO lpStartupInfo, _Out_ LPPROCESS_INFORMATION lpProcessInformation)
twwttiuitwttiBOOLCreateProcessAsUserW(_In_opt_ HANDLE hToken, _In_opt_ LPCWSTR lpApplicationName, _Inout_opt_ LPWSTR lpCommandLine, _In_opt_ LPSECURITY_ATTRIBUTES lpProcessAttributes, _In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes, _In_ BOOL bInheritHandles, _In_ DWORD dwCreationFlags, _In_opt_ LPVOID lpEnvironment, _In_opt_ LPCWSTR lpCurrentDirectory, _In_ LPSTARTUPINFO lpStartupInfo, _Out_ LPPROCESS_INFORMATION lpProcessInformation)
wwwuiwwuitwttiBOOLCreateProcessWithLogonW(_In_ LPCWSTR lpUsername, _In_opt_ LPCWSTR lpDomain, _In_ LPCWSTR lpPassword, _In_ DWORD dwLogonFlags, _In_opt_ LPCWSTR lpApplicationName, _Inout_opt_ LPWSTR lpCommandLine, _In_ DWORD dwCreationFlags, _In_opt_ LPVOID lpEnvironment, _In_opt_ LPCWSTR lpCurrentDirectory, _In_ LPSTARTUPINFOW lpStartupInfo, _Out_ LPPROCESS_INFORMATION lpProcessInfo)
tuiwwuitwttiBOOLCreateProcessWithTokenW(_In_ HANDLE hToken, _In_ DWORD dwLogonFlags, _In_opt_ LPCWSTR lpApplicationName, _Inout_opt_ LPWSTR lpCommandLine, _In_ DWORD dwCreationFlags, _In_opt_ LPVOID lpEnvironment, _In_opt_ LPCWSTR lpCurrentDirectory, _In_ LPSTARTUPINFOW lpStartupInfo, _Out_ LPPROCESS_INFORMATION lpProcessInfo)
tuiuituituittiBOOLCreateRestrictedToken(_In_ HANDLE ExistingTokenHandle, _In_ DWORD Flags, _In_ DWORD DisableSidCount, _In_opt_ PSID_AND_ATTRIBUTES SidsToDisable, _In_ DWORD DeletePrivilegeCount, _In_opt_ PLUID_AND_ATTRIBUTES PrivilegesToDelete, _In_ DWORD RestrictedSidCount, _In_opt_ PSID_AND_ATTRIBUTES SidsToRestrict, _Out_ PHANDLE NewTokenHandle)
tssuiuiuiuisstssstSC_HANDLECreateService(_In_ SC_HANDLE hSCManager, _In_ LPCTSTR lpServiceName, _In_opt_ LPCTSTR lpDisplayName, _In_ DWORD dwDesiredAccess, _In_ DWORD dwServiceType, _In_ DWORD dwStartType, _In_ DWORD dwErrorControl, _In_opt_ LPCTSTR lpBinaryPathName, _In_opt_ LPCTSTR lpLoadOrderGroup, _Out_opt_ LPDWORD lpdwTagId, _In_opt_ LPCTSTR lpDependencies, _In_opt_ LPCTSTR lpServiceStartName, _In_opt_ LPCTSTR lpPassword)
taauiuiuiuiaataaatSC_HANDLECreateServiceA(_In_ SC_HANDLE hSCManager, _In_ LPCSTR lpServiceName, _In_opt_ LPCSTR lpDisplayName, _In_ DWORD dwDesiredAccess, _In_ DWORD dwServiceType, _In_ DWORD dwStartType, _In_ DWORD dwErrorControl, _In_opt_ LPCSTR lpBinaryPathName, _In_opt_ LPCSTR lpLoadOrderGroup, _Out_opt_ LPDWORD lpdwTagId, _In_opt_ LPCSTR lpDependencies, _In_opt_ LPCSTR lpServiceStartName, _In_opt_ LPCSTR lpPassword)
twwuiuiuiuiwwtwwwtSC_HANDLECreateServiceW(_In_ SC_HANDLE hSCManager, _In_ LPCWSTR lpServiceName, _In_opt_ LPCWSTR lpDisplayName, _In_ DWORD dwDesiredAccess, _In_ DWORD dwServiceType, _In_ DWORD dwStartType, _In_ DWORD dwErrorControl, _In_opt_ LPCWSTR lpBinaryPathName, _In_opt_ LPCWSTR lpLoadOrderGroup, _Out_opt_ LPDWORD lpdwTagId, _In_opt_ LPCWSTR lpDependencies, _In_opt_ LPCWSTR lpServiceStartName, _In_opt_ LPCWSTR lpPassword)
ttuiULONGCreateTraceInstanceId(_In_ HANDLE RegHandle, _Out_ PEVENT_INSTANCE_INFO pInstInfo)
uitttiBOOLCreateWellKnownSid(_In_ WELL_KNOWN_SID_TYPE WellKnownSidType, _In_opt_ PSID DomainSid, _Out_opt_ PSID pSid, _Inout_ DWORD *cbSid)
suiuiiBOOLCredDelete(_In_ LPCTSTR TargetName, _In_ DWORD Type, _In_ DWORD Flags)
auiuiiBOOLCredDeleteA(_In_ LPCSTR TargetName, _In_ DWORD Type, _In_ DWORD Flags)
wuiuiiBOOLCredDeleteW(_In_ LPCWSTR TargetName, _In_ DWORD Type, _In_ DWORD Flags)
suittiBOOLCredEnumerate(_In_ LPCTSTR Filter, _In_ DWORD Flags, _Out_ DWORD *Count, _Out_ PCREDENTIAL **Credentials)
auittiBOOLCredEnumerateA(_In_ LPCSTR Filter, _In_ DWORD Flags, _Out_ DWORD *Count, _Out_ PCREDENTIAL **Credentials)
wuittiBOOLCredEnumerateW(_In_ LPCWSTR Filter, _In_ DWORD Flags, _Out_ DWORD *Count, _Out_ PCREDENTIAL **Credentials)
suiuitiBOOLCredFindBestCredential(_In_ LPCTSTR TargetName, _In_ DWORD Type, _In_ DWORD Flags, _Out_ PCREDENTIAL *Credential)
auiuitiBOOLCredFindBestCredentialA(_In_ LPCSTR TargetName, _In_ DWORD Type, _In_ DWORD Flags, _Out_ PCREDENTIAL *Credential)
wuiuitiBOOLCredFindBestCredentialW(_In_ LPCWSTR TargetName, _In_ DWORD Type, _In_ DWORD Flags, _Out_ PCREDENTIAL *Credential)
tiVOIDCredFree(_In_ PVOID Buffer)
uitiBOOLCredGetSessionTypes(_In_ DWORD MaximumPersistCount, _Out_ LPDWORD MaximumPersist)
suitiBOOLCredGetTargetInfo(_In_ LPCTSTR TargetName, _In_ DWORD Flags, _Out_ PCREDENTIAL_TARGET_INFORMATION *TargetInfo)
auitiBOOLCredGetTargetInfoA(_In_ LPCSTR TargetName, _In_ DWORD Flags, _Out_ PCREDENTIAL_TARGET_INFORMATION *TargetInfo)
wuitiBOOLCredGetTargetInfoW(_In_ LPCWSTR TargetName, _In_ DWORD Flags, _Out_ PCREDENTIAL_TARGET_INFORMATION *TargetInfo)
siBOOLCredIsMarshaledCredential(_In_ LPCTSTR MarshaledCredential)
aiBOOLCredIsMarshaledCredentialA(_In_ LPCSTR MarshaledCredential)
wiBOOLCredIsMarshaledCredentialW(_In_ LPCWSTR MarshaledCredential)
stiBOOLCredIsProtected(_In_ LPTSTR pszProtectedCredentials, _Out_ CRED_PROTECTION_TYPE *pProtectionType)
atiBOOLCredIsProtectedA(_In_ LPSTR pszProtectedCredentials, _Out_ CRED_PROTECTION_TYPE *pProtectionType)
wtiBOOLCredIsProtectedW(_In_ LPWSTR pszProtectedCredentials, _Out_ CRED_PROTECTION_TYPE *pProtectionType)
uittiBOOLCredMarshalCredential(_In_ CRED_MARSHAL_TYPE CredType, _In_ PVOID Credential, _Out_ LPTSTR *MarshaledCredential)
uittiBOOLCredMarshalCredentialA(_In_ CRED_MARSHAL_TYPE CredType, _In_ PVOID Credential, _Out_ LPSTR *MarshaledCredential)
uittiBOOLCredMarshalCredentialW(_In_ CRED_MARSHAL_TYPE CredType, _In_ PVOID Credential, _Out_ LPWSTR *MarshaledCredential)
tttiintCredMarshalTargetInfo(_In_ PCREDENTIAL_TARGET_INFORMATIONW InTargetInfo, _Out_ PUSHORT *Buffer, PULONG BufferSize)
isuisttiBOOLCredProtect(_In_ BOOL fAsSelf, _In_ LPTSTR pszCredentials, _In_ DWORD cchCredentials, _Out_ LPTSTR pszProtectedCredentials, _Inout_ DWORD *pcchMaxChars, _Out_ CRED_PROTECTION_TYPE *ProtectionType)
iauiattiBOOLCredProtectA(_In_ BOOL fAsSelf, _In_ LPSTR pszCredentials, _In_ DWORD cchCredentials, _Out_ LPSTR pszProtectedCredentials, _Inout_ DWORD *pcchMaxChars, _Out_ CRED_PROTECTION_TYPE *ProtectionType)
iwuiwttiBOOLCredProtectW(_In_ BOOL fAsSelf, _In_ LPWSTR pszCredentials, _In_ DWORD cchCredentials, _Out_ LPWSTR pszProtectedCredentials, _Inout_ DWORD *pcchMaxChars, _Out_ CRED_PROTECTION_TYPE *ProtectionType)
suiuitiBOOLCredRead(_In_ LPCTSTR TargetName, _In_ DWORD Type, _In_ DWORD Flags, _Out_ PCREDENTIAL *Credential)
auiuitiBOOLCredReadA(_In_ LPCSTR TargetName, _In_ DWORD Type, _In_ DWORD Flags, _Out_ PCREDENTIAL *Credential)
tuittiBOOLCredReadDomainCredentials(_In_ PCREDENTIAL_TARGET_INFORMATION TargetInfo, _In_ DWORD Flags, _Out_ DWORD *Count, _Out_ PCREDENTIAL **Credentials)
tuittiBOOLCredReadDomainCredentialsA(_In_ PCREDENTIAL_TARGET_INFORMATION TargetInfo, _In_ DWORD Flags, _Out_ DWORD *Count, _Out_ PCREDENTIAL **Credentials)
tuittiBOOLCredReadDomainCredentialsW(_In_ PCREDENTIAL_TARGET_INFORMATION TargetInfo, _In_ DWORD Flags, _Out_ DWORD *Count, _Out_ PCREDENTIAL **Credentials)
wuiuitiBOOLCredReadW(_In_ LPCWSTR TargetName, _In_ DWORD Type, _In_ DWORD Flags, _Out_ PCREDENTIAL *Credential)
ssuiuiiBOOLCredRename(_In_ LPCTSTR OldTargetName, _In_ LPCTSTR NewTargetName, _In_ DWORD Type, _In_ DWORD Flags)
aauiuiiBOOLCredRenameA(_In_ LPCSTR OldTargetName, _In_ LPCSTR NewTargetName, _In_ DWORD Type, _In_ DWORD Flags)
wwuiuiiBOOLCredRenameW(_In_ LPCWSTR OldTargetName, _In_ LPCWSTR NewTargetName, _In_ DWORD Type, _In_ DWORD Flags)
sttiBOOLCredUnmarshalCredential(_In_ LPCTSTR MarshaledCredential, _Out_ PCRED_MARSHAL_TYPE CredType, _Out_ PVOID *Credential)
attiBOOLCredUnmarshalCredentialA(_In_ LPCSTR MarshaledCredential, _Out_ PCRED_MARSHAL_TYPE CredType, _Out_ PVOID *Credential)
wttiBOOLCredUnmarshalCredentialW(_In_ LPCWSTR MarshaledCredential, _Out_ PCRED_MARSHAL_TYPE CredType, _Out_ PVOID *Credential)
isuistiBOOLCredUnprotect(_In_ BOOL fAsSelf, _In_ LPTSTR pszProtectedCredentials, _In_ DWORD cchCredentials, _Out_ LPTSTR pszCredentials, _Inout_ DWORD *pcchMaxChars)
iauiatiBOOLCredUnprotectA(_In_ BOOL fAsSelf, _In_ LPSTR pszProtectedCredentials, _In_ DWORD cchCredentials, _Out_ LPSTR pszCredentials, _Inout_ DWORD *pcchMaxChars)
iwuiwtiBOOLCredUnprotectW(_In_ BOOL fAsSelf, _In_ LPWSTR pszProtectedCredentials, _In_ DWORD cchCredentials, _Out_ LPWSTR pszCredentials, _Inout_ DWORD *pcchMaxChars)
tuiiBOOLCredWrite(_In_ PCREDENTIAL Credential, _In_ DWORD Flags)
tuiiBOOLCredWriteA(_In_ PCREDENTIAL Credential, _In_ DWORD Flags)
ttuiiBOOLCredWriteDomainCredentials(_In_ PCREDENTIAL_TARGET_INFORMATION TargetInfo, _In_ PCREDENTIAL Credential, _In_ DWORD Flags)
ttuiiBOOLCredWriteDomainCredentialsA(_In_ PCREDENTIAL_TARGET_INFORMATION TargetInfo, _In_ PCREDENTIAL Credential, _In_ DWORD Flags)
ttuiiBOOLCredWriteDomainCredentialsW(_In_ PCREDENTIAL_TARGET_INFORMATION TargetInfo, _In_ PCREDENTIAL Credential, _In_ DWORD Flags)
tuiiBOOLCredWriteW(_In_ PCREDENTIAL Credential, _In_ DWORD Flags)
utssuiuiiBOOLCryptAcquireContext(_Out_ HCRYPTPROV *phProv, _In_ LPCTSTR pszContainer, _In_ LPCTSTR pszProvider, _In_ DWORD dwProvType, _In_ DWORD dwFlags)
utaauiuiiBOOLCryptAcquireContextA(_Out_ HCRYPTPROV *phProv, _In_ LPCSTR pszContainer, _In_ LPCSTR pszProvider, _In_ DWORD dwProvType, _In_ DWORD dwFlags)
utwwuiuiiBOOLCryptAcquireContextW(_Out_ HCRYPTPROV *phProv, _In_ LPCWSTR pszContainer, _In_ LPCWSTR pszProvider, _In_ DWORD dwProvType, _In_ DWORD dwFlags)
uttuiiBOOLCryptContextAddRef(_In_ HCRYPTPROV hProv, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags)
utuiutuiutiBOOLCryptCreateHash(_In_ HCRYPTPROV hProv, _In_ ALG_ID Algid, _In_ HCRYPTKEY hKey, _In_ DWORD dwFlags, _Out_ HCRYPTHASH *phHash)
ututiuittiBOOLCryptDecrypt(_In_ HCRYPTKEY hKey, _In_ HCRYPTHASH hHash, _In_ BOOL Final, _In_ DWORD dwFlags, _Inout_ BYTE *pbData, _Inout_ DWORD *pdwDataLen)
utuiutuiutiBOOLCryptDeriveKey(_In_ HCRYPTPROV hProv, _In_ ALG_ID Algid, _In_ HCRYPTHASH hBaseData, _In_ DWORD dwFlags, _Inout_ HCRYPTKEY *phKey)
utiBOOLCryptDestroyHash(_In_ HCRYPTHASH hHash)
utiBOOLCryptDestroyKey(_In_ HCRYPTKEY hKey)
uttuiutiBOOLCryptDuplicateHash(_In_ HCRYPTHASH hHash, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags, _Out_ HCRYPTHASH *phHash)
uttuiutiBOOLCryptDuplicateKey(_In_ HCRYPTKEY hKey, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags, _Out_ HCRYPTKEY *phKey)
ututiuittuiiBOOLCryptEncrypt(_In_ HCRYPTKEY hKey, _In_ HCRYPTHASH hHash, _In_ BOOL Final, _In_ DWORD dwFlags, _Inout_ BYTE *pbData, _Inout_ DWORD *pdwDataLen, _In_ DWORD dwBufLen)
uituitstiBOOLCryptEnumProviders(_In_ DWORD dwIndex, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags, _Out_ DWORD *pdwProvType, _Out_ LPTSTR pszProvName, _Inout_ DWORD *pcbProvName)
uituitatiBOOLCryptEnumProvidersA(_In_ DWORD dwIndex, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags, _Out_ DWORD *pdwProvType, _Out_ LPSTR pszProvName, _Inout_ DWORD *pcbProvName)
uituitwtiBOOLCryptEnumProvidersW(_In_ DWORD dwIndex, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags, _Out_ DWORD *pdwProvType, _Out_ LPWSTR pszProvName, _Inout_ DWORD *pcbProvName)
uituitstiBOOLCryptEnumProviderTypes(_In_ DWORD dwIndex, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags, _Out_ DWORD *pdwProvType, _Out_ LPTSTR pszTypeName, _Inout_ DWORD *pcbTypeName)
uituitatiBOOLCryptEnumProviderTypesA(_In_ DWORD dwIndex, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags, _Out_ DWORD *pdwProvType, _Out_ LPSTR pszTypeName, _Inout_ DWORD *pcbTypeName)
uituitwtiBOOLCryptEnumProviderTypesW(_In_ DWORD dwIndex, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags, _Out_ DWORD *pdwProvType, _Out_ LPWSTR pszTypeName, _Inout_ DWORD *pcbTypeName)
ututuiuittiBOOLCryptExportKey(_In_ HCRYPTKEY hKey, _In_ HCRYPTKEY hExpKey, _In_ DWORD dwBlobType, _In_ DWORD dwFlags, _Out_ BYTE *pbData, _Inout_ DWORD *pdwDataLen)
utuiuiutiBOOLCryptGenKey(_In_ HCRYPTPROV hProv, _In_ ALG_ID Algid, _In_ DWORD dwFlags, _Out_ HCRYPTKEY *phKey)
utuitiBOOLCryptGenRandom(_In_ HCRYPTPROV hProv, _In_ DWORD dwLen, _Inout_ BYTE *pbBuffer)
uituistiBOOLCryptGetDefaultProvider(_In_ DWORD dwProvType, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags, _Out_ LPTSTR pszProvName, _Inout_ DWORD *pcbProvName)
uituiatiBOOLCryptGetDefaultProviderA(_In_ DWORD dwProvType, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags, _Out_ LPSTR pszProvName, _Inout_ DWORD *pcbProvName)
uituiwtiBOOLCryptGetDefaultProviderW(_In_ DWORD dwProvType, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags, _Out_ LPWSTR pszProvName, _Inout_ DWORD *pcbProvName)
utuittuiiBOOLCryptGetHashParam(_In_ HCRYPTHASH hHash, _In_ DWORD dwParam, _Out_ BYTE *pbData, _Inout_ DWORD *pdwDataLen, _In_ DWORD dwFlags)
utuittuiiBOOLCryptGetKeyParam(_In_ HCRYPTKEY hKey, _In_ DWORD dwParam, _Out_ BYTE *pbData, _Inout_ DWORD *pdwDataLen, _In_ DWORD dwFlags)
utuittuiiBOOLCryptGetProvParam(_In_ HCRYPTPROV hProv, _In_ DWORD dwParam, _Out_ BYTE *pbData, _Inout_ DWORD *pdwDataLen, _In_ DWORD dwFlags)
utuiutiBOOLCryptGetUserKey(_In_ HCRYPTPROV hProv, _In_ DWORD dwKeySpec, _Out_ HCRYPTKEY *phUserKey)
uttuiuiiBOOLCryptHashData(_In_ HCRYPTHASH hHash, _In_ BYTE *pbData, _In_ DWORD dwDataLen, _In_ DWORD dwFlags)
ututuiiBOOLCryptHashSessionKey(_In_ HCRYPTHASH hHash, _In_ HCRYPTKEY hKey, _In_ DWORD dwFlags)
uttuiutuiutiBOOLCryptImportKey(_In_ HCRYPTPROV hProv, _In_ BYTE *pbData, _In_ DWORD dwDataLen, _In_ HCRYPTKEY hPubKey, _In_ DWORD dwFlags, _Out_ HCRYPTKEY *phKey)
utuiiBOOLCryptReleaseContext(_In_ HCRYPTPROV hProv, _In_ DWORD dwFlags)
utuituiiBOOLCryptSetHashParam(_In_ HCRYPTHASH hHash, _In_ DWORD dwParam, _In_ const BYTE *pbData, _In_ DWORD dwFlags)
utuituiiBOOLCryptSetKeyParam(_In_ HCRYPTKEY hKey, _In_ DWORD dwParam, _In_ const BYTE *pbData, _In_ DWORD dwFlags)
suiiBOOLCryptSetProvider(_In_ LPCTSTR pszProvName, _In_ DWORD dwProvType)
auiiBOOLCryptSetProviderA(_In_ LPCSTR pszProvName, _In_ DWORD dwProvType)
suituiiBOOLCryptSetProviderEx(_In_ LPCTSTR pszProvName, _In_ DWORD dwProvType, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags)
auituiiBOOLCryptSetProviderExA(_In_ LPCSTR pszProvName, _In_ DWORD dwProvType, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags)
wuituiiBOOLCryptSetProviderExW(_In_ LPCWSTR pszProvName, _In_ DWORD dwProvType, _In_ DWORD *pdwReserved, _In_ DWORD dwFlags)
wuiiBOOLCryptSetProviderW(_In_ LPCWSTR pszProvName, _In_ DWORD dwProvType)
utuituiiBOOLCryptSetProvParam(_In_ HCRYPTPROV hProv, _In_ DWORD dwParam, _In_ const BYTE *pbData, _In_ DWORD dwFlags)
utuisuittiBOOLCryptSignHash(_In_ HCRYPTHASH hHash, _In_ DWORD dwKeySpec, _In_ LPCTSTR sDescription, _In_ DWORD dwFlags, _Out_ BYTE *pbSignature, _Inout_ DWORD *pdwSigLen)
utuiauittiBOOLCryptSignHashA(_In_ HCRYPTHASH hHash, _In_ DWORD dwKeySpec, _In_ LPCSTR sDescription, _In_ DWORD dwFlags, _Out_ BYTE *pbSignature, _Inout_ DWORD *pdwSigLen)
utuiwuittiBOOLCryptSignHashW(_In_ HCRYPTHASH hHash, _In_ DWORD dwKeySpec, _In_ LPCWSTR sDescription, _In_ DWORD dwFlags, _Out_ BYTE *pbSignature, _Inout_ DWORD *pdwSigLen)
uttuiutsuiiBOOLCryptVerifySignature(_In_ HCRYPTHASH hHash, _In_ BYTE *pbSignature, _In_ DWORD dwSigLen, _In_ HCRYPTKEY hPubKey, _In_ LPCTSTR sDescription, _In_ DWORD dwFlags)
uttuiutauiiBOOLCryptVerifySignatureA(_In_ HCRYPTHASH hHash, _In_ BYTE *pbSignature, _In_ DWORD dwSigLen, _In_ HCRYPTKEY hPubKey, _In_ LPCSTR sDescription, _In_ DWORD dwFlags)
uttuiutwuiiBOOLCryptVerifySignatureW(_In_ HCRYPTHASH hHash, _In_ BYTE *pbSignature, _In_ DWORD dwSigLen, _In_ HCRYPTKEY hPubKey, _In_ LPCWSTR sDescription, _In_ DWORD dwFlags)
suiiBOOLDecryptFile(_In_ LPCTSTR lpFileName, _Reserved_ DWORD dwReserved)
auiiBOOLDecryptFileA(_In_ LPCSTR lpFileName, _Reserved_ DWORD dwReserved)
wuiiBOOLDecryptFileW(_In_ LPCWSTR lpFileName, _Reserved_ DWORD dwReserved)
tuiiBOOLDeleteAce(_Inout_ PACL pAcl, _In_ DWORD dwAceIndex)
tiBOOLDeleteService(_In_ SC_HANDLE hService)
tiBOOLDeregisterEventSource(_Inout_ HANDLE hEventLog)
tiBOOLDestroyPrivateObjectSecurity(_Inout_ PSECURITY_DESCRIPTOR *ObjectDescriptor)
ssuiuituiDWORDDuplicateEncryptionInfoFile(_In_ LPCTSTR SrcFileName, _In_ LPCTSTR DstFileName, _In_ DWORD dwCreationDistribution, _In_ DWORD dwAttributes, _In_opt_ const LPSECURITY_ATTRIBUTES lpSecurityAttributes)
tuitiBOOLDuplicateToken(_In_ HANDLE ExistingTokenHandle, _In_ SECURITY_IMPERSONATION_LEVEL ImpersonationLevel, _Out_ PHANDLE DuplicateTokenHandle)
tuituiuitiBOOLDuplicateTokenEx(_In_ HANDLE hExistingToken, _In_ DWORD dwDesiredAccess, _In_opt_ LPSECURITY_ATTRIBUTES lpTokenAttributes, _In_ SECURITY_IMPERSONATION_LEVEL ImpersonationLevel, _In_ TOKEN_TYPE TokenType, _Out_ PHANDLE phNewToken)
uiuiuittuiULONGEnableTrace(_In_ ULONG Enable, _In_ ULONG EnableFlag, _In_ ULONG EnableLevel, _In_ LPCGUID ControlGuid, _In_ TRACEHANDLE SessionHandle)
tttuiucui6ui6uituiULONGEnableTraceEx(_In_ LPCGUID ProviderId, _In_opt_ LPCGUID SourceId, _In_ TRACEHANDLE TraceHandle, _In_ ULONG IsEnabled, _In_ UCHAR Level, _In_ ULONGLONG MatchAnyKeyword, _In_ ULONGLONG MatchAllKeyword, _In_ ULONG EnableProperty, _In_opt_ PEVENT_FILTER_DESCRIPTOR EnableFilterDesc)
siBOOLEncryptFile(_In_ LPCTSTR lpFileName)
aiBOOLEncryptFileA(_In_ LPCSTR lpFileName)
wiBOOLEncryptFileW(_In_ LPCWSTR lpFileName)
wiiBOOLEncryptionDisable(_In_ LPCWSTR DirPath, _In_ BOOL Disable)
tuituittiBOOLEnumDependentServices(_In_ SC_HANDLE hService, _In_ DWORD dwServiceState, _Out_opt_ LPENUM_SERVICE_STATUS lpServices, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded, _Out_ LPDWORD lpServicesReturned)
tuituittiBOOLEnumDependentServicesA(_In_ SC_HANDLE hService, _In_ DWORD dwServiceState, _Out_opt_ LPENUM_SERVICE_STATUS lpServices, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded, _Out_ LPDWORD lpServicesReturned)
tuituittiBOOLEnumDependentServicesW(_In_ SC_HANDLE hService, _In_ DWORD dwServiceState, _Out_opt_ LPENUM_SERVICE_STATUS lpServices, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded, _Out_ LPDWORD lpServicesReturned)
tuituiULONGEnumerateTraceGuids(_Inout_ PTRACE_GUID_PROPERTIES *GuidPropertiesArray, _In_ ULONG PropertyArrayCount, _Out_ PULONG GuidCount)
uituituituiULONGEnumerateTraceGuidsEx(_In_ TRACE_QUERY_INFO_CLASS TraceQueryInfoClass, _In_ PVOID InBuffer, _In_ ULONG InBufferSize, _Out_ PVOID OutBuffer, _In_ ULONG OutBufferSize, _Out_ PULONG ReturnLength)
tuiuituitttiBOOLEnumServicesStatus(_In_ SC_HANDLE hSCManager, _In_ DWORD dwServiceType, _In_ DWORD dwServiceState, _Out_opt_ LPENUM_SERVICE_STATUS lpServices, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded, _Out_ LPDWORD lpServicesReturned, _Inout_opt_ LPDWORD lpResumeHandle)
tuiuituitttiBOOLEnumServicesStatusA(_In_ SC_HANDLE hSCManager, _In_ DWORD dwServiceType, _In_ DWORD dwServiceState, _Out_opt_ LPENUM_SERVICE_STATUS lpServices, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded, _Out_ LPDWORD lpServicesReturned, _Inout_opt_ LPDWORD lpResumeHandle)
tiuiuituitttsiBOOLEnumServicesStatusEx(_In_ SC_HANDLE hSCManager, _In_ SC_ENUM_TYPE InfoLevel, _In_ DWORD dwServiceType, _In_ DWORD dwServiceState, _Out_opt_ LPBYTE lpServices, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded, _Out_ LPDWORD lpServicesReturned, _Inout_opt_ LPDWORD lpResumeHandle, _In_opt_ LPCTSTR pszGroupName)
tiuiuituitttaiBOOLEnumServicesStatusExA(_In_ SC_HANDLE hSCManager, _In_ SC_ENUM_TYPE InfoLevel, _In_ DWORD dwServiceType, _In_ DWORD dwServiceState, _Out_opt_ LPBYTE lpServices, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded, _Out_ LPDWORD lpServicesReturned, _Inout_opt_ LPDWORD lpResumeHandle, _In_opt_ LPCSTR pszGroupName)
tiuiuituitttwiBOOLEnumServicesStatusExW(_In_ SC_HANDLE hSCManager, _In_ SC_ENUM_TYPE InfoLevel, _In_ DWORD dwServiceType, _In_ DWORD dwServiceState, _Out_opt_ LPBYTE lpServices, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded, _Out_ LPDWORD lpServicesReturned, _Inout_opt_ LPDWORD lpResumeHandle, _In_opt_ LPCWSTR pszGroupName)
tuiuituitttiBOOLEnumServicesStatusW(_In_ SC_HANDLE hSCManager, _In_ DWORD dwServiceType, _In_ DWORD dwServiceState, _Out_opt_ LPENUM_SERVICE_STATUS lpServices, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded, _Out_ LPDWORD lpServicesReturned, _Inout_opt_ LPDWORD lpResumeHandle)
tttiBOOLEqualDomainSid(_In_ PSID pSid1, _In_ PSID pSid2, _Out_ BOOL *pfEqual)
ttiBOOLEqualPrefixSid(_In_ PSID pSid1, _In_ PSID pSid2)
ttiBOOLEqualSid(_In_ PSID pSid1, _In_ PSID pSid2)
tttuiULONGEventAccessQuery(_In_ LPGUID Guid, _Inout_ PSECURITY_DESCRIPTOR Buffer, _Inout_ PULONG BufferSize)
uituiULONGEventActivityIdControl(_In_ ULONG ControlCode, _Inout_ LPGUID ActivityId)
i6tucBOOLEANEventEnabled(_In_ REGHANDLE RegHandle, _In_ PCEVENT_DESCRIPTOR EventDescriptor)
i6ucui6ucBOOLEANEventProviderEnabled(_In_ REGHANDLE RegHandle, _In_ UCHAR Level, _In_ ULONGLONG Keyword)
ttttuiULONGEventRegister(_In_ LPCGUID ProviderId, _In_opt_ PENABLECALLBACK EnableCallback, _In_opt_ PVOID CallbackContext, _Out_ PREGHANDLE RegHandle)
i6uiULONGEventUnregister(_In_ REGHANDLE RegHandle)
i6tuituiULONGEventWrite(_In_ REGHANDLE RegHandle, _In_ PCEVENT_DESCRIPTOR EventDescriptor, _In_ ULONG UserDataCount, _In_opt_ PEVENT_DATA_DESCRIPTOR UserData)
i6tui6uittuituiULONGEventWriteEx(_In_ REGHANDLE RegHandle, _In_ PCEVENT_DESCRIPTOR EventDescriptor, _In_ ULONG64 Filter, _In_ ULONG Flags, _In_opt_ LPCGUID ActivityId, _In_ LPCGUID RelatedActivityId, _In_ ULONG UserDataCount, _In_opt_ PEVENT_DATA_DESCRIPTOR UserData)
i6ucui6wuiULONGEventWriteString(_In_ REGHANDLE RegHandle, _In_ UCHAR Level, _In_ ULONGLONG Keyword, _In_ PCWSTR String)
i6tttuituiULONGEventWriteTransfer(_In_ REGHANDLE RegHandle, _In_ PCEVENT_DESCRIPTOR EventDescriptor, _In_opt_ LPCGUID ActivityId, _In_ LPCGUID RelatedActivityId, _In_ ULONG UserDataCount, _In_opt_ PEVENT_DATA_DESCRIPTOR UserData)
stiBOOLFileEncryptionStatus(_In_ LPCTSTR lpFileName, _Out_ LPDWORD lpStatus)
atiBOOLFileEncryptionStatusA(_In_ LPCSTR lpFileName, _Out_ LPDWORD lpStatus)
wtiBOOLFileEncryptionStatusW(_In_ LPCWSTR lpFileName, _Out_ LPDWORD lpStatus)
ttiBOOLFindFirstFreeAce(_In_ PACL pAcl, _Out_ LPVOID *pAce)
tstuiULONGFlushTrace(_In_ TRACEHANDLE SessionHandle, _In_ LPCTSTR SessionName, _Inout_ PEVENT_TRACE_PROPERTIES Properties)
tatuiULONGFlushTraceA(_In_ TRACEHANDLE SessionHandle, _In_ LPCSTR SessionName, _Inout_ PEVENT_TRACE_PROPERTIES Properties)
twtuiULONGFlushTraceW(_In_ TRACEHANDLE SessionHandle, _In_ LPCWSTR SessionName, _Inout_ PEVENT_TRACE_PROPERTIES Properties)
tiVOIDFreeEncryptionCertificateHashList(_In_ PENCRYPTION_CERTIFICATE_HASH_LIST pHashes)
tuhtuiDWORDFreeInheritedFromArray(_In_ PINHERITED_FROM pInheritArray, _In_ USHORT AceCnt, _In_opt_ PFN_OBJECT_MGR_FUNCTS pfnArray)
ttPVOIDFreeSid(_In_ PSID pSid)
tuitiBOOLGetAce(_In_ PACL pAcl, _In_ DWORD dwAceIndex, _Out_ LPVOID *pAce)
ttuiiiBOOLGetAclInformation(_In_ PACL pAcl, _Out_ LPVOID pAclInformation, _In_ DWORD nAclInformationLength, _In_ ACL_INFORMATION_CLASS dwAclInformationClass)
ttttuiDWORDGetAuditedPermissionsFromAcl(_In_ PACL pacl, _In_ PTRUSTEE pTrustee, _Out_ PACCESS_MASK pSuccessfulAuditedRights, _Out_ PACCESS_MASK pFailedAuditRights)
ttttuiDWORDGetAuditedPermissionsFromAclA(_In_ PACL pacl, _In_ PTRUSTEE pTrustee, _Out_ PACCESS_MASK pSuccessfulAuditedRights, _Out_ PACCESS_MASK pFailedAuditRights)
ttttuiDWORDGetAuditedPermissionsFromAclW(_In_ PACL pacl, _In_ PTRUSTEE pTrustee, _Out_ PACCESS_MASK pSuccessfulAuditedRights, _Out_ PACCESS_MASK pFailedAuditRights)
tiBOOLGetCurrentHwProfile(_Out_ LPHW_PROFILE_INFO lpHwProfileInfo)
tiBOOLGetCurrentHwProfileA(_Out_ LPHW_PROFILE_INFO lpHwProfileInfo)
tiBOOLGetCurrentHwProfileW(_Out_ LPHW_PROFILE_INFO lpHwProfileInfo)
tttuiDWORDGetEffectiveRightsFromAcl(_In_ PACL pacl, _In_ PTRUSTEE pTrustee, _Out_ PACCESS_MASK pAccessRights)
tttuiDWORDGetEffectiveRightsFromAclA(_In_ PACL pacl, _In_ PTRUSTEE pTrustee, _Out_ PACCESS_MASK pAccessRights)
tttuiDWORDGetEffectiveRightsFromAclW(_In_ PACL pacl, _In_ PTRUSTEE pTrustee, _Out_ PACCESS_MASK pAccessRights)
tuituitiBOOLGetEventLogInformation(_In_ HANDLE hEventLog, _In_ DWORD dwInfoLevel, _Out_ LPVOID lpBuffer, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
tttuiDWORDGetExplicitEntriesFromAcl(_In_ PACL pacl, _Out_ PULONG pcCountOfExplicitEntries, _Out_ PEXPLICIT_ACCESS *pListOfExplicitEntries)
tttuiDWORDGetExplicitEntriesFromAclA(_In_ PACL pacl, _Out_ PULONG pcCountOfExplicitEntries, _Out_ PEXPLICIT_ACCESS *pListOfExplicitEntries)
tttuiDWORDGetExplicitEntriesFromAclW(_In_ PACL pacl, _Out_ PULONG pcCountOfExplicitEntries, _Out_ PEXPLICIT_ACCESS *pListOfExplicitEntries)
suituitiBOOLGetFileSecurity(_In_ LPCTSTR lpFileName, _In_ SECURITY_INFORMATION RequestedInformation, _Out_opt_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ DWORD nLength, _Out_ LPDWORD lpnLengthNeeded)
auituitiBOOLGetFileSecurityA(_In_ LPCSTR lpFileName, _In_ SECURITY_INFORMATION RequestedInformation, _Out_opt_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ DWORD nLength, _Out_ LPDWORD lpnLengthNeeded)
wuituitiBOOLGetFileSecurityW(_In_ LPCWSTR lpFileName, _In_ SECURITY_INFORMATION RequestedInformation, _Out_opt_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ DWORD nLength, _Out_ LPDWORD lpnLengthNeeded)
suiuiituittttuiDWORDGetInheritanceSource(_In_ LPTSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_ BOOL Container, _In_opt_ GUID **pObjectClassGuids, _In_ DWORD GuidCount, _In_ PACL pAcl, _In_opt_ PFN_OBJECT_MGR_FUNCTS pfnArray, _In_ PGENERIC_MAPPING pGenericMapping, _Out_ PINHERITED_FROM pInheritArray)
auiuiituittttuiDWORDGetInheritanceSourceA(_In_ LPSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_ BOOL Container, _In_opt_ GUID **pObjectClassGuids, _In_ DWORD GuidCount, _In_ PACL pAcl, _In_opt_ PFN_OBJECT_MGR_FUNCTS pfnArray, _In_ PGENERIC_MAPPING pGenericMapping, _Out_ PINHERITED_FROM pInheritArray)
wuiuiituittttuiDWORDGetInheritanceSourceW(_In_ LPWSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_ BOOL Container, _In_opt_ GUID **pObjectClassGuids, _In_ DWORD GuidCount, _In_ PACL pAcl, _In_opt_ PFN_OBJECT_MGR_FUNCTS pfnArray, _In_ PGENERIC_MAPPING pGenericMapping, _Out_ PINHERITED_FROM pInheritArray)
tuituitiBOOLGetKernelObjectSecurity(_In_ HANDLE Handle, _In_ SECURITY_INFORMATION RequestedInformation, _Out_opt_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ DWORD nLength, _Out_ LPDWORD lpnLengthNeeded)
tuiDWORDGetLengthSid(_In_ PSID pSid)
ittuiDWORDGetLocalManagedApplications(_In_ BOOL bUserApps, _Out_ LPDWORD pdwApps, _Out_ PLOCALMANAGEDAPPLICATION *prgLocalApps)
uituiDWORDGetManagedApplicationCategories(_Out_ DWORD dwReserved, _Out_ APPCATEGORYINFOLIST *pAppCategory)
tuiuittuiDWORDGetManagedApplications(_In_ GUID *pCategory, _In_ DWORD dwQueryFlags, _In_ DWORD dwInfoLevel, _Out_ LPDWORD pdwApps, _Out_ PMANAGEDAPPLICATION *prgManagedApps)
suiuitttttuiDWORDGetNamedSecurityInfo(_In_ LPTSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _Out_opt_ PSID *ppsidOwner, _Out_opt_ PSID *ppsidGroup, _Out_opt_ PACL *ppDacl, _Out_opt_ PACL *ppSacl, _Out_opt_ PSECURITY_DESCRIPTOR *ppSecurityDescriptor)
auiuitttttuiDWORDGetNamedSecurityInfoA(_In_ LPSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _Out_opt_ PSID *ppsidOwner, _Out_opt_ PSID *ppsidGroup, _Out_opt_ PACL *ppDacl, _Out_opt_ PACL *ppSacl, _Out_opt_ PSECURITY_DESCRIPTOR *ppSecurityDescriptor)
wuiuitttttuiDWORDGetNamedSecurityInfoW(_In_ LPWSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _Out_opt_ PSID *ppsidOwner, _Out_opt_ PSID *ppsidGroup, _Out_opt_ PACL *ppDacl, _Out_opt_ PACL *ppSacl, _Out_opt_ PSECURITY_DESCRIPTOR *ppSecurityDescriptor)
ttiBOOLGetNumberOfEventLogRecords(_In_ HANDLE hEventLog, _Out_ PDWORD NumberOfRecords)
ttiBOOLGetOldestEventLogRecord(_In_ HANDLE hEventLog, _Out_ PDWORD OldestRecord)
tuituitiBOOLGetPrivateObjectSecurity(_In_ PSECURITY_DESCRIPTOR ObjectDescriptor, _In_ SECURITY_INFORMATION SecurityInformation, _Out_opt_ PSECURITY_DESCRIPTOR ResultantDescriptor, _In_ DWORD DescriptorLength, _Out_ PDWORD ReturnLength)
tttiBOOLGetSecurityDescriptorControl(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _Out_ PSECURITY_DESCRIPTOR_CONTROL pControl, _Out_ LPDWORD lpdwRevision)
ttttiBOOLGetSecurityDescriptorDacl(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _Out_ LPBOOL lpbDaclPresent, _Out_ PACL *pDacl, _Out_ LPBOOL lpbDaclDefaulted)
tttiBOOLGetSecurityDescriptorGroup(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _Out_ PSID *pGroup, _Out_ LPBOOL lpbGroupDefaulted)
tuiDWORDGetSecurityDescriptorLength(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor)
tttiBOOLGetSecurityDescriptorOwner(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _Out_ PSID *pOwner, _Out_ LPBOOL lpbOwnerDefaulted)
ttuiDWORDGetSecurityDescriptorRMControl(_In_ PSECURITY_DESCRIPTOR SecurityDescriptor, _Out_ PUCHAR RMControl)
ttttiBOOLGetSecurityDescriptorSacl(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _Out_ LPBOOL lpbSaclPresent, _Out_ PACL *pSacl, _Out_ LPBOOL lpbSaclDefaulted)
tuiuitttttuiDWORDGetSecurityInfo(_In_ HANDLE handle, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _Out_opt_ PSID *ppsidOwner, _Out_opt_ PSID *ppsidGroup, _Out_opt_ PACL *ppDacl, _Out_opt_ PACL *ppSacl, _Out_opt_ PSECURITY_DESCRIPTOR *ppSecurityDescriptor)
tsstiBOOLGetServiceDisplayName(_In_ SC_HANDLE hSCManager, _In_ LPCTSTR lpServiceName, _Out_opt_ LPTSTR lpDisplayName, _Inout_ LPDWORD lpcchBuffer)
taatiBOOLGetServiceDisplayNameA(_In_ SC_HANDLE hSCManager, _In_ LPCSTR lpServiceName, _Out_opt_ LPSTR lpDisplayName, _Inout_ LPDWORD lpcchBuffer)
twwtiBOOLGetServiceDisplayNameW(_In_ SC_HANDLE hSCManager, _In_ LPCWSTR lpServiceName, _Out_opt_ LPWSTR lpDisplayName, _Inout_ LPDWORD lpcchBuffer)
tsstiBOOLGetServiceKeyName(_In_ SC_HANDLE hSCManager, _In_ LPCTSTR lpDisplayName, _Out_opt_ LPTSTR lpServiceName, _Inout_ LPDWORD lpcchBuffer)
taatiBOOLGetServiceKeyNameA(_In_ SC_HANDLE hSCManager, _In_ LPCSTR lpDisplayName, _Out_opt_ LPSTR lpServiceName, _Inout_ LPDWORD lpcchBuffer)
twwtiBOOLGetServiceKeyNameW(_In_ SC_HANDLE hSCManager, _In_ LPCWSTR lpDisplayName, _Out_opt_ LPWSTR lpServiceName, _Inout_ LPDWORD lpcchBuffer)
ttPSID_IDENTIFIER_AUTHORITYGetSidIdentifierAuthority(_In_ PSID pSid)
ucuiDWORDGetSidLengthRequired(_In_ UCHAR nSubAuthorityCount)
tuitPDWORDGetSidSubAuthority(_In_ PSID pSid, _In_ DWORD nSubAuthority)
ttPUCHARGetSidSubAuthorityCount(_In_ PSID pSid)
tutuiuitttiBOOLGetThreadWaitChain(_In_ HWCT WctHandle, _In_opt_ DWORD_PTR Context, _In_ DWORD Flags, _In_ DWORD ThreadId, _Inout_ LPDWORD NodeCount, _Out_ PWAITCHAIN_NODE_INFO NodeInfoArray, _Out_ LPBOOL IsCycle)
tituitiBOOLGetTokenInformation(_In_ HANDLE TokenHandle, _In_ TOKEN_INFORMATION_CLASS TokenInformationClass, _Out_opt_ LPVOID TokenInformation, _In_ DWORD TokenInformationLength, _Out_ PDWORD ReturnLength)
tuiULONGGetTraceEnableFlags(_In_ TRACEHANDLE SessionHandle)
tucUCHARGetTraceEnableLevel(_In_ TRACEHANDLE SessionHandle)
ttTRACEHANDLEGetTraceLoggerHandle(_In_ PVOID Buffer)
ttTRUSTEE_FORMGetTrusteeForm(_In_ PTRUSTEE pTrustee)
ttTRUSTEE_FORMGetTrusteeFormA(_In_ PTRUSTEE pTrustee)
ttTRUSTEE_FORMGetTrusteeFormW(_In_ PTRUSTEE pTrustee)
tsLPTSTRGetTrusteeName(_In_ PTRUSTEE pTrustee)
taLPSTRGetTrusteeNameA(_In_ PTRUSTEE pTrustee)
twLPWSTRGetTrusteeNameW(_In_ PTRUSTEE pTrustee)
tuiTRUSTEE_TYPEGetTrusteeType(_In_opt_ PTRUSTEE pTrustee)
tuiTRUSTEE_TYPEGetTrusteeTypeA(_In_opt_ PTRUSTEE pTrustee)
tuiTRUSTEE_TYPEGetTrusteeTypeW(_In_opt_ PTRUSTEE pTrustee)
stiBOOLGetUserName(_Out_ LPTSTR lpBuffer, _Inout_ LPDWORD lpnSize)
atiBOOLGetUserNameA(_Out_ LPSTR lpBuffer, _Inout_ LPDWORD lpnSize)
wtiBOOLGetUserNameW(_Out_ LPWSTR lpBuffer, _Inout_ LPDWORD lpnSize)
tttiBOOLGetWindowsAccountDomainSid(_In_ PSID pSid, _Out_opt_ PSID ppDomainSid, _Inout_ DWORD *cbSid)
tiBOOLImpersonateAnonymousToken(_In_ HANDLE ThreadHandle)
tiBOOLImpersonateLoggedOnUser(_In_ HANDLE hToken)
tiBOOLImpersonateNamedPipeClient(_In_ HANDLE hNamedPipe)
uiiBOOLImpersonateSelf(_In_ SECURITY_IMPERSONATION_LEVEL ImpersonationLevel)
tuiuiiBOOLInitializeAcl(_Out_ PACL pAcl, _In_ DWORD nAclLength, _In_ DWORD dwAclRevision)
tuiiBOOLInitializeSecurityDescriptor(_Out_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ DWORD dwRevision)
ttuciBOOLInitializeSid(_Out_ PSID Sid, _In_ PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority, _In_ BYTE nSubAuthorityCount)
ssuiuiuiuiDWORDInitiateShutdown(_In_opt_ LPTSTR lpMachineName, _In_opt_ LPTSTR lpMessage, _In_ DWORD dwGracePeriod, _In_ DWORD dwShutdownFlags, _In_ DWORD dwReason)
aauiuiuiuiDWORDInitiateShutdownA(_In_opt_ LPSTR lpMachineName, _In_opt_ LPSTR lpMessage, _In_ DWORD dwGracePeriod, _In_ DWORD dwShutdownFlags, _In_ DWORD dwReason)
wwuiuiuiuiDWORDInitiateShutdownW(_In_opt_ LPWSTR lpMachineName, _In_opt_ LPWSTR lpMessage, _In_ DWORD dwGracePeriod, _In_ DWORD dwShutdownFlags, _In_ DWORD dwReason)
ssuiiiiBOOLInitiateSystemShutdown(_In_opt_ LPTSTR lpMachineName, _In_opt_ LPTSTR lpMessage, _In_ DWORD dwTimeout, _In_ BOOL bForceAppsClosed, _In_ BOOL bRebootAfterShutdown)
aauiiiiBOOLInitiateSystemShutdownA(_In_opt_ LPSTR lpMachineName, _In_opt_ LPSTR lpMessage, _In_ DWORD dwTimeout, _In_ BOOL bForceAppsClosed, _In_ BOOL bRebootAfterShutdown)
ssuiiiuiiBOOLInitiateSystemShutdownEx(_In_opt_ LPTSTR lpMachineName, _In_opt_ LPTSTR lpMessage, _In_ DWORD dwTimeout, _In_ BOOL bForceAppsClosed, _In_ BOOL bRebootAfterShutdown, _In_ DWORD dwReason)
aauiiiuiiBOOLInitiateSystemShutdownExA(_In_opt_ LPSTR lpMachineName, _In_opt_ LPSTR lpMessage, _In_ DWORD dwTimeout, _In_ BOOL bForceAppsClosed, _In_ BOOL bRebootAfterShutdown, _In_ DWORD dwReason)
wwuiiiuiiBOOLInitiateSystemShutdownExW(_In_opt_ LPWSTR lpMachineName, _In_opt_ LPWSTR lpMessage, _In_ DWORD dwTimeout, _In_ BOOL bForceAppsClosed, _In_ BOOL bRebootAfterShutdown, _In_ DWORD dwReason)
wwuiiiiBOOLInitiateSystemShutdownW(_In_opt_ LPWSTR lpMachineName, _In_opt_ LPWSTR lpMessage, _In_ DWORD dwTimeout, _In_ BOOL bForceAppsClosed, _In_ BOOL bRebootAfterShutdown)
tuiDWORDInstallApplication(_In_ PINSTALLDATA *pInstallInfo)
titiBOOLIsTextUnicode(_In_ const VOID *lpv, _In_ int iSize, _Inout_opt_ LPINT lpiResult)
tiBOOLIsTokenRestricted(_In_ HANDLE TokenHandle)
tiBOOLIsValidAcl(_In_ PACL pAcl)
tiBOOLIsValidSecurityDescriptor(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor)
tiBOOLIsValidSid(_In_ PSID pSid)
tuiiBOOLIsWellKnownSid(_In_ PSID pSid, _In_ WELL_KNOWN_SID_TYPE WellKnownSidType)
ttSC_LOCKLockServiceDatabase(_In_ SC_HANDLE hSCManager)
sssuiuitiBOOLLogonUser(_In_ LPTSTR lpszUsername, _In_opt_ LPTSTR lpszDomain, _In_opt_ LPTSTR lpszPassword, _In_ DWORD dwLogonType, _In_ DWORD dwLogonProvider, _Out_ PHANDLE phToken)
aaauiuitiBOOLLogonUserA(_In_ LPSTR lpszUsername, _In_opt_ LPSTR lpszDomain, _In_opt_ LPSTR lpszPassword, _In_ DWORD dwLogonType, _In_ DWORD dwLogonProvider, _Out_ PHANDLE phToken)
sssuiuitttttiBOOLLogonUserEx(_In_ LPTSTR lpszUsername, _In_opt_ LPTSTR lpszDomain, _In_opt_ LPTSTR lpszPassword, _In_ DWORD dwLogonType, _In_ DWORD dwLogonProvider, _Out_opt_ PHANDLE phToken, _Out_opt_ PSID *ppLogonSid, _Out_opt_ PVOID *ppProfileBuffer, _Out_opt_ LPDWORD pdwProfileLength, _Out_opt_ PQUOTA_LIMITS pQuotaLimits)
aaauiuitttttiBOOLLogonUserExA(_In_ LPSTR lpszUsername, _In_opt_ LPSTR lpszDomain, _In_opt_ LPSTR lpszPassword, _In_ DWORD dwLogonType, _In_ DWORD dwLogonProvider, _Out_opt_ PHANDLE phToken, _Out_opt_ PSID *ppLogonSid, _Out_opt_ PVOID *ppProfileBuffer, _Out_opt_ LPDWORD pdwProfileLength, _Out_opt_ PQUOTA_LIMITS pQuotaLimits)
sssuiuittttttiBOOLLogonUserExExW(_In_ LPTSTR lpszUsername, _In_opt_ LPTSTR lpszDomain, _In_opt_ LPTSTR lpszPassword, _In_ DWORD dwLogonType, _In_ DWORD dwLogonProvider, _In_opt_ PTOKEN_GROUPS pTokenGroups, _Out_opt_ PHANDLE phToken, _Out_opt_ PSID *ppLogonSid, _Out_opt_ PVOID *ppProfileBuffer, _Out_opt_ LPDWORD pdwProfileLength, _Out_opt_ PQUOTA_LIMITS pQuotaLimits)
wwwuiuitttttiBOOLLogonUserExW(_In_ LPWSTR lpszUsername, _In_opt_ LPWSTR lpszDomain, _In_opt_ LPWSTR lpszPassword, _In_ DWORD dwLogonType, _In_ DWORD dwLogonProvider, _Out_opt_ PHANDLE phToken, _Out_opt_ PSID *ppLogonSid, _Out_opt_ PVOID *ppProfileBuffer, _Out_opt_ LPDWORD pdwProfileLength, _Out_opt_ PQUOTA_LIMITS pQuotaLimits)
wwwuiuitiBOOLLogonUserW(_In_ LPWSTR lpszUsername, _In_opt_ LPWSTR lpszDomain, _In_opt_ LPWSTR lpszPassword, _In_ DWORD dwLogonType, _In_ DWORD dwLogonProvider, _Out_ PHANDLE phToken)
ssttsttiBOOLLookupAccountName(_In_opt_ LPCTSTR lpSystemName, _In_ LPCTSTR lpAccountName, _Out_opt_ PSID Sid, _Inout_ LPDWORD cbSid, _Out_opt_ LPTSTR ReferencedDomainName, _Inout_ LPDWORD cchReferencedDomainName, _Out_ PSID_NAME_USE peUse)
aattattiBOOLLookupAccountNameA(_In_opt_ LPCSTR lpSystemName, _In_ LPCSTR lpAccountName, _Out_opt_ PSID Sid, _Inout_ LPDWORD cbSid, _Out_opt_ LPSTR ReferencedDomainName, _Inout_ LPDWORD cchReferencedDomainName, _Out_ PSID_NAME_USE peUse)
wwttwttiBOOLLookupAccountNameW(_In_opt_ LPCWSTR lpSystemName, _In_ LPCWSTR lpAccountName, _Out_opt_ PSID Sid, _Inout_ LPDWORD cbSid, _Out_opt_ LPWSTR ReferencedDomainName, _Inout_ LPDWORD cchReferencedDomainName, _Out_ PSID_NAME_USE peUse)
stststtiBOOLLookupAccountSid(_In_opt_ LPCTSTR lpSystemName, _In_ PSID lpSid, _Out_opt_ LPTSTR lpName, _Inout_ LPDWORD cchName, _Out_opt_ LPTSTR lpReferencedDomainName, _Inout_ LPDWORD cchReferencedDomainName, _Out_ PSID_NAME_USE peUse)
atatattiBOOLLookupAccountSidA(_In_opt_ LPCSTR lpSystemName, _In_ PSID lpSid, _Out_opt_ LPSTR lpName, _Inout_ LPDWORD cchName, _Out_opt_ LPSTR lpReferencedDomainName, _Inout_ LPDWORD cchReferencedDomainName, _Out_ PSID_NAME_USE peUse)
wtwtwttiBOOLLookupAccountSidW(_In_opt_ LPCWSTR lpSystemName, _In_ PSID lpSid, _Out_opt_ LPWSTR lpName, _Inout_ LPDWORD cchName, _Out_opt_ LPWSTR lpReferencedDomainName, _Inout_ LPDWORD cchReferencedDomainName, _Out_ PSID_NAME_USE peUse)
sssttiBOOLLookupPrivilegeDisplayName(_In_opt_ LPCTSTR lpSystemName, _In_ LPCTSTR lpName, _Out_opt_ LPTSTR lpDisplayName, _Inout_ LPDWORD cchDisplayName, _Out_ LPDWORD lpLanguageId)
aaattiBOOLLookupPrivilegeDisplayNameA(_In_opt_ LPCSTR lpSystemName, _In_ LPCSTR lpName, _Out_opt_ LPSTR lpDisplayName, _Inout_ LPDWORD cchDisplayName, _Out_ LPDWORD lpLanguageId)
wwwttiBOOLLookupPrivilegeDisplayNameW(_In_opt_ LPCWSTR lpSystemName, _In_ LPCWSTR lpName, _Out_opt_ LPWSTR lpDisplayName, _Inout_ LPDWORD cchDisplayName, _Out_ LPDWORD lpLanguageId)
ststiBOOLLookupPrivilegeName(_In_opt_ LPCTSTR lpSystemName, _In_ PLUID lpLuid, _Out_opt_ LPTSTR lpName, _Inout_ LPDWORD cchName)
atatiBOOLLookupPrivilegeNameA(_In_opt_ LPCSTR lpSystemName, _In_ PLUID lpLuid, _Out_opt_ LPSTR lpName, _Inout_ LPDWORD cchName)
wtwtiBOOLLookupPrivilegeNameW(_In_opt_ LPCWSTR lpSystemName, _In_ PLUID lpLuid, _Out_opt_ LPWSTR lpName, _Inout_ LPDWORD cchName)
sstiBOOLLookupPrivilegeValue(_In_opt_ LPCTSTR lpSystemName, _In_ LPCTSTR lpName, _Out_ PLUID lpLuid)
aatiBOOLLookupPrivilegeValueA(_In_opt_ LPCSTR lpSystemName, _In_ LPCSTR lpName, _Out_ PLUID lpLuid)
wwtiBOOLLookupPrivilegeValueW(_In_opt_ LPCWSTR lpSystemName, _In_ LPCWSTR lpName, _Out_ PLUID lpLuid)
tttttttuiDWORDLookupSecurityDescriptorParts(_Out_opt_ PTRUSTEE *pOwner, _Out_opt_ PTRUSTEE *pGroup, _Out_opt_ PULONG cCountOfAccessEntries, _Out_opt_ PEXPLICIT_ACCESS *pListOfAccessEntries, _Out_opt_ PULONG cCountOfAuditEntries, _Out_opt_ PEXPLICIT_ACCESS *pListOfAuditEntries, _In_ PSECURITY_DESCRIPTOR pSD)
tttttttuiDWORDLookupSecurityDescriptorPartsA(_Out_opt_ PTRUSTEE *pOwner, _Out_opt_ PTRUSTEE *pGroup, _Out_opt_ PULONG cCountOfAccessEntries, _Out_opt_ PEXPLICIT_ACCESS *pListOfAccessEntries, _Out_opt_ PULONG cCountOfAuditEntries, _Out_opt_ PEXPLICIT_ACCESS *pListOfAuditEntries, _In_ PSECURITY_DESCRIPTOR pSD)
tttttttuiDWORDLookupSecurityDescriptorPartsW(_Out_opt_ PTRUSTEE *pOwner, _Out_opt_ PTRUSTEE *pGroup, _Out_opt_ PULONG cCountOfAccessEntries, _Out_opt_ PEXPLICIT_ACCESS *pListOfAccessEntries, _Out_opt_ PULONG cCountOfAuditEntries, _Out_opt_ PEXPLICIT_ACCESS *pListOfAuditEntries, _In_ PSECURITY_DESCRIPTOR pSD)
ttsuiiintLsaAddAccountRights(_In_ LSA_HANDLE PolicyHandle, _In_ PSID AccountSid, _In_ PLSA_UNICODE_STRING UserRights, _In_ ULONG CountOfRights)
tiintLsaClose(_In_ LSA_HANDLE ObjectHandle)
tttuitiintLsaCreateTrustedDomainEx(_In_ LSA_HANDLE PolicyHandle, _In_ PTRUSTED_DOMAIN_INFORMATION_EX TrustedDomainInformation, _In_ PTRUSTED_DOMAIN_AUTH_INFORMATION AuthenticationInformation, _In_ ACCESS_MASK DesiredAccess, _Out_ PLSA_HANDLE TrustedDomainHandle)
ttiintLsaDeleteTrustedDomain(_In_ LSA_HANDLE PolicyHandle, _In_ PSID TrustedDomainSid)
ttttiintLsaEnumerateAccountRights(_In_ LSA_HANDLE PolicyHandle, _In_ PSID AccountSid, _Out_ PLSA_UNICODE_STRING *UserRights, _Out_ PULONG CountOfRights)
tsttiintLsaEnumerateAccountsWithUserRight(_In_ LSA_HANDLE PolicyHandle, _In_ PLSA_UNICODE_STRING UserRights, _Out_ PVOID *EnumerationBuffer, _Out_ PULONG CountReturned)
tttuitiintLsaEnumerateTrustedDomains(_In_ LSA_HANDLE PolicyHandle, _In_ PLSA_ENUMERATION_HANDLE EnumerationContext, _Out_ PVOID *Buffer, _In_ ULONG PreferedMaximumLength, _Out_ PULONG CountReturned)
tttuitiintLsaEnumerateTrustedDomainsEx(_In_ LSA_HANDLE PolicyHandle, _In_ PLSA_ENUMERATION_HANDLE EnumerationContext, _Out_ PVOID *Buffer, _In_ ULONG PreferredMaximumLength, _Out_ PULONG CountReturned)
tiintLsaFreeMemory(_In_ PVOID Buffer)
tuisttiintLsaLookupNames(_In_ LSA_HANDLE PolicyHandle, _In_ ULONG Count, _In_ PLSA_UNICODE_STRING Names, _Out_ PLSA_REFERENCED_DOMAIN_LIST *ReferencedDomains, _Out_ PLSA_TRANSLATED_SID *Sids)
tuiuisttiintLsaLookupNames2(_In_ LSA_HANDLE PolicyHandle, _In_ ULONG Flags, _In_ ULONG Count, _In_ PLSA_UNICODE_STRING Names, _Out_ PLSA_REFERENCED_DOMAIN_LIST *ReferencedDomains, _Out_ PLSA_TRANSLATED_SID2 *Sids)
twtiintLsaLookupPrivilegeValue(LSA_HANDLE PolicyHandle, PUNICODE_STRING Name, PLUID Value)
tuitttiintLsaLookupSids(_In_ LSA_HANDLE PolicyHandle, _In_ ULONG Count, _In_ PSID *Sids, _Out_ PLSA_REFERENCED_DOMAIN_LIST *ReferencedDomains, _Out_ PLSA_TRANSLATED_NAME *Names)
uiuiULONGLsaNtStatusToWinError(_In_ NTSTATUS Status)
stuitiintLsaOpenPolicy(_In_ PLSA_UNICODE_STRING SystemName, _In_ PLSA_OBJECT_ATTRIBUTES ObjectAttributes, _In_ ACCESS_MASK DesiredAccess, _Inout_ PLSA_HANDLE PolicyHandle)
tsuitiintLsaOpenTrustedDomainByName(_In_ LSA_HANDLE PolicyHandle, _In_ PLSA_UNICODE_STRING TrustedDomainName, _In_ ACCESS_MASK DesiredAccess, _Out_ PLSA_HANDLE TrustedDomainHandle)
tuitiintLsaQueryDomainInformationPolicy(_In_ LSA_HANDLE PolicyHandle, _In_ POLICY_DOMAIN_INFORMATION_CLASS InformationClass, _Out_ PVOID *Buffer)
tstiintLsaQueryForestTrustInformation(_In_ LSA_HANDLE PolicyHandle, _In_ PLSA_UNICODE_STRING TrustedDomainName, _Out_ PLSA_FOREST_TRUST_INFORMATION *ForestTrustInfo)
tuitiintLsaQueryInformationPolicy(_In_ LSA_HANDLE PolicyHandle, _In_ POLICY_INFORMATION_CLASS InformationClass, _Out_ PVOID *Buffer)
ttuitiintLsaQueryTrustedDomainInfo(_In_ LSA_HANDLE PolicyHandle, _In_ PSID TrustedDomainSid, _In_ TRUSTED_INFORMATION_CLASS InformationClass, _Out_ PVOID *Buffer)
tsuitiintLsaQueryTrustedDomainInfoByName(_In_ LSA_HANDLE PolicyHandle, _In_ PLSA_UNICODE_STRING TrustedDomainName, _In_ TRUSTED_INFORMATION_CLASS InformationClass, _Out_ PVOID *Buffer)
ttucsuiiintLsaRemoveAccountRights(_In_ LSA_HANDLE PolicyHandle, _In_ PSID AccountSid, _In_ BOOLEAN AllRights, _In_ PLSA_UNICODE_STRING UserRights, _In_ ULONG CountOfRights)
tstiintLsaRetrievePrivateData(_In_ LSA_HANDLE PolicyHandle, _In_ PLSA_UNICODE_STRING KeyName, _Out_ PLSA_UNICODE_STRING *PrivateData)
tuitiintLsaSetDomainInformationPolicy(_In_ LSA_HANDLE PolicyHandle, _In_ POLICY_DOMAIN_INFORMATION_CLASS InformationClass, _In_ PVOID Buffer)
tstuctiintLsaSetForestTrustInformation(_In_ LSA_HANDLE PolicyHandle, _In_ PLSA_UNICODE_STRING TrustedDomainName, _In_ PLSA_FOREST_TRUST_INFORMATION ForestTrustInfo, _In_ BOOLEAN CheckOnly, _Out_ PLSA_FOREST_TRUST_COLLISION_INFORMATION *CollisionInfo)
tuitiintLsaSetInformationPolicy(_In_ LSA_HANDLE PolicyHandle, _In_ POLICY_INFORMATION_CLASS InformationClass, _In_ PVOID Buffer)
tsuitiintLsaSetTrustedDomainInfoByName(_In_ LSA_HANDLE PolicyHandle, _In_ PLSA_UNICODE_STRING TrustedDomainName, _In_ TRUSTED_INFORMATION_CLASS InformationClass, _In_ PVOID Buffer)
ttuitiintLsaSetTrustedDomainInformation(_In_ LSA_HANDLE PolicyHandle, _In_ PSID TrustedDomainSid, _In_ TRUSTED_INFORMATION_CLASS InformationClass, _In_ PVOID Buffer)
tssiintLsaStorePrivateData(_In_ LSA_HANDLE PolicyHandle, _In_ PLSA_UNICODE_STRING KeyName, _In_ PLSA_UNICODE_STRING PrivateData)
tttttttttttiBOOLMakeAbsoluteSD(_In_ PSECURITY_DESCRIPTOR pSelfRelativeSD, _Out_opt_ PSECURITY_DESCRIPTOR pAbsoluteSD, _Inout_ LPDWORD lpdwAbsoluteSDSize, _Out_opt_ PACL pDacl, _Inout_ LPDWORD lpdwDaclSize, _Out_opt_ PACL pSacl, _Inout_ LPDWORD lpdwSaclSize, _Out_opt_ PSID pOwner, _Inout_ LPDWORD lpdwOwnerSize, _Out_opt_ PSID pPrimaryGroup, _Inout_ LPDWORD lpdwPrimaryGroupSize)
tttiBOOLMakeSelfRelativeSD(_In_ PSECURITY_DESCRIPTOR pAbsoluteSD, _Out_opt_ PSECURITY_DESCRIPTOR pSelfRelativeSD, _Inout_ LPDWORD lpdwBufferLength)
ttiVOIDMapGenericMask(_Inout_ PDWORD AccessMask, _In_ PGENERIC_MAPPING GenericMapping)
ttucttttuiDWORDMSChapSrvChangePassword(_In_ PWSTR ServerName, _In_ PWSTR UserName, _In_ BOOLEAN LmOldPresent, _In_ PLM_OWF_PASSWORD LmOldOwfPassword, _In_ PLM_OWF_PASSWORD LmNewOwfPassword, _In_ PNT_OWF_PASSWORD NtOldOwfPassword, _In_ PNT_OWF_PASSWORD NtNewOwfPassword)
ttttucttuiDWORDMSChapSrvChangePassword2(_In_ PWSTR ServerName, _In_ PWSTR UserName, _In_ PSAMPR_ENCRYPTED_USER_PASSWORD NewPasswordEncryptedWithOldNt, _In_ PENCRYPTED_NT_OWF_PASSWORD OldNtOwfPasswordEncryptedWithNewNt, _In_ BOOLEAN LmPresent, _In_ PSAMPR_ENCRYPTED_USER_PASSWORD NewPasswordEncryptedWithOldLm, _In_ PENCRYPTED_LM_OWF_PASSWORD OldLmOwfPasswordEncryptedWithNewLmOrNt)
iiBOOLNotifyBootConfigStatus(_In_ BOOL BootAcceptable)
ttiBOOLNotifyChangeEventLog(_In_ HANDLE hEventLog, _In_ HANDLE hEvent)
tuituiDWORDNotifyServiceStatusChange(_In_ SC_HANDLE hService, _In_ DWORD dwNotifyMask, _In_ PSERVICE_NOTIFY pNotifyBuffer)
tuituiDWORDNotifyServiceStatusChangeA(_In_ SC_HANDLE hService, _In_ DWORD dwNotifyMask, _In_ PSERVICE_NOTIFY pNotifyBuffer)
tuituiDWORDNotifyServiceStatusChangeW(_In_ SC_HANDLE hService, _In_ DWORD dwNotifyMask, _In_ PSERVICE_NOTIFY pNotifyBuffer)
stiiBOOLObjectCloseAuditAlarm(_In_ LPCTSTR SubsystemName, _In_ LPVOID HandleId, _In_ BOOL GenerateOnClose)
atiiBOOLObjectCloseAuditAlarmA(_In_ LPCSTR SubsystemName, _In_ LPVOID HandleId, _In_ BOOL GenerateOnClose)
wtiiBOOLObjectCloseAuditAlarmW(_In_ LPCWSTR SubsystemName, _In_ LPVOID HandleId, _In_ BOOL GenerateOnClose)
stiiBOOLObjectDeleteAuditAlarm(_In_ LPCTSTR SubsystemName, _In_ LPVOID HandleId, _In_ BOOL GenerateOnClose)
atiiBOOLObjectDeleteAuditAlarmA(_In_ LPCSTR SubsystemName, _In_ LPVOID HandleId, _In_ BOOL GenerateOnClose)
wtiiBOOLObjectDeleteAuditAlarmW(_In_ LPCWSTR SubsystemName, _In_ LPVOID HandleId, _In_ BOOL GenerateOnClose)
stssttuiuitiitiBOOLObjectOpenAuditAlarm(_In_ LPCTSTR SubsystemName, _In_ LPVOID HandleId, _In_ LPTSTR ObjectTypeName, _In_opt_ LPTSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ HANDLE ClientToken, _In_ DWORD DesiredAccess, _In_ DWORD GrantedAccess, _In_opt_ PPRIVILEGE_SET Privileges, _In_ BOOL ObjectCreation, _In_ BOOL AccessGranted, _Out_ LPBOOL GenerateOnClose)
ataattuiuitiitiBOOLObjectOpenAuditAlarmA(_In_ LPCSTR SubsystemName, _In_ LPVOID HandleId, _In_ LPSTR ObjectTypeName, _In_opt_ LPSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ HANDLE ClientToken, _In_ DWORD DesiredAccess, _In_ DWORD GrantedAccess, _In_opt_ PPRIVILEGE_SET Privileges, _In_ BOOL ObjectCreation, _In_ BOOL AccessGranted, _Out_ LPBOOL GenerateOnClose)
wtwwttuiuitiitiBOOLObjectOpenAuditAlarmW(_In_ LPCWSTR SubsystemName, _In_ LPVOID HandleId, _In_ LPWSTR ObjectTypeName, _In_opt_ LPWSTR ObjectName, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ HANDLE ClientToken, _In_ DWORD DesiredAccess, _In_ DWORD GrantedAccess, _In_opt_ PPRIVILEGE_SET Privileges, _In_ BOOL ObjectCreation, _In_ BOOL AccessGranted, _Out_ LPBOOL GenerateOnClose)
sttuitiiBOOLObjectPrivilegeAuditAlarm(_In_ LPCTSTR SubsystemName, _In_ LPVOID HandleId, _In_ HANDLE ClientToken, _In_ DWORD DesiredAccess, _In_ PPRIVILEGE_SET Privileges, _In_ BOOL AccessGranted)
attuitiiBOOLObjectPrivilegeAuditAlarmA(_In_ LPCSTR SubsystemName, _In_ LPVOID HandleId, _In_ HANDLE ClientToken, _In_ DWORD DesiredAccess, _In_ PPRIVILEGE_SET Privileges, _In_ BOOL AccessGranted)
wttuitiiBOOLObjectPrivilegeAuditAlarmW(_In_ LPCWSTR SubsystemName, _In_ LPVOID HandleId, _In_ HANDLE ClientToken, _In_ DWORD DesiredAccess, _In_ PPRIVILEGE_SET Privileges, _In_ BOOL AccessGranted)
sstHANDLEOpenBackupEventLog(_In_ LPCTSTR lpUNCServerName, _In_ LPCTSTR lpFileName)
aatHANDLEOpenBackupEventLogA(_In_ LPCSTR lpUNCServerName, _In_ LPCSTR lpFileName)
wwtHANDLEOpenBackupEventLogW(_In_ LPCWSTR lpUNCServerName, _In_ LPCWSTR lpFileName)
suituiDWORDOpenEncryptedFileRaw(_In_ LPCTSTR lpFileName, _In_ ULONG ulFlags, _Out_ PVOID *pvContext)
auituiDWORDOpenEncryptedFileRawA(_In_ LPCSTR lpFileName, _In_ ULONG ulFlags, _Out_ PVOID *pvContext)
wuituiDWORDOpenEncryptedFileRawW(_In_ LPCWSTR lpFileName, _In_ ULONG ulFlags, _Out_ PVOID *pvContext)
sstHANDLEOpenEventLog(_In_ LPCTSTR lpUNCServerName, _In_ LPCTSTR lpSourceName)
aatHANDLEOpenEventLogA(_In_ LPCSTR lpUNCServerName, _In_ LPCSTR lpSourceName)
wwtHANDLEOpenEventLogW(_In_ LPCWSTR lpUNCServerName, _In_ LPCWSTR lpSourceName)
tuitiBOOLOpenProcessToken(_In_ HANDLE ProcessHandle, _In_ DWORD DesiredAccess, _Out_ PHANDLE TokenHandle)
ssuitSC_HANDLEOpenSCManager(_In_opt_ LPCTSTR lpMachineName, _In_opt_ LPCTSTR lpDatabaseName, _In_ DWORD dwDesiredAccess)
aauitSC_HANDLEOpenSCManagerA(_In_opt_ LPCSTR lpMachineName, _In_opt_ LPCSTR lpDatabaseName, _In_ DWORD dwDesiredAccess)
wwuitSC_HANDLEOpenSCManagerW(_In_opt_ LPCWSTR lpMachineName, _In_opt_ LPCWSTR lpDatabaseName, _In_ DWORD dwDesiredAccess)
tsuitSC_HANDLEOpenService(_In_ SC_HANDLE hSCManager, _In_ LPCTSTR lpServiceName, _In_ DWORD dwDesiredAccess)
tauitSC_HANDLEOpenServiceA(_In_ SC_HANDLE hSCManager, _In_ LPCSTR lpServiceName, _In_ DWORD dwDesiredAccess)
twuitSC_HANDLEOpenServiceW(_In_ SC_HANDLE hSCManager, _In_ LPCWSTR lpServiceName, _In_ DWORD dwDesiredAccess)
tuiitiBOOLOpenThreadToken(_In_ HANDLE ThreadHandle, _In_ DWORD DesiredAccess, _In_ BOOL OpenAsSelf, _Out_ PHANDLE TokenHandle)
uittHWCTOpenThreadWaitChainSession(_In_ DWORD Flags, _In_opt_ PWAITCHAINCALLBACK callback)
ttwuitPPERF_COUNTERSET_INSTANCEPerfCreateInstance(_In_ HANDLE hProvider, _In_ LPCGUID CounterSetGuid, _In_ LPCWSTR szInstanceName, _In_ ULONG dwInstance)
ttuiuiuiULONGPerfDecrementULongCounterValue(_In_ HANDLE hProvider, _In_ PPERF_COUNTERSET_INSTANCE pInstance, _In_ ULONG CounterId, _In_ ULONG lValue)
ttuiui6uiULONGPerfDecrementULongLongCounterValue(_In_ HANDLE hProvider, _In_ PPERF_COUNTERSET_INSTANCE pInstance, _In_ ULONG CounterId, _In_ ULONGLONG llValue)
ttuiULONGPerfDeleteInstance(_In_ HANDLE hProvider, _In_ PPERF_COUNTERSET_INSTANCE InstanceBlock)
ttuiuiuiULONGPerfIncrementULongCounterValue(_In_ HANDLE hProvider, _In_ PPERF_COUNTERSET_INSTANCE pInstance, _In_ ULONG CounterId, _In_ ULONG lValue)
ttuiui6uiULONGPerfIncrementULongLongCounterValue(_In_ HANDLE hProvider, _In_ PPERF_COUNTERSET_INSTANCE pInstance, _In_ ULONG CounterId, _In_ ULONGLONG llValue)
ttwuitPPERF_COUNTERSET_INSTANCEPerfQueryInstance(_In_ HANDLE hProvider, _In_ LPCGUID CounterSetGuid, _In_ LPCWSTR szInstance, _In_ ULONG dwInstance)
ttuituiULONGPerfSetCounterRefValue(_In_ HANDLE hProvider, _In_ PPERF_COUNTERSET_INSTANCE pInstance, _In_ ULONG CounterId, _In_ PVOID lpAddr)
ttuiuiULONGPerfSetCounterSetInfo(_In_ HANDLE hProvider, _In_ PPERF_COUNTERSET_INFO pTemplate, _In_ ULONG dwTemplateSize)
ttuiuiuiULONGPerfSetULongCounterValue(_In_ HANDLE hProvider, _In_ PPERF_COUNTERSET_INSTANCE pInstance, _In_ ULONG CounterId, _In_ ULONG lValue)
ttuiui6uiULONGPerfSetULongLongCounterValue(_In_ HANDLE hProvider, _In_ PPERF_COUNTERSET_INSTANCE pInstance, _In_ ULONG CounterId, _In_ ULONGLONG llValue)
tttuiULONGPerfStartProvider(_In_ LPGUID ProviderGuid, _In_opt_ PERFLIBREQUEST ControlCallback, _Out_ HANDLE *phProvider)
tttuiULONGPerfStartProviderEx(_In_ LPGUID ProviderGuid, _In_opt_ PPERF_PROVIDER_CONTEXT ProviderContext, _Out_ HANDLE *phProvider)
tuiULONGPerfStopProvider(_In_ HANDLE hProvider)
tttiBOOLPrivilegeCheck(_In_ HANDLE ClientToken, _Inout_ PPRIVILEGE_SET RequiredPrivileges, _Out_ LPBOOL pfResult)
ssttiiBOOLPrivilegedServiceAuditAlarm(_In_ LPCTSTR SubsystemName, _In_ LPCTSTR ServiceName, _In_ HANDLE ClientToken, _In_ PPRIVILEGE_SET Privileges, _In_ BOOL AccessGranted)
aattiiBOOLPrivilegedServiceAuditAlarmA(_In_ LPCSTR SubsystemName, _In_ LPCSTR ServiceName, _In_ HANDLE ClientToken, _In_ PPRIVILEGE_SET Privileges, _In_ BOOL AccessGranted)
wwttiiBOOLPrivilegedServiceAuditAlarmW(_In_ LPCWSTR SubsystemName, _In_ LPCWSTR ServiceName, _In_ HANDLE ClientToken, _In_ PPRIVILEGE_SET Privileges, _In_ BOOL AccessGranted)
wtuiDWORDQueryRecoveryAgentsOnEncryptedFile(_In_ LPCWSTR lpFileName, _Out_ PENCRYPTION_CERTIFICATE_HASH_LIST *pRecoveryAgents)
uitiVOIDQuerySecurityAccessMask(_In_ SECURITY_INFORMATION SecurityInformation, _Out_ LPDWORD DesiredAccess)
ttuitiBOOLQueryServiceConfig(_In_ SC_HANDLE hService, _Out_opt_ LPQUERY_SERVICE_CONFIG lpServiceConfig, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
tuituitiBOOLQueryServiceConfig2(_In_ SC_HANDLE hService, _In_ DWORD dwInfoLevel, _Out_opt_ LPBYTE lpBuffer, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
tuituitiBOOLQueryServiceConfig2A(_In_ SC_HANDLE hService, _In_ DWORD dwInfoLevel, _Out_opt_ LPBYTE lpBuffer, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
tuituitiBOOLQueryServiceConfig2W(_In_ SC_HANDLE hService, _In_ DWORD dwInfoLevel, _Out_opt_ LPBYTE lpBuffer, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
ttuitiBOOLQueryServiceConfigA(_In_ SC_HANDLE hService, _Out_opt_ LPQUERY_SERVICE_CONFIG lpServiceConfig, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
ttuitiBOOLQueryServiceConfigW(_In_ SC_HANDLE hService, _Out_opt_ LPQUERY_SERVICE_CONFIG lpServiceConfig, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
ttuitiBOOLQueryServiceLockStatus(_In_ SC_HANDLE hSCManager, _Out_opt_ LPQUERY_SERVICE_LOCK_STATUS lpLockStatus, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
ttuitiBOOLQueryServiceLockStatusA(_In_ SC_HANDLE hSCManager, _Out_opt_ LPQUERY_SERVICE_LOCK_STATUS lpLockStatus, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
ttuitiBOOLQueryServiceLockStatusW(_In_ SC_HANDLE hSCManager, _Out_opt_ LPQUERY_SERVICE_LOCK_STATUS lpLockStatus, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
tuituitiBOOLQueryServiceObjectSecurity(_In_ SC_HANDLE hService, _In_ SECURITY_INFORMATION dwSecurityInformation, _Out_opt_ PSECURITY_DESCRIPTOR lpSecurityDescriptor, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
ttiBOOLQueryServiceStatus(_In_ SC_HANDLE hService, _Out_ LPSERVICE_STATUS lpServiceStatus)
tuituitiBOOLQueryServiceStatusEx(_In_ SC_HANDLE hService, _In_ SC_STATUS_TYPE InfoLevel, _Out_opt_ LPBYTE lpBuffer, _In_ DWORD cbBufSize, _Out_ LPDWORD pcbBytesNeeded)
tstuiULONGQueryTrace(_In_ TRACEHANDLE SessionHandle, _In_ LPCTSTR SessionName, _Inout_ PEVENT_TRACE_PROPERTIES Properties)
tatuiULONGQueryTraceA(_In_ TRACEHANDLE SessionHandle, _In_ LPCSTR SessionName, _Inout_ PEVENT_TRACE_PROPERTIES Properties)
twtuiULONGQueryTraceW(_In_ TRACEHANDLE SessionHandle, _In_ LPCWSTR SessionName, _Inout_ PEVENT_TRACE_PROPERTIES Properties)
wtuiDWORDQueryUsersOnEncryptedFile(_In_ LPCWSTR lpFileName, _Out_ PENCRYPTION_CERTIFICATE_HASH_LIST *pUsers)
tttuiDWORDReadEncryptedFileRaw(_In_ PFE_EXPORT_FUNC pfExportCallback, _In_opt_ PVOID pvCallbackContext, _In_ PVOID pvContext)
tuiuituittiBOOLReadEventLog(_In_ HANDLE hEventLog, _In_ DWORD dwReadFlags, _In_ DWORD dwRecordOffset, _Out_ LPVOID lpBuffer, _In_ DWORD nNumberOfBytesToRead, _Out_ DWORD *pnBytesRead, _Out_ DWORD *pnMinNumberOfBytesNeeded)
tuiuituittiBOOLReadEventLogA(_In_ HANDLE hEventLog, _In_ DWORD dwReadFlags, _In_ DWORD dwRecordOffset, _Out_ LPVOID lpBuffer, _In_ DWORD nNumberOfBytesToRead, _Out_ DWORD *pnBytesRead, _Out_ DWORD *pnMinNumberOfBytesNeeded)
tuiuituittiBOOLReadEventLogW(_In_ HANDLE hEventLog, _In_ DWORD dwReadFlags, _In_ DWORD dwRecordOffset, _Out_ LPVOID lpBuffer, _In_ DWORD nNumberOfBytesToRead, _Out_ DWORD *pnBytesRead, _Out_ DWORD *pnMinNumberOfBytesNeeded)
tiLONGRegCloseKey(_In_ HKEY hKey)
sttiLONGRegConnectRegistry(_In_opt_ LPCTSTR lpMachineName, _In_ HKEY hKey, _Out_ PHKEY phkResult)
attiLONGRegConnectRegistryA(_In_opt_ LPCSTR lpMachineName, _In_ HKEY hKey, _Out_ PHKEY phkResult)
wttiLONGRegConnectRegistryW(_In_opt_ LPCWSTR lpMachineName, _In_ HKEY hKey, _Out_ PHKEY phkResult)
tstiLONGRegCopyTree(_In_ HKEY hKeySrc, _In_opt_ LPCTSTR lpSubKey, _In_ HKEY hKeyDest)
tatiLONGRegCopyTreeA(_In_ HKEY hKeySrc, _In_opt_ LPCSTR lpSubKey, _In_ HKEY hKeyDest)
twtiLONGRegCopyTreeW(_In_ HKEY hKeySrc, _In_opt_ LPCWSTR lpSubKey, _In_ HKEY hKeyDest)
tstiLONGRegCreateKey(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey, _Out_ PHKEY phkResult)
tatiLONGRegCreateKeyA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey, _Out_ PHKEY phkResult)
tsuisuiuitttiLONGRegCreateKeyEx(_In_ HKEY hKey, _In_ LPCTSTR lpSubKey, _Reserved_ DWORD Reserved, _In_opt_ LPTSTR lpClass, _In_ DWORD dwOptions, _In_ REGSAM samDesired, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _Out_ PHKEY phkResult, _Out_opt_ LPDWORD lpdwDisposition)
tauiauiuitttiLONGRegCreateKeyExA(_In_ HKEY hKey, _In_ LPCSTR lpSubKey, _Reserved_ DWORD Reserved, _In_opt_ LPSTR lpClass, _In_ DWORD dwOptions, _In_ REGSAM samDesired, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _Out_ PHKEY phkResult, _Out_opt_ LPDWORD lpdwDisposition)
twuiwuiuitttiLONGRegCreateKeyExW(_In_ HKEY hKey, _In_ LPCWSTR lpSubKey, _Reserved_ DWORD Reserved, _In_opt_ LPWSTR lpClass, _In_ DWORD dwOptions, _In_ REGSAM samDesired, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _Out_ PHKEY phkResult, _Out_opt_ LPDWORD lpdwDisposition)
tsuisuiuitttttiLONGRegCreateKeyTransacted(_In_ HKEY hKey, _In_ LPCTSTR lpSubKey, _Reserved_ DWORD Reserved, _In_opt_ LPTSTR lpClass, _In_ DWORD dwOptions, _In_ REGSAM samDesired, _In_opt_ const LPSECURITY_ATTRIBUTES lpSecurityAttributes, _Out_ PHKEY phkResult, _Out_opt_ LPDWORD lpdwDisposition, _In_ HANDLE hTransaction, _Reserved_ PVOID pExtendedParemeter)
tauiauiuitttttiLONGRegCreateKeyTransactedA(_In_ HKEY hKey, _In_ LPCSTR lpSubKey, _Reserved_ DWORD Reserved, _In_opt_ LPSTR lpClass, _In_ DWORD dwOptions, _In_ REGSAM samDesired, _In_opt_ const LPSECURITY_ATTRIBUTES lpSecurityAttributes, _Out_ PHKEY phkResult, _Out_opt_ LPDWORD lpdwDisposition, _In_ HANDLE hTransaction, _Reserved_ PVOID pExtendedParemeter)
twuiwuiuitttttiLONGRegCreateKeyTransactedW(_In_ HKEY hKey, _In_ LPCWSTR lpSubKey, _Reserved_ DWORD Reserved, _In_opt_ LPWSTR lpClass, _In_ DWORD dwOptions, _In_ REGSAM samDesired, _In_opt_ const LPSECURITY_ATTRIBUTES lpSecurityAttributes, _Out_ PHKEY phkResult, _Out_opt_ LPDWORD lpdwDisposition, _In_ HANDLE hTransaction, _Reserved_ PVOID pExtendedParemeter)
twtiLONGRegCreateKeyW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey, _Out_ PHKEY phkResult)
tsiLONGRegDeleteKey(_In_ HKEY hKey, _In_ LPCTSTR lpSubKey)
taiLONGRegDeleteKeyA(_In_ HKEY hKey, _In_ LPCSTR lpSubKey)
tsuiuiiLONGRegDeleteKeyEx(_In_ HKEY hKey, _In_ LPCTSTR lpSubKey, _In_ REGSAM samDesired, _Reserved_ DWORD Reserved)
tauiuiiLONGRegDeleteKeyExA(_In_ HKEY hKey, _In_ LPCSTR lpSubKey, _In_ REGSAM samDesired, _Reserved_ DWORD Reserved)
twuiuiiLONGRegDeleteKeyExW(_In_ HKEY hKey, _In_ LPCWSTR lpSubKey, _In_ REGSAM samDesired, _Reserved_ DWORD Reserved)
tsuiuittiLONGRegDeleteKeyTransacted(_In_ HKEY hKey, _In_ LPCTSTR lpSubKey, _In_ REGSAM samDesired, _Reserved_ DWORD Reserved, _In_ HANDLE hTransaction, _Reserved_ PVOID pExtendedParameter)
tauiuittiLONGRegDeleteKeyTransactedA(_In_ HKEY hKey, _In_ LPCSTR lpSubKey, _In_ REGSAM samDesired, _Reserved_ DWORD Reserved, _In_ HANDLE hTransaction, _Reserved_ PVOID pExtendedParameter)
twuiuittiLONGRegDeleteKeyTransactedW(_In_ HKEY hKey, _In_ LPCWSTR lpSubKey, _In_ REGSAM samDesired, _Reserved_ DWORD Reserved, _In_ HANDLE hTransaction, _Reserved_ PVOID pExtendedParameter)
tssiLONGRegDeleteKeyValue(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey, _In_opt_ LPCTSTR lpValueName)
taaiLONGRegDeleteKeyValueA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey, _In_opt_ LPCSTR lpValueName)
twwiLONGRegDeleteKeyValueW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey, _In_opt_ LPCWSTR lpValueName)
twiLONGRegDeleteKeyW(_In_ HKEY hKey, _In_ LPCWSTR lpSubKey)
tsiLONGRegDeleteTree(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey)
taiLONGRegDeleteTreeA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey)
twiLONGRegDeleteTreeW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey)
tsiLONGRegDeleteValue(_In_ HKEY hKey, _In_opt_ LPCTSTR lpValueName)
taiLONGRegDeleteValueA(_In_ HKEY hKey, _In_opt_ LPCSTR lpValueName)
twiLONGRegDeleteValueW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpValueName)
iLONGRegDisablePredefinedCache(void)
iLONGRegDisablePredefinedCacheEx(void)
tiLONGRegDisableReflectionKey(_In_ HKEY hBase)
tiLONGRegEnableReflectionKey(_In_ HKEY hBase)
tuisuiiLONGRegEnumKey(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPTSTR lpName, _In_ DWORD cchName)
tuiauiiLONGRegEnumKeyA(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPSTR lpName, _In_ DWORD cchName)
tuisttsttiLONGRegEnumKeyEx(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPTSTR lpName, _Inout_ LPDWORD lpcName, _Reserved_ LPDWORD lpReserved, _Inout_ LPTSTR lpClass, _Inout_opt_ LPDWORD lpcClass, _Out_opt_ PFILETIME lpftLastWriteTime)
tuiattattiLONGRegEnumKeyExA(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPSTR lpName, _Inout_ LPDWORD lpcName, _Reserved_ LPDWORD lpReserved, _Inout_ LPSTR lpClass, _Inout_opt_ LPDWORD lpcClass, _Out_opt_ PFILETIME lpftLastWriteTime)
tuiwttwttiLONGRegEnumKeyExW(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPWSTR lpName, _Inout_ LPDWORD lpcName, _Reserved_ LPDWORD lpReserved, _Inout_ LPWSTR lpClass, _Inout_opt_ LPDWORD lpcClass, _Out_opt_ PFILETIME lpftLastWriteTime)
tuiwuiiLONGRegEnumKeyW(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPWSTR lpName, _In_ DWORD cchName)
tuistttttiLONGRegEnumValue(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPTSTR lpValueName, _Inout_ LPDWORD lpcchValueName, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPDWORD lpType, _Out_opt_ LPBYTE lpData, _Inout_opt_ LPDWORD lpcbData)
tuiatttttiLONGRegEnumValueA(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPSTR lpValueName, _Inout_ LPDWORD lpcchValueName, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPDWORD lpType, _Out_opt_ LPBYTE lpData, _Inout_opt_ LPDWORD lpcbData)
tuiwtttttiLONGRegEnumValueW(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPWSTR lpValueName, _Inout_ LPDWORD lpcchValueName, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPDWORD lpType, _Out_opt_ LPBYTE lpData, _Inout_opt_ LPDWORD lpcbData)
tiLONGRegFlushKey(_In_ HKEY hKey)
tuittiLONGRegGetKeySecurity(_In_ HKEY hKey, _In_ SECURITY_INFORMATION SecurityInformation, _Out_opt_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _Inout_ LPDWORD lpcbSecurityDescriptor)
tssuitttiLONGRegGetValue(_In_ HKEY hkey, _In_opt_ LPCTSTR lpSubKey, _In_opt_ LPCTSTR lpValue, _In_opt_ DWORD dwFlags, _Out_opt_ LPDWORD pdwType, _Out_opt_ PVOID pvData, _Inout_opt_ LPDWORD pcbData)
taauitttiLONGRegGetValueA(_In_ HKEY hkey, _In_opt_ LPCSTR lpSubKey, _In_opt_ LPCSTR lpValue, _In_opt_ DWORD dwFlags, _Out_opt_ LPDWORD pdwType, _Out_opt_ PVOID pvData, _Inout_opt_ LPDWORD pcbData)
twwuitttiLONGRegGetValueW(_In_ HKEY hkey, _In_opt_ LPCWSTR lpSubKey, _In_opt_ LPCWSTR lpValue, _In_opt_ DWORD dwFlags, _Out_opt_ LPDWORD pdwType, _Out_opt_ PVOID pvData, _Inout_opt_ LPDWORD pcbData)
sstHANDLERegisterEventSource(_In_ LPCTSTR lpUNCServerName, _In_ LPCTSTR lpSourceName)
aatHANDLERegisterEventSourceA(_In_ LPCSTR lpUNCServerName, _In_ LPCSTR lpSourceName)
wwtHANDLERegisterEventSourceW(_In_ LPCWSTR lpUNCServerName, _In_ LPCWSTR lpSourceName)
sttSERVICE_STATUS_HANDLERegisterServiceCtrlHandler(_In_ LPCTSTR lpServiceName, _In_ LPHANDLER_FUNCTION lpHandlerProc)
attSERVICE_STATUS_HANDLERegisterServiceCtrlHandlerA(_In_ LPCSTR lpServiceName, _In_ LPHANDLER_FUNCTION lpHandlerProc)
stttSERVICE_STATUS_HANDLERegisterServiceCtrlHandlerEx(_In_ LPCTSTR lpServiceName, _In_ LPHANDLER_FUNCTION_EX lpHandlerProc, _In_opt_ LPVOID lpContext)
atttSERVICE_STATUS_HANDLERegisterServiceCtrlHandlerExA(_In_ LPCSTR lpServiceName, _In_ LPHANDLER_FUNCTION_EX lpHandlerProc, _In_opt_ LPVOID lpContext)
wtttSERVICE_STATUS_HANDLERegisterServiceCtrlHandlerExW(_In_ LPCWSTR lpServiceName, _In_ LPHANDLER_FUNCTION_EX lpHandlerProc, _In_opt_ LPVOID lpContext)
wttSERVICE_STATUS_HANDLERegisterServiceCtrlHandlerW(_In_ LPCWSTR lpServiceName, _In_ LPHANDLER_FUNCTION lpHandlerProc)
ttiVOIDRegisterWaitChainCOMCallback(_In_ PCOGETCALLSTATE CallStateCallback, _In_ PCOGETACTIVATIONSTATE ActivationStateCallback)
stuiuiuiiLONGRegLoadAppKey(_In_ LPCTSTR lpFile, _Out_ PHKEY phkResult, _In_ REGSAM samDesired, _In_ DWORD dwOptions, _Reserved_ DWORD Reserved)
atuiuiuiiLONGRegLoadAppKeyA(_In_ LPCSTR lpFile, _Out_ PHKEY phkResult, _In_ REGSAM samDesired, _In_ DWORD dwOptions, _Reserved_ DWORD Reserved)
wtuiuiuiiLONGRegLoadAppKeyW(_In_ LPCWSTR lpFile, _Out_ PHKEY phkResult, _In_ REGSAM samDesired, _In_ DWORD dwOptions, _Reserved_ DWORD Reserved)
tssiLONGRegLoadKey(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey, _In_ LPCTSTR lpFile)
taaiLONGRegLoadKeyA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey, _In_ LPCSTR lpFile)
twwiLONGRegLoadKeyW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey, _In_ LPCWSTR lpFile)
tssuituisiLONGRegLoadMUIString(_In_ HKEY hKey, _In_opt_ LPCTSTR pszValue, _Out_opt_ LPTSTR pszOutBuf, _In_ DWORD cbOutBuf, _Out_opt_ LPDWORD pcbData, _In_ DWORD Flags, _In_opt_ LPCTSTR pszDirectory)
taauituiaiLONGRegLoadMUIStringA(_In_ HKEY hKey, _In_opt_ LPCSTR pszValue, _Out_opt_ LPSTR pszOutBuf, _In_ DWORD cbOutBuf, _Out_opt_ LPDWORD pcbData, _In_ DWORD Flags, _In_opt_ LPCSTR pszDirectory)
twwuituiwiLONGRegLoadMUIStringW(_In_ HKEY hKey, _In_opt_ LPCWSTR pszValue, _Out_opt_ LPWSTR pszOutBuf, _In_ DWORD cbOutBuf, _Out_opt_ LPDWORD pcbData, _In_ DWORD Flags, _In_opt_ LPCWSTR pszDirectory)
tiuitiiLONGRegNotifyChangeKeyValue(_In_ HKEY hKey, _In_ BOOL bWatchSubtree, _In_ DWORD dwNotifyFilter, _In_opt_ HANDLE hEvent, _In_ BOOL fAsynchronous)
uitiLONGRegOpenCurrentUser(_In_ REGSAM samDesired, _Out_ PHKEY phkResult)
tstiLONGRegOpenKey(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey, _Out_ PHKEY phkResult)
tatiLONGRegOpenKeyA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey, _Out_ PHKEY phkResult)
tsuiuitiLONGRegOpenKeyEx(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey, _Reserved_ DWORD ulOptions, _In_ REGSAM samDesired, _Out_ PHKEY phkResult)
tauiuitiLONGRegOpenKeyExA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey, _Reserved_ DWORD ulOptions, _In_ REGSAM samDesired, _Out_ PHKEY phkResult)
twuiuitiLONGRegOpenKeyExW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey, _Reserved_ DWORD ulOptions, _In_ REGSAM samDesired, _Out_ PHKEY phkResult)
tsuiuitttiLONGRegOpenKeyTransacted(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey, _In_ DWORD ulOptions, _In_ REGSAM samDesired, _Out_ PHKEY phkResult, _In_ HANDLE hTransaction, _Reserved_ PVOID pExtendedParameter)
tauiuitttiLONGRegOpenKeyTransactedA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey, _In_ DWORD ulOptions, _In_ REGSAM samDesired, _Out_ PHKEY phkResult, _In_ HANDLE hTransaction, _Reserved_ PVOID pExtendedParameter)
twuiuitttiLONGRegOpenKeyTransactedW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey, _In_ DWORD ulOptions, _In_ REGSAM samDesired, _Out_ PHKEY phkResult, _In_ HANDLE hTransaction, _Reserved_ PVOID pExtendedParameter)
twtiLONGRegOpenKeyW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey, _Out_ PHKEY phkResult)
tuiuitiLONGRegOpenUserClassesRoot(_In_ HANDLE hToken, _Reserved_ DWORD dwOptions, _In_ REGSAM samDesired, _Out_ PHKEY phkResult)
ttiLONGRegOverridePredefKey(_In_ HKEY hKey, _In_opt_ HKEY hNewHKey)
tsttttttttttiLONGRegQueryInfoKey(_In_ HKEY hKey, _Out_opt_ LPTSTR lpClass, _Inout_opt_ LPDWORD lpcClass, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPDWORD lpcSubKeys, _Out_opt_ LPDWORD lpcMaxSubKeyLen, _Out_opt_ LPDWORD lpcMaxClassLen, _Out_opt_ LPDWORD lpcValues, _Out_opt_ LPDWORD lpcMaxValueNameLen, _Out_opt_ LPDWORD lpcMaxValueLen, _Out_opt_ LPDWORD lpcbSecurityDescriptor, _Out_opt_ PFILETIME lpftLastWriteTime)
tattttttttttiLONGRegQueryInfoKeyA(_In_ HKEY hKey, _Out_opt_ LPSTR lpClass, _Inout_opt_ LPDWORD lpcClass, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPDWORD lpcSubKeys, _Out_opt_ LPDWORD lpcMaxSubKeyLen, _Out_opt_ LPDWORD lpcMaxClassLen, _Out_opt_ LPDWORD lpcValues, _Out_opt_ LPDWORD lpcMaxValueNameLen, _Out_opt_ LPDWORD lpcMaxValueLen, _Out_opt_ LPDWORD lpcbSecurityDescriptor, _Out_opt_ PFILETIME lpftLastWriteTime)
twttttttttttiLONGRegQueryInfoKeyW(_In_ HKEY hKey, _Out_opt_ LPWSTR lpClass, _Inout_opt_ LPDWORD lpcClass, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPDWORD lpcSubKeys, _Out_opt_ LPDWORD lpcMaxSubKeyLen, _Out_opt_ LPDWORD lpcMaxClassLen, _Out_opt_ LPDWORD lpcValues, _Out_opt_ LPDWORD lpcMaxValueNameLen, _Out_opt_ LPDWORD lpcMaxValueLen, _Out_opt_ LPDWORD lpcbSecurityDescriptor, _Out_opt_ PFILETIME lpftLastWriteTime)
ttuistiLONGRegQueryMultipleValues(_In_ HKEY hKey, _Out_ PVALENT val_list, _In_ DWORD num_vals, _Out_opt_ LPTSTR lpValueBuf, _Inout_opt_ LPDWORD ldwTotsize)
ttuiatiLONGRegQueryMultipleValuesA(_In_ HKEY hKey, _Out_ PVALENT val_list, _In_ DWORD num_vals, _Out_opt_ LPSTR lpValueBuf, _Inout_opt_ LPDWORD ldwTotsize)
ttuiwtiLONGRegQueryMultipleValuesW(_In_ HKEY hKey, _Out_ PVALENT val_list, _In_ DWORD num_vals, _Out_opt_ LPWSTR lpValueBuf, _Inout_opt_ LPDWORD ldwTotsize)
ttiLONGRegQueryReflectionKey(_In_ HKEY hBase, _Out_ BOOL *bIsReflectionDisabled)
tsstiLONGRegQueryValue(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey, _Out_opt_ LPTSTR lpValue, _Inout_opt_ PLONG lpcbValue)
taatiLONGRegQueryValueA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey, _Out_opt_ LPSTR lpValue, _Inout_opt_ PLONG lpcbValue)
tsttttiLONGRegQueryValueEx(_In_ HKEY hKey, _In_opt_ LPCTSTR lpValueName, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPDWORD lpType, _Out_opt_ LPBYTE lpData, _Inout_opt_ LPDWORD lpcbData)
tattttiLONGRegQueryValueExA(_In_ HKEY hKey, _In_opt_ LPCSTR lpValueName, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPDWORD lpType, _Out_opt_ LPBYTE lpData, _Inout_opt_ LPDWORD lpcbData)
twttttiLONGRegQueryValueExW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpValueName, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPDWORD lpType, _Out_opt_ LPBYTE lpData, _Inout_opt_ LPDWORD lpcbData)
twwtiLONGRegQueryValueW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey, _Out_opt_ LPWSTR lpValue, _Inout_opt_ PLONG lpcbValue)
tsssiLONGRegReplaceKey(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey, _In_ LPCTSTR lpNewFile, _In_ LPCTSTR lpOldFile)
taaaiLONGRegReplaceKeyA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey, _In_ LPCSTR lpNewFile, _In_ LPCSTR lpOldFile)
twwwiLONGRegReplaceKeyW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey, _In_ LPCWSTR lpNewFile, _In_ LPCWSTR lpOldFile)
tsuiiLONGRegRestoreKey(_In_ HKEY hKey, _In_ LPCTSTR lpFile, _In_ DWORD dwFlags)
tauiiLONGRegRestoreKeyA(_In_ HKEY hKey, _In_ LPCSTR lpFile, _In_ DWORD dwFlags)
twuiiLONGRegRestoreKeyW(_In_ HKEY hKey, _In_ LPCWSTR lpFile, _In_ DWORD dwFlags)
tstiLONGRegSaveKey(_In_ HKEY hKey, _In_ LPCTSTR lpFile, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
tatiLONGRegSaveKeyA(_In_ HKEY hKey, _In_ LPCSTR lpFile, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
tstuiiLONGRegSaveKeyEx(_In_ HKEY hKey, _In_ LPCTSTR lpFile, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ DWORD Flags)
tatuiiLONGRegSaveKeyExA(_In_ HKEY hKey, _In_ LPCSTR lpFile, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ DWORD Flags)
twtuiiLONGRegSaveKeyExW(_In_ HKEY hKey, _In_ LPCWSTR lpFile, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ DWORD Flags)
twtiLONGRegSaveKeyW(_In_ HKEY hKey, _In_ LPCWSTR lpFile, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
tuitiLONGRegSetKeySecurity(_In_ HKEY hKey, _In_ SECURITY_INFORMATION SecurityInformation, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor)
tssuituiiLONGRegSetKeyValue(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey, _In_opt_ LPCTSTR lpValueName, _In_ DWORD dwType, _In_opt_ LPCVOID lpData, _In_ DWORD cbData)
taauituiiLONGRegSetKeyValueA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey, _In_opt_ LPCSTR lpValueName, _In_ DWORD dwType, _In_opt_ LPCVOID lpData, _In_ DWORD cbData)
twwuituiiLONGRegSetKeyValueW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey, _In_opt_ LPCWSTR lpValueName, _In_ DWORD dwType, _In_opt_ LPCVOID lpData, _In_ DWORD cbData)
tsuisuiiLONGRegSetValue(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey, _In_ DWORD dwType, _In_ LPCTSTR lpData, _In_ DWORD cbData)
tauiauiiLONGRegSetValueA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey, _In_ DWORD dwType, _In_ LPCSTR lpData, _In_ DWORD cbData)
tsuiuituiiLONGRegSetValueEx(_In_ HKEY hKey, _In_opt_ LPCTSTR lpValueName, _Reserved_ DWORD Reserved, _In_ DWORD dwType, _In_ const BYTE *lpData, _In_ DWORD cbData)
tauiuituiiLONGRegSetValueExA(_In_ HKEY hKey, _In_opt_ LPCSTR lpValueName, _Reserved_ DWORD Reserved, _In_ DWORD dwType, _In_ const BYTE *lpData, _In_ DWORD cbData)
twuiuituiiLONGRegSetValueExW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpValueName, _Reserved_ DWORD Reserved, _In_ DWORD dwType, _In_ const BYTE *lpData, _In_ DWORD cbData)
twuiwuiiLONGRegSetValueW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey, _In_ DWORD dwType, _In_ LPCWSTR lpData, _In_ DWORD cbData)
tsiLONGRegUnLoadKey(_In_ HKEY hKey, _In_opt_ LPCTSTR lpSubKey)
taiLONGRegUnLoadKeyA(_In_ HKEY hKey, _In_opt_ LPCSTR lpSubKey)
twiLONGRegUnLoadKeyW(_In_ HKEY hKey, _In_opt_ LPCWSTR lpSubKey)
wtuiDWORDRemoveUsersFromEncryptedFile(_In_ LPCWSTR lpFileName, _In_ PENCRYPTION_CERTIFICATE_HASH_LIST pHashes)
tuhuhuituhuistiBOOLReportEvent(_In_ HANDLE hEventLog, _In_ WORD wType, _In_ WORD wCategory, _In_ DWORD dwEventID, _In_ PSID lpUserSid, _In_ WORD wNumStrings, _In_ DWORD dwDataSize, _In_ LPCTSTR *lpStrings, _In_ LPVOID lpRawData)
tuhuhuituhuiatiBOOLReportEventA(_In_ HANDLE hEventLog, _In_ WORD wType, _In_ WORD wCategory, _In_ DWORD dwEventID, _In_ PSID lpUserSid, _In_ WORD wNumStrings, _In_ DWORD dwDataSize, _In_ LPCSTR *lpStrings, _In_ LPVOID lpRawData)
tuhuhuituhuiwtiBOOLReportEventW(_In_ HANDLE hEventLog, _In_ WORD wType, _In_ WORD wCategory, _In_ DWORD dwEventID, _In_ PSID lpUserSid, _In_ WORD wNumStrings, _In_ DWORD dwDataSize, _In_ LPCWSTR *lpStrings, _In_ LPVOID lpRawData)
iBOOLRevertToSelf(void)
tiBOOLSaferCloseLevel(_In_ SAFER_LEVEL_HANDLE hLevelHandle)
tttuitiBOOLSaferComputeTokenFromLevel(_In_ SAFER_LEVEL_HANDLE LevelHandle, _In_opt_ HANDLE InAccessToken, _Out_ PHANDLE OutAccessToken, _In_ DWORD dwFlags, _Inout_opt_ LPVOID lpReserved)
uiuiuittiBOOLSaferCreateLevel(_In_ DWORD dwScopeId, _In_ DWORD dwLevelId, _In_ DWORD OpenFlags, _Out_ SAFER_LEVEL_HANDLE *pLevelHandle, _Reserved_ LPVOID lpReserved)
tuituitiBOOLSaferGetLevelInformation(_In_ SAFER_LEVEL_HANDLE LevelHandle, _In_ SAFER_OBJECT_INFO_CLASS dwInfoType, _Out_opt_ LPVOID lpQueryBuffer, _In_ DWORD dwInBufferSize, _Out_ LPDWORD lpdwOutBufferSize)
uiuiuitttiBOOLSaferGetPolicyInformation(_In_ DWORD dwScopeId, _In_ SAFER_POLICY_INFO_CLASS SaferPolicyInfoClass, _In_ DWORD InfoBufferSize, _Out_ PVOID InfoBuffer, _Out_ PDWORD InfoBufferRetSize, _Reserved_ LPVOID lpReserved)
uitttiBOOLSaferIdentifyLevel(_In_ DWORD dwNumProperties, _In_opt_ PSAFER_CODE_PROPERTIES pCodeProperties, _Out_ SAFER_LEVEL_HANDLE *pLevelHandle, _Reserved_ LPVOID lpReserved)
wuciBOOLSaferiIsExecutableFileType(_In_ LPCWSTR szFullPath, _In_ BOOLEAN bFromShellExecute)
twtiBOOLSaferRecordEventLogEntry(_In_ SAFER_LEVEL_HANDLE hLevel, _In_ LPCWSTR szTargetPath, _Reserved_ LPVOID lpReserved)
tuituiiBOOLSaferSetLevelInformation(_In_ SAFER_LEVEL_HANDLE LevelHandle, _In_ SAFER_OBJECT_INFO_CLASS dwInfoType, _In_ LPVOID lpQueryBuffer, _In_ DWORD dwInBufferSize)
uiuiuittiBOOLSaferSetPolicyInformation(_In_ DWORD dwScopeId, _In_ SAFER_POLICY_INFO_CLASS SaferPolicyInfoClass, _In_ DWORD InfoBufferSize, _In_ PVOID InfoBuffer, _Reserved_ LPVOID lpReserved)
ttuiiiBOOLSetAclInformation(_Inout_ PACL pAcl, _In_ LPVOID pAclInformation, _In_ DWORD nAclInformationLength, _In_ ACL_INFORMATION_CLASS dwAclInformationClass)
uitttuiDWORDSetEntriesInAcl(_In_ ULONG cCountOfExplicitEntries, _In_opt_ PEXPLICIT_ACCESS pListOfExplicitEntries, _In_opt_ PACL OldAcl, _Out_ PACL *NewAcl)
uitttuiDWORDSetEntriesInAclA(_In_ ULONG cCountOfExplicitEntries, _In_opt_ PEXPLICIT_ACCESS pListOfExplicitEntries, _In_opt_ PACL OldAcl, _Out_ PACL *NewAcl)
uitttuiDWORDSetEntriesInAclW(_In_ ULONG cCountOfExplicitEntries, _In_opt_ PEXPLICIT_ACCESS pListOfExplicitEntries, _In_opt_ PACL OldAcl, _Out_ PACL *NewAcl)
suitiBOOLSetFileSecurity(_In_ LPCTSTR lpFileName, _In_ SECURITY_INFORMATION SecurityInformation, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor)
auitiBOOLSetFileSecurityA(_In_ LPCSTR lpFileName, _In_ SECURITY_INFORMATION SecurityInformation, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor)
wuitiBOOLSetFileSecurityW(_In_ LPCWSTR lpFileName, _In_ SECURITY_INFORMATION SecurityInformation, _In_ PSECURITY_DESCRIPTOR pSecurityDescriptor)
tuitiBOOLSetKernelObjectSecurity(_In_ HANDLE Handle, _In_ SECURITY_INFORMATION SecurityInformation, _In_ PSECURITY_DESCRIPTOR SecurityDescriptor)
suiuittttuiDWORDSetNamedSecurityInfo(_In_ LPTSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_opt_ PSID psidOwner, _In_opt_ PSID psidGroup, _In_opt_ PACL pDacl, _In_opt_ PACL pSacl)
auiuittttuiDWORDSetNamedSecurityInfoA(_In_ LPSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_opt_ PSID psidOwner, _In_opt_ PSID psidGroup, _In_opt_ PACL pDacl, _In_opt_ PACL pSacl)
wuiuittttuiDWORDSetNamedSecurityInfoW(_In_ LPWSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_opt_ PSID psidOwner, _In_opt_ PSID psidGroup, _In_opt_ PACL pDacl, _In_opt_ PACL pSacl)
uittttiBOOLSetPrivateObjectSecurity(_In_ SECURITY_INFORMATION SecurityInformation, _In_ PSECURITY_DESCRIPTOR ModificationDescriptor, _Inout_ PSECURITY_DESCRIPTOR *ObjectsSecurityDescriptor, _In_ PGENERIC_MAPPING GenericMapping, _In_opt_ HANDLE Token)
uittuittiBOOLSetPrivateObjectSecurityEx(_In_ SECURITY_INFORMATION SecurityInformation, _In_ PSECURITY_DESCRIPTOR ModificationDescriptor, _Inout_ PSECURITY_DESCRIPTOR *ObjectsSecurityDescriptor, _In_ ULONG AutoInheritFlags, _In_ PGENERIC_MAPPING GenericMapping, _In_opt_ HANDLE Token)
uitiVOIDSetSecurityAccessMask(_In_ SECURITY_INFORMATION SecurityInformation, _Out_ LPDWORD DesiredAccess)
tuhuhiBOOLSetSecurityDescriptorControl(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ SECURITY_DESCRIPTOR_CONTROL ControlBitsOfInterest, _In_ SECURITY_DESCRIPTOR_CONTROL ControlBitsToSet)
titiiBOOLSetSecurityDescriptorDacl(_Inout_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ BOOL bDaclPresent, _In_opt_ PACL pDacl, _In_ BOOL bDaclDefaulted)
ttiiBOOLSetSecurityDescriptorGroup(_Inout_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID pGroup, _In_ BOOL bGroupDefaulted)
ttiiBOOLSetSecurityDescriptorOwner(_Inout_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_opt_ PSID pOwner, _In_ BOOL bOwnerDefaulted)
ttuiDWORDSetSecurityDescriptorRMControl(_Inout_ PSECURITY_DESCRIPTOR SecurityDescriptor, _In_opt_ PUCHAR RMControl)
titiiBOOLSetSecurityDescriptorSacl(_Inout_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ BOOL bSaclPresent, _In_opt_ PACL pSacl, _In_ BOOL bSaclDefaulted)
tuiuittttuiDWORDSetSecurityInfo(_In_ HANDLE handle, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_opt_ PSID psidOwner, _In_opt_ PSID psidGroup, _In_opt_ PACL pDacl, _In_opt_ PACL pSacl)
tuiiiiBOOLSetServiceBits(_In_ SERVICE_STATUS_HANDLE hServiceStatus, _In_ DWORD dwServiceBits, _In_ BOOL bSetBitsOn, _In_ BOOL bUpdateImmediately)
tuitiBOOLSetServiceObjectSecurity(_In_ SC_HANDLE hService, _In_ SECURITY_INFORMATION dwSecurityInformation, _In_ PSECURITY_DESCRIPTOR lpSecurityDescriptor)
ttiBOOLSetServiceStatus(_In_ SERVICE_STATUS_HANDLE hServiceStatus, _In_ LPSERVICE_STATUS lpServiceStatus)
ttiBOOLSetThreadToken(_In_opt_ PHANDLE Thread, _In_opt_ HANDLE Token)
tituiiBOOLSetTokenInformation(_In_ HANDLE TokenHandle, _In_ TOKEN_INFORMATION_CLASS TokenInformationClass, _In_ LPVOID TokenInformation, _In_ DWORD TokenInformationLength)
tuiDWORDSetUserFileEncryptionKey(_In_ PENCRYPTION_CERTIFICATE pEncryptionCertificate)
tuisiBOOLStartService(_In_ SC_HANDLE hService, _In_ DWORD dwNumServiceArgs, _In_opt_ LPCTSTR *lpServiceArgVectors)
tuiaiBOOLStartServiceA(_In_ SC_HANDLE hService, _In_ DWORD dwNumServiceArgs, _In_opt_ LPCSTR *lpServiceArgVectors)
tiBOOLStartServiceCtrlDispatcher(_In_ const SERVICE_TABLE_ENTRY *lpServiceTable)
tiBOOLStartServiceCtrlDispatcherA(_In_ const SERVICE_TABLE_ENTRY *lpServiceTable)
tiBOOLStartServiceCtrlDispatcherW(_In_ const SERVICE_TABLE_ENTRY *lpServiceTable)
tuiwiBOOLStartServiceW(_In_ SC_HANDLE hService, _In_ DWORD dwNumServiceArgs, _In_opt_ LPCWSTR *lpServiceArgVectors)
ttuiULONGTraceEvent(_In_ TRACEHANDLE SessionHandle, _In_ PEVENT_TRACE_HEADER EventTrace)
ttttuiULONGTraceEventInstance(_In_ TRACEHANDLE SessionHandle, _In_ PEVENT_INSTANCE_HEADER EventTrace, _In_ PEVENT_INSTANCE_INFO pInstInfo, _In_ PEVENT_INSTANCE_INFO pParentInstInfo)
tuituhtuiULONGTraceMessage(_In_ TRACEHANDLE SessionHandle, _In_ ULONG MessageFlags, _In_ LPGUID MessageGuid, _In_ USHORT MessageNumber, ...)
tuituhtuiULONGTraceMessageVa(_In_ TRACEHANDLE SessionHandle, _In_ ULONG MessageFlags, _In_ LPGUID MessageGuid, _In_ USHORT MessageNumber, _In_ va_list MessageArgList)
suiuittttitituiDWORDTreeResetNamedSecurityInfo(_In_ LPTSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_opt_ PSID pOwner, _In_opt_ PSID pGroup, _In_opt_ PACL pDacl, _In_opt_ PACL pSacl, _In_ BOOL KeepExplicit, _In_opt_ FN_PROGRESS fnProgress, _In_ PROG_INVOKE_SETTING ProgressInvokeSetting, _In_opt_ PVOID Args)
auiuittttitituiDWORDTreeResetNamedSecurityInfoA(_In_ LPSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_opt_ PSID pOwner, _In_opt_ PSID pGroup, _In_opt_ PACL pDacl, _In_opt_ PACL pSacl, _In_ BOOL KeepExplicit, _In_opt_ FN_PROGRESS fnProgress, _In_ PROG_INVOKE_SETTING ProgressInvokeSetting, _In_opt_ PVOID Args)
wuiuittttitituiDWORDTreeResetNamedSecurityInfoW(_In_ LPWSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_opt_ PSID pOwner, _In_opt_ PSID pGroup, _In_opt_ PACL pDacl, _In_opt_ PACL pSacl, _In_ BOOL KeepExplicit, _In_opt_ FN_PROGRESS fnProgress, _In_ PROG_INVOKE_SETTING ProgressInvokeSetting, _In_opt_ PVOID Args)
suiuittttuitituiDWORDTreeSetNamedSecurityInfo(_In_ LPTSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_opt_ PSID pOwner, _In_opt_ PSID pGroup, _In_opt_ PACL pDacl, _In_opt_ PACL pSacl, _In_ DWORD dwAction, _In_ FN_PROGRESS fnProgress, _In_ PROG_INVOKE_SETTING ProgressInvokeSetting, _In_opt_ PVOID Args)
auiuittttuitituiDWORDTreeSetNamedSecurityInfoA(_In_ LPSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_opt_ PSID pOwner, _In_opt_ PSID pGroup, _In_opt_ PACL pDacl, _In_opt_ PACL pSacl, _In_ DWORD dwAction, _In_ FN_PROGRESS fnProgress, _In_ PROG_INVOKE_SETTING ProgressInvokeSetting, _In_opt_ PVOID Args)
wuiuittttuitituiDWORDTreeSetNamedSecurityInfoW(_In_ LPWSTR pObjectName, _In_ SE_OBJECT_TYPE ObjectType, _In_ SECURITY_INFORMATION SecurityInfo, _In_opt_ PSID pOwner, _In_opt_ PSID pGroup, _In_opt_ PACL pDacl, _In_opt_ PACL pSacl, _In_ DWORD dwAction, _In_ FN_PROGRESS fnProgress, _In_ PROG_INVOKE_SETTING ProgressInvokeSetting, _In_opt_ PVOID Args)
wuiuiDWORDUninstallApplication(_In_ WCHAR *ProductCode, _In_ DWORD dwStatus)
tiBOOLUnlockServiceDatabase(_In_ SC_LOCK ScLock)
tuiULONGUnregisterTraceGuids(_In_ TRACEHANDLE RegistrationHandle)
tstuiULONGUpdateTrace(_In_ TRACEHANDLE SessionHandle, _In_ LPCTSTR SessionName, _Inout_ PEVENT_TRACE_PROPERTIES Properties)
tatuiULONGUpdateTraceA(_In_ TRACEHANDLE SessionHandle, _In_ LPCSTR SessionName, _Inout_ PEVENT_TRACE_PROPERTIES Properties)
twtuiULONGUpdateTraceW(_In_ TRACEHANDLE SessionHandle, _In_ LPCWSTR SessionName, _Inout_ PEVENT_TRACE_PROPERTIES Properties)
tttuiDWORDWriteEncryptedFileRaw(_In_ PFE_IMPORT_FUNC pfImportCallback, _In_opt_ PVOID pvCallbackContext, _In_ PVOID pvContext)

Comctl32.dll

tiBOOL_TrackMouseEvent(_Inout_ LPTRACKMOUSEEVENT lpEventTrack)
tsiintAddMRUStringW(_In_ HANDLE hMRU, _In_ LPCTSTR szString)
ttuititHBITMAPCreateMappedBitmap(HINSTANCE hInstance, INT_PTR idBitmap, UINT wFlags, _In_ LPCOLORMAP lpColorMap, int iNumMaps)
tiintCreateMRUListW(_In_ LPMRUINFO lpmi)
ttHPROPSHEETPAGECreatePropertySheetPage(LPCPROPSHEETPAGE lppsp)
ttHPROPSHEETPAGECreatePropertySheetPageA(LPCPROPSHEETPAGE lppsp)
ttHPROPSHEETPAGECreatePropertySheetPageW(LPCPROPSHEETPAGE lppsp)
istuitHWNDCreateStatusWindow(LONG style, LPCTSTR lpszText, HWND hwndParent, UINT wID)
iatuitHWNDCreateStatusWindowA(LONG style, LPCSTR lpszText, HWND hwndParent, UINT wID)
iwtuitHWNDCreateStatusWindowW(LONG style, LPCWSTR lpszText, HWND hwndParent, UINT wID)
tuiuiituttiiiiiuitHWNDCreateToolbarEx(HWND hwnd, DWORD ws, UINT wID, int nBitmaps, HINSTANCE hBMInst, UINT_PTR wBMID, LPCTBBUTTON lpButtons, int iNumButtons, int dxButton, int dyButton, int dxBitmap, int dyBitmap, UINT uStructSize)
uiiiiitittiiitHWNDCreateUpDownControl(DWORD dwStyle, int x, int y, int cx, int cy, HWND hParent, int nID, HINSTANCE hInst, HWND hBuddy, int nUpper, int nLower, int nPos)
tuiututtLRESULTDefSubclassProc(_In_ HWND hWnd, _In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tiBOOLDestroyPropertySheetPage(HPROPSHEETPAGE hPSPage)
tttHDPADPA_Clone(_In_ const HDPA hdpaSource, _Inout_opt_ HDPA hdpaNew)
itHDPADPA_Create(int cpGrow)
ittHDPADPA_CreateEx(_In_ int cpGrow, _In_opt_ HANDLE hheap)
tiBOOLDPA_DeleteAllPtrs(HDPA pdpa)
titvoid*DPA_DeletePtr(HDPA pdpa, int index)
tiBOOLDPA_Destroy(HDPA pdpa)
tttiVOIDDPA_DestroyCallback(HDPA pdpa, PFNDPAENUMCALLBACK pfnCB, void *pData)
tttiVOIDDPA_EnumCallback(HDPA pdpa, PFNDPAENUMCALLBACK pfnCB, void *pData)
titvoid*DPA_GetPtr(HDPA pdpa, int index)
ttiintDPA_GetPtrIndex(_In_ HDPA hdpa, _In_ const void *pvoid)
tui6ULONGLONGDPA_GetSize(_In_ HDPA pdpa)
tiiBOOLDPA_Grow(_In_ HDPA hdpa, _In_ int cp)
titiintDPA_InsertPtr(HDPA pdpa, int index, void *p)
ttttiHRESULTDPA_LoadStream(_Out_ HDPA *ppdpa, _In_ PFNDPASTREAM pfn, _In_ IStream *pstm, _In_ void *pvInstData)
ttuittutiBOOLDPA_Merge(_Inout_ HDPA hdpaDest, _In_ HDPA hdpaSrc, _In_ DWORD dwFlags, _In_ PFNDPACOMPARE pfnCompare, _In_ PFNDPAMERGE pfnMerge, _In_ LPARAM lParam)
ttttiHRESULTDPA_SaveStream(_In_ HDPA pdpa, _In_ PFNDPASTREAM pfn, _In_ IStream *pstm, _In_ void *pvInstData)
ttitutuiiintDPA_Search(HDPA pdpa, void *pFind, int iStart, PFNDPACOMPARE pfnCmp, LPARAM lParam, UINT options)
titiBOOLDPA_SetPtr(HDPA pdpa, int index, void *p)
ttutiBOOLDPA_Sort(HDPA pdpa, PFNDPACOMPARE pfnCmp, LPARAM lParam)
ttiiVOIDDrawInsert(HWND handParent, HWND hLB, int nItem)
twuituiuiuiiiiintDrawShadowText(HDC hdc, LPCWSTR pszText, UINT cch, const RECT *pRect, DWORD dwFlags, COLORREF crText, COLORREF crShadow, int ixOffset, int iyOffset)
ttsuiiVOIDDrawStatusText(HDC hdc, LPCRECT lprc, LPCTSTR pszText, UINT uFlags)
ttauiiVOIDDrawStatusTextA(HDC hdc, LPCRECT lprc, LPCSTR pszText, UINT uFlags)
ttwuiiVOIDDrawStatusTextW(HDC hdc, LPCRECT lprc, LPCWSTR pszText, UINT uFlags)
ttHDSADSA_Clone(_In_ HDSA hdsa)
iitHDSADSA_Create(_In_ int cbItem, _In_ int cbItemGrow)
tiBOOLDSA_DeleteAllItems(_In_ HDSA hdsa)
tiiBOOLDSA_DeleteItem(_In_ HDSA hdsa, _In_ int nPosition)
tiBOOLDSA_Destroy(_In_ HDSA pdsa)
tttiVOIDDSA_DestroyCallback(_In_ HDSA pdsa, _In_ PFNDSAENUMCALLBACK pfnCB, _In_ void *pData)
tttiVOIDDSA_EnumCallback(_In_ HDSA hdsa, _In_ PFNDAENUMCALLBACK *pfnCB, _In_ void *pData)
titiBOOLDSA_GetItem(_In_ HDSA pdsa, _In_ int index, _Out_ void *pitem)
titvoid*DSA_GetItemPtr(_In_ HDSA pdsa, _In_ int index)
tui6ULONGLONGDSA_GetSize(_In_ HDSA hdsa)
titiintDSA_InsertItem(_In_ HDSA pdsa, _In_ int index, _In_ void *pItem)
titiBOOLDSA_SetItem(_In_ HDSA hdsa, _In_ int index, _In_ void *pItem)
ttutiBOOLDSA_Sort(_In_ HDSA pdsa, _In_ PFNDACOMPARE pfnCompare, _In_ LPARAM lParam)
tituiiintEnumMRUListW(_In_ HANDLE hMRU, _In_ int nItem, _Out_ void *lpData, _In_ UINT uLen)
tiuiiBOOLFlatSB_EnableScrollBar(HWND hwnd, int wSBflags, UINT wArrows)
titiBOOLFlatSB_GetScrollInfo(HWND hwnd, int fnBar, LPSCROLLINFO lpsi)
tiiintFlatSB_GetScrollPos(HWND hwnd, int code)
tuitiBOOLFlatSB_GetScrollProp(HWND hwnd, UINT index, LPINT pValue)
tittiBOOLFlatSB_GetScrollRange(HWND hwnd, int code, LPINT lpMinPos, LPINT lpMaxPos)
titiiintFlatSB_SetScrollInfo(HWND hwnd, int fnBar, LPSCROLLINFO lpsi, BOOL fRedraw)
tiiiiintFlatSB_SetScrollPos(HWND hwnd, int code, int nPos, BOOL fRedraw)
tuitiiBOOLFlatSB_SetScrollProp(HWND hwnd, UINT index, INT_PTR newValue, BOOL fRedraw)
tiiiiiintFlatSB_SetScrollRange(HWND hwnd, int code, int nMinPos, int nMaxPos, BOOL fRedraw)
tiiiBOOLFlatSB_ShowScrollBar(HWND hwnd, int code, BOOL fShow)
tiintFreeMRUList(_In_ HANDLE hMRU)
tttiVOIDGetEffectiveClientRect(HWND hWnd, LPRECT lprc, _In_ const INT *lpInfo)
uhLANGIDGetMUILanguage(void)
ttututiBOOLGetWindowSubclass(_In_ HWND hWnd, _In_ SUBCLASSPROC pfnSubclass, _In_ UINT_PTR uIdSubclass, _Out_ DWORD_PTR *pdwRefData)
tttiHRESULTHIMAGELIST_QueryInterface(_In_ HIMAGELIST himl, _In_ REFIID riid, _Out_ void **ppv)
tttiintImageList_Add(_In_ HIMAGELIST himl, _In_ HBITMAP hbmImage, _In_opt_ HBITMAP hbmMask)
ttuiiintImageList_AddMasked(HIMAGELIST himl, HBITMAP hbmImage, COLORREF crMask)
tiiiiBOOLImageList_BeginDrag(HIMAGELIST himlTrack, int iTrack, int dxHotspot, int dyHotspot)
ttttiHRESULTImageList_CoCreateInstance(_In_ REFCLSID rclsid, _In_opt_ const IUnknown *punkOuter, _In_ REFIID riid, _Out_ void **ppv)
titiuiiBOOLImageList_Copy(HIMAGELIST himlDst, int iDst, HIMAGELIST himlSrc, int iSrc, UINT uFlags)
iiuiiitHIMAGELISTImageList_Create(int cx, int cy, UINT flags, int cInitial, int cGrow)
tiBOOLImageList_Destroy(_In_opt_ HIMAGELIST himl)
tiiiBOOLImageList_DragEnter(HWND hwndLock, int x, int y)
tiBOOLImageList_DragLeave(HWND hwndLock)
iiiBOOLImageList_DragMove(int x, int y)
iiBOOLImageList_DragShowNolock(BOOL fShow)
titiiuiiBOOLImageList_Draw(HIMAGELIST himl, int i, HDC hdcDst, int x, int y, UINT fStyle)
titiiiiuiuiuiiBOOLImageList_DrawEx(HIMAGELIST himl, int i, HDC hdcDst, int x, int y, int dx, int dy, COLORREF rgbBk, COLORREF rgbFg, UINT fStyle)
tiBOOLImageList_DrawIndirect(IMAGELISTDRAWPARAMS *pimldp)
ttHIMAGELISTImageList_Duplicate(HIMAGELIST himl)
iVOIDImageList_EndDrag(void)
tuiCOLORREFImageList_GetBkColor(_In_ HIMAGELIST himl)
tttHIMAGELISTImageList_GetDragImage(POINT *ppt, POINT *pptHotspot)
tiuitHICONImageList_GetIcon(HIMAGELIST himl, int i, UINT flags)
tttiBOOLImageList_GetIconSize(HIMAGELIST himl, int *cx, int *cy)
tiintImageList_GetImageCount(_In_ HIMAGELIST himl)
titiBOOLImageList_GetImageInfo(HIMAGELIST himl, int i, IMAGEINFO *pImageInfo)
tsiiuiuiuitHIMAGELISTImageList_LoadImage(HINSTANCE hi, LPCTSTR lpbmp, int cx, int cGrow, COLORREF crMask, UINT uType, UINT uFlags)
taiiuiuiuitHIMAGELISTImageList_LoadImageA(HINSTANCE hi, LPCSTR lpbmp, int cx, int cGrow, COLORREF crMask, UINT uType, UINT uFlags)
twiiuiuiuitHIMAGELISTImageList_LoadImageW(HINSTANCE hi, LPCWSTR lpbmp, int cx, int cGrow, COLORREF crMask, UINT uType, UINT uFlags)
titiiitHIMAGELISTImageList_Merge(HIMAGELIST himl1, int i1, HIMAGELIST himl2, int i2, int dx, int dy)
ttHIMAGELISTImageList_Read(LPSTREAM pstm)
uitttiHRESULTImageList_ReadEx(_In_ DWORD dwFlags, _In_ LPSTREAM pstm, _Out_ REFIID riid, _Out_ void **ppv)
tiiBOOLImageList_Remove(HIMAGELIST himl, int i)
tittiBOOLImageList_Replace(HIMAGELIST himl, int i, HBITMAP hbmImage, HBITMAP hbmMask)
titiintImageList_ReplaceIcon(_In_ HIMAGELIST himl, _In_ int i, _In_ HICON hicon)
tuiuiCOLORREFImageList_SetBkColor(_In_ HIMAGELIST himl, _In_ COLORREF clrBk)
tiiiiBOOLImageList_SetDragCursorImage(HIMAGELIST himlDrag, int iDrag, int dxHotspot, int dyHotspot)
tiiiBOOLImageList_SetIconSize(HIMAGELIST himl, int cx, int cy)
tuiiBOOLImageList_SetImageCount(_In_ HIMAGELIST himl, _In_ UINT uNewCount)
tiiiBOOLImageList_SetOverlayImage(_In_ HIMAGELIST himl, _In_ int iImage, _In_ int iOverlay)
ttiBOOLImageList_Write(HIMAGELIST himl, LPSTREAM pstm)
tuitiHRESULTImageList_WriteEx(_In_ HIMAGELIST himl, _In_ DWORD dwFlags, _In_ LPSTREAM pstm)
iVOIDInitCommonControls(void)
tiBOOLInitCommonControlsEx(_In_ const LPINITCOMMONCONTROLSEX lpInitCtrls)
tiBOOLInitializeFlatSB(HWND hwnd)
uhiVOIDInitMUILanguage(LANGID uiLang)
tui6iiintLBItemFromPt(HWND hLB, POINT pt, BOOL bAutoScroll)
twitiHRESULTLoadIconMetric(_In_ HINSTANCE hinst, _In_ PCWSTR pszName, _In_ int lims, _Out_ HICON *phico)
twiitiHRESULTLoadIconWithScaleDown(_In_ HINSTANCE hinst, _In_ PCWSTR pszName, _In_ int cx, _In_ int cy, _Out_ HICON *phico)
tiBOOLMakeDragList(HWND hLB)
uiututttttiVOIDMenuHelp(UINT uMsg, WPARAM wParam, LPARAM lParam, HMENU hMainMenu, HINSTANCE hInst, HWND hwndStatus, LPUINT lpwIDs)
ttINT_PTRPropertySheet(LPCPROPSHEETHEADER lppsph)
ttINT_PTRPropertySheetA(LPCPROPSHEETHEADER lppsph)
ttINT_PTRPropertySheetW(LPCPROPSHEETHEADER lppsph)
ttutiBOOLRemoveWindowSubclass(_In_ HWND hWnd, _In_ SUBCLASSPROC pfnSubclass, _In_ UINT_PTR uIdSubclass)
ttututiBOOLSetWindowSubclass(_In_ HWND hWnd, _In_ SUBCLASSPROC pfnSubclass, _In_ UINT_PTR uIdSubclass, _In_ DWORD_PTR dwRefData)
tuttiBOOLShowHideMenuCtl(HWND hWnd, UINT_PTR uFlags, LPINT lpInfo)
tsiBOOLStr_SetPtr(_Inout_ LPTSTR *ppszCurrent, LPCTSTR pszNew)
twiBOOLStr_SetPtrW(_Inout_ LPWSTR *ppszCurrent, LPCWSTR pszNew)
ttwwwuiwtiHRESULTTaskDialog(_In_ HWND hWndParent, _In_ HINSTANCE hInstance, _In_ PCWSTR pszWindowTitle, _In_ PCWSTR pszMainInstruction, _In_ PCWSTR pszContent, _In_ TASKDIALOG_COMMON_BUTTON_FLAGS dwCommonButtons, _In_ PCWSTR pszIcon, _Out_ int *pnButton)
ttttiHRESULTTaskDialogIndirect(_In_ const TASKDIALOGCONFIG *pTaskConfig, _Out_opt_ int *pnButton, _Out_opt_ int *pnRadioButton, _Out_opt_ BOOL *pfVerificationFlagChecked)
tiHRESULTUninitializeFlatSB(HWND hwnd)

Comdlg32.dll

tiBOOLChooseColor(_Inout_ LPCHOOSECOLOR lpcc)
tiBOOLChooseColorA(_Inout_ LPCHOOSECOLOR lpcc)
tiBOOLChooseColorW(_Inout_ LPCHOOSECOLOR lpcc)
tiBOOLChooseFont(_Inout_ LPCHOOSEFONT lpcf)
tiBOOLChooseFontA(_Inout_ LPCHOOSEFONT lpcf)
tiBOOLChooseFontW(_Inout_ LPCHOOSEFONT lpcf)
uiDWORDCommDlgExtendedError(void)
ttHWNDFindText(_In_ LPFINDREPLACE lpfr)
ttHWNDFindTextA(_In_ LPFINDREPLACE lpfr)
ttHWNDFindTextW(_In_ LPFINDREPLACE lpfr)
ssuhhSHORTGetFileTitle(_In_ LPCTSTR lpszFile, _Out_ LPTSTR lpszTitle, _In_ WORD cchSize)
aauhhSHORTGetFileTitleA(_In_ LPCSTR lpszFile, _Out_ LPSTR lpszTitle, _In_ WORD cchSize)
wwuhhSHORTGetFileTitleW(_In_ LPCWSTR lpszFile, _Out_ LPWSTR lpszTitle, _In_ WORD cchSize)
tiBOOLGetOpenFileName(_Inout_ LPOPENFILENAME lpofn)
tiBOOLGetOpenFileNameA(_Inout_ LPOPENFILENAME lpofn)
tiBOOLGetOpenFileNameW(_Inout_ LPOPENFILENAME lpofn)
tiBOOLGetSaveFileName(_Inout_ LPOPENFILENAME lpofn)
tiBOOLGetSaveFileNameA(_Inout_ LPOPENFILENAME lpofn)
tiBOOLGetSaveFileNameW(_Inout_ LPOPENFILENAME lpofn)
tiBOOLPageSetupDlg(_Inout_ LPPAGESETUPDLG lppsd)
tiBOOLPageSetupDlgA(_Inout_ LPPAGESETUPDLG lppsd)
tiBOOLPageSetupDlgW(_Inout_ LPPAGESETUPDLG lppsd)
tiBOOLPrintDlg(_Inout_ LPPRINTDLG lppd)
tiBOOLPrintDlgA(_Inout_ LPPRINTDLG lppd)
tiHRESULTPrintDlgEx(_Inout_ LPPRINTDLGEX lppd)
tiHRESULTPrintDlgExA(_Inout_ LPPRINTDLGEX lppd)
tiHRESULTPrintDlgExW(_Inout_ LPPRINTDLGEX lppd)
tiBOOLPrintDlgW(_Inout_ LPPRINTDLG lppd)
ttHWNDReplaceText(_Inout_ LPFINDREPLACE lpfr)
ttHWNDReplaceTextA(_Inout_ LPFINDREPLACE lpfr)
ttHWNDReplaceTextW(_Inout_ LPFINDREPLACE lpfr)

Crypt32.dll

ttuitiBOOLCertAddCertificateContextToStore(_In_ HCERTSTORE hCertStore, _In_ PCCERT_CONTEXT pCertContext, _In_ DWORD dwAddDisposition, _Out_opt_ PCCERT_CONTEXT *ppStoreContext)
ttuitiBOOLCertAddCertificateLinkToStore(_In_ HCERTSTORE hCertStore, _In_ PCCERT_CONTEXT pCertContext, _In_ DWORD dwAddDisposition, _Out_opt_ PCCERT_CONTEXT *ppStoreContext)
ttuitiBOOLCertAddCRLContextToStore(_In_ HCERTSTORE hCertStore, _In_ PCCRL_CONTEXT pCrlContext, _In_ DWORD dwAddDisposition, _Out_opt_ PCCRL_CONTEXT *ppStoreContext)
ttuitiBOOLCertAddCRLLinkToStore(_In_ HCERTSTORE hCertStore, _In_ PCCRL_CONTEXT pCrlContext, _In_ DWORD dwAddDisposition, _Out_opt_ PCCRL_CONTEXT *ppStoreContext)
ttuitiBOOLCertAddCTLContextToStore(_In_ HCERTSTORE hCertStore, _In_ PCCTL_CONTEXT pCtlContext, _In_ DWORD dwAddDisposition, _Out_opt_ PCCTL_CONTEXT *ppStoreContext)
ttuitiBOOLCertAddCTLLinkToStore(_In_ HCERTSTORE hCertStore, _In_ PCCTL_CONTEXT pCtlContext, _In_ DWORD dwAddDisposition, _Out_opt_ PCCTL_CONTEXT *ppStoreContext)
tuituiuitiBOOLCertAddEncodedCertificateToStore(_In_ HCERTSTORE hCertStore, _In_ DWORD dwCertEncodingType, _In_ const BYTE *pbCertEncoded, _In_ DWORD cbCertEncoded, _In_ DWORD dwAddDisposition, _Out_opt_ PCCERT_CONTEXT *ppCertContext)
atuiiBOOLCertAddEncodedCertificateToSystemStore(_In_ LPCSTR szCertStoreName, _In_ const BYTE *pbCertEncoded, _In_ DWORD cbCertEncoded)
atuiiBOOLCertAddEncodedCertificateToSystemStoreA(_In_ LPCSTR szCertStoreName, _In_ const BYTE *pbCertEncoded, _In_ DWORD cbCertEncoded)
atuiiBOOLCertAddEncodedCertificateToSystemStoreW(_In_ LPCSTR szCertStoreName, _In_ const BYTE *pbCertEncoded, _In_ DWORD cbCertEncoded)
tuituiuitiBOOLCertAddEncodedCRLToStore(_In_ HCERTSTORE hCertStore, _In_ DWORD dwCertEncodingType, _In_ const BYTE *pbCrlEncoded, _In_ DWORD cbCrlEncoded, _In_ DWORD dwAddDisposition, _Out_opt_ PCCRL_CONTEXT *ppCrlContext)
tuituiuitiBOOLCertAddEncodedCTLToStore(_In_ HCERTSTORE hCertStore, _In_ DWORD dwMsgAndCertEncodingType, _In_ const BYTE *pbCtlEncoded, _In_ DWORD cbCtlEncoded, _In_ DWORD dwAddDisposition, _Out_opt_ PCCTL_CONTEXT *ppCtlContext)
taiBOOLCertAddEnhancedKeyUsageIdentifier(_In_ PCCERT_CONTEXT pCertContext, _In_ LPCSTR pszUsageIdentifier)
tiVOIDCertAddRefServerOcspResponse(_In_ HCERT_SERVER_OCSP_RESPONSE hServerOcspResponse)
tiVOIDCertAddRefServerOcspResponseContext(_In_ PCCERT_SERVER_OCSP_RESPONSE_CONTEXT pServerOcspResponseContext)
ttuiuiuiuittiBOOLCertAddSerializedElementToStore(_In_ HCERTSTORE hCertStore, _In_ const BYTE *pbElement, _In_ DWORD cbElement, _In_ DWORD dwAddDisposition, _In_ DWORD dwFlags, _In_ DWORD dwContextTypeFlags, _Out_ DWORD *pdwContextType, _Out_ const void **ppvContext)
ttuiuiiBOOLCertAddStoreToCollection(_In_ HCERTSTORE hCollectionStore, _In_opt_ HCERTSTORE hSiblingStore, _In_ DWORD dwUpdateFlag, _In_ DWORD dwPriority)
uiaLPCSTRCertAlgIdToOID(_In_ DWORD dwAlgId)
tuiiVOIDCertCloseServerOcspResponse(_In_ HCERT_SERVER_OCSP_RESPONSE hServerOcspResponse, _In_ DWORD dwFlags)
tuiiBOOLCertCloseStore(_In_ HCERTSTORE hCertStore, _In_ DWORD dwFlags)
uittiBOOLCertCompareCertificate(_In_ DWORD dwCertEncodingType, _In_ PCERT_INFO pCertId1, _In_ PCERT_INFO pCertId2)
uittiBOOLCertCompareCertificateName(_In_ DWORD dwCertEncodingType, _In_ PCERT_NAME_BLOB pCertName1, _In_ PCERT_NAME_BLOB pCertName2)
ttiBOOLCertCompareIntegerBlob(_In_ PCRYPT_INTEGER_BLOB pInt1, _In_ PCRYPT_INTEGER_BLOB pInt2)
uittiBOOLCertComparePublicKeyInfo(_In_ DWORD dwCertEncodingType, _In_ PCERT_PUBLIC_KEY_INFO pPublicKey1, _In_ PCERT_PUBLIC_KEY_INFO pPublicKey2)
tuiuitiBOOLCertControlStore(_In_ HCERTSTORE hCertStore, _In_ DWORD dwFlags, _In_ DWORD dwCtrlType, _In_ const void *pvCtrlPara)
ttiBOOLCertCreateCertificateChainEngine(_In_ PCERT_CHAIN_ENGINE_CONFIG pConfig, _Out_ HCERTCHAINENGINE *phChainEngine)
uituitPCCERT_CONTEXTCertCreateCertificateContext(_In_ DWORD dwCertEncodingType, _In_ const BYTE *pbCertEncoded, _In_ DWORD cbCertEncoded)
uiuituiuittvoid*CertCreateContext(_In_ DWORD dwContextType, _In_ DWORD dwEncodingType, _In_ const BYTE *pbEncoded, _In_ DWORD cbEncoded, _In_ DWORD dwFlags, _In_opt_ PCERT_CREATE_CONTEXT_PARA pCreatePara)
uituitPCCRL_CONTEXTCertCreateCRLContext(_In_ DWORD dwCertEncodingType, _In_ const BYTE *pbCrlEncoded, _In_ DWORD cbCrlEncoded)
uituitPCCTL_CONTEXTCertCreateCTLContext(_In_ DWORD dwMsgAndCertEncodingType, _In_ const BYTE *pbCtlEncoded, _In_ DWORD cbCtlEncoded)
tuituitttiBOOLCertCreateCTLEntryFromCertificateContextProperties(_In_ PCCERT_CONTEXT pCertContext, _In_ DWORD cOptAttr, _In_ PCRYPT_ATTRIBUTE rgOptAttr, _In_ DWORD dwFlags, _In_ void *pvReserved, _Out_ PCTL_ENTRY pCtlEntry, _Inout_ DWORD *pcbCtlEntry)
uttuittttttPCCERT_CONTEXTCertCreateSelfSignCertificate(_In_opt_ HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProvOrNCryptKey, _In_ PCERT_NAME_BLOB pSubjectIssuerBlob, _In_ DWORD dwFlags, _In_opt_ PCRYPT_KEY_PROV_INFO pKeyProvInfo, _In_opt_ PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm, _In_opt_ PSYSTEMTIME pStartTime, _In_opt_ PSYSTEMTIME pEndTime, PCERT_EXTENSIONS pExtensions)
tiBOOLCertDeleteCertificateFromStore(_In_ PCCERT_CONTEXT pCertContext)
tiBOOLCertDeleteCRLFromStore(_In_ PCCRL_CONTEXT pCrlContext)
tiBOOLCertDeleteCTLFromStore(_In_ PCCTL_CONTEXT pCtlContext)
ttPCCERT_CHAIN_CONTEXTCertDuplicateCertificateChain(_In_ PCCERT_CHAIN_CONTEXT pChainContext)
ttPCCERT_CONTEXTCertDuplicateCertificateContext(_In_ PCCERT_CONTEXT pCertContext)
ttPCCRL_CONTEXTCertDuplicateCRLContext(_In_ PCCRL_CONTEXT pCrlContext)
ttPCCTL_CONTEXTCertDuplicateCTLContext(_In_ PCCTL_CONTEXT pCtlContext)
ttHCERTSTORECertDuplicateStore(_In_ HCERTSTORE hCertStore)
tuiuiDWORDCertEnumCertificateContextProperties(_In_ PCCERT_CONTEXT pCertContext, _In_ DWORD dwPropId)
tttPCCERT_CONTEXTCertEnumCertificatesInStore(_In_ HCERTSTORE hCertStore, _In_ PCCERT_CONTEXT pPrevCertContext)
tuiuiDWORDCertEnumCRLContextProperties(_In_ PCCRL_CONTEXT pCrlContext, _In_ DWORD dwPropId)
tttPCCRL_CONTEXTCertEnumCRLsInStore(_In_ HCERTSTORE hCertStore, _In_ PCCRL_CONTEXT pPrevCrlContext)
tuiuiDWORDCertEnumCTLContextProperties(_In_ PCCTL_CONTEXT pCtlContext, _In_ DWORD dwPropId)
tttPCCTL_CONTEXTCertEnumCTLsInStore(_In_ HCERTSTORE hCertStore, _In_ PCCTL_CONTEXT pPrevCtlContext)
tuittiBOOLCertEnumPhysicalStore(_In_ const void *pvSystemStore, _In_ DWORD dwFlags, _In_ void *pvArg, _In_ PFN_CERT_ENUM_PHYSICAL_STORE pfnEnum)
ttttiBOOLCertEnumSubjectInSortedCTL(_In_ PCCTL_CONTEXT pCtlContext, _Inout_ void **ppvNextSubject, _Out_ PCRYPT_DER_BLOB pSubjectIdentifier, _Out_ PCRYPT_DER_BLOB pEncodedAttributes)
uitttiBOOLCertEnumSystemStore(_In_ DWORD dwFlags, _In_opt_ void *pvSystemStoreLocationPara, _In_ void *pvArg, _In_ PFN_CERT_ENUM_SYSTEM_STORE pfnEnum)
uittiBOOLCertEnumSystemStoreLocation(_In_ DWORD dwFlags, _In_ void *pvArg, _In_ PFN_CERT_ENUM_SYSTEM_STORE_LOCATION pfnEnum)
auiuitPCRYPT_ATTRIBUTECertFindAttribute(_In_ LPCSTR pszObjId, _In_ DWORD cAttr, _In_ CRYPT_ATTRIBUTE rgAttr[])
ttuittiBOOLCertFindCertificateInCRL(_In_ PCCERT_CONTEXT pCert, _In_ PCCRL_CONTEXT pCrlContext, _In_ DWORD dwFlags, _In_opt_ void *pvReserved, _Out_ PCRL_ENTRY *ppCrlEntry)
tuiuiuitttPCCERT_CONTEXTCertFindCertificateInStore(_In_ HCERTSTORE hCertStore, _In_ DWORD dwCertEncodingType, _In_ DWORD dwFindFlags, _In_ DWORD dwFindType, _In_ const void *pvFindPara, _In_ PCCERT_CONTEXT pPrevCertContext)
tuiuiuitttPCCERT_CHAIN_CONTEXTCertFindChainInStore(_In_ HCERTSTORE hCertStore, _In_ DWORD dwCertEncodingType, _In_ DWORD dwFindFlags, _In_ DWORD dwFindType, _In_ const void *pvFindPara, _In_ PCCERT_CHAIN_CONTEXT pPrevChainContext)
tuiuiuitttPCCRL_CONTEXTCertFindCRLInStore(_In_ HCERTSTORE hCertStore, _In_ DWORD dwEncodingType, _In_ DWORD dwFindFlags, _In_ DWORD dwFindType, _In_ const void *pvFindPara, _In_ PCCRL_CONTEXT pPrevCrlContext)
tuiuiuitttPCCTL_CONTEXTCertFindCTLInStore(_In_ HCERTSTORE hCertStore, _In_ DWORD dwMsgAndCertEncodingType, _In_ DWORD dwFindFlags, _In_ DWORD dwFindType, _In_ const void *pvFindPara, _In_ PCCTL_CONTEXT pPrevCtlContext)
auiuitPCERT_EXTENSIONCertFindExtension(_In_ LPCSTR pszObjId, _In_ DWORD cExtensions, _In_ CERT_EXTENSION rgExtensions[])
attPCERT_RDN_ATTRCertFindRDNAttr(_In_ LPCSTR pszObjId, _In_ PCERT_NAME_INFO pName)
uiuittuitPCTL_ENTRYCertFindSubjectInCTL(_In_ DWORD dwEncodingType, _In_ DWORD dwSubjectType, _In_ void *pvSubject, _In_ PCCTL_CONTEXT pCtlContext, _In_ DWORD dwFlags)
ttuittiBOOLCertFindSubjectInSortedCTL(_In_ PCRYPT_DATA_BLOB pSubjectIdentifier, _In_ PCCTL_CONTEXT pCtlContext, _In_ DWORD dwFlags, _In_ void *pvReserved, _Out_ PCRYPT_DER_BLOB pEncodedAttributes)
tiVOIDCertFreeCertificateChain(_In_ PCCERT_CHAIN_CONTEXT pChainContext)
tiVOIDCertFreeCertificateChainEngine(_In_ HCERTCHAINENGINE hChainEngine)
tiVOIDCertFreeCertificateChainList(_In_ PCCERT_CHAIN_CONTEXT *prgpSelection)
tiBOOLCertFreeCertificateContext(_In_ PCCERT_CONTEXT pCertContext)
tiBOOLCertFreeCRLContext(_In_ PCCRL_CONTEXT pCrlContext)
tiBOOLCertFreeCTLContext(_In_ PCCTL_CONTEXT pCtlContext)
tiintCertFreeServerOcspResponseContext(_In_ PCCERT_SERVER_OCSP_RESPONSE_CONTEXT pServerOcspResponseContext)
tttttuittiBOOLCertGetCertificateChain(_In_opt_ HCERTCHAINENGINE hChainEngine, _In_ PCCERT_CONTEXT pCertContext, _In_opt_ LPFILETIME pTime, _In_ HCERTSTORE hAdditionalStore, _In_ PCERT_CHAIN_PARA pChainPara, _In_ DWORD dwFlags, _In_ LPVOID pvReserved, _Out_ PCCERT_CHAIN_CONTEXT *ppChainContext)
tuittiBOOLCertGetCertificateContextProperty(_In_ PCCERT_CONTEXT pCertContext, _In_ DWORD dwPropId, _Out_ void *pvData, _Inout_ DWORD *pcbData)
tuittiBOOLCertGetCRLContextProperty(_In_ PCCRL_CONTEXT pCrlContext, _In_ DWORD dwPropId, _Out_ void *pvData, _Inout_ DWORD *pcbData)
tttttPCCRL_CONTEXTCertGetCRLFromStore(_In_ HCERTSTORE hCertStore, _In_opt_ PCCERT_CONTEXT pIssuerContext, _In_ PCCRL_CONTEXT pPrevCrlContext, _Inout_ DWORD *pdwFlags)
tuittiBOOLCertGetCTLContextProperty(_In_ PCCTL_CONTEXT pCtlContext, _In_ DWORD dwPropId, _Out_ void *pvData, _Inout_ DWORD *pcbData)
tuittiBOOLCertGetEnhancedKeyUsage(_In_ PCCERT_CONTEXT pCertContext, _In_ DWORD dwFlags, _Out_ PCERT_ENHKEY_USAGE pUsage, _Inout_ DWORD *pcbUsage)
uittuiiBOOLCertGetIntendedKeyUsage(_In_ DWORD dwCertEncodingType, _In_ PCERT_INFO pCertInfo, _Out_ BYTE *pbKeyUsage, _In_ DWORD cbKeyUsage)
tttttPCCERT_CONTEXTCertGetIssuerCertificateFromStore(_In_ HCERTSTORE hCertStore, _In_ PCCERT_CONTEXT pSubjectContext, _In_opt_ PCCERT_CONTEXT pPrevIssuerContext, _Inout_ DWORD *pdwFlags)
tuiuitsuiuiDWORDCertGetNameString(_In_ PCCERT_CONTEXT pCertContext, _In_ DWORD dwType, _In_ DWORD dwFlags, _In_ void *pvTypePara, _Out_ LPTSTR pszNameString, _In_ DWORD cchNameString)
tuiuitauiuiDWORDCertGetNameStringA(_In_ PCCERT_CONTEXT pCertContext, _In_ DWORD dwType, _In_ DWORD dwFlags, _In_ void *pvTypePara, _Out_ LPSTR pszNameString, _In_ DWORD cchNameString)
tuiuitwuiuiDWORDCertGetNameStringW(_In_ PCCERT_CONTEXT pCertContext, _In_ DWORD dwType, _In_ DWORD dwFlags, _In_ void *pvTypePara, _Out_ LPWSTR pszNameString, _In_ DWORD cchNameString)
uituiDWORDCertGetPublicKeyLength(_In_ DWORD dwCertEncodingType, _In_ PCERT_PUBLIC_KEY_INFO pPublicKey)
tuittPCCERT_SERVER_OCSP_RESPONSE_CONTEXTCertGetServerOcspResponseContext(_In_ HCERT_SERVER_OCSP_RESPONSE hServerOcspResponse, _In_ DWORD dwFlags, _Reserved_ LPVOID pvReserved)
tuittiBOOLCertGetStoreProperty(_In_ HCERTSTORE hCertStore, _In_ DWORD dwPropId, _Out_ void *pvData, _Inout_ DWORD *pcbData)
tuittPCCERT_CONTEXTCertGetSubjectCertificateFromStore(_In_ HCERTSTORE hCertStore, _In_ DWORD dwCertEncodingType, _In_ PCERT_INFO pCertId)
uittttiBOOLCertGetValidUsages(_In_ DWORD cCerts, _In_ PCCERT_CONTEXT *rghCerts, _Out_ int *cNumOIDs, _Out_ LPSTR *rghOIDs, _Inout_ DWORD *pcbOIDs)
uiuittiBOOLCertIsRDNAttrsInCertificateName(_In_ DWORD dwCertEncodingType, _In_ DWORD dwFlags, _In_ PCERT_NAME_BLOB pCertName, _In_ PCERT_RDN pRDN)
ttuitiBOOLCertIsValidCRLForCertificate(_In_ PCCERT_CONTEXT pCert, _In_ PCCRL_CONTEXT pCRL, _In_ DWORD dwFlags, _In_ void *pvReserved)
uituisuiuiDWORDCertNameToStr(_In_ DWORD dwCertEncodingType, _In_ PCERT_NAME_BLOB pName, _In_ DWORD dwStrType, _Out_ LPTSTR psz, _In_ DWORD csz)
uituiauiuiDWORDCertNameToStrA(_In_ DWORD dwCertEncodingType, _In_ PCERT_NAME_BLOB pName, _In_ DWORD dwStrType, _Out_ LPSTR psz, _In_ DWORD csz)
uituiwuiuiDWORDCertNameToStrW(_In_ DWORD dwCertEncodingType, _In_ PCERT_NAME_BLOB pName, _In_ DWORD dwStrType, _Out_ LPWSTR psz, _In_ DWORD csz)
auiDWORDCertOIDToAlgId(_In_ LPCSTR pszObjId)
tuittHCERT_SERVER_OCSP_RESPONSECertOpenServerOcspResponse(_In_ PCCERT_CHAIN_CONTEXT pChainContext, _In_ DWORD dwFlags, _Reserved_ LPVOID pvReserved)
auiutuittHCERTSTORECertOpenStore(_In_ LPCSTR lpszStoreProvider, _In_ DWORD dwMsgAndCertEncodingType, _In_ HCRYPTPROV_LEGACY hCryptProv, _In_ DWORD dwFlags, _In_ const void *pvPara)
utstHCERTSTORECertOpenSystemStore(_In_ HCRYPTPROV_LEGACY hprov, _In_ LPTCSTR szSubsystemProtocol)
utatHCERTSTORECertOpenSystemStoreA(_In_ HCRYPTPROV_LEGACY hprov, _In_ LPCSTR szSubsystemProtocol)
utwtHCERTSTORECertOpenSystemStoreW(_In_ HCRYPTPROV_LEGACY hprov, _In_ LPCWSTR szSubsystemProtocol)
uitsuiuiDWORDCertRDNValueToStr(_In_ DWORD dwValueType, _In_ PCERT_RDN_VALUE_BLOB pValue, _Out_ LPTSTR psz, _In_ DWORD csz)
uitauiuiDWORDCertRDNValueToStrA(_In_ DWORD dwValueType, _In_ PCERT_RDN_VALUE_BLOB pValue, _Out_ LPSTR psz, _In_ DWORD csz)
uitwuiuiDWORDCertRDNValueToStrW(_In_ DWORD dwValueType, _In_ PCERT_RDN_VALUE_BLOB pValue, _Out_ LPWSTR psz, _In_ DWORD csz)
tuiwttiBOOLCertRegisterPhysicalStore(_In_ const void *pvSystemStore, _In_ DWORD dwFlags, _In_ LPCWSTR pwszStoreName, _In_ PCERT_PHYSICAL_STORE_INFO pStoreInfo, _In_ void *pvReserved)
tuittiBOOLCertRegisterSystemStore(_In_ const void *pvSystemStore, _In_ DWORD dwFlags, _In_ PCERT_SYSTEM_STORE_INFO pStoreInfo, _In_ void *pvReserved)
taiBOOLCertRemoveEnhancedKeyUsageIdentifier(_In_ PCCERT_CONTEXT pCertContext, _In_ LPCSTR pszUsageIdentifier)
ttiVOIDCertRemoveStoreFromCollection(_In_ HCERTSTORE hCollectionStore, _In_ HCERTSTORE hSiblingStore)
tauiuiuittttiBOOLCertRetrieveLogoOrBiometricInfo(_In_ PCCERT_CONTEXT pCertContext, _In_ LPCSTR lpszLogoOrBiometricType, _In_ DWORD dwRetrievalFlags, _In_ DWORD dwTimeout, _In_ DWORD dwFlags, _Reserved_ void *pvReserved, _Out_ BYTE **ppbData, _Out_ DWORD *pcbData, _Out_ LPWSTR *ppwszMimeType)
tuiuiuituiiBOOLCertSaveStore(_In_ HCERTSTORE hCertStore, _In_ DWORD dwMsgAndCertEncodingType, _In_ DWORD dwSaveAs, _In_ DWORD dwSaveTo, _Inout_ void *pvSaveToPara, _In_ DWORD dwFlags)
tuituittttiBOOLCertSelectCertificateChains(_In_opt_ LPCGUID pSelectionContext, _In_ DWORD dwFlags, _In_opt_ PCCERT_SELECT_CHAIN_PARA pChainParameters, _In_ DWORD cCriteria, _In_opt_ PCCERT_SELECT_CRITERIA rgpCriteria, _In_ HCERTSTORE hStore, _Out_ PDWORD pcSelection, _Out_ PCCERT_CHAIN_CONTEXT **pprgpSelection)
tuittiBOOLCertSerializeCertificateStoreElement(_In_ PCCERT_CONTEXT pCertContext, _In_ DWORD dwFlags, _Out_ BYTE *pbElement, _Inout_ DWORD *pcbElement)
tuittiBOOLCertSerializeCRLStoreElement(_In_ PCCRL_CONTEXT pCrlContext, _In_ DWORD dwFlags, _Out_ BYTE *pbElement, _Inout_ DWORD *pcbElement)
tuittiBOOLCertSerializeCTLStoreElement(_In_ PCCTL_CONTEXT pCtlContext, _In_ DWORD dwFlags, _Out_ BYTE *pbElement, _Inout_ DWORD *pcbElement)
ttuiiBOOLCertSetCertificateContextPropertiesFromCTLEntry(_In_ PCCERT_CONTEXT pCertContext, _In_ PCTL_ENTRY pCtlEntry, _In_ DWORD dwFlags)
tuiuitiBOOLCertSetCertificateContextProperty(_In_ PCCERT_CONTEXT pCertContext, _In_ DWORD dwPropId, _In_ DWORD dwFlags, _In_ const void *pvData)
tuiuitiBOOLCertSetCRLContextProperty(_In_ PCCRL_CONTEXT pCrlContext, _In_ DWORD dwPropId, _In_ DWORD dwFlags, _In_ const void *pvData)
tuiuitiBOOLCertSetCTLContextProperty(_In_ PCCTL_CONTEXT pCtlContext, _In_ DWORD dwPropId, _In_ DWORD dwFlags, _In_ const void *pvData)
ttiBOOLCertSetEnhancedKeyUsage(_In_ PCCERT_CONTEXT pCertContext, _In_ PCERT_ENHKEY_USAGE pUsage)
tuiuitiBOOLCertSetStoreProperty(_In_ HCERTSTORE hCertStore, _In_ DWORD dwPropId, _In_ DWORD dwFlags, _In_ const void *pvData)
uisuitttsiBOOLCertStrToName(_In_ DWORD dwCertEncodingType, _In_ LPCTSTR pszX500, _In_ DWORD dwStrType, _In_opt_ void *pvReserved, _Out_ BYTE *pbEncoded, _Inout_ DWORD *pcbEncoded, _Out_opt_ LPCTSTR *ppszError)
uiauitttaiBOOLCertStrToNameA(_In_ DWORD dwCertEncodingType, _In_ LPCSTR pszX500, _In_ DWORD dwStrType, _In_opt_ void *pvReserved, _Out_ BYTE *pbEncoded, _Inout_ DWORD *pcbEncoded, _Out_opt_ LPCSTR *ppszError)
uiwuitttwiBOOLCertStrToNameW(_In_ DWORD dwCertEncodingType, _In_ LPCWSTR pszX500, _In_ DWORD dwStrType, _In_opt_ void *pvReserved, _Out_ BYTE *pbEncoded, _Inout_ DWORD *pcbEncoded, _Out_opt_ LPCWSTR *ppszError)
tuiwiBOOLCertUnregisterPhysicalStore(_In_ const void *pvSystemStore, _In_ DWORD dwFlags, _In_ LPCWSTR pwszStoreName)
tuiiBOOLCertUnregisterSystemStore(_In_ const void *pvSystemStore, _In_ DWORD dwFlags)
atttiBOOLCertVerifyCertificateChainPolicy(_In_ LPCSTR pszPolicyOID, _In_ PCCERT_CHAIN_CONTEXT pChainContext, _In_ PCERT_CHAIN_POLICY_PARA pPolicyPara, _Inout_ PCERT_CHAIN_POLICY_STATUS pPolicyStatus)
uituitiBOOLCertVerifyCRLRevocation(_In_ DWORD dwCertEncodingType, _In_ PCERT_INFO pCertId, _In_ DWORD cCrlInfo, _In_ PCRL_INFO rgpCrlInfo[])
ttiLONGCertVerifyCRLTimeValidity(_In_ LPFILETIME pTimeToVerify, _In_ PCRL_INFO pCrlInfo)
uiuittuittiBOOLCertVerifyCTLUsage(_In_ DWORD dwEncodingType, _In_ DWORD dwSubjectType, _In_ void *pvSubject, _In_ PCTL_USAGE pSubjectUsage, _In_ DWORD dwFlags, _In_opt_ PCTL_VERIFY_USAGE_PARA pVerifyUsagePara, _Inout_ PCTL_VERIFY_USAGE_STATUS pVerifyUsageStatus)
uiuiuituittiBOOLCertVerifyRevocation(_In_ DWORD dwEncodingType, _In_ DWORD dwRevType, _In_ DWORD cContext, _In_ PVOID rgpvContext[], _In_ DWORD dwFlags, _In_opt_ PCERT_REVOCATION_PARA pRevPara, _Inout_ PCERT_REVOCATION_STATUS pRevStatus)
tttiBOOLCertVerifySubjectCertificateContext(_In_ PCCERT_CONTEXT pSubject, _In_opt_ PCCERT_CONTEXT pIssuer, _Inout_ DWORD *pdwFlags)
ttiLONGCertVerifyTimeValidity(_In_ LPFILETIME pTimeToVerify, _In_ PCERT_INFO pCertInfo)
ttiBOOLCertVerifyValidityNesting(_In_ PCERT_INFO pSubjectInfo, _In_ PCERT_INFO pIssuerInfo)
tuitutttiBOOLCryptAcquireCertificatePrivateKey(_In_ PCCERT_CONTEXT pCert, _In_ DWORD dwFlags, _In_opt_ void *pvParameters, _Out_ HCRYPTPROV_OR_NCRYPT_KEY_HANDLE *phCryptProvOrNCryptKey, _Out_ DWORD *pdwKeySpec, _Out_ BOOL *pfCallerFreeProvOrNCryptKey)
tuiuistiBOOLCryptBinaryToString(_In_ const BYTE *pbBinary, _In_ DWORD cbBinary, _In_ DWORD dwFlags, _Out_opt_ LPTSTR pszString, _Inout_ DWORD *pcchString)
tuiuiatiBOOLCryptBinaryToStringA(_In_ const BYTE *pbBinary, _In_ DWORD cbBinary, _In_ DWORD dwFlags, _Out_opt_ LPSTR pszString, _Inout_ DWORD *pcchString)
tuiuiwtiBOOLCryptBinaryToStringW(_In_ const BYTE *pbBinary, _In_ DWORD cbBinary, _In_ DWORD dwFlags, _Out_opt_ LPWSTR pszString, _Inout_ DWORD *pcchString)
uiatuiuitttiBOOLCryptCreateKeyIdentifierFromCSP(_In_ DWORD dwCertEncodingType, _In_ LPCSTR pszPubKeyOID, _In_ const PUBLICKEYSTRUC *pPubKeyStruc, _In_ DWORD cbPubKeyStruc, _In_ DWORD dwFlags, _In_ void *pvReserved, _Out_ BYTE *pbHash, _Inout_ DWORD *pcbHash)
uittuituiuittttttiBOOLCryptDecodeMessage(_In_ DWORD dwMsgTypeFlags, _In_ PCRYPT_DECRYPT_MESSAGE_PARA pDecryptPara, _In_ PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara, _In_ DWORD dwSignerIndex, _In_ const BYTE *pbEncodedBlob, _In_ DWORD cbEncodedBlob, _In_ DWORD dwPrevInnerContentType, _Out_opt_ DWORD *pdwMsgType, _Out_opt_ DWORD *pdwInnerContentType, _Out_opt_ BYTE *pbDecoded, _Inout_opt_ DWORD *pcbDecoded, _Out_opt_ PCCERT_CONTEXT *ppXchgCert, _Out_opt_ PCCERT_CONTEXT *ppSignerCert)
uiatuiuittiBOOLCryptDecodeObject(_In_ DWORD dwCertEncodingType, _In_ LPCSTR lpszStructType, _In_ const BYTE *pbEncoded, _In_ DWORD cbEncoded, _In_ DWORD dwFlags, _Out_ void *pvStructInfo, _Inout_ DWORD *pcbStructInfo)
uiatuiuitttiBOOLCryptDecodeObjectEx(_In_ DWORD dwCertEncodingType, _In_ LPCSTR lpszStructType, _In_ const BYTE *pbEncoded, _In_ DWORD cbEncoded, _In_ DWORD dwFlags, _In_ PCRYPT_DECODE_PARA pDecodePara, _Out_ void *pvStructInfo, _Inout_ DWORD *pcbStructInfo)
ttuituittttiBOOLCryptDecryptAndVerifyMessageSignature(_In_ PCRYPT_DECRYPT_MESSAGE_PARA pDecryptPara, _In_ PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara, _In_ DWORD dwSignerIndex, _In_ const BYTE *pbEncryptedBlob, _In_ DWORD cbEncryptedBlob, _Out_opt_ BYTE *pbDecrypted, _Inout_opt_ DWORD *pcbDecrypted, _Out_opt_ PCCERT_CONTEXT *ppXchgCert, _Out_opt_ PCCERT_CONTEXT *ppSignerCert)
ttuitttiBOOLCryptDecryptMessage(_In_ PCRYPT_DECRYPT_MESSAGE_PARA pDecryptPara, _In_ const BYTE *pbEncryptedBlob, _In_ DWORD cbEncryptedBlob, _Out_opt_ BYTE *pbDecrypted, _Inout_opt_ DWORD *pcbDecrypted, _Out_opt_ PCCERT_CONTEXT *ppXchgCert)
uiatttiBOOLCryptEncodeObject(_In_ DWORD dwCertEncodingType, _In_ LPCSTR lpszStructType, _In_ const void *pvStructInfo, _Out_ BYTE *pbEncoded, _Inout_ DWORD *pcbEncoded)
uiatuitttiBOOLCryptEncodeObjectEx(_In_ DWORD dwCertEncodingType, _In_ LPCSTR lpszStructType, _In_ const void *pvStructInfo, _In_ DWORD dwFlags, _In_ PCRYPT_ENCODE_PARA pEncodePara, _Out_ void *pvEncoded, _Inout_ DWORD *pcbEncoded)
tuittuittiBOOLCryptEncryptMessage(_In_ PCRYPT_ENCRYPT_MESSAGE_PARA pEncryptPara, _In_ DWORD cRecipientCert, _In_ PCCERT_CONTEXT rgpRecipientCert[], _In_ const BYTE *pbToBeEncrypted, _In_ DWORD cbToBeEncrypted, _Out_ BYTE *pbEncryptedBlob, _Inout_ DWORD *pcbEncryptedBlob)
tuiuiwtttiBOOLCryptEnumKeyIdentifierProperties(_In_opt_ const CRYPT_HASH_BLOB *pKeyIdentifier, _In_ DWORD dwPropId, _In_ DWORD dwFlags, _In_opt_ LPCWSTR pwszComputerName, _In_ void *pvReserved, _In_opt_ void *pvArg, _In_ PFN_CRYPT_ENUM_KEYID_PROP pfnEnum)
uiaauittiBOOLCryptEnumOIDFunction(_In_ DWORD dwEncodingType, _In_ LPCSTR pszFuncName, _In_ LPCSTR pszOID, _In_ DWORD dwFlags, _In_ void *pvArg, _In_ PFN_CRYPT_ENUM_OID_FUNC pfnEnumOIDFunc)
uiuittiBOOLCryptEnumOIDInfo(_In_ DWORD dwGroupId, _In_ DWORD dwFlags, _In_ void *pvArg, _In_ PFN_CRYPT_ENUM_OID_INFO pfnEnumOIDInfo)
utuiauitttiBOOLCryptExportPKCS8(_In_ HCRYPTPROV hCryptProv, _In_ DWORD dwKeySpec, _In_ LPSTR pszPrivateKeyObjId, _In_ DWORD dwFlags, _In_opt_ void *pvAuxInfo, _Out_opt_ BYTE *pbPrivateKeyBlob, _Inout_ DWORD *pcbPrivateKeyBlob)
utuiuittiBOOLCryptExportPublicKeyInfo(_In_ HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProvOrNCryptKey, _In_ DWORD dwKeySpec, _In_ DWORD dwCertEncodingType, _Out_ PCERT_PUBLIC_KEY_INFO pInfo, _Inout_ DWORD *pcbInfo)
utuiuiauitttiBOOLCryptExportPublicKeyInfoEx(_In_ HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProvOrNCryptKey, _In_ DWORD dwKeySpec, _In_ DWORD dwCertEncodingType, _In_ LPSTR pszPublicKeyObjId, _In_ DWORD dwFlags, _In_ void *pvAuxInfo, _Out_ PCERT_PUBLIC_KEY_INFO pInfo, _Inout_ DWORD *pcbInfo)
tuiauittuiiBOOLCryptExportPublicKeyInfoFromBCryptKeyHandle(_In_ BCRYPT_KEY_HANDLE hBCryptKey, _In_ DWORD dwCertEncodingType, _In_opt_ LPSTR pszPublicKeyObjId, _In_ DWORD dwFlags, _In_opt_ void pvAuxInfo, _Out_opt_ PCERT_PUBLIC_KEY_INFO pInfo, _Inout_ DWORD pcbInfo)
tuitiBOOLCryptFindCertificateKeyProvInfo(_In_ PCCERT_CONTEXT pCert, _In_ DWORD dwFlags, _In_ void *pvReserved)
wwLPCWSTRCryptFindLocalizedName(_In_ LPCWSTR pwszCryptName)
uituitPCCRYPT_OID_INFOCryptFindOIDInfo(_In_ DWORD dwKeyType, _In_ void *pvKey, _In_ DWORD dwGroupId)
uiuiuitatuittiBOOLCryptFormatObject(_In_ DWORD dwCertEncodingType, _In_ DWORD dwFormatType, _In_ DWORD dwFormatStrType, _In_ void *pFormatStruct, _In_ LPCSTR lpszStructType, _In_ const BYTE *pbEncoded, _In_ DWORD cbEncoded, _Out_ void *pbFormat, _Inout_ DWORD *pcbFormat)
utuiiBOOLCryptFreeOIDFunctionAddress(_In_ HCRYPTOIDFUNCADDR hFuncAddr, _In_ DWORD dwFlags)
utuiwtiBOOLCryptGetDefaultOIDDllList(_In_ HCRYPTOIDFUNCSET hFuncSet, _In_ DWORD dwEncodingType, _Out_ LPWSTR pwszDllList, _Inout_ DWORD *pcchDllList)
utuiwuitutiBOOLCryptGetDefaultOIDFunctionAddress(_In_ HCRYPTOIDFUNCSET hFuncSet, _In_ DWORD dwEncodingType, _In_opt_ LPCWSTR pwszDll, _In_ DWORD dwFlags, _Out_ void **ppvFuncAddr, _Inout_ HCRYPTOIDFUNCADDR *phFuncAddr)
tuiuiwtttiBOOLCryptGetKeyIdentifierProperty(_In_ const CRYPT_HASH_BLOB *pKeyIdentifier, _In_ DWORD dwPropId, _In_ DWORD dwFlags, _In_ LPCWSTR pwszComputerName, _In_ void *pvReserved, _Out_ void *pvData, _Inout_ DWORD *pcbData)
uiutuituitHCERTSTORECryptGetMessageCertificates(_In_ DWORD dwMsgAndCertEncodingType, _In_ HCRYPTPROV_LEGACY hCryptProv, _In_ DWORD dwFlags, _In_ const BYTE *pbSignedBlob, _In_ DWORD cbSignedBlob)
uituiiLONGCryptGetMessageSignerCount(_In_ DWORD dwMsgEncodingType, _In_ const BYTE *pbSignedBlob, _In_ DWORD cbSignedBlob)
utuiauitutiBOOLCryptGetOIDFunctionAddress(_In_ HCRYPTOIDFUNCSET hFuncSet, _In_ DWORD dwEncodingType, _In_ LPCSTR pszOID, _In_ DWORD dwFlags, _Out_ void **ppvFuncAddr, _Out_ HCRYPTOIDFUNCADDR *phFuncAddr)
uiaawtttiBOOLCryptGetOIDFunctionValue(_In_ DWORD dwEncodingType, _In_ LPCSTR pszFuncName, _In_ LPCSTR pszOID, _In_ LPCWSTR pwszValueName, _Out_ DWORD *pdwValueType, _Out_ BYTE *pbValueData, _Inout_ DWORD *pcbValueData)
utuiuituittiBOOLCryptHashCertificate(_In_ HCRYPTPROV_LEGACY hCryptProv, _In_ ALG_ID Algid, _In_ DWORD dwFlags, _In_ const BYTE *pbEncoded, _In_ DWORD cbEncoded, _Out_ BYTE *pbComputedHash, _Inout_ DWORD *pcbComputedHash)
wuittuittiBOOLCryptHashCertificate2(_In_ LPCWSTR pwszCNGHashAlgid, _In_ DWORD dwFlags, _Reserved_ void *pvReserved, _In_ BYTE *pbEncoded, _In_ DWORD cbEncoded, _Out_ BYTE *pbComputedHash, _Inout_ DWORD *pcbComputedHash)
tiuituittttiBOOLCryptHashMessage(_In_ PCRYPT_HASH_MESSAGE_PARA pHashPara, _In_ BOOL fDetachedHash, _In_ DWORD cToBeHashed, _In_ const BYTE *rgpbToBeHashed[], _In_ DWORD rgcbToBeHashed[], _Out_ BYTE *pbHashedBlob, _Inout_ DWORD *pcbHashedBlob, _Out_opt_ BYTE *pbComputedHash, _Inout_opt_ DWORD *pcbComputedHash)
utuiuiuitttiBOOLCryptHashPublicKeyInfo(_In_ HCRYPTPROV_LEGACY hCryptProv, _In_ ALG_ID Algid, _In_ DWORD dwFlags, _In_ DWORD dwCertEncodingType, _In_ PCERT_PUBLIC_KEY_INFO pInfo, _Out_ BYTE *pbComputedHash, _Inout_ DWORD *pcbComputedHash)
utuituittiBOOLCryptHashToBeSigned(_In_ HCRYPTPROV_LEGACY hCryptProv, _In_ DWORD dwCertEncodingType, _In_ const BYTE *pbEncoded, _In_ DWORD cbEncoded, _Out_ BYTE *pbComputedHash, _Inout_ DWORD *pcbComputedHash)
uiuiuttiBOOLCryptImportPKCS8(_In_ CRYPT_PKCS8_IMPORT_PARAMS sPrivateKeyAndParams, _In_ DWORD dwFlags, _Out_opt_ HCRYPTPROV *phCryptProv, _In_opt_ void *pvAuxInfo)
utuitutiBOOLCryptImportPublicKeyInfo(_In_ HCRYPTPROV hCryptProv, _In_ DWORD dwCertEncodingType, _In_ PCERT_PUBLIC_KEY_INFO pInfo, _Out_ HCRYPTKEY *phKey)
utuituiuitutiBOOLCryptImportPublicKeyInfoEx(_In_ HCRYPTPROV hCryptProv, _In_ DWORD dwCertEncodingType, _In_ PCERT_PUBLIC_KEY_INFO pInfo, _In_ ALG_ID aiKeyAlg, _In_ DWORD dwFlags, _In_ void *pvAuxInfo, _Out_ HCRYPTKEY *phKey)
uituittiBOOLCryptImportPublicKeyInfoEx2(_In_ DWORD dwCertEncodingType, _In_ PCERT_PUBLIC_KEY_INFO pInfo, _In_ DWORD dwFlags, _In_ void *pvAuxInfo, _Out_ BCRYPT_KEY_HANDLE *phKey)
auiutHCRYPTOIDFUNCSETCryptInitOIDFunctionSet(_In_ LPCSTR pszFuncName, _In_ DWORD dwFlags)
utuituitutiBOOLCryptInstallDefaultContext(_In_ HCRYPTPROV hCryptProv, _In_ DWORD dwDefaultType, _In_ const void *pvDefaultPara, _In_ DWORD dwFlags, _In_ void *pvReserved, _Out_ HCRYPTDEFAULTCONTEXT *phDefaultContext)
tuiauiuiuiiBOOLCryptInstallOIDFunctionAddress(_In_ HMODULE hModule, _In_ DWORD dwEncodingType, _In_ LPCSTR pszFuncName, _In_ DWORD cFuncEntry, _In_ CRYPT_OID_FUNC_ENTRY rgFuncEntry[], _In_ DWORD dwFlags)
uitLPVOIDCryptMemAlloc(_In_ ULONG cbSize)
tiVOIDCryptMemFree(_In_ LPVOID pv)
tuitLPVOIDCryptMemRealloc(_In_ LPVOID pv, _In_ ULONG cbSize)
uiuiuitauiuiDWORDCryptMsgCalculateEncodedLength(_In_ DWORD dwMsgEncodingType, _In_ DWORD dwFlags, _In_ DWORD dwMsgType, _In_ const void *pvMsgEncodeInfo, _In_opt_ LPSTR pszInnerContentObjID, _In_ DWORD cbData)
utiBOOLCryptMsgClose(_In_ HCRYPTMSG hCryptMsg)
utuiuitiBOOLCryptMsgControl(_In_ HCRYPTMSG hCryptMsg, _In_ DWORD dwFlags, _In_ DWORD dwCtrlType, _In_ const void *pvCtrlPara)
utuiuitiBOOLCryptMsgCountersign(_Inout_ HCRYPTMSG hCryptMsg, _In_ DWORD dwIndex, _In_ DWORD cCountersigners, _In_ PCMSG_SIGNER_ENCODE_INFO rgCountersigners)
uituiuitttiBOOLCryptMsgCountersignEncoded(_In_ DWORD dwEncodingType, _In_ PBYTE pbSignerInfo, _In_ DWORD cbSignerInfo, _In_ DWORD cCountersigners, _In_ PCMSG_SIGNER_ENCODE_INFO rgCountersigners, _Out_ PBYTE pbCountersignature, _Inout_ PDWORD pcbCountersignature)
ututHCRYPTMSGCryptMsgDuplicate(_In_ HCRYPTMSG hCryptMsg)
uittuittiBOOLCryptMsgEncodeAndSignCTL(_In_ DWORD dwMsgEncodingType, _In_ PCTL_INFO pCtlInfo, _In_ PCMSG_SIGNED_ENCODE_INFO pSignInfo, _In_ DWORD dwFlags, _Out_ BYTE *pbEncoded, _Inout_ DWORD *pcbEncoded)
utuituittiBOOLCryptMsgGetAndVerifySigner(_In_ HCRYPTMSG hCryptMsg, _In_ DWORD cSignerStore, _In_opt_ HCERTSTORE *rghSignerStore, _In_ DWORD dwFlags, _Out_opt_ PCCERT_CONTEXT *ppSigner, _Inout_opt_ DWORD *pdwSignerIndex)
utuiuittiBOOLCryptMsgGetParam(_In_ HCRYPTMSG hCryptMsg, _In_ DWORD dwParamType, _In_ DWORD dwIndex, _Out_ void *pvData, _Inout_ DWORD *pcbData)
uiuiuiutttutHCRYPTMSGCryptMsgOpenToDecode(_In_ DWORD dwMsgEncodingType, _In_ DWORD dwFlags, _In_ DWORD dwMsgType, _In_ HCRYPTPROV_LEGACY hCryptProv, _In_ PCERT_INFO pRecipientInfo, _In_opt_ PCMSG_STREAM_INFO pStreamInfo)
uiuiuitatutHCRYPTMSGCryptMsgOpenToEncode(_In_ DWORD dwMsgEncodingType, _In_ DWORD dwFlags, _In_ DWORD dwMsgType, _In_ const void *pvMsgEncodeInfo, _In_opt_ LPSTR pszInnerContentObjID, _In_ PCMSG_STREAM_INFO pStreamInfo)
uituituittiBOOLCryptMsgSignCTL(_In_ DWORD dwMsgEncodingType, _In_ BYTE *pbCtlContent, _In_ DWORD cbCtlContent, _In_ PCMSG_SIGNED_ENCODE_INFO pSignInfo, _In_ DWORD dwFlags, _Out_ BYTE *pbEncoded, _Inout_ DWORD *pcbEncoded)
uttuiiiBOOLCryptMsgUpdate(_In_ HCRYPTMSG hCryptMsg, _In_ const BYTE *pbData, _In_ DWORD cbData, _In_ BOOL fFinal)
utuituituitiBOOLCryptMsgVerifyCountersignatureEncoded(_In_ HCRYPTPROV_LEGACY hCryptProv, _In_ DWORD dwEncodingType, _In_ PBYTE pbSignerInfo, _In_ DWORD cbSignerInfo, _In_ PBYTE pbSignerInfoCountersignature, _In_ DWORD cbSignerInfoCountersignature, _In_ PCERT_INFO pciCountersigner)
utuituituiuituitiBOOLCryptMsgVerifyCountersignatureEncodedEx(_In_opt_ HCRYPTPROV_LEGACY hCryptProv, _In_ DWORD dwEncodingType, _In_ PBYTE pbSignerInfo, _In_ DWORD cbSignerInfo, _In_ PBYTE pbSignerInfoCountersignature, _In_ DWORD cbSignerInfoCountersignature, _In_ DWORD dwSignerType, _In_ void *pvSigner, _Reserved_ DWORD dwFlags, _Reserved_ void *pvExtra)
twtttuitiBOOLCryptProtectData(_In_ DATA_BLOB *pDataIn, _In_ LPCWSTR szDataDescr, _In_ DATA_BLOB *pOptionalEntropy, _In_ PVOID pvReserved, _In_opt_ CRYPTPROTECT_PROMPTSTRUCT *pPromptStruct, _In_ DWORD dwFlags, _Out_ DATA_BLOB *pDataOut)
tuiuiiBOOLCryptProtectMemory(_Inout_ LPVOID pData, _In_ DWORD cbData, _In_ DWORD dwFlags)
uituiuiuittttuttiBOOLCryptQueryObject(_In_ DWORD dwObjectType, _In_ const void *pvObject, _In_ DWORD dwExpectedContentTypeFlags, _In_ DWORD dwExpectedFormatTypeFlags, _In_ DWORD dwFlags, _Out_ DWORD *pdwMsgAndCertEncodingType, _Out_ DWORD *pdwContentType, _Out_ DWORD *pdwFormatType, _Out_ HCERTSTORE *phCertStore, _Out_ HCRYPTMSG *phMsg, _Out_ const void **ppvContext)
uiauiwiBOOLCryptRegisterDefaultOIDFunction(_In_ DWORD dwEncodingType, _In_ LPCSTR pszFuncName, _In_ DWORD dwIndex, _In_ LPCWSTR pwszDll)
uiaawaiBOOLCryptRegisterOIDFunction(_In_ DWORD dwEncodingType, _In_ LPCSTR pszFuncName, _In_ LPCSTR pszOID, _In_ LPCWSTR pwszDll, _In_ LPCSTR pszOverrideFuncName)
tuiiBOOLCryptRegisterOIDInfo(_In_ PCCRYPT_OID_INFO pInfo, _In_ DWORD dwFlags)
wuiuiattuitttiBOOLCryptRetrieveTimeStamp(_In_ LPCWSTR wszUrl, DWORD dwRetrievalFlags, DWORD dwTimeout, _In_ LPCSTR pszHashId, _In_opt_ const CRYPT_TIMESTAMP_PARA *pPara, _In_ const BYTE *pbData, DWORD cbData, _Out_ PCRYPT_TIMESTAMP_CONTEXT *ppTsContext, _Out_opt_ PCCERT_CONTEXT *ppTsSigner, _Out_opt_ HCERTSTORE phStore)
tuiuiwttiBOOLCryptSetKeyIdentifierProperty(_In_ const CRYPT_HASH_BLOB *pKeyIdentifier, _In_ DWORD dwPropId, _In_ DWORD dwFlags, _In_ LPCWSTR pwszComputerName, _In_ void *pvReserved, _Out_ const void *pvData)
uiaawuituiiBOOLCryptSetOIDFunctionValue(_In_ DWORD dwEncodingType, _In_ LPCSTR pszFuncName, _In_ LPCSTR pszOID, _In_ LPCWSTR pwszValueName, _In_ DWORD dwValueType, _In_ const BYTE *pbValueData, _In_ DWORD cbValueData)
utuiuiatttttiBOOLCryptSignAndEncodeCertificate(_In_ HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProvOrNCryptKey, _In_ DWORD dwKeySpec, _In_ DWORD dwCertEncodingType, _In_ LPCSTR lpszStructType, _In_ const void *pvStructInfo, _In_ PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm, _In_ const void *pvHashAuxInfo, _Out_ PBYTE pbEncoded, _Inout_ DWORD *pcbEncoded)
ttuittuittiBOOLCryptSignAndEncryptMessage(_In_ PCRYPT_SIGN_MESSAGE_PARA pSignPara, _In_ PCRYPT_ENCRYPT_MESSAGE_PARA pEncryptPara, _In_ DWORD cRecipientCert, _In_ PCCERT_CONTEXT rgpRecipientCert[], _In_ const BYTE *pbToBeSignedAndEncrypted, _In_ DWORD cbToBeSignedAndEncrypted, _Out_ BYTE *pbSignedAndEncryptedBlob, _Inout_ DWORD *pcbSignedAndEncryptedBlob)
utuiuituittttiBOOLCryptSignCertificate(_In_ HCRYPTPROV_OR_NCRYPT_KEY_HANDLE hCryptProvOrNCryptKey, _In_ DWORD dwKeySpec, _In_ DWORD dwCertEncodingType, _In_ const BYTE *pbEncodedToBeSigned, _In_ DWORD cbEncodedToBeSigned, _In_ PCRYPT_ALGORITHM_IDENTIFIER pSignatureAlgorithm, _In_ const void *pvHashAuxInfo, _Out_ BYTE *pbSignature, _Inout_ DWORD *pcbSignature)
tiuituittiBOOLCryptSignMessage(_In_ PCRYPT_SIGN_MESSAGE_PARA pSignPara, _In_ BOOL fDetachedSignature, _In_ DWORD cToBeSigned, _In_ const BYTE *rgpbToBeSigned[], _In_ DWORD rgcbToBeSigned[], _Out_ BYTE *pbSignedBlob, _Inout_ DWORD *pcbSignedBlob)
ttuittiBOOLCryptSignMessageWithKey(_In_ PCRYPT_KEY_SIGN_MESSAGE_PARA pSignPara, _In_ const BYTE *pbToBeSigned, _In_ DWORD cToBeSigned, _Out_ BYTE *pbSignedBlob, _Inout_ DWORD *pcbSignedBlob)
tiBOOLCryptSIPAddProvider(_In_ SIP_ADD_NEWPROVIDER *psNewProv)
tttiBOOLCryptSIPCreateIndirectData(_In_ SIP_SUBJECTINFO *pSubjectInfo, _Inout_ DWORD *pcbIndirectData, _Out_ SIP_INDIRECT_DATA *pIndirectData)
ttuittiBOOLCryptSIPGetSignedDataMsg(_In_ SIP_SUBJECTINFO *pSubjectInfo, _Out_ DWORD *pdwEncodingType, _In_ DWORD dwIndex, _Inout_ DWORD *pcbSignedDataMsg, _Out_ BYTE *pbSignedDataMsg)
tuitiBOOLCryptSIPLoad(_In_ const GUID *pgSubject, _In_ DWORD dwFlags, _Inout_ SIP_DISPATCH_INFO *pSipDispatch)
tuituitiBOOLCryptSIPPutSignedDataMsg(_In_ SIP_SUBJECTINFO *pSubjectInfo, _In_ DWORD dwEncodingType, _Out_ DWORD *pdwIndex, _In_ DWORD cbSignedDataMsg, _In_ BYTE *pbSignedDataMsg)
tiBOOLCryptSIPRemoveProvider(_In_ GUID *pgProv)
tuiiBOOLCryptSIPRemoveSignedDataMsg(_In_ SIP_SUBJECTINFO *pSubjectInfo, _In_ DWORD dwIndex)
wttiBOOLCryptSIPRetrieveSubjectGuid(_In_ LPCWSTR FileName, _In_opt_ HANDLE hFileIn, _Out_ GUID *pgSubject)
wttiBOOLCryptSIPRetrieveSubjectGuidForCatalogFile(_In_ LPCWSTR FileName, _In_opt_ HANDLE hFileIn, _Out_ GUID *pgSubject)
ttiBOOLCryptSIPVerifyIndirectData(_In_ SIP_SUBJECTINFO *pSubjectInfo, _In_ SIP_INDIRECT_DATA *pIndirectData)
suiuittttiBOOLCryptStringToBinary(_In_ LPCTSTR pszString, _In_ DWORD cchString, _In_ DWORD dwFlags, _In_ BYTE *pbBinary, _Inout_ DWORD *pcbBinary, _Out_ DWORD *pdwSkip, _Out_ DWORD *pdwFlags)
auiuittttiBOOLCryptStringToBinaryA(_In_ LPCSTR pszString, _In_ DWORD cchString, _In_ DWORD dwFlags, _In_ BYTE *pbBinary, _Inout_ DWORD *pcbBinary, _Out_ DWORD *pdwSkip, _Out_ DWORD *pdwFlags)
wuiuittttiBOOLCryptStringToBinaryW(_In_ LPCWSTR pszString, _In_ DWORD cchString, _In_ DWORD dwFlags, _In_ BYTE *pbBinary, _Inout_ DWORD *pcbBinary, _Out_ DWORD *pdwSkip, _Out_ DWORD *pdwFlags)
utuitiBOOLCryptUninstallDefaultContext(_In_ HCRYPTDEFAULTCONTEXT hDefaultContext, _In_ DWORD dwFlags, _In_ void *pvReserved)
tttttuitiBOOLCryptUnprotectData(_In_ DATA_BLOB *pDataIn, _Out_opt_ LPWSTR *ppszDataDescr, _In_opt_ DATA_BLOB *pOptionalEntropy, _Reserved_ PVOID pvReserved, _In_opt_ CRYPTPROTECT_PROMPTSTRUCT *pPromptStruct, _In_ DWORD dwFlags, _Out_ DATA_BLOB *pDataOut)
tuiuiiBOOLCryptUnprotectMemory(_Inout_ LPVOID pData, _In_ DWORD cbData, _In_ DWORD dwFlags)
uiawiBOOLCryptUnregisterDefaultOIDFunction(_In_ DWORD dwEncodingType, _In_ LPCSTR pszFuncName, _In_ LPCWSTR pwszDll)
uiaaiBOOLCryptUnregisterOIDFunction(_In_ DWORD dwEncodingType, _In_ LPCSTR pszFuncName, _In_ LPCSTR pszOID)
tiBOOLCryptUnregisterOIDInfo(_In_ PCCRYPT_OID_INFO pInfo)
twuittiBOOLCryptUpdateProtectedState(_In_ PSID pOldSid, _In_ LPCWSTR pwszOldPassword, _In_ DWORD dwFlags, _Out_ DWORD *pdwSuccessCount, _Out_ DWORD *pdwFailureCount)
utuituitiBOOLCryptVerifyCertificateSignature(_In_ HCRYPTPROV_LEGACY hCryptProv, _In_ DWORD dwCertEncodingType, _In_ BYTE *pbEncoded, _In_ DWORD cbEncoded, _In_ PCERT_PUBLIC_KEY_INFO pPublicKey)
utuiuituituitiBOOLCryptVerifyCertificateSignatureEx(_In_ HCRYPTPROV_LEGACY hCryptProv, _In_ DWORD dwCertEncodingType, _In_ DWORD dwSubjectType, _In_ void *pvSubject, _In_ DWORD dwIssuerType, _In_ void *pvIssuer, _In_ DWORD dwFlags, _Inout_opt_ void *pvExtra)
ttuiuituittiBOOLCryptVerifyDetachedMessageHash(_In_ PCRYPT_HASH_MESSAGE_PARA pHashPara, _In_ BYTE *pbDetachedHashBlob, _In_ DWORD cbDetachedHashBlob, _In_ DWORD cToBeHashed, _In_ const BYTE *rgpbToBeHashed[], _In_ DWORD rgcbToBeHashed[], _Out_ BYTE *pbComputedHash, _Inout_ DWORD *pcbComputedHash)
tuituiuituitiBOOLCryptVerifyDetachedMessageSignature(_In_ PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara, _In_ DWORD dwSignerIndex, _In_ const BYTE *pbDetachedSignBlob, _In_ DWORD cbDetachedSignBlob, _In_ DWORD cToBeSigned, _In_ const BYTE *rgpbToBeSigned[], _In_ DWORD rgcbToBeSigned[], _Out_opt_ PCCERT_CONTEXT *ppSignerCert)
ttuittttiBOOLCryptVerifyMessageHash(_In_ PCRYPT_HASH_MESSAGE_PARA pHashPara, _In_ BYTE *pbHashedBlob, _In_ DWORD cbHashedBlob, _Out_ BYTE *pbToBeHashed, _Inout_ DWORD *pcbToBeHashed, _Out_opt_ BYTE *pbComputedHash, _Inout_opt_ DWORD *pcbComputedHash)
tuituitttiBOOLCryptVerifyMessageSignature(_In_ PCRYPT_VERIFY_MESSAGE_PARA pVerifyPara, _In_ DWORD dwSignerIndex, _In_ const BYTE *pbSignedBlob, _In_ DWORD cbSignedBlob, _Out_ BYTE *pbDecoded, _Inout_ DWORD *pcbDecoded, _Out_opt_ PCCERT_CONTEXT *ppSignerCert)
tttuittiBOOLCryptVerifyMessageSignatureWithKey(_In_ PCRYPT_KEY_VERIFY_MESSAGE_PARA pVerifyPara, _In_ PCERT_PUBLIC_KEY_INFO pPublicKeyInfo, _In_ const BYTE *pbSignedBlob, _In_ DWORD cbSignedBlob, _Out_ BYTE *pbDecoded, _Inout_ DWORD *pcbDecoded)
ucuiuiuittttiBOOLCryptVerifyTimeStampSignature(_In_ const BYTE pbTSContentInfo, DWORD cbTSContentInfo, _In_opt_ const DWORD pbData, DWORD cbData, _In_opt_ HCERTSTORE hAdditionalStore, _Out_ PCRYPT_TIMESTAMP_CONTEXT ppTsContext, _Out_opt_ PCCERT_CONTEXT *ppTsSigner, _Out_opt_ HCERTSTORE *phStore)
ttwuiiBOOLPFXExportCertStore(_In_ HCERTSTORE hStore, _Inout_ CRYPT_DATA_BLOB *pPFX, _In_ LPCWSTR szPassword, _In_ DWORD dwFlags)
ttwtuiiBOOLPFXExportCertStoreEx(_In_ HCERTSTORE hStore, _Inout_ CRYPT_DATA_BLOB *pPFX, _In_ LPCWSTR szPassword, _In_ void *pvPara, _In_ DWORD dwFlags)
twuitHCERTSTOREPFXImportCertStore(_In_ CRYPT_DATA_BLOB *pPFX, _In_ LPCWSTR szPassword, _In_ DWORD dwFlags)
tiBOOLPFXIsPFXBlob(_In_ CRYPT_DATA_BLOB *pPFX)
twuiiBOOLPFXVerifyPassword(_In_ CRYPT_DATA_BLOB *pPFX, _In_ LPCWSTR szPassword, _In_ DWORD dwFlags)

Gdi32.dll

tiintAbortDoc(_In_ HDC hdc)
tiBOOLAbortPath(_In_ HDC hdc)
tuitttHANDLEAddFontMemResourceEx(_In_ PVOID pbFont, _In_ DWORD cbFont, _In_ PVOID pdv, _In_ DWORD *pcFonts)
siintAddFontResource(_In_ LPCTSTR lpszFilename)
aiintAddFontResourceA(_In_ LPCSTR lpszFilename)
suitiintAddFontResourceEx(_In_ LPCTSTR lpszFilename, _In_ DWORD fl, _In_ PVOID pdv)
auitiintAddFontResourceExA(_In_ LPCSTR lpszFilename, _In_ DWORD fl, _In_ PVOID pdv)
wuitiintAddFontResourceExW(_In_ LPCWSTR lpszFilename, _In_ DWORD fl, _In_ PVOID pdv)
wiintAddFontResourceW(_In_ LPCWSTR lpszFilename)
tiiuiffiBOOLAngleArc(_In_ HDC hdc, _In_ int X, _In_ int Y, _In_ DWORD dwRadius, _In_ FLOAT eStartAngle, _In_ FLOAT eSweepAngle)
tuiuitiBOOLAnimatePalette(_In_ HPALETTE hpal, _In_ UINT iStartIndex, _In_ UINT cEntries, _In_ const PALETTEENTRY *ppe)
tiiiiiiiiiBOOLArc(_In_ HDC hdc, _In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect, _In_ int nXStartArc, _In_ int nYStartArc, _In_ int nXEndArc, _In_ int nYEndArc)
tiiiiiiiiiBOOLArcTo(_In_ HDC hdc, _In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect, _In_ int nXRadial1, _In_ int nYRadial1, _In_ int nXRadial2, _In_ int nYRadial2)
tiBOOLBeginPath(_In_ HDC hdc)
tiiiitiiuiiBOOLBitBlt(_In_ HDC hdcDest, _In_ int nXDest, _In_ int nYDest, _In_ int nWidth, _In_ int nHeight, _In_ HDC hdcSrc, _In_ int nXSrc, _In_ int nYSrc, _In_ DWORD dwRop)
tiBOOLCancelDC(_In_ HDC hdc)
tttuiiBOOLCheckColorsInGamut(HDC hDC, LPVOID lpRGBTriples, LPVOID lpBuffer, UINT nCount)
ttiintChoosePixelFormat(HDC hdc, const PIXELFORMATDESCRIPTOR *ppfd)
tiiiiiiiiiBOOLChord(_In_ HDC hdc, _In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect, _In_ int nXRadial1, _In_ int nYRadial1, _In_ int nXRadial2, _In_ int nYRadial2)
ttHENHMETAFILECloseEnhMetaFile(_In_ HDC hdc)
tiBOOLCloseFigure(_In_ HDC hdc)
ttHMETAFILECloseMetaFile(_In_ HDC hdc)
ttuiuiiBOOLColorCorrectPalette(HDC hDC, HPALETTE hPalette, DWORD dwFirstEntry, DWORD dwNumOfEntries)
ttuiiBOOLColorMatchToTarget(HDC hDC, HDC hdcTarget, DWORD uiAction)
tttiiintCombineRgn(_In_ HRGN hrgnDest, _In_ HRGN hrgnSrc1, _In_ HRGN hrgnSrc2, _In_ int fnCombineMode)
tttiBOOLCombineTransform(_Out_ LPXFORM lpxformResult, _In_ const XFORM *lpxform1, _In_ const XFORM *lpxform2)
tstHENHMETAFILECopyEnhMetaFile(_In_ HENHMETAFILE hemfSrc, _In_ LPCTSTR lpszFile)
tatHENHMETAFILECopyEnhMetaFileA(_In_ HENHMETAFILE hemfSrc, _In_ LPCSTR lpszFile)
twtHENHMETAFILECopyEnhMetaFileW(_In_ HENHMETAFILE hemfSrc, _In_ LPCWSTR lpszFile)
tstHMETAFILECopyMetaFile(_In_ HMETAFILE hmfSrc, _In_ LPCTSTR lpszFile)
tatHMETAFILECopyMetaFileA(_In_ HMETAFILE hmfSrc, _In_ LPCSTR lpszFile)
twtHMETAFILECopyMetaFileW(_In_ HMETAFILE hmfSrc, _In_ LPCWSTR lpszFile)
iiuiuittHBITMAPCreateBitmap(_In_ int nWidth, _In_ int nHeight, _In_ UINT cPlanes, _In_ UINT cBitsPerPel, _In_ const VOID *lpvBits)
ttHBITMAPCreateBitmapIndirect(_In_ const BITMAP *lpbm)
ttHBRUSHCreateBrushIndirect(_In_ const LOGBRUSH *lplb)
ttHCOLORSPACECreateColorSpace(LPLOGCOLORSPACE lpLogColorSpace)
ttHCOLORSPACECreateColorSpaceA(LPLOGCOLORSPACE lpLogColorSpace)
ttHCOLORSPACECreateColorSpaceW(LPLOGCOLORSPACE lpLogColorSpace)
tiitHBITMAPCreateCompatibleBitmap(_In_ HDC hdc, _In_ int nWidth, _In_ int nHeight)
ttHDCCreateCompatibleDC(_In_ HDC hdc)
sssttHDCCreateDC(LPCTSTR lpszDriver, _In_ LPCTSTR lpszDevice, LPCTSTR lpszOutput, _In_ const DEVMODE *lpInitData)
aaattHDCCreateDCA(LPCSTR lpszDriver, _In_ LPCSTR lpszDevice, LPCSTR lpszOutput, _In_ const DEVMODE *lpInitData)
wwwttHDCCreateDCW(LPCWSTR lpszDriver, _In_ LPCWSTR lpszDevice, LPCWSTR lpszOutput, _In_ const DEVMODE *lpInitData)
ttuittuitHBITMAPCreateDIBitmap(_In_ HDC hdc, _In_ const BITMAPINFOHEADER *lpbmih, _In_ DWORD fdwInit, _In_ const VOID *lpbInit, _In_ const BITMAPINFO *lpbmi, _In_ UINT fuUsage)
tuitHBRUSHCreateDIBPatternBrush(_In_ HGLOBAL hglbDIBPacked, _In_ UINT fuColorSpec)
tuitHBRUSHCreateDIBPatternBrushPt(_In_ const VOID *lpPackedDIB, _In_ UINT iUsage)
ttuittuitHBITMAPCreateDIBSection(_In_ HDC hdc, _In_ const BITMAPINFO *pbmi, _In_ UINT iUsage, _Out_ VOID **ppvBits, _In_ HANDLE hSection, _In_ DWORD dwOffset)
tiitHBITMAPCreateDiscardableBitmap(_In_ HDC hdc, _In_ int nWidth, _In_ int nHeight)
iiiitHRGNCreateEllipticRgn(_In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect)
ttHRGNCreateEllipticRgnIndirect(_In_ const RECT *lprc)
tststHDCCreateEnhMetaFile(_In_ HDC hdcRef, _In_ LPCTSTR lpFilename, _In_ const RECT *lpRect, _In_ LPCTSTR lpDescription)
tatatHDCCreateEnhMetaFileA(_In_ HDC hdcRef, _In_ LPCSTR lpFilename, _In_ const RECT *lpRect, _In_ LPCSTR lpDescription)
twtwtHDCCreateEnhMetaFileW(_In_ HDC hdcRef, _In_ LPCWSTR lpFilename, _In_ const RECT *lpRect, _In_ LPCWSTR lpDescription)
iiiiiuiuiuiuiuiuiuiuistHFONTCreateFont(_In_ int nHeight, _In_ int nWidth, _In_ int nEscapement, _In_ int nOrientation, _In_ int fnWeight, _In_ DWORD fdwItalic, _In_ DWORD fdwUnderline, _In_ DWORD fdwStrikeOut, _In_ DWORD fdwCharSet, _In_ DWORD fdwOutputPrecision, _In_ DWORD fdwClipPrecision, _In_ DWORD fdwQuality, _In_ DWORD fdwPitchAndFamily, _In_ LPCTSTR lpszFace)
iiiiiuiuiuiuiuiuiuiuiatHFONTCreateFontA(_In_ int nHeight, _In_ int nWidth, _In_ int nEscapement, _In_ int nOrientation, _In_ int fnWeight, _In_ DWORD fdwItalic, _In_ DWORD fdwUnderline, _In_ DWORD fdwStrikeOut, _In_ DWORD fdwCharSet, _In_ DWORD fdwOutputPrecision, _In_ DWORD fdwClipPrecision, _In_ DWORD fdwQuality, _In_ DWORD fdwPitchAndFamily, _In_ LPCSTR lpszFace)
ttHFONTCreateFontIndirect(_In_ const LOGFONT *lplf)
ttHFONTCreateFontIndirectA(_In_ const LOGFONT *lplf)
ttHFONTCreateFontIndirectEx(_In_ const ENUMLOGFONTEXDV *penumlfex)
ttHFONTCreateFontIndirectExA(_In_ const ENUMLOGFONTEXDV *penumlfex)
ttHFONTCreateFontIndirectExW(_In_ const ENUMLOGFONTEXDV *penumlfex)
ttHFONTCreateFontIndirectW(_In_ const LOGFONT *lplf)
iiiiiuiuiuiuiuiuiuiuiwtHFONTCreateFontW(_In_ int nHeight, _In_ int nWidth, _In_ int nEscapement, _In_ int nOrientation, _In_ int fnWeight, _In_ DWORD fdwItalic, _In_ DWORD fdwUnderline, _In_ DWORD fdwStrikeOut, _In_ DWORD fdwCharSet, _In_ DWORD fdwOutputPrecision, _In_ DWORD fdwClipPrecision, _In_ DWORD fdwQuality, _In_ DWORD fdwPitchAndFamily, _In_ LPCWSTR lpszFace)
ttHPALETTECreateHalftonePalette(_In_ HDC hdc)
iuitHBRUSHCreateHatchBrush(_In_ int fnStyle, _In_ COLORREF clrref)
sssttHDCCreateIC(_In_ LPCTSTR lpszDriver, _In_ LPCTSTR lpszDevice, LPCTSTR lpszOutput, _In_ const DEVMODE *lpdvmInit)
aaattHDCCreateICA(_In_ LPCSTR lpszDriver, _In_ LPCSTR lpszDevice, LPCSTR lpszOutput, _In_ const DEVMODE *lpdvmInit)
wwwttHDCCreateICW(_In_ LPCWSTR lpszDriver, _In_ LPCWSTR lpszDevice, LPCWSTR lpszOutput, _In_ const DEVMODE *lpdvmInit)
stHDCCreateMetaFile(_In_ LPCTSTR lpszFile)
atHDCCreateMetaFileA(_In_ LPCSTR lpszFile)
wtHDCCreateMetaFileW(_In_ LPCWSTR lpszFile)
ttHPALETTECreatePalette(_In_ const LOGPALETTE *lplgpl)
ttHBRUSHCreatePatternBrush(_In_ HBITMAP hbmp)
iiuitHPENCreatePen(_In_ int fnPenStyle, _In_ int nWidth, _In_ COLORREF crColor)
ttHPENCreatePenIndirect(_In_ const LOGPEN *lplgpn)
tiitHRGNCreatePolygonRgn(_In_ const POINT *lppt, _In_ int cPoints, _In_ int fnPolyFillMode)
ttiitHRGNCreatePolyPolygonRgn(_In_ const POINT *lppt, _In_ const INT *lpPolyCounts, _In_ int nCount, _In_ int fnPolyFillMode)
iiiitHRGNCreateRectRgn(_In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect)
ttHRGNCreateRectRgnIndirect(_In_ const RECT *lprc)
iiiiiitHRGNCreateRoundRectRgn(_In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect, _In_ int nWidthEllipse, _In_ int nHeightEllipse)
uisssiBOOLCreateScalableFontResource(_In_ DWORD fdwHidden, _In_ LPCTSTR lpszFontRes, _In_ LPCTSTR lpszFontFile, _In_ LPCTSTR lpszCurrentPath)
uiaaaiBOOLCreateScalableFontResourceA(_In_ DWORD fdwHidden, _In_ LPCSTR lpszFontRes, _In_ LPCSTR lpszFontFile, _In_ LPCSTR lpszCurrentPath)
uiwwwiBOOLCreateScalableFontResourceW(_In_ DWORD fdwHidden, _In_ LPCWSTR lpszFontRes, _In_ LPCWSTR lpszFontFile, _In_ LPCWSTR lpszCurrentPath)
uitHBRUSHCreateSolidBrush(_In_ COLORREF crColor)
tauiiintDDCCIGetCapabilitiesString(__in HANDLE hMonitor, __out LPSTR pszString, __in DWORD dwLength)
ttiintDDCCIGetCapabilitiesStringLength(__in HANDLE hMonitor, __out DWORD *pdwLength)
ttiintDDCCIGetTimingReport(__in HANDLE hMonitor, __out LPMC_TIMING_REPORT pmtr)
tuitttiintDDCCIGetVCPFeature(__in HANDLE hMonitor, __in DWORD dwVCPCode, __out_opt LPMC_VCP_CODE_TYPE pvct, __out DWORD *pdwCurrentValue, __out_opt DWORD *pdwMaximumValue)
tiintDDCCISaveCurrentSettings(HANDLE hMonitor)
tuiuiiintDDCCISetVCPFeature(__in HANDLE hMonitor, __in DWORD dwVCPCode, __in DWORD dwNewValue)
tiBOOLDeleteColorSpace(HCOLORSPACE hColorSpace)
tiBOOLDeleteDC(_In_ HDC hdc)
tiBOOLDeleteEnhMetaFile(_In_ HENHMETAFILE hemf)
tiBOOLDeleteMetaFile(_In_ HMETAFILE hmf)
tiBOOLDeleteObject(_In_ HGDIOBJ hObject)
tiuitiintDescribePixelFormat(HDC hdc, int iPixelFormat, UINT nBytes, LPPIXELFORMATDESCRIPTOR ppfd)
tiintDestroyPhysicalMonitorInternal(__in HANDLE hMonitor)
ttiiBOOLDPtoLP(_In_ HDC hdc, _Inout_ LPPOINT lpPoints, _In_ int nCount)
tiiaiintDrawEscape(_In_ HDC hdc, _In_ int nEscape, _In_ int cbInput, _In_ LPCSTR lpszInData)
tiiiiiBOOLEllipse(_In_ HDC hdc, _In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect)
tiBOOLEnableEUDC(_In_ HDC BOOL fEnableEUDC)
tiintEndDoc(_In_ HDC hdc)
tiintEndPage(_In_ HDC hdc)
tiBOOLEndPath(_In_ HDC hdc)
tttttiBOOLEnumEnhMetaFile(_In_ HDC hdc, _In_ HENHMETAFILE hemf, _In_ ENHMFENUMPROC lpEnhMetaFunc, _In_ LPVOID lpData, _In_ const RECT *lpRect)
tstutiintEnumFontFamilies(_In_ HDC hdc, _In_ LPCTSTR lpszFamily, _In_ FONTENUMPROC lpEnumFontFamProc, _In_ LPARAM lParam)
tatutiintEnumFontFamiliesA(_In_ HDC hdc, _In_ LPCSTR lpszFamily, _In_ FONTENUMPROC lpEnumFontFamProc, _In_ LPARAM lParam)
tttutuiiintEnumFontFamiliesEx(_In_ HDC hdc, _In_ LPLOGFONT lpLogfont, _In_ FONTENUMPROC lpEnumFontFamExProc, _In_ LPARAM lParam, DWORD dwFlags)
tttutuiiintEnumFontFamiliesExA(_In_ HDC hdc, _In_ LPLOGFONT lpLogfont, _In_ FONTENUMPROC lpEnumFontFamExProc, _In_ LPARAM lParam, DWORD dwFlags)
tttutuiiintEnumFontFamiliesExW(_In_ HDC hdc, _In_ LPLOGFONT lpLogfont, _In_ FONTENUMPROC lpEnumFontFamExProc, _In_ LPARAM lParam, DWORD dwFlags)
twtutiintEnumFontFamiliesW(_In_ HDC hdc, _In_ LPCWSTR lpszFamily, _In_ FONTENUMPROC lpEnumFontFamProc, _In_ LPARAM lParam)
tstutiintEnumFonts(_In_ HDC hdc, _In_ LPCTSTR lpFaceName, _In_ FONTENUMPROC lpFontFunc, _In_ LPARAM lParam)
tatutiintEnumFontsA(_In_ HDC hdc, _In_ LPCSTR lpFaceName, _In_ FONTENUMPROC lpFontFunc, _In_ LPARAM lParam)
twtutiintEnumFontsW(_In_ HDC hdc, _In_ LPCWSTR lpFaceName, _In_ FONTENUMPROC lpFontFunc, _In_ LPARAM lParam)
ttutiintEnumICMProfiles(HDC hDC, ICMENUMPROC lpEnumICMProfilesFunc, LPARAM lParam)
ttutiintEnumICMProfilesA(HDC hDC, ICMENUMPROC lpEnumICMProfilesFunc, LPARAM lParam)
ttutiintEnumICMProfilesW(HDC hDC, ICMENUMPROC lpEnumICMProfilesFunc, LPARAM lParam)
tttutiBOOLEnumMetaFile(_In_ HDC hdc, _In_ HMETAFILE hmf, _In_ MFENUMPROC lpMetaFunc, _In_ LPARAM lParam)
titutiintEnumObjects(_In_ HDC hdc, _In_ int nObjectType, _In_ GOBJENUMPROC lpObjectFunc, _In_ LPARAM lParam)
ttiBOOLEqualRgn(_In_ HRGN hSrcRgn1, _In_ HRGN hSrcRgn2)
tiiatiintEscape(_In_ HDC hdc, _In_ int nEscape, _In_ int cbInput, _In_ LPCSTR lpvInData, _Out_ LPVOID lpvOutData)
tiiiiiintExcludeClipRect(_In_ HDC hdc, _In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect)
uiuituittHPENExtCreatePen(_In_ DWORD dwPenStyle, _In_ DWORD dwWidth, _In_ const LOGBRUSH *lplb, _In_ DWORD dwStyleCount, _In_ const DWORD *lpStyle)
tuittHRGNExtCreateRegion(_In_ const XFORM *lpXform, _In_ DWORD nCount, _In_ const RGNDATA *lpRgnData)
tiiaiaiintExtEscape(_In_ HDC hdc, _In_ int nEscape, _In_ int cbInput, _In_ LPCSTR lpszInData, _In_ int cbOutput, _Out_ LPSTR lpszOutData)
tiiuiuiiBOOLExtFloodFill(_In_ HDC hdc, _In_ int nXStart, _In_ int nYStart, _In_ COLORREF crColor, _In_ UINT fuFillType)
ttiiintExtSelectClipRgn(_In_ HDC hdc, _In_ HRGN hrgn, _In_ int fnMode)
tiiuitsuitiBOOLExtTextOut(_In_ HDC hdc, _In_ int X, _In_ int Y, _In_ UINT fuOptions, _In_ const RECT *lprc, _In_ LPCTSTR lpString, _In_ UINT cbCount, _In_ const INT *lpDx)
tiiuitauitiBOOLExtTextOutA(_In_ HDC hdc, _In_ int X, _In_ int Y, _In_ UINT fuOptions, _In_ const RECT *lprc, _In_ LPCSTR lpString, _In_ UINT cbCount, _In_ const INT *lpDx)
tiiuitwuitiBOOLExtTextOutW(_In_ HDC hdc, _In_ int X, _In_ int Y, _In_ UINT fuOptions, _In_ const RECT *lprc, _In_ LPCWSTR lpString, _In_ UINT cbCount, _In_ const INT *lpDx)
tiBOOLFillPath(_In_ HDC hdc)
tttiBOOLFillRgn(_In_ HDC hdc, _In_ HRGN hrgn, _In_ HBRUSH hbr)
tiBOOLFlattenPath(_In_ HDC hdc)
tiiuiiBOOLFloodFill(_In_ HDC hdc, _In_ int nXStart, _In_ int nYStart, _In_ COLORREF crFill)
tttiiiBOOLFrameRgn(_In_ HDC hdc, _In_ HRGN hrgn, _In_ HBRUSH hbr, _In_ int nWidth, _In_ int nHeight)
tiiiitiiiiuiiBOOLGdiAlphaBlend(_In_ HDC hdcDest, _In_ int xoriginDest, _In_ int yoriginDest, _In_ int wDest, _In_ int hDest, _In_ HDC hdcSrc, _In_ int xoriginSrc, _In_ int yoriginSrc, _In_ int wSrc, _In_ int hSrc, _In_ BLENDFUNCTION ftn)
tuitiBOOLGdiComment(_In_ HDC hdc, _In_ UINT cbSize, _In_ const BYTE *lpData)
iBOOLGdiFlush(void)
uiDWORDGdiGetBatchLimit(void)
ttuituiuiiBOOLGdiGradientFill(_In_ HDC hdc, _In_ PTRIVERTEX pVertex, _In_ ULONG dwNumVertex, _In_ PVOID pMesh, _In_ ULONG dwNumMesh, _In_ ULONG dwMode)
uiuiDWORDGdiSetBatchLimit(_In_ DWORD dwLimit)
tiiiitiiiiuiiBOOLGdiTransparentBlt(_In_ HDC hdcDest, _In_ int xoriginDest, _In_ int yoriginDest, _In_ int wDest, _In_ int hDest, _In_ HDC hdcSrc, _In_ int xoriginSrc, _In_ int yoriginSrc, _In_ int wSrc, _In_ int hSrc, _In_ UINT crTransparent)
tiintGetArcDirection(_In_ HDC hdc)
ttiBOOLGetAspectRatioFilterEx(_In_ HDC hdc, _Out_ LPSIZE lpAspectRatio)
titiLONGGetBitmapBits(_In_ HBITMAP hbmp, _In_ LONG cbBuffer, _Out_ LPVOID lpvBits)
ttiBOOLGetBitmapDimensionEx(_In_ HBITMAP hBitmap, _Out_ LPSIZE lpDimension)
tuiCOLORREFGetBkColor(_In_ HDC hdc)
tiintGetBkMode(_In_ HDC hdc)
ttuiuiUINTGetBoundsRect(_In_ HDC hdc, _Out_ LPRECT lprcBounds, _In_ UINT flags)
ttiBOOLGetBrushOrgEx(_In_ HDC hdc, _Out_ LPPOINT lppt)
tuiuitiBOOLGetCharABCWidths(_In_ HDC hdc, _In_ UINT uFirstChar, _In_ UINT uLastChar, _Out_ LPABC lpabc)
tuiuitiBOOLGetCharABCWidthsA(_In_ HDC hdc, _In_ UINT uFirstChar, _In_ UINT uLastChar, _Out_ LPABC lpabc)
tuiuitiBOOLGetCharABCWidthsFloat(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ LPABCFLOAT lpABCF)
tuiuitiBOOLGetCharABCWidthsFloatA(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ LPABCFLOAT lpABCF)
tuiuitiBOOLGetCharABCWidthsFloatW(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ LPABCFLOAT lpABCF)
tuiuittiBOOLGetCharABCWidthsI(_In_ HDC hdc, _In_ UINT giFirst, _In_ UINT cgi, _In_ LPWORD pgi, _Out_ LPABC lpabc)
tuiuitiBOOLGetCharABCWidthsW(_In_ HDC hdc, _In_ UINT uFirstChar, _In_ UINT uLastChar, _Out_ LPABC lpabc)
tsiituiuiDWORDGetCharacterPlacement(_In_ HDC hdc, _In_ LPCTSTR lpString, _In_ int nCount, _In_ int nMaxExtent, _Inout_ LPGCP_RESULTS lpResults, _In_ DWORD dwFlags)
taiituiuiDWORDGetCharacterPlacementA(_In_ HDC hdc, _In_ LPCSTR lpString, _In_ int nCount, _In_ int nMaxExtent, _Inout_ LPGCP_RESULTS lpResults, _In_ DWORD dwFlags)
twiituiuiDWORDGetCharacterPlacementW(_In_ HDC hdc, _In_ LPCWSTR lpString, _In_ int nCount, _In_ int nMaxExtent, _Inout_ LPGCP_RESULTS lpResults, _In_ DWORD dwFlags)
tuiuitiBOOLGetCharWidth(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ LPINT lpBuffer)
tuiuitiBOOLGetCharWidth32(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ LPINT lpBuffer)
tuiuitiBOOLGetCharWidth32A(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ LPINT lpBuffer)
tuiuitiBOOLGetCharWidth32W(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ LPINT lpBuffer)
tuiuitiBOOLGetCharWidthA(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ LPINT lpBuffer)
tuiuitiBOOLGetCharWidthFloat(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ PFLOAT pxBuffer)
tuiuitiBOOLGetCharWidthFloatA(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ PFLOAT pxBuffer)
tuiuitiBOOLGetCharWidthFloatW(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ PFLOAT pxBuffer)
tuiuittiBOOLGetCharWidthI(_In_ HDC hdc, _In_ UINT giFirst, _In_ UINT cgi, _In_ LPWORD pgi, _Out_ LPINT lpBuffer)
tuiuitiBOOLGetCharWidthW(_In_ HDC hdc, _In_ UINT iFirstChar, _In_ UINT iLastChar, _Out_ LPINT lpBuffer)
ttiintGetClipBox(_In_ HDC hdc, _Out_ LPRECT lprc)
ttiintGetClipRgn(_In_ HDC hdc, _In_ HRGN hrgn)
ttiBOOLGetColorAdjustment(_In_ HDC hdc, _Out_ LPCOLORADJUSTMENT lpca)
ttHCOLORSPACEGetColorSpace(HDC hDC)
tuitHGDIOBJGetCurrentObject(_In_ HDC hdc, _In_ UINT uObjectType)
ttiBOOLGetCurrentPositionEx(_In_ HDC hdc, _Out_ LPPOINT lpPoint)
tuiCOLORREFGetDCBrushColor(_In_ HDC hdc)
ttiBOOLGetDCOrgEx(_In_ HDC hdc, _Out_ LPPOINT lpPoint)
tuiCOLORREFGetDCPenColor(_In_ HDC hdc)
tiiintGetDeviceCaps(_In_ HDC hdc, _In_ int nIndex)
ttiBOOLGetDeviceGammaRamp(HDC hDC, LPVOID lpRamp)
tuiuituiUINTGetDIBColorTable(_In_ HDC hdc, _In_ UINT uStartIndex, _In_ UINT cEntries, _Out_ RGBQUAD *pColors)
ttuiuittuiiintGetDIBits(_In_ HDC hdc, _In_ HBITMAP hbmp, _In_ UINT uStartScan, _In_ UINT cScanLines, _Out_ LPVOID lpvBits, _Inout_ LPBITMAPINFO lpbi, _In_ UINT uUsage)
stHENHMETAFILEGetEnhMetaFile(_In_ LPCTSTR lpszMetaFile)
atHENHMETAFILEGetEnhMetaFileA(_In_ LPCSTR lpszMetaFile)
tuituiUINTGetEnhMetaFileBits(_In_ HENHMETAFILE hemf, _In_ UINT cbBuffer, _Out_ LPBYTE lpbBuffer)
tuisuiUINTGetEnhMetaFileDescription(_In_ HENHMETAFILE hemf, _In_ UINT cchBuffer, _Out_ LPTSTR lpszDescription)
tuiauiUINTGetEnhMetaFileDescriptionA(_In_ HENHMETAFILE hemf, _In_ UINT cchBuffer, _Out_ LPSTR lpszDescription)
tuiwuiUINTGetEnhMetaFileDescriptionW(_In_ HENHMETAFILE hemf, _In_ UINT cchBuffer, _Out_ LPWSTR lpszDescription)
tuituiUINTGetEnhMetaFileHeader(_In_ HENHMETAFILE hemf, _In_ UINT cbBuffer, _Out_ LPENHMETAHEADER lpemh)
tuituiUINTGetEnhMetaFilePaletteEntries(_In_ HENHMETAFILE hemf, _In_ UINT cEntries, _Out_ LPPALETTEENTRY lppe)
tuituiUINTGetEnhMetaFilePixelFormat(HENHMETAFILE hemf, DWORD cbBuffer, const PIXELFORMATDESCRIPTOR *ppfd)
wtHENHMETAFILEGetEnhMetaFileW(_In_ LPCWSTR lpszMetaFile)
tuiuituiuiDWORDGetFontData(_In_ HDC hdc, _In_ DWORD dwTable, _In_ DWORD dwOffset, _Out_ LPVOID lpvBuffer, _In_ DWORD cbData)
tuiDWORDGetFontLanguageInfo(_In_ HDC hdc)
ttuiDWORDGetFontUnicodeRanges(_In_ HDC hdc, _Out_ LPGLYPHSET lpgs)
tsituiuiDWORDGetGlyphIndices(_In_ HDC hdc, _In_ LPCTSTR lpstr, _In_ int c, _Out_ LPWORD pgi, _In_ DWORD fl)
taituiuiDWORDGetGlyphIndicesA(_In_ HDC hdc, _In_ LPCSTR lpstr, _In_ int c, _Out_ LPWORD pgi, _In_ DWORD fl)
twituiuiDWORDGetGlyphIndicesW(_In_ HDC hdc, _In_ LPCWSTR lpstr, _In_ int c, _Out_ LPWORD pgi, _In_ DWORD fl)
tuiuituittuiDWORDGetGlyphOutline(_In_ HDC hdc, _In_ UINT uChar, _In_ UINT uFormat, _Out_ LPGLYPHMETRICS lpgm, _In_ DWORD cbBuffer, _Out_ LPVOID lpvBuffer, _In_ const MAT2 *lpmat2)
tuiuituittuiDWORDGetGlyphOutlineA(_In_ HDC hdc, _In_ UINT uChar, _In_ UINT uFormat, _Out_ LPGLYPHMETRICS lpgm, _In_ DWORD cbBuffer, _Out_ LPVOID lpvBuffer, _In_ const MAT2 *lpmat2)
tuiuituittuiDWORDGetGlyphOutlineW(_In_ HDC hdc, _In_ UINT uChar, _In_ UINT uFormat, _Out_ LPGLYPHMETRICS lpgm, _In_ DWORD cbBuffer, _Out_ LPVOID lpvBuffer, _In_ const MAT2 *lpmat2)
tiintGetGraphicsMode(_In_ HDC hdc)
ttsiBOOLGetICMProfile(HDC hDC, LPDWORD lpcbName, LPTSTR lpszFilename)
ttaiBOOLGetICMProfileA(HDC hDC, LPDWORD lpcbName, LPSTR lpszFilename)
ttwiBOOLGetICMProfileW(HDC hDC, LPDWORD lpcbName, LPWSTR lpszFilename)
tuituiDWORDGetKerningPairs(_In_ HDC hdc, _In_ DWORD nNumPairs, _Out_ LPKERNINGPAIR lpkrnpair)
tuituiDWORDGetKerningPairsA(_In_ HDC hdc, _In_ DWORD nNumPairs, _Out_ LPKERNINGPAIR lpkrnpair)
tuituiDWORDGetKerningPairsW(_In_ HDC hdc, _In_ DWORD nNumPairs, _Out_ LPKERNINGPAIR lpkrnpair)
tuiDWORDGetLayout(_In_ HDC hdc)
ttuiiBOOLGetLogColorSpace(HCOLORSPACE hColorSpace, LPLOGCOLORSPACE lpBuffer, DWORD nSize)
ttuiiBOOLGetLogColorSpaceA(HCOLORSPACE hColorSpace, LPLOGCOLORSPACE lpBuffer, DWORD nSize)
ttuiiBOOLGetLogColorSpaceW(HCOLORSPACE hColorSpace, LPLOGCOLORSPACE lpBuffer, DWORD nSize)
tiintGetMapMode(_In_ HDC hdc)
tuituiUINTGetMetaFileBitsEx(_In_ HMETAFILE hmf, _In_ UINT nSize, _Out_ LPVOID lpvData)
ttiintGetMetaRgn(_In_ HDC hdc, _In_ HRGN hrgn)
ttiBOOLGetMiterLimit(_In_ HDC hdc, _Out_ PFLOAT peLimit)
tuiuiCOLORREFGetNearestColor(_In_ HDC hdc, _In_ COLORREF crColor)
tuiuiUINTGetNearestPaletteIndex(_In_ HPALETTE hpal, _In_ COLORREF crColor)
wtiintGetNumberOfPhysicalMonitors(__in UNICODE_STRING *pstrDeviceName, __out LPDWORD pdwNumberOfPhysicalMonitors)
titiintGetObject(_In_ HGDIOBJ hgdiobj, _In_ int cbBuffer, _Out_ LPVOID lpvObject)
titiintGetObjectA(_In_ HGDIOBJ hgdiobj, _In_ int cbBuffer, _Out_ LPVOID lpvObject)
tuiDWORDGetObjectType(_In_ HGDIOBJ h)
titiintGetObjectW(_In_ HGDIOBJ hgdiobj, _In_ int cbBuffer, _Out_ LPVOID lpvObject)
tuituiUINTGetOutlineTextMetrics(_In_ HDC hdc, _In_ UINT cbData, _Out_opt_ LPOUTLINETEXTMETRIC lpOTM)
tuituiUINTGetOutlineTextMetricsA(_In_ HDC hdc, _In_ UINT cbData, _Out_opt_ LPOUTLINETEXTMETRIC lpOTM)
tuituiUINTGetOutlineTextMetricsW(_In_ HDC hdc, _In_ UINT cbData, _Out_opt_ LPOUTLINETEXTMETRIC lpOTM)
tuiuituiUINTGetPaletteEntries(_In_ HPALETTE hpal, _In_ UINT iStartIndex, _In_ UINT nEntries, _Out_ LPPALETTEENTRY lppe)
tttiiintGetPath(_In_ HDC hdc, _Out_ LPPOINT lpPoints, _Out_ LPBYTE lpTypes, _In_ int nSize)
tuiwiintGetPhysicalMonitorDescription(__in HANDLE hMonitor, __in DWORD dwPhysicalMonitorDescriptionSizeInChars, __out LPWSTR szPhysicalMonitorDescription)
wuittiintGetPhysicalMonitors(__in UNICODE_STRING *pstrDeviceName, __in DWORD dwPhysicalMonitorArraySize, __out DWORD *pdwNumPhysicalMonitorHandlesInArray, __out HANDLE *phPhysicalMonitorArray)
tiiuiCOLORREFGetPixel(_In_ HDC hdc, _In_ int nXPos, _In_ int nYPos)
tiintGetPixelFormat(HDC hDC)
tiintGetPolyFillMode(_In_ HDC hdc)
ttiiintGetRandomRgn(_In_ HDC hdc, _In_ HRGN hrgn, _In_ INT iNum)
tuiiBOOLGetRasterizerCaps(_Out_ LPRASTERIZER_STATUS lprs, _In_ UINT cb)
tuituiDWORDGetRegionData(_In_ HRGN hRgn, _In_ DWORD dwCount, _Out_ LPRGNDATA lpRgnData)
ttiintGetRgnBox(_In_ HRGN hrgn, _Out_ LPRECT lprc)
tiintGetROP2(_In_ HDC hdc)
itHGDIOBJGetStockObject(_In_ int fnObject)
tiintGetStretchBltMode(_In_ HDC hdc)
tuiuituiUINTGetSystemPaletteEntries(_In_ HDC hdc, _In_ UINT iStartIndex, _In_ UINT nEntries, _Out_ LPPALETTEENTRY lppe)
tuiUINTGetSystemPaletteUse(_In_ HDC hdc)
tuiUINTGetTextAlign(_In_ HDC hdc)
tiintGetTextCharacterExtra(_In_ HDC hdc)
tiintGetTextCharset(_In_ HDC hdc)
ttuiiintGetTextCharsetInfo(_In_ HDC hdc, _Out_opt_ LPFONTSIGNATURE lpSig, _In_ DWORD dwFlags)
tuiCOLORREFGetTextColor(_In_ HDC hdc)
tsiitttiBOOLGetTextExtentExPoint(_In_ HDC hdc, _In_ LPCTSTR lpszStr, _In_ int cchString, _In_ int nMaxExtent, _Out_ LPINT lpnFit, _Out_ LPINT alpDx, _Out_ LPSIZE lpSize)
taiitttiBOOLGetTextExtentExPointA(_In_ HDC hdc, _In_ LPCSTR lpszStr, _In_ int cchString, _In_ int nMaxExtent, _Out_ LPINT lpnFit, _Out_ LPINT alpDx, _Out_ LPSIZE lpSize)
ttiitttiBOOLGetTextExtentExPointI(_In_ HDC hdc, _In_ LPWORD pgiIn, _In_ int cgi, _In_ int nMaxExtent, _Out_ LPINT lpnFit, _Out_ LPINT alpDx, _Out_ LPSIZE lpSize)
twiitttiBOOLGetTextExtentExPointW(_In_ HDC hdc, _In_ LPCWSTR lpszStr, _In_ int cchString, _In_ int nMaxExtent, _Out_ LPINT lpnFit, _Out_ LPINT alpDx, _Out_ LPSIZE lpSize)
tsitiBOOLGetTextExtentPoint(_In_ HDC hdc, _In_ LPCTSTR lpString, _In_ int cbString, _Out_ LPSIZE lpSize)
tsitiBOOLGetTextExtentPoint32(_In_ HDC hdc, _In_ LPCTSTR lpString, _In_ int c, _Out_ LPSIZE lpSize)
taitiBOOLGetTextExtentPoint32A(_In_ HDC hdc, _In_ LPCSTR lpString, _In_ int c, _Out_ LPSIZE lpSize)
twitiBOOLGetTextExtentPoint32W(_In_ HDC hdc, _In_ LPCWSTR lpString, _In_ int c, _Out_ LPSIZE lpSize)
taitiBOOLGetTextExtentPointA(_In_ HDC hdc, _In_ LPCSTR lpString, _In_ int cbString, _Out_ LPSIZE lpSize)
ttitiBOOLGetTextExtentPointI(_In_ HDC hdc, _In_ LPWORD pgiIn, _In_ int cgi, _Out_ LPSIZE lpSize)
twitiBOOLGetTextExtentPointW(_In_ HDC hdc, _In_ LPCWSTR lpString, _In_ int cbString, _Out_ LPSIZE lpSize)
tisiintGetTextFace(_In_ HDC hdc, _In_ int nCount, _Out_ LPTSTR lpFaceName)
tiaiintGetTextFaceA(_In_ HDC hdc, _In_ int nCount, _Out_ LPSTR lpFaceName)
tiwiintGetTextFaceW(_In_ HDC hdc, _In_ int nCount, _Out_ LPWSTR lpFaceName)
ttiBOOLGetTextMetrics(_In_ HDC hdc, _Out_ LPTEXTMETRIC lptm)
ttiBOOLGetTextMetricsA(_In_ HDC hdc, _Out_ LPTEXTMETRIC lptm)
ttiBOOLGetTextMetricsW(_In_ HDC hdc, _Out_ LPTEXTMETRIC lptm)
ttiBOOLGetViewportExtEx(_In_ HDC hdc, _Out_ LPSIZE lpSize)
ttiBOOLGetViewportOrgEx(_In_ HDC hdc, _Out_ LPPOINT lpPoint)
ttiBOOLGetWindowExtEx(_In_ HDC hdc, _Out_ LPSIZE lpSize)
ttiBOOLGetWindowOrgEx(_In_ HDC hdc, _Out_ LPPOINT lpPoint)
tuitituiUINTGetWinMetaFileBits(_In_ HENHMETAFILE hemf, _In_ UINT cbBuffer, _Out_ LPBYTE lpbBuffer, _In_ INT fnMapMode, _In_ HDC hdcRef)
ttiBOOLGetWorldTransform(_In_ HDC hdc, _Out_ LPXFORM lpXform)
tiiiiiintIntersectClipRect(_In_ HDC hdc, _In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect)
ttiBOOLInvertRgn(_In_ HDC hdc, _In_ HRGN hrgn)
iiiitutiBOOLLineDDA(_In_ int nXStart, _In_ int nYStart, _In_ int nXEnd, _In_ int nYEnd, _In_ LINEDDAPROC lpLineFunc, _In_ LPARAM lpData)
tiiiBOOLLineTo(_In_ HDC hdc, _In_ int nXEnd, _In_ int nYEnd)
ttiiBOOLLPtoDP(_In_ HDC hdc, _Inout_ LPPOINT lpPoints, _In_ int nCount)
tiiiitiitiiuiiBOOLMaskBlt(_In_ HDC hdcDest, _In_ int nXDest, _In_ int nYDest, _In_ int nWidth, _In_ int nHeight, _In_ HDC hdcSrc, _In_ int nXSrc, _In_ int nYSrc, _In_ HBITMAP hbmMask, _In_ int xMask, _In_ int yMask, _In_ DWORD dwRop)
ttuiiBOOLModifyWorldTransform(_In_ HDC hdc, _In_ const XFORM *lpXform, _In_ DWORD iMode)
tiitiBOOLMoveToEx(_In_ HDC hdc, _In_ int X, _In_ int Y, _Out_ LPPOINT lpPoint)
tiiiintOffsetClipRgn(_In_ HDC hdc, _In_ int nXOffset, _In_ int nYOffset)
tiiiintOffsetRgn(_In_ HRGN hrgn, _In_ int nXOffset, _In_ int nYOffset)
tiitiBOOLOffsetViewportOrgEx(_In_ HDC hdc, _In_ int nXOffset, _In_ int nYOffset, _Out_ LPPOINT lpPoint)
tiitiBOOLOffsetWindowOrgEx(_In_ HDC hdc, _In_ int nXOffset, _In_ int nYOffset, _Out_ LPPOINT lpPoint)
ttiBOOLPaintRgn(_In_ HDC hdc, _In_ HRGN hrgn)
tiiiiuiiBOOLPatBlt(_In_ HDC hdc, _In_ int nXLeft, _In_ int nYLeft, _In_ int nWidth, _In_ int nHeight, _In_ DWORD dwRop)
ttHRGNPathToRegion(_In_ HDC hdc)
tiiiiiiiiiBOOLPie(_In_ HDC hdc, _In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect, _In_ int nXRadial1, _In_ int nYRadial1, _In_ int nXRadial2, _In_ int nYRadial2)
tttiBOOLPlayEnhMetaFile(_In_ HDC hdc, _In_ HENHMETAFILE hemf, _In_ const RECT *lpRect)
tttuiiBOOLPlayEnhMetaFileRecord(_In_ HDC hdc, _In_ LPHANDLETABLE lpHandletable, _In_ const ENHMETARECORD *lpEnhMetaRecord, _In_ UINT nHandles)
ttiBOOLPlayMetaFile(_In_ HDC hdc, _In_ HMETAFILE hmf)
tttuiiBOOLPlayMetaFileRecord(_In_ HDC hdc, _In_ LPHANDLETABLE lpHandletable, _In_ LPMETARECORD lpMetaRecord, _In_ UINT nHandles)
tttiiiitiiiBOOLPlgBlt(_In_ HDC hdcDest, _In_ const POINT *lpPoint, _In_ HDC hdcSrc, _In_ int nXSrc, _In_ int nYSrc, _In_ int nWidth, _In_ int nHeight, _In_ HBITMAP hbmMask, _In_ int xMask, _In_ int yMask)
ttuiiBOOLPolyBezier(_In_ HDC hdc, _In_ const POINT *lppt, _In_ DWORD cPoints)
ttuiiBOOLPolyBezierTo(_In_ HDC hdc, _In_ const POINT *lppt, _In_ DWORD cCount)
tttiiBOOLPolyDraw(_In_ HDC hdc, _In_ const POINT *lppt, _In_ const BYTE *lpbTypes, _In_ int cCount)
ttiiBOOLPolygon(_In_ HDC hdc, _In_ const POINT *lpPoints, _In_ int nCount)
ttiiBOOLPolyline(_In_ HDC hdc, _In_ const POINT *lppt, _In_ int cPoints)
ttuiiBOOLPolylineTo(_In_ HDC hdc, _In_ const POINT *lppt, _In_ DWORD cCount)
tttiiBOOLPolyPolygon(_In_ HDC hdc, _In_ const POINT *lpPoints, _In_ const INT *lpPolyCounts, _In_ int nCount)
tttuiiBOOLPolyPolyline(_In_ HDC hdc, _In_ const POINT *lppt, _In_ const DWORD *lpdwPolyPoints, _In_ DWORD cCount)
ttiiBOOLPolyTextOut(_In_ HDC hdc, _In_ const POLYTEXT *pptxt, _In_ int cStrings)
ttiiBOOLPolyTextOutA(_In_ HDC hdc, _In_ const POLYTEXT *pptxt, _In_ int cStrings)
ttiiBOOLPolyTextOutW(_In_ HDC hdc, _In_ const POLYTEXT *pptxt, _In_ int cStrings)
tiiiBOOLPtInRegion(_In_ HRGN hrgn, _In_ int X, _In_ int Y)
tiiiBOOLPtVisible(_In_ HDC hdc, _In_ int X, _In_ int Y)
tuiUINTRealizePalette(_In_ HDC hdc)
tiiiiiBOOLRectangle(_In_ HDC hdc, _In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect)
ttiBOOLRectInRegion(_In_ HRGN hrgn, _In_ const RECT *lprc)
ttiBOOLRectVisible(_In_ HDC hDC, _In_ const RECT *lprc)
tiBOOLRemoveFontMemResourceEx(_In_ HANDLE fh)
siBOOLRemoveFontResource(_In_ LPCTSTR lpFileName)
aiBOOLRemoveFontResourceA(_In_ LPCSTR lpFileName)
suitiBOOLRemoveFontResourceEx(_In_ LPCTSTR lpFileName, _In_ DWORD fl, _In_ PVOID pdv)
auitiBOOLRemoveFontResourceExA(_In_ LPCSTR lpFileName, _In_ DWORD fl, _In_ PVOID pdv)
wuitiBOOLRemoveFontResourceExW(_In_ LPCWSTR lpFileName, _In_ DWORD fl, _In_ PVOID pdv)
wiBOOLRemoveFontResourceW(_In_ LPCWSTR lpFileName)
tttHDCResetDC(_In_ HDC hdc, _In_ const DEVMODE *lpInitData)
tttHDCResetDCA(_In_ HDC hdc, _In_ const DEVMODE *lpInitData)
tttHDCResetDCW(_In_ HDC hdc, _In_ const DEVMODE *lpInitData)
tuiiBOOLResizePalette(_In_ HPALETTE hpal, _In_ UINT nEntries)
tiiBOOLRestoreDC(_In_ HDC hdc, _In_ int nSavedDC)
tiiiiiiiBOOLRoundRect(_In_ HDC hdc, _In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect, _In_ int nWidth, _In_ int nHeight)
tiintSaveDC(_In_ HDC hdc)
tiiiitiBOOLScaleViewportExtEx(_In_ HDC hdc, _In_ int Xnum, _In_ int Xdenom, _In_ int Ynum, _In_ int Ydenom, _Out_ LPSIZE lpSize)
tiiiitiBOOLScaleWindowExtEx(_In_ HDC hdc, _In_ int Xnum, _In_ int Xdenom, _In_ int Ynum, _In_ int Ydenom, _Out_ LPSIZE lpSize)
tiiBOOLSelectClipPath(_In_ HDC hdc, _In_ int iMode)
ttiintSelectClipRgn(_In_ HDC hdc, _In_ HRGN hrgn)
tttHGDIOBJSelectObject(_In_ HDC hdc, _In_ HGDIOBJ hgdiobj)
ttitHPALETTESelectPalette(_In_ HDC hdc, _In_ HPALETTE hpal, _In_ BOOL bForceBackground)
ttiintSetAbortProc(_In_ HDC hdc, _In_ ABORTPROC lpAbortProc)
tiiintSetArcDirection(_In_ HDC hdc, _In_ int ArcDirection)
tuitiLONGSetBitmapBits(_In_ HBITMAP hbmp, _In_ DWORD cBytes, _In_ const VOID *lpBits)
tiitiBOOLSetBitmapDimensionEx(_In_ HBITMAP hBitmap, _In_ int nWidth, _In_ int nHeight, _Out_ LPSIZE lpSize)
tuiuiCOLORREFSetBkColor(_In_ HDC hdc, _In_ COLORREF crColor)
tiiintSetBkMode(_In_ HDC hdc, _In_ int iBkMode)
ttuiuiUINTSetBoundsRect(_In_ HDC hdc, _In_ const RECT *lprcBounds, _In_ UINT flags)
tiitiBOOLSetBrushOrgEx(_In_ HDC hdc, _In_ int nXOrg, _In_ int nYOrg, _Out_ LPPOINT lppt)
ttiBOOLSetColorAdjustment(_In_ HDC hdc, _In_ const COLORADJUSTMENT *lpca)
tttHCOLORSPACESetColorSpace(HCD hDC, HCOLORSPACE hColorSpace)
tuiuiCOLORREFSetDCBrushColor(_In_ HDC hdc, _In_ COLORREF crColor)
tuiuiCOLORREFSetDCPenColor(_In_ HDC hdc, _In_ COLORREF crColor)
ttiBOOLSetDeviceGammaRamp(HDC hDC, LPVOID lpRamp)
tuiuituiUINTSetDIBColorTable(_In_ HDC hdc, _In_ UINT uStartIndex, _In_ UINT cEntries, _In_ const RGBQUAD *pColors)
ttuiuittuiiintSetDIBits(_In_ HDC hdc, _In_ HBITMAP hbmp, _In_ UINT uStartScan, _In_ UINT cScanLines, _In_ const VOID *lpvBits, _In_ const BITMAPINFO *lpbmi, _In_ UINT fuColorUse)
tiiuiuiiiuiuittuiiintSetDIBitsToDevice(_In_ HDC hdc, _In_ int XDest, _In_ int YDest, _In_ DWORD dwWidth, _In_ DWORD dwHeight, _In_ int XSrc, _In_ int YSrc, _In_ UINT uStartScan, _In_ UINT cScanLines, _In_ const VOID *lpvBits, _In_ const BITMAPINFO *lpbmi, _In_ UINT fuColorUse)
uittHENHMETAFILESetEnhMetaFileBits(_In_ UINT cbBuffer, _In_ const BYTE *lpData)
tiiintSetGraphicsMode(_In_ HDC hdc, _In_ int iMode)
tiiintSetICMMode(HDC hDC, int iEnableICM)
tsiBOOLSetICMProfile(HDC hDC, LPTSTR lpFileName)
taiBOOLSetICMProfileA(HDC hDC, LPSTR lpFileName)
twiBOOLSetICMProfileW(HDC hDC, LPWSTR lpFileName)
tuiuiDWORDSetLayout(_In_ HDC hdc, _In_ DWORD dwLayout)
tiiintSetMapMode(_In_ HDC hdc, _In_ int fnMapMode)
tuiuiDWORDSetMapperFlags(_In_ HDC hdc, _In_ DWORD dwFlag)
uittHMETAFILESetMetaFileBitsEx(_In_ UINT nSize, _In_ const BYTE *lpData)
tiintSetMetaRgn(_In_ HDC hdc)
tftiBOOLSetMiterLimit(_In_ HDC hdc, _In_ FLOAT eNewLimit, _Out_ PFLOAT peOldLimit)
tuiuituiUINTSetPaletteEntries(_In_ HPALETTE hpal, _In_ UINT iStart, _In_ UINT cEntries, _In_ const PALETTEENTRY *lppe)
tiiuiuiCOLORREFSetPixel(_In_ HDC hdc, _In_ int X, _In_ int Y, _In_ COLORREF crColor)
titiBOOLSetPixelFormat(HDC hdc, int iPixelFormat, const PIXELFORMATDESCRIPTOR *ppfd)
tiiuiiBOOLSetPixelV(_In_ HDC hdc, _In_ int X, _In_ int Y, _In_ COLORREF crColor)
tiiintSetPolyFillMode(_In_ HDC hdc, _In_ int iPolyFillMode)
tiiiiiBOOLSetRectRgn(_In_ HRGN hrgn, _In_ int nLeftRect, _In_ int nTopRect, _In_ int nRightRect, _In_ int nBottomRect)
tiiintSetROP2(_In_ HDC hdc, _In_ int fnDrawMode)
tiiintSetStretchBltMode(_In_ HDC hdc, _In_ int iStretchMode)
tuiuiUINTSetSystemPaletteUse(_In_ HDC hdc, _In_ UINT uUsage)
tuiuiUINTSetTextAlign(_In_ HDC hdc, _In_ UINT fMode)
tiiintSetTextCharacterExtra(_In_ HDC hdc, _In_ int nCharExtra)
tuiuiCOLORREFSetTextColor(_In_ HDC hdc, _In_ COLORREF crColor)
tiiiBOOLSetTextJustification(_In_ HDC hdc, _In_ int nBreakExtra, _In_ int nBreakCount)
tiitiBOOLSetViewportExtEx(_In_ HDC hdc, _In_ int nXExtent, _In_ int nYExtent, _Out_ LPSIZE lpSize)
tiitiBOOLSetViewportOrgEx(_In_ HDC hdc, _In_ int X, _In_ int Y, _Out_ LPPOINT lpPoint)
tiitiBOOLSetWindowExtEx(_In_ HDC hdc, _In_ int nXExtent, _In_ int nYExtent, _Out_ LPSIZE lpSize)
tiitiBOOLSetWindowOrgEx(_In_ HDC hdc, _In_ int X, _In_ int Y, _Out_ LPPOINT lpPoint)
uittttHENHMETAFILESetWinMetaFileBits(_In_ UINT cbBuffer, _In_ const BYTE *lpbBuffer, _In_ HDC hdcRef, _In_ const METAFILEPICT *lpmfp)
ttiBOOLSetWorldTransform(_In_ HDC hdc, _In_ const XFORM *lpXform)
ttiintStartDoc(_In_ HDC hdc, _In_ const DOCINFO *lpdi)
ttiintStartDocA(_In_ HDC hdc, _In_ const DOCINFO *lpdi)
ttiintStartDocW(_In_ HDC hdc, _In_ const DOCINFO *lpdi)
tiintStartPage(_In_ HDC hdc)
tiiiitiiiiuiiBOOLStretchBlt(_In_ HDC hdcDest, _In_ int nXOriginDest, _In_ int nYOriginDest, _In_ int nWidthDest, _In_ int nHeightDest, _In_ HDC hdcSrc, _In_ int nXOriginSrc, _In_ int nYOriginSrc, _In_ int nWidthSrc, _In_ int nHeightSrc, _In_ DWORD dwRop)
tiiiiiiiittuiuiiintStretchDIBits(_In_ HDC hdc, _In_ int XDest, _In_ int YDest, _In_ int nDestWidth, _In_ int nDestHeight, _In_ int XSrc, _In_ int YSrc, _In_ int nSrcWidth, _In_ int nSrcHeight, _In_ const VOID *lpBits, _In_ const BITMAPINFO *lpBitsInfo, _In_ UINT iUsage, _In_ DWORD dwRop)
tiBOOLStrokeAndFillPath(_In_ HDC hdc)
tiBOOLStrokePath(_In_ HDC hdc)
tiBOOLSwapBuffers(HDC hDC)
tiisiiBOOLTextOut(_In_ HDC hdc, _In_ int nXStart, _In_ int nYStart, _In_ LPCTSTR lpString, _In_ int cchString)
tiiaiiBOOLTextOutA(_In_ HDC hdc, _In_ int nXStart, _In_ int nYStart, _In_ LPCSTR lpString, _In_ int cchString)
tiiwiiBOOLTextOutW(_In_ HDC hdc, _In_ int nXStart, _In_ int nYStart, _In_ LPCWSTR lpString, _In_ int cchString)
ttuiiBOOLTranslateCharsetInfo(_Inout_ DWORD FAR *lpSrc, _Out_ LPCHARSETINFO lpCs, _In_ DWORD dwFlags)
tiBOOLUnrealizeObject(_In_ HGDIOBJ hgdiobj)
tiBOOLUpdateColors(_In_ HDC hdc)
uissuiiBOOLUpdateICMRegKey(DWORD dwReserved, LPTSTR lpszCMID, LPTSTR lpszFileName, UINT nCommand)
uiaauiiBOOLUpdateICMRegKeyA(DWORD dwReserved, LPSTR lpszCMID, LPSTR lpszFileName, UINT nCommand)
uiwwuiiBOOLUpdateICMRegKeyW(DWORD dwReserved, LPWSTR lpszCMID, LPWSTR lpszFileName, UINT nCommand)
tiBOOLWidenPath(_In_ HDC hdc)

Gdiplus.dll

tiiiiiiuiGpStatusGdipAddPathArc(GpPath* path,REAL x,REAL y,REAL width,REAL height,REAL startAngle,REAL sweepAngle)
tiiiiiiuiGpStatusGdipAddPathArcI(GpPath* path,INT x,INT y,INT width,INT height,REAL startAngle,REAL sweepAngle)
tiiiiiiiiuiGpStatusGdipAddPathBezier(GpPath* path,REAL x1,REAL y1,REAL x2,REAL y2,REAL x3,REAL y3,REAL x4,REAL y4)
tiiiiiiiiuiGpStatusGdipAddPathBezierI(GpPath* path,INT x1,INT y1,INT x2,INT y2,INT x3,INT y3,INT x4,INT y4)
ttiuiGpStatusGdipAddPathBeziers(GpPath* path,GDIPGpPointF* points,INT count)
ttiuiGpStatusGdipAddPathBeziersI(GpPath* path,GDIPGpPoint* points,INT count)
ttiuiGpStatusGdipAddPathClosedCurve(GpPath* path,GDIPGpPointF* points,INT count)
ttiiuiGpStatusGdipAddPathClosedCurve2(GpPath* path,GDIPGpPointF* points,INT count,REAL tension)
ttiiuiGpStatusGdipAddPathClosedCurve2I(GpPath* path,GDIPGpPoint* points,INT count,REAL tension)
ttiuiGpStatusGdipAddPathClosedCurveI(GpPath* path,GDIPGpPoint* points,INT count)
ttiuiGpStatusGdipAddPathCurve(GpPath* path,GDIPGpPointF* points,INT count)
ttiiuiGpStatusGdipAddPathCurve2(GpPath* path,GDIPGpPointF* points,INT count,REAL tension)
ttiiuiGpStatusGdipAddPathCurve2I(GpPath* path,GDIPGpPoint* points,INT count,REAL tension)
ttiiiiuiGpStatusGdipAddPathCurve3(GpPath* path,GDIPGpPointF* points,INT count,INT offset,INT numberOfSegments,REAL tension)
ttiiiiuiGpStatusGdipAddPathCurve3I(GpPath* path,GDIPGpPoint* points,INT count,INT offset,INT numberOfSegments,REAL tension)
ttiuiGpStatusGdipAddPathCurveI(GpPath* path,GDIPGpPoint* points,INT count)
tiiiiuiGpStatusGdipAddPathEllipse(GpPath* path,REAL x,REAL y,REAL width,REAL height)
tiiiiuiGpStatusGdipAddPathEllipseI(GpPath* path,INT x,INT y,INT width,INT height)
tiiiiuiGpStatusGdipAddPathLine(GpPath* path,REAL x1,REAL y1,REAL x2,REAL y2)
ttiuiGpStatusGdipAddPathLine2(GpPath* path,GDIPGpPointF* points,INT count)
ttiuiGpStatusGdipAddPathLine2I(GpPath* path,GDIPGpPoint* points,INT count)
tiiiiuiGpStatusGdipAddPathLineI(GpPath* path,INT x1,INT y1,INT x2,INT y2)
ttiuiGpStatusGdipAddPathPath(GpPath* path,GDIPGpPath* addingPath,BOOL connect)
tiiiiiiuiGpStatusGdipAddPathPie(GpPath* path,REAL x,REAL y,REAL width,REAL height,REAL startAngle,REAL sweepAngle)
tiiiiiiuiGpStatusGdipAddPathPieI(GpPath* path,INT x,INT y,INT width,INT height,REAL startAngle,REAL sweepAngle)
ttiuiGpStatusGdipAddPathPolygon(GpPath* path,GDIPGpPointF* points,INT count)
ttiuiGpStatusGdipAddPathPolygonI(GpPath* path,GDIPGpPoint* points,INT count)
tiiiiuiGpStatusGdipAddPathRectangle(GpPath* path,REAL x,REAL y,REAL width,REAL height)
tiiiiuiGpStatusGdipAddPathRectangleI(GpPath* path,INT x,INT y,INT width,INT height)
ttiuiGpStatusGdipAddPathRectangles(GpPath* path,GDIPGpRectF* rects,INT count)
ttiuiGpStatusGdipAddPathRectanglesI(GpPath* path,GDIPGpRect* rects,INT count)
ttitiittuiGpStatusGdipAddPathString(GpPath* path,GDIPWCHAR* string,INT length,GDIPGpFontFamily* family,INT style,REAL emSize,GDIPRectF* layoutRect,GDIPGpStringFormat* format)
ttitiittuiGpStatusGdipAddPathStringI(GpPath* path,GDIPWCHAR* string,INT length,GDIPGpFontFamily* family,INT style,REAL emSize,GDIPRect* layoutRect,GDIPGpStringFormat* format)
uttvoid*GdipAlloc(size_t size)
tttuituiGpStatusGdipBeginContainer(GpGraphics* graphics,GDIPGpRectF* dstrect,GDIPGpRectF* srcrect,GpUnit unit,GraphicsContainer* state)
ttuiGpStatusGdipBeginContainer2(GpGraphics* graphics,GraphicsContainer* state)
tttuituiGpStatusGdipBeginContainerI(GpGraphics* graphics,GDIPGpRect* dstrect,GDIPGpRect* srcrect,GpUnit unit,GraphicsContainer* state)
tiituiGpStatusGdipBitmapGetPixel(GpBitmap* bitmap,INT x,INT y,ARGB* color)
ttuiituiGpStatusGdipBitmapLockBits(GpBitmap* bitmap,GDIPGpRect* rect,UINT flags,PixelFormat format,BitmapData* lockedBitmapData)
tiiuiuiGpStatusGdipBitmapSetPixel(GpBitmap* bitmap,INT x,INT y,ARGB color)
tiiuiGpStatusGdipBitmapSetResolution(GpBitmap* bitmap,REAL xdpi,REAL ydpi)
ttuiGpStatusGdipBitmapUnlockBits(GpBitmap* bitmap,BitmapData* lockedBitmapData)
tuiGpStatusGdipClearPathMarkers(GpPath* path)
iiiiittuiGpStatusGdipCloneBitmapArea(REAL x,REAL y,REAL width,REAL height,PixelFormat format,GpBitmap* srcBitmap,GpBitmap* *dstBitmap)
iiiiittuiGpStatusGdipCloneBitmapAreaI(INT x,INT y,INT width,INT height,PixelFormat format,GpBitmap* srcBitmap,GpBitmap* *dstBitmap)
ttuiGpStatusGdipCloneBrush(GpBrush* brush,GpBrush* *cloneBrush)
ttuiGpStatusGdipCloneCustomLineCap(GpCustomLineCap* customCap,GpCustomLineCap** clonedCap)
ttuiGpStatusGdipCloneFont(GpFont* font,GpFont** cloneFont)
ttuiGpStatusGdipCloneFontFamily(GpFontFamily* FontFamily,GpFontFamily* *clonedFontFamily)
ttuiGpStatusGdipCloneImage(GpImage* image,GpImage* *cloneImage)
ttuiGpStatusGdipCloneImageAttributes(GDIPGpImageAttributes* imageattr,GpImageAttributes* *cloneImageattr)
ttuiGpStatusGdipCloneMatrix(GpMatrix* matrix,GpMatrix* *cloneMatrix)
ttuiGpStatusGdipClonePath(GpPath* path,GpPath* *clonePath)
ttuiGpStatusGdipClonePen(GpPen* pen,GpPen* *clonepen)
ttuiGpStatusGdipCloneRegion(GpRegion* region,GpRegion* *cloneRegion)
ttuiGpStatusGdipCloneStringFormat(GDIPGpStringFormat* format,GpStringFormat* *newFormat)
tuiGpStatusGdipClosePathFigure(GpPath* path)
tuiGpStatusGdipClosePathFigures(GpPath* path)
tttuiGpStatusGdipCombineRegionPath(GpRegion* region,GpPath* path,CombineMode combineMode)
tttuiGpStatusGdipCombineRegionRect(GpRegion* region,GDIPGpRectF* rect,CombineMode combineMode)
tttuiGpStatusGdipCombineRegionRectI(GpRegion* region,GDIPGpRect* rect,CombineMode combineMode)
tttuiGpStatusGdipCombineRegionRegion(GpRegion* region,GpRegion* region2,CombineMode combineMode)
tuituiGpStatusGdipComment(GpGraphics* graphics,UINT sizeData,GDIPBYTE* data)
iiituiGpStatusGdipCreateAdjustableArrowCap(REAL height,REAL width,BOOL isFilled,GpAdjustableArrowCap* *cap)
ttuiGpStatusGdipCreateBitmapFromDirectDrawSurface(IDirectDrawSurface7* surface,GpBitmap** bitmap)
ttuiGpStatusGdipCreateBitmapFromFile(GDIPWCHAR* filename,GpBitmap* *bitmap)
ttuiGpStatusGdipCreateBitmapFromFileICM(GDIPWCHAR* filename,GpBitmap* *bitmap)
tttuiGpStatusGdipCreateBitmapFromGdiDib(GDIPBITMAPINFO* gdiBitmapInfo,VOID* gdiBitmapData,GpBitmap** bitmap)
iittuiGpStatusGdipCreateBitmapFromGraphics(INT width,INT height,GpGraphics* target,GpBitmap** bitmap)
tttuiGpStatusGdipCreateBitmapFromHBITMAP(HBITMAP hbm,HPALETTE hpal,GpBitmap** bitmap)
ttuiGpStatusGdipCreateBitmapFromHICON(HICON hicon,GpBitmap** bitmap)
tttuiGpStatusGdipCreateBitmapFromResource(HINSTANCE hInstance,GDIPWCHAR* lpBitmapName,GpBitmap** bitmap)
iiiittuiGpStatusGdipCreateBitmapFromScan0(INT width,INT height,INT stride,PixelFormat format,BYTE* scan0,GpBitmap** bitmap)
ttuiGpStatusGdipCreateBitmapFromStream(IStream* stream,GpBitmap* *bitmap)
ttuiGpStatusGdipCreateBitmapFromStreamICM(IStream* stream,GpBitmap* *bitmap)
tttuiGpStatusGdipCreateCachedBitmap(GpBitmap* bitmap,GpGraphics* graphics,GpCachedBitmap* *cachedBitmap)
ttuiituiGpStatusGdipCreateCustomLineCap(GpPath* fillPath,GpPath* strokePath,GpLineCap baseCap,REAL baseInset,GpCustomLineCap* *customCap)
tiiuituiGpStatusGdipCreateFont(GDIPGpFontFamily* fontFamily,REAL emSize,INT style,Unit unit,GpFont* *font)
tttuiGpStatusGdipCreateFontFamilyFromName(GDIPWCHAR* name,GpFontCollection* fontCollection,GpFontFamily* *FontFamily)
ttuiGpStatusGdipCreateFontFromDC(HDC hdc,GpFont* *font)
tttuiGpStatusGdipCreateFontFromLogfont(HDC hdc,GDIPLOGFONTA* logfont,GpFont* *font)
tttuiGpStatusGdipCreateFontFromLogfontA(HDC hdc,GDIPLOGFONTA* logfont,GpFont* *font)
tttuiGpStatusGdipCreateFontFromLogfontW(HDC hdc,GDIPLOGFONTW* logfont,GpFont* *font)
ttuiGpStatusGdipCreateFromHDC(HDC hdc,GpGraphics* *graphics)
tttuiGpStatusGdipCreateFromHDC2(HDC hdc,HANDLE hDevice,GpGraphics* *graphics)
ttuiGpStatusGdipCreateFromHWND(HWND hwnd,GpGraphics* *graphics)
ttuiGpStatusGdipCreateFromHWNDICM(HWND hwnd,GpGraphics* *graphics)
tHPALETTEGdipCreateHalftonePalette()
uiuiuituiGpStatusGdipCreateHatchBrush(GpHatchStyle hatchstyle,ARGB forecol,ARGB backcol,GpHatch* *brush)
ttuiuiGpStatusGdipCreateHBITMAPFromBitmap(GpBitmap* bitmap,HBITMAP* hbmReturn,ARGB background)
ttuiGpStatusGdipCreateHICONFromBitmap(GpBitmap* bitmap,HICON* hbmReturn)
tuiGpStatusGdipCreateImageAttributes(GpImageAttributes* *imageattr)
ttuiuiuituiGpStatusGdipCreateLineBrush(GDIPGpPointF* point1,GDIPGpPointF* point2,ARGB color1,ARGB color2,GpWrapMode wrapMode,GpLineGradient* *lineGradient)
tuiuiiuituiGpStatusGdipCreateLineBrushFromRect(GDIPGpRectF* rect,ARGB color1,ARGB color2,LinearGradientMode mode,GpWrapMode wrapMode,GpLineGradient* *lineGradient)
tuiuiiuituiGpStatusGdipCreateLineBrushFromRectI(GDIPGpRect* rect,ARGB color1,ARGB color2,LinearGradientMode mode,GpWrapMode wrapMode,GpLineGradient* *lineGradient)
tuiuiiiuituiGpStatusGdipCreateLineBrushFromRectWithAngle(GDIPGpRectF* rect,ARGB color1,ARGB color2,REAL angle,BOOL isAngleScalable,GpWrapMode wrapMode,GpLineGradient* *lineGradient)
tuiuiiiuituiGpStatusGdipCreateLineBrushFromRectWithAngleI(GDIPGpRect* rect,ARGB color1,ARGB color2,REAL angle,BOOL isAngleScalable,GpWrapMode wrapMode,GpLineGradient* *lineGradient)
ttuiuiuituiGpStatusGdipCreateLineBrushI(GDIPGpPoint* point1,GDIPGpPoint* point2,ARGB color1,ARGB color2,GpWrapMode wrapMode,GpLineGradient* *lineGradient)
tuiGpStatusGdipCreateMatrix(GpMatrix* *matrix)
iiiiiituiGpStatusGdipCreateMatrix2(REAL m11,REAL m12,REAL m21,REAL m22,REAL dx,REAL dy,GpMatrix* *matrix)
tttuiGpStatusGdipCreateMatrix3(GDIPGpRectF* rect,GDIPGpPointF* dstplg,GpMatrix* *matrix)
tttuiGpStatusGdipCreateMatrix3I(GDIPGpRect* rect,GDIPGpPoint* dstplg,GpMatrix* *matrix)
tituiGpStatusGdipCreateMetafileFromEmf(HENHMETAFILE hEmf,BOOL deleteEmf,GpMetafile* *metafile)
ttuiGpStatusGdipCreateMetafileFromFile(GDIPWCHAR* file,GpMetafile* *metafile)
ttuiGpStatusGdipCreateMetafileFromStream(IStream* stream,GpMetafile* *metafile)
tittuiGpStatusGdipCreateMetafileFromWmf(HMETAFILE hWmf,BOOL deleteWmf,GDIPWmfPlaceableFileHeader* wmfPlaceableFileHeader,GpMetafile* *metafile)
tttuiGpStatusGdipCreateMetafileFromWmfFile(GDIPWCHAR* file,GDIPWmfPlaceableFileHeader* wmfPlaceableFileHeader,GpMetafile* *metafile)
uituiGpStatusGdipCreatePath(GpFillMode brushMode,GpPath* *path)
ttiuituiGpStatusGdipCreatePath2(GDIPGpPointF*,GDIPBYTE*,INT,GpFillMode,GpPath* *path)
ttiuituiGpStatusGdipCreatePath2I(GDIPGpPoint*,GDIPBYTE*,INT,GpFillMode,GpPath* *path)
tiuituiGpStatusGdipCreatePathGradient(GDIPGpPointF* points,INT count,GpWrapMode wrapMode,GpPathGradient* *polyGradient)
ttuiGpStatusGdipCreatePathGradientFromPath(GDIPGpPath* path,GpPathGradient* *polyGradient)
tiuituiGpStatusGdipCreatePathGradientI(GDIPGpPoint* points,INT count,GpWrapMode wrapMode,GpPathGradient* *polyGradient)
ttuiGpStatusGdipCreatePathIter(GpPathIterator* *iterator,GpPath* path)
uiiuituiGpStatusGdipCreatePen1(ARGB color,REAL width,GpUnit unit,GpPen* *pen)
tiuituiGpStatusGdipCreatePen2(GpBrush* brush,REAL width,GpUnit unit,GpPen* *pen)
tuiGpStatusGdipCreateRegion(GpRegion* *region)
ttuiGpStatusGdipCreateRegionHrgn(HRGN hRgn,GpRegion* *region)
ttuiGpStatusGdipCreateRegionPath(GpPath* path,GpRegion* *region)
ttuiGpStatusGdipCreateRegionRect(GDIPGpRectF* rect,GpRegion* *region)
ttuiGpStatusGdipCreateRegionRectI(GDIPGpRect* rect,GpRegion* *region)
tituiGpStatusGdipCreateRegionRgnData(GDIPBYTE* regionData,INT size,GpRegion* *region)
uituiGpStatusGdipCreateSolidFill(ARGB color,GpSolidFill* *brush)
tuituiGpStatusGdipCreateStreamOnFile(GDIPWCHAR* filename,UINT access,IStream* *stream)
iuhtuiGpStatusGdipCreateStringFormat(INT formatAttributes,LANGID language,GpStringFormat* *format)
tuituiGpStatusGdipCreateTexture(GpImage* image,GpWrapMode wrapmode,GpTexture* *texture)
tuiiiiituiGpStatusGdipCreateTexture2(GpImage* image,GpWrapMode wrapmode,REAL x,REAL y,REAL width,REAL height,GpTexture* *texture)
tuiiiiituiGpStatusGdipCreateTexture2I(GpImage* image,GpWrapMode wrapmode,INT x,INT y,INT width,INT height,GpTexture* *texture)
ttiiiituiGpStatusGdipCreateTextureIA(GpImage* image,GDIPGpImageAttributes* imageAttributes,REAL x,REAL y,REAL width,REAL height,GpTexture* *texture)
ttiiiituiGpStatusGdipCreateTextureIAI(GpImage* image,GDIPGpImageAttributes* imageAttributes,INT x,INT y,INT width,INT height,GpTexture* *texture)
tuiGpStatusGdipDeleteBrush(GpBrush* brush)
tuiGpStatusGdipDeleteCachedBitmap(GpCachedBitmap* cachedBitmap)
tuiGpStatusGdipDeleteCustomLineCap(GpCustomLineCap* customCap)
tuiGpStatusGdipDeleteFont(GpFont* font)
tuiGpStatusGdipDeleteFontFamily(GpFontFamily* FontFamily)
tuiGpStatusGdipDeleteGraphics(GpGraphics* graphics)
tuiGpStatusGdipDeleteMatrix(GpMatrix* matrix)
tuiGpStatusGdipDeletePath(GpPath* path)
tuiGpStatusGdipDeletePathIter(GpPathIterator* iterator)
tuiGpStatusGdipDeletePen(GpPen* pen)
tuiGpStatusGdipDeletePrivateFontCollection(GpFontCollection** fontCollection)
tuiGpStatusGdipDeleteRegion(GpRegion* region)
tuiGpStatusGdipDeleteStringFormat(GpStringFormat* format)
tuiGpStatusGdipDisposeImage(GpImage* image)
tuiGpStatusGdipDisposeImageAttributes(GpImageAttributes* imageattr)
ttiiiiiiuiGpStatusGdipDrawArc(GpGraphics* graphics,GpPen* pen,REAL x,REAL y,REAL width,REAL height,REAL startAngle,REAL sweepAngle)
ttiiiiiiuiGpStatusGdipDrawArcI(GpGraphics* graphics,GpPen* pen,INT x,INT y,INT width,INT height,REAL startAngle,REAL sweepAngle)
ttiiiiiiiiuiGpStatusGdipDrawBezier(GpGraphics* graphics,GpPen* pen,REAL x1,REAL y1,REAL x2,REAL y2,REAL x3,REAL y3,REAL x4,REAL y4)
ttiiiiiiiiuiGpStatusGdipDrawBezierI(GpGraphics* graphics,GpPen* pen,INT x1,INT y1,INT x2,INT y2,INT x3,INT y3,INT x4,INT y4)
tttiuiGpStatusGdipDrawBeziers(GpGraphics* graphics,GpPen* pen,GDIPGpPointF* points,INT count)
tttiuiGpStatusGdipDrawBeziersI(GpGraphics* graphics,GpPen* pen,GDIPGpPoint* points,INT count)
ttiiuiGpStatusGdipDrawCachedBitmap(GpGraphics* graphics,GpCachedBitmap* cachedBitmap,INT x,INT y)
tttiuiGpStatusGdipDrawClosedCurve(GpGraphics* graphics,GpPen* pen,GDIPGpPointF* points,INT count)
tttiiuiGpStatusGdipDrawClosedCurve2(GpGraphics* graphics,GpPen* pen,GDIPGpPointF* points,INT count,REAL tension)
tttiiuiGpStatusGdipDrawClosedCurve2I(GpGraphics* graphics,GpPen* pen,GDIPGpPoint* points,INT count,REAL tension)
tttiuiGpStatusGdipDrawClosedCurveI(GpGraphics* graphics,GpPen* pen,GDIPGpPoint* points,INT count)
tttiuiGpStatusGdipDrawCurve(GpGraphics* graphics,GpPen* pen,GDIPGpPointF* points,INT count)
tttiiuiGpStatusGdipDrawCurve2(GpGraphics* graphics,GpPen* pen,GDIPGpPointF* points,INT count,REAL tension)
tttiiuiGpStatusGdipDrawCurve2I(GpGraphics* graphics,GpPen* pen,GDIPGpPoint* points,INT count,REAL tension)
tttiiiiuiGpStatusGdipDrawCurve3(GpGraphics* graphics,GpPen* pen,GDIPGpPointF* points,INT count,INT offset,INT numberOfSegments,REAL tension)
tttiiiiuiGpStatusGdipDrawCurve3I(GpGraphics* graphics,GpPen* pen,GDIPGpPoint* points,INT count,INT offset,INT numberOfSegments,REAL tension)
tttiuiGpStatusGdipDrawCurveI(GpGraphics* graphics,GpPen* pen,GDIPGpPoint* points,INT count)
ttitttituiGpStatusGdipDrawDriverString(GpGraphics* graphics,GDIPUINT16* text,INT length,GDIPGpFont* font,GDIPGpBrush* brush,GDIPPointF* positions,INT flags,GDIPGpMatrix* matrix)
ttiiiiuiGpStatusGdipDrawEllipse(GpGraphics* graphics,GpPen* pen,REAL x,REAL y,REAL width,REAL height)
ttiiiiuiGpStatusGdipDrawEllipseI(GpGraphics* graphics,GpPen* pen,INT x,INT y,INT width,INT height)
ttiiuiGpStatusGdipDrawImage(GpGraphics* graphics,GpImage* image,REAL x,REAL y)
ttiiuiGpStatusGdipDrawImageI(GpGraphics* graphics,GpImage* image,INT x,INT y)
ttiiiiiiuiuiGpStatusGdipDrawImagePointRect(GpGraphics* graphics,GpImage* image,REAL x,REAL y,REAL srcx,REAL srcy,REAL srcwidth,REAL srcheight,GpUnit srcUnit)
ttiiiiiiuiuiGpStatusGdipDrawImagePointRectI(GpGraphics* graphics,GpImage* image,INT x,INT y,INT srcx,INT srcy,INT srcwidth,INT srcheight,GpUnit srcUnit)
tttiuiGpStatusGdipDrawImagePoints(GpGraphics* graphics,GpImage* image,GDIPGpPointF* dstpoints,INT count)
tttiuiGpStatusGdipDrawImagePointsI(GpGraphics* graphics,GpImage* image,GDIPGpPoint* dstpoints,INT count)
tttiiiiiuituituiGpStatusGdipDrawImagePointsRect(GpGraphics* graphics,GpImage* image,GDIPGpPointF* points,INT count,REAL srcx,REAL srcy,REAL srcwidth,REAL srcheight,GpUnit srcUnit,GDIPGpImageAttributes* imageAttributes,DrawImageAbort callback,VOID* callbackData)
tttiiiiiuituituiGpStatusGdipDrawImagePointsRectI(GpGraphics* graphics,GpImage* image,GDIPGpPoint* points,INT count,INT srcx,INT srcy,INT srcwidth,INT srcheight,GpUnit srcUnit,GDIPGpImageAttributes* imageAttributes,DrawImageAbort callback,VOID* callbackData)
ttiiiiuiGpStatusGdipDrawImageRect(GpGraphics* graphics,GpImage* image,REAL x,REAL y,REAL width,REAL height)
ttiiiiuiGpStatusGdipDrawImageRectI(GpGraphics* graphics,GpImage* image,INT x,INT y,INT width,INT height)
ttiiiiiiiiuituituiGpStatusGdipDrawImageRectRect(GpGraphics* graphics,GpImage* image,REAL dstx,REAL dsty,REAL dstwidth,REAL dstheight,REAL srcx,REAL srcy,REAL srcwidth,REAL srcheight,GpUnit srcUnit,GDIPGpImageAttributes* imageAttributes,DrawImageAbort callback,VOID* callbackData)
ttiiiiiiiiuituituiGpStatusGdipDrawImageRectRectI(GpGraphics* graphics,GpImage* image,INT dstx,INT dsty,INT dstwidth,INT dstheight,INT srcx,INT srcy,INT srcwidth,INT srcheight,GpUnit srcUnit,GDIPGpImageAttributes* imageAttributes,DrawImageAbort callback,VOID* callbackData)
ttiiiiuiGpStatusGdipDrawLine(GpGraphics* graphics,GpPen* pen,REAL x1,REAL y1,REAL x2,REAL y2)
ttiiiiuiGpStatusGdipDrawLineI(GpGraphics* graphics,GpPen* pen,INT x1,INT y1,INT x2,INT y2)
tttiuiGpStatusGdipDrawLines(GpGraphics* graphics,GpPen* pen,GDIPGpPointF* points,INT count)
tttiuiGpStatusGdipDrawLinesI(GpGraphics* graphics,GpPen* pen,GDIPGpPoint* points,INT count)
tttuiGpStatusGdipDrawPath(GpGraphics* graphics,GpPen* pen,GpPath* path)
ttiiiiiiuiGpStatusGdipDrawPie(GpGraphics* graphics,GpPen* pen,REAL x,REAL y,REAL width,REAL height,REAL startAngle,REAL sweepAngle)
ttiiiiiiuiGpStatusGdipDrawPieI(GpGraphics* graphics,GpPen* pen,INT x,INT y,INT width,INT height,REAL startAngle,REAL sweepAngle)
tttiuiGpStatusGdipDrawPolygon(GpGraphics* graphics,GpPen* pen,GDIPGpPointF* points,INT count)
tttiuiGpStatusGdipDrawPolygonI(GpGraphics* graphics,GpPen* pen,GDIPGpPoint* points,INT count)
ttiiiiuiGpStatusGdipDrawRectangle(GpGraphics* graphics,GpPen* pen,REAL x,REAL y,REAL width,REAL height)
ttiiiiuiGpStatusGdipDrawRectangleI(GpGraphics* graphics,GpPen* pen,INT x,INT y,INT width,INT height)
tttiuiGpStatusGdipDrawRectangles(GpGraphics* graphics,GpPen* pen,GDIPGpRectF* rects,INT count)
tttiuiGpStatusGdipDrawRectanglesI(GpGraphics* graphics,GpPen* pen,GDIPGpRect* rects,INT count)
ttittttuiGpStatusGdipDrawString(GpGraphics* graphics,GDIPWCHAR* string,INT length,GDIPGpFont* font,GDIPRectF* layoutRect,GDIPGpStringFormat* stringFormat,GDIPGpBrush* brush)
tuitiiuiUINTGdipEmfToWmfBits(HENHMETAFILE hemf,UINT cbData16,LPBYTE pData16,INT iMapMode,INT eFlags)
tuiuiGpStatusGdipEndContainer(GpGraphics* graphics,GraphicsContainer state)
ttttttuiGpStatusGdipEnumerateMetafileDestPoint(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPPointF & destPoint,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
ttttttuiGpStatusGdipEnumerateMetafileDestPointI(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPPoint & destPoint,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
tttitttuiGpStatusGdipEnumerateMetafileDestPoints(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPPointF* destPoints,INT count,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
tttitttuiGpStatusGdipEnumerateMetafileDestPointsI(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPPoint* destPoints,INT count,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
ttttttuiGpStatusGdipEnumerateMetafileDestRect(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPRectF & destRect,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
ttttttuiGpStatusGdipEnumerateMetafileDestRectI(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPRect & destRect,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
ttttuitttuiGpStatusGdipEnumerateMetafileSrcRectDestPoint(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPPointF & destPoint,GDIPRectF & srcRect,Unit srcUnit,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
ttttuitttuiGpStatusGdipEnumerateMetafileSrcRectDestPointI(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPPoint & destPoint,GDIPRect & srcRect,Unit srcUnit,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
tttituitttuiGpStatusGdipEnumerateMetafileSrcRectDestPoints(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPPointF* destPoints,INT count,GDIPRectF & srcRect,Unit srcUnit,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
tttituitttuiGpStatusGdipEnumerateMetafileSrcRectDestPointsI(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPPoint* destPoints,INT count,GDIPRect & srcRect,Unit srcUnit,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
ttttuitttuiGpStatusGdipEnumerateMetafileSrcRectDestRect(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPRectF & destRect,GDIPRectF & srcRect,Unit srcUnit,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
ttttuitttuiGpStatusGdipEnumerateMetafileSrcRectDestRectI(GpGraphics* graphics,GDIPGpMetafile* metafile,GDIPRect & destRect,GDIPRect & srcRect,Unit srcUnit,EnumerateMetafileProc callback,VOID* callbackData,GDIPGpImageAttributes* imageAttributes)
tttiuiGpStatusGdipFillClosedCurve(GpGraphics* graphics,GpBrush* brush,GDIPGpPointF* points,INT count)
tttiiuiuiGpStatusGdipFillClosedCurve2(GpGraphics* graphics,GpBrush* brush,GDIPGpPointF* points,INT count,REAL tension,GpFillMode fillMode)
tttiiuiuiGpStatusGdipFillClosedCurve2I(GpGraphics* graphics,GpBrush* brush,GDIPGpPoint* points,INT count,REAL tension,GpFillMode fillMode)
tttiuiGpStatusGdipFillClosedCurveI(GpGraphics* graphics,GpBrush* brush,GDIPGpPoint* points,INT count)
ttiiiiuiGpStatusGdipFillEllipse(GpGraphics* graphics,GpBrush* brush,REAL x,REAL y,REAL width,REAL height)
ttiiiiuiGpStatusGdipFillEllipseI(GpGraphics* graphics,GpBrush* brush,INT x,INT y,INT width,INT height)
tttuiGpStatusGdipFillPath(GpGraphics* graphics,GpBrush* brush,GpPath* path)
ttiiiiiiuiGpStatusGdipFillPie(GpGraphics* graphics,GpBrush* brush,REAL x,REAL y,REAL width,REAL height,REAL startAngle,REAL sweepAngle)
ttiiiiiiuiGpStatusGdipFillPieI(GpGraphics* graphics,GpBrush* brush,INT x,INT y,INT width,INT height,REAL startAngle,REAL sweepAngle)
tttiuiuiGpStatusGdipFillPolygon(GpGraphics* graphics,GpBrush* brush,GDIPGpPointF* points,INT count,GpFillMode fillMode)
tttiuiGpStatusGdipFillPolygon2(GpGraphics* graphics,GpBrush* brush,GDIPGpPointF* points,INT count)
tttiuiGpStatusGdipFillPolygon2I(GpGraphics* graphics,GpBrush* brush,GDIPGpPoint* points,INT count)
tttiuiuiGpStatusGdipFillPolygonI(GpGraphics* graphics,GpBrush* brush,GDIPGpPoint* points,INT count,GpFillMode fillMode)
ttiiiiuiGpStatusGdipFillRectangle(GpGraphics* graphics,GpBrush* brush,REAL x,REAL y,REAL width,REAL height)
ttiiiiuiGpStatusGdipFillRectangleI(GpGraphics* graphics,GpBrush* brush,INT x,INT y,INT width,INT height)
tttiuiGpStatusGdipFillRectangles(GpGraphics* graphics,GpBrush* brush,GDIPGpRectF* rects,INT count)
tttiuiGpStatusGdipFillRectanglesI(GpGraphics* graphics,GpBrush* brush,GDIPGpRect* rects,INT count)
tttuiGpStatusGdipFillRegion(GpGraphics* graphics,GpBrush* brush,GpRegion* region)
ttiuiGpStatusGdipFlattenPath(GpPath* path,GpMatrix* matrix,REAL flatness)
tuiuiGpStatusGdipFlush(GpGraphics* graphics,GpFlushIntention intention)
tivoidGdipFree(void* ptr)
ttuiGpStatusGdipGetAdjustableArrowCapFillState(GpAdjustableArrowCap* cap,BOOL* fillState)
ttuiGpStatusGdipGetAdjustableArrowCapHeight(GpAdjustableArrowCap* cap,REAL* height)
ttuiGpStatusGdipGetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap* cap,REAL* middleInset)
ttuiGpStatusGdipGetAdjustableArrowCapWidth(GpAdjustableArrowCap* cap,REAL* width)
tuiuituiGpStatusGdipGetAllPropertyItems(GpImage* image,UINT totalBufferSize,UINT numProperties,PropertyItem* allItems)
ttuiGpStatusGdipGetBrushType(GpBrush* brush,GpBrushType* type)
tituiGpStatusGdipGetCellAscent(GDIPGpFontFamily* family,INT style,UINT16* CellAscent)
tituiGpStatusGdipGetCellDescent(GDIPGpFontFamily* family,INT style,UINT16* CellDescent)
ttuiGpStatusGdipGetClip(GpGraphics* graphics,GpRegion* region)
ttuiGpStatusGdipGetClipBounds(GpGraphics* graphics,GpRectF* rect)
ttuiGpStatusGdipGetClipBoundsI(GpGraphics* graphics,GpRect* rect)
ttuiGpStatusGdipGetCompositingMode(GpGraphics* graphics,CompositingMode* compositingMode)
ttuiGpStatusGdipGetCompositingQuality(GpGraphics* graphics,CompositingQuality* compositingQuality)
ttuiGpStatusGdipGetCustomLineCapBaseCap(GpCustomLineCap* customCap,GpLineCap* baseCap)
ttuiGpStatusGdipGetCustomLineCapBaseInset(GpCustomLineCap* customCap,REAL* inset)
tttuiGpStatusGdipGetCustomLineCapStrokeCaps(GpCustomLineCap* customCap,GpLineCap* startCap,GpLineCap* endCap)
ttuiGpStatusGdipGetCustomLineCapStrokeJoin(GpCustomLineCap* customCap,GpLineJoin* lineJoin)
ttuiGpStatusGdipGetCustomLineCapType(GpCustomLineCap* customCap,CustomLineCapType* capType)
ttuiGpStatusGdipGetCustomLineCapWidthScale(GpCustomLineCap* customCap,REAL* widthScale)
ttuiGpStatusGdipGetDC(GpGraphics* graphics,HDC* hdc)
ttuiGpStatusGdipGetDpiX(GpGraphics* graphics,REAL* dpi)
ttuiGpStatusGdipGetDpiY(GpGraphics* graphics,REAL* dpi)
tituiGpStatusGdipGetEmHeight(GDIPGpFontFamily* family,INT style,UINT16* EmHeight)
ttuituiGpStatusGdipGetEncoderParameterList(GpImage* image,GDIPCLSID* clsidEncoder,UINT size,EncoderParameters* buffer)
tttuiGpStatusGdipGetEncoderParameterListSize(GpImage* image,GDIPCLSID* clsidEncoder,UINT* size)
ttuiGpStatusGdipGetFamily(GpFont* font,GpFontFamily* *family)
twuhuiGpStatusGdipGetFamilyName(GDIPGpFontFamily* family,WCHAR* name[LF_FACESIZE],LANGID language)
ttuiGpStatusGdipGetFontCollectionFamilyCount(GpFontCollection* fontCollection,INT* numFound)
tittuiGpStatusGdipGetFontCollectionFamilyList(GpFontCollection* fontCollection,INT numSought,GpFontFamily* gpfamilies[],INT* numFound)
tttuiGpStatusGdipGetFontHeight(GDIPGpFont* font,GDIPGpGraphics* graphics,REAL* height)
tituiGpStatusGdipGetFontHeightGivenDPI(GDIPGpFont* font,REAL dpi,REAL* height)
ttuiGpStatusGdipGetFontSize(GpFont* font,REAL* size)
ttuiGpStatusGdipGetFontStyle(GpFont* font,INT* style)
ttuiGpStatusGdipGetFontUnit(GpFont* font,Unit* unit)
tuiGpStatusGdipGetGenericFontFamilyMonospace(GpFontFamily* *nativeFamily)
tuiGpStatusGdipGetGenericFontFamilySansSerif(GpFontFamily* *nativeFamily)
tuiGpStatusGdipGetGenericFontFamilySerif(GpFontFamily* *nativeFamily)
ttuiGpStatusGdipGetHatchBackgroundColor(GpHatch* brush,ARGB* backcol)
ttuiGpStatusGdipGetHatchForegroundColor(GpHatch* brush,ARGB* forecol)
ttuiGpStatusGdipGetHatchStyle(GpHatch* brush,GpHatchStyle* hatchstyle)
ttuiGpStatusGdipGetHemfFromMetafile(GpMetafile* metafile,HENHMETAFILE* hEmf)
tttuiGpStatusGdipGetImageAttributesAdjustedPalette(GpImageAttributes* imageAttr,ColorPalette* colorPalette,ColorAdjustType colorAdjustType)
tttuiGpStatusGdipGetImageBounds(GpImage* image,GpRectF* srcRect,GpUnit* srcUnit)
uiuituiGpStatusGdipGetImageDecoders(UINT numDecoders,UINT size,ImageCodecInfo* decoders)
ttuiGpStatusGdipGetImageDecodersSize(UINT* numDecoders,UINT* size)
tttuiGpStatusGdipGetImageDimension(GpImage* image,REAL* width,REAL* height)
uiuituiGpStatusGdipGetImageEncoders(UINT numEncoders,UINT size,ImageCodecInfo* encoders)
ttuiGpStatusGdipGetImageEncodersSize(UINT* numEncoders,UINT* size)
ttuiGpStatusGdipGetImageFlags(GpImage* image,UINT* flags)
ttuiGpStatusGdipGetImageGraphicsContext(GpImage* image,GpGraphics* *graphics)
ttuiGpStatusGdipGetImageHeight(GpImage* image,UINT* height)
ttuiGpStatusGdipGetImageHorizontalResolution(GpImage* image,REAL* resolution)
ttiuiGpStatusGdipGetImagePalette(GpImage* image,ColorPalette* palette,INT size)
ttuiGpStatusGdipGetImagePaletteSize(GpImage* image,INT* size)
ttuiGpStatusGdipGetImagePixelFormat(GpImage* image,PixelFormat* format)
ttuiGpStatusGdipGetImageRawFormat(GpImage* image,GUID* format)
tuiuitttuiGpStatusGdipGetImageThumbnail(GpImage* image,UINT thumbWidth,UINT thumbHeight,GpImage* *thumbImage,GetThumbnailImageAbort callback,VOID* callbackData)
ttuiGpStatusGdipGetImageType(GpImage* image,ImageType* type)
ttuiGpStatusGdipGetImageVerticalResolution(GpImage* image,REAL* resolution)
ttuiGpStatusGdipGetImageWidth(GpImage* image,UINT* width)
ttuiGpStatusGdipGetInterpolationMode(GpGraphics* graphics,InterpolationMode* interpolationMode)
tttiuiGpStatusGdipGetLineBlend(GpLineGradient* brush,REAL* blend,REAL* positions,INT count)
ttuiGpStatusGdipGetLineBlendCount(GpLineGradient* brush,INT* count)
ttuiGpStatusGdipGetLineColors(GpLineGradient* brush,ARGB* colors)
ttuiGpStatusGdipGetLineGammaCorrection(GpLineGradient* brush,BOOL* useGammaCorrection)
tttiuiGpStatusGdipGetLinePresetBlend(GpLineGradient* brush,ARGB* blend,REAL* positions,INT count)
ttuiGpStatusGdipGetLinePresetBlendCount(GpLineGradient* brush,INT* count)
ttuiGpStatusGdipGetLineRect(GpLineGradient* brush,GpRectF* rect)
ttuiGpStatusGdipGetLineRectI(GpLineGradient* brush,GpRect* rect)
tituiGpStatusGdipGetLineSpacing(GDIPGpFontFamily* family,INT style,UINT16* LineSpacing)
ttuiGpStatusGdipGetLineTransform(GpLineGradient* brush,GpMatrix* matrix)
ttuiGpStatusGdipGetLineWrapMode(GpLineGradient* brush,GpWrapMode* wrapmode)
tttuiGpStatusGdipGetLogFont(GpFont* font,GpGraphics* graphics,LOGFONTA* logfontA)
tttuiGpStatusGdipGetLogFontA(GpFont* font,GpGraphics* graphics,LOGFONTA* logfontA)
tttuiGpStatusGdipGetLogFontW(GpFont* font,GpGraphics* graphics,LOGFONTW* logfontW)
ttuiGpStatusGdipGetMatrixElements(GDIPGpMatrix* matrix,REAL* matrixOut)
ttuiGpStatusGdipGetMetafileDownLevelRasterizationLimit(GDIPGpMetafile* metafile,UINT* metafileRasterizationLimitDpi)
ttuiGpStatusGdipGetMetafileHeaderFromEmf(HENHMETAFILE hEmf,MetafileHeader* header)
ttuiGpStatusGdipGetMetafileHeaderFromFile(GDIPWCHAR* filename,MetafileHeader* header)
ttuiGpStatusGdipGetMetafileHeaderFromMetafile(GpMetafile* metafile,MetafileHeader* header)
ttuiGpStatusGdipGetMetafileHeaderFromStream(IStream* stream,MetafileHeader* header)
tttuiGpStatusGdipGetMetafileHeaderFromWmf(HMETAFILE hWmf,GDIPWmfPlaceableFileHeader* wmfPlaceableFileHeader,MetafileHeader* header)
ttuiGpStatusGdipGetNearestColor(GpGraphics* graphics,ARGB* argb)
ttuiGpStatusGdipGetPageScale(GpGraphics* graphics,REAL* scale)
ttuiGpStatusGdipGetPageUnit(GpGraphics* graphics,GpUnit* unit)
ttuiGpStatusGdipGetPathData(GpPath* path,GpPathData* pathData)
ttuiGpStatusGdipGetPathFillMode(GpPath* path,GpFillMode* fillmode)
tttiuiGpStatusGdipGetPathGradientBlend(GpPathGradient* brush,REAL* blend,REAL* positions,INT count)
ttuiGpStatusGdipGetPathGradientBlendCount(GpPathGradient* brush,INT* count)
ttuiGpStatusGdipGetPathGradientCenterColor(GpPathGradient* brush,ARGB* colors)
ttuiGpStatusGdipGetPathGradientCenterPoint(GpPathGradient* brush,GpPointF* points)
ttuiGpStatusGdipGetPathGradientCenterPointI(GpPathGradient* brush,GpPoint* points)
tttuiGpStatusGdipGetPathGradientFocusScales(GpPathGradient* brush,REAL* xScale,REAL* yScale)
ttuiGpStatusGdipGetPathGradientGammaCorrection(GpPathGradient* brush,BOOL* useGammaCorrection)
ttuiGpStatusGdipGetPathGradientPath(GpPathGradient* brush,GpPath* path)
ttuiGpStatusGdipGetPathGradientPointCount(GpPathGradient* brush,INT* count)
tttiuiGpStatusGdipGetPathGradientPresetBlend(GpPathGradient* brush,ARGB* blend,REAL* positions,INT count)
ttuiGpStatusGdipGetPathGradientPresetBlendCount(GpPathGradient* brush,INT* count)
ttuiGpStatusGdipGetPathGradientRect(GpPathGradient* brush,GpRectF* rect)
ttuiGpStatusGdipGetPathGradientRectI(GpPathGradient* brush,GpRect* rect)
ttuiGpStatusGdipGetPathGradientSurroundColorCount(GpPathGradient* brush,INT* count)
tttuiGpStatusGdipGetPathGradientSurroundColorsWithCount(GpPathGradient* brush,ARGB* color,INT* count)
ttuiGpStatusGdipGetPathGradientTransform(GpPathGradient* brush,GpMatrix* matrix)
ttuiGpStatusGdipGetPathGradientWrapMode(GpPathGradient* brush,GpWrapMode* wrapmode)
ttuiGpStatusGdipGetPathLastPoint(GpPath* path,GpPointF* lastPoint)
ttiuiGpStatusGdipGetPathPoints(GpPath*,GpPointF* points,INT count)
ttiuiGpStatusGdipGetPathPointsI(GpPath*,GpPoint* points,INT count)
ttiuiGpStatusGdipGetPathTypes(GpPath* path,BYTE* types,INT count)
ttttuiGpStatusGdipGetPathWorldBounds(GpPath* path,GpRectF* bounds,GDIPGpMatrix* matrix,GDIPGpPen* pen)
ttttuiGpStatusGdipGetPathWorldBoundsI(GpPath* path,GpRect* bounds,GDIPGpMatrix* matrix,GDIPGpPen* pen)
ttuiGpStatusGdipGetPenBrushFill(GpPen* pen,GpBrush* *brush)
ttuiGpStatusGdipGetPenColor(GpPen* pen,ARGB* argb)
ttiuiGpStatusGdipGetPenCompoundArray(GpPen* pen,REAL* dash,INT count)
ttuiGpStatusGdipGetPenCompoundCount(GpPen* pen,INT* count)
ttuiGpStatusGdipGetPenCustomEndCap(GpPen* pen,GpCustomLineCap** customCap)
ttuiGpStatusGdipGetPenCustomStartCap(GpPen* pen,GpCustomLineCap** customCap)
ttiuiGpStatusGdipGetPenDashArray(GpPen* pen,REAL* dash,INT count)
ttuiGpStatusGdipGetPenDashCap197819(GpPen* pen,GpDashCap* dashCap)
ttuiGpStatusGdipGetPenDashCount(GpPen* pen,INT* count)
ttuiGpStatusGdipGetPenDashOffset(GpPen* pen,REAL* offset)
ttuiGpStatusGdipGetPenDashStyle(GpPen* pen,GpDashStyle* dashstyle)
ttuiGpStatusGdipGetPenEndCap(GpPen* pen,GpLineCap* endCap)
ttuiGpStatusGdipGetPenFillType(GpPen* pen,GpPenType* type)
ttuiGpStatusGdipGetPenLineJoin(GpPen* pen,GpLineJoin* lineJoin)
ttuiGpStatusGdipGetPenMiterLimit(GpPen* pen,REAL* miterLimit)
ttuiGpStatusGdipGetPenMode(GpPen* pen,GpPenAlignment* penMode)
ttuiGpStatusGdipGetPenStartCap(GpPen* pen,GpLineCap* startCap)
ttuiGpStatusGdipGetPenTransform(GpPen* pen,GpMatrix* matrix)
ttuiGpStatusGdipGetPenUnit(GpPen* pen,GpUnit* unit)
ttuiGpStatusGdipGetPenWidth(GpPen* pen,REAL* width)
ttuiGpStatusGdipGetPixelOffsetMode(GpGraphics* graphics,PixelOffsetMode* pixelOffsetMode)
ttuiGpStatusGdipGetPointCount(GpPath* path,INT* count)
ttuiGpStatusGdipGetPropertyCount(GpImage* image,UINT* numOfProperty)
tuituiGpStatusGdipGetPropertyIdList(GpImage* image,UINT numOfProperty,PROPID* list)
tuiuituiGpStatusGdipGetPropertyItem(GpImage* image,PROPID propId,UINT propSize,PropertyItem* buffer)
tuituiGpStatusGdipGetPropertyItemSize(GpImage* image,PROPID propId,UINT* size)
tttuiGpStatusGdipGetPropertySize(GpImage* image,UINT* totalBufferSize,UINT* numProperties)
tttuiGpStatusGdipGetRegionBounds(GpRegion* region,GpGraphics* graphics,GpRectF* rect)
tttuiGpStatusGdipGetRegionBoundsI(GpRegion* region,GpGraphics* graphics,GpRect* rect)
ttuituiGpStatusGdipGetRegionData(GpRegion* region,BYTE* buffer,UINT bufferSize,UINT* sizeFilled)
ttuiGpStatusGdipGetRegionDataSize(GpRegion* region,UINT* bufferSize)
tttuiGpStatusGdipGetRegionHRgn(GpRegion* region,GpGraphics* graphics,HRGN* hRgn)
ttttuiGpStatusGdipGetRegionScans(GpRegion* region,GpRectF* rects,INT* count,GpMatrix* matrix)
tttuiGpStatusGdipGetRegionScansCount(GpRegion* region,UINT* count,GpMatrix* matrix)
ttttuiGpStatusGdipGetRegionScansI(GpRegion* region,GpRect* rects,INT* count,GpMatrix* matrix)
tttuiGpStatusGdipGetRenderingOrigin(GpGraphics* graphics,INT* x,INT* y)
ttuiGpStatusGdipGetSmoothingMode(GpGraphics* graphics,SmoothingMode* smoothingMode)
ttuiGpStatusGdipGetSolidFillColor(GpSolidFill* brush,ARGB* color)
ttuiGpStatusGdipGetStringFormatAlign(GDIPGpStringFormat* format,StringAlignment* align)
tttuiGpStatusGdipGetStringFormatDigitSubstitution(GDIPGpStringFormat* format,LANGID* language,StringDigitSubstitute* substitute)
ttuiGpStatusGdipGetStringFormatFlags(GDIPGpStringFormat* format,INT* flags)
ttuiGpStatusGdipGetStringFormatHotkeyPrefix(GDIPGpStringFormat* format,INT* hotkeyPrefix)
ttuiGpStatusGdipGetStringFormatLineAlign(GDIPGpStringFormat* format,StringAlignment* align)
ttuiGpStatusGdipGetStringFormatMeasurableCharacterRangeCount(GDIPGpStringFormat* format,INT* count)
ttuiGpStatusGdipGetStringFormatTabStopCount(GDIPGpStringFormat* format,INT* count)
tittuiGpStatusGdipGetStringFormatTabStops(GDIPGpStringFormat* format,INT count,REAL* firstTabOffset,REAL* tabStops)
ttuiGpStatusGdipGetStringFormatTrimming(GDIPGpStringFormat* format,StringTrimming* trimming)
ttuiGpStatusGdipGetTextRenderingHint(GpGraphics* graphics,TextRenderingHint* mode)
ttuiGpStatusGdipGetTextureImage(GpTexture* brush,GpImage* *image)
ttuiGpStatusGdipGetTextureTransform(GpTexture* brush,GpMatrix* matrix)
ttuiGpStatusGdipGetTextureWrapMode(GpTexture* brush,GpWrapMode* wrapmode)
ttuiGpStatusGdipGetVisibleClipBounds(GpGraphics* graphics,GpRectF* rect)
ttuiGpStatusGdipGetVisibleClipBoundsI(GpGraphics* graphics,GpRect* rect)
ttuiGpStatusGdipGetWorldTransform(GpGraphics* graphics,GpMatrix* matrix)
tuiuiGpStatusGdipGraphicsClear(GpGraphics* graphics,ARGB color)
tuiGpStatusGdipImageForceValidation(GpImage* image)
tttuiGpStatusGdipImageGetFrameCount(GpImage* image,GDIPGUID* dimensionID,UINT* count)
ttuiGpStatusGdipImageGetFrameDimensionsCount(GpImage* image,UINT* count)
ttuiuiGpStatusGdipImageGetFrameDimensionsList(GpImage* image,GUID* dimensionIDs,UINT count)
tuiuiGpStatusGdipImageRotateFlip(GpImage* image,RotateFlipType rfType)
ttuiuiGpStatusGdipImageSelectActiveFrame(GpImage* image,GDIPGUID* dimensionID,UINT frameIndex)
tuiGpStatusGdipInvertMatrix(GpMatrix* matrix)
ttuiGpStatusGdipIsClipEmpty(GpGraphics* graphics,BOOL* result)
tttuiGpStatusGdipIsEmptyRegion(GpRegion* region,GpGraphics* graphics,BOOL* result)
ttttuiGpStatusGdipIsEqualRegion(GpRegion* region,GpRegion* region2,GpGraphics* graphics,BOOL* result)
tttuiGpStatusGdipIsInfiniteRegion(GpRegion* region,GpGraphics* graphics,BOOL* result)
tttuiGpStatusGdipIsMatrixEqual(GDIPGpMatrix* matrix,GDIPGpMatrix* matrix2,BOOL* result)
ttuiGpStatusGdipIsMatrixIdentity(GDIPGpMatrix* matrix,BOOL* result)
ttuiGpStatusGdipIsMatrixInvertible(GDIPGpMatrix* matrix,BOOL* result)
tiitttuiGpStatusGdipIsOutlineVisiblePathPoint(GpPath* path,REAL x,REAL y,GpPen* pen,GpGraphics* graphics,BOOL* result)
tiitttuiGpStatusGdipIsOutlineVisiblePathPointI(GpPath* path,INT x,INT y,GpPen* pen,GpGraphics* graphics,BOOL* result)
ttuiGpStatusGdipIsVisibleClipEmpty(GpGraphics* graphics,BOOL* result)
tiittuiGpStatusGdipIsVisiblePathPoint(GpPath* path,REAL x,REAL y,GpGraphics* graphics,BOOL* result)
tiittuiGpStatusGdipIsVisiblePathPointI(GpPath* path,INT x,INT y,GpGraphics* graphics,BOOL* result)
tiituiGpStatusGdipIsVisiblePoint(GpGraphics* graphics,REAL x,REAL y,BOOL* result)
tiituiGpStatusGdipIsVisiblePointI(GpGraphics* graphics,INT x,INT y,BOOL* result)
tiiiituiGpStatusGdipIsVisibleRect(GpGraphics* graphics,REAL x,REAL y,REAL width,REAL height,BOOL* result)
tiiiituiGpStatusGdipIsVisibleRectI(GpGraphics* graphics,INT x,INT y,INT width,INT height,BOOL* result)
tiittuiGpStatusGdipIsVisibleRegionPoint(GpRegion* region,REAL x,REAL y,GpGraphics* graphics,BOOL* result)
tiittuiGpStatusGdipIsVisibleRegionPointI(GpRegion* region,INT x,INT y,GpGraphics* graphics,BOOL* result)
tiiiittuiGpStatusGdipIsVisibleRegionRect(GpRegion* region,REAL x,REAL y,REAL width,REAL height,GpGraphics* graphics,BOOL* result)
tiiiittuiGpStatusGdipIsVisibleRegionRectI(GpRegion* region,INT x,INT y,INT width,INT height,GpGraphics* graphics,BOOL* result)
ttuiGpStatusGdipLoadImageFromFile(GDIPWCHAR* filename,GpImage* *image)
ttuiGpStatusGdipLoadImageFromFileICM(GDIPWCHAR* filename,GpImage* *image)
ttuiGpStatusGdipLoadImageFromStream(IStream* stream,GpImage* *image)
ttuiGpStatusGdipLoadImageFromStreamICM(IStream* stream,GpImage* *image)
utuiGpStatusGdiplusNotificationHook(ULONG_PTR* token)
utiVOIDGdiplusNotificationUnhook(ULONG_PTR token)
utiVOIDGdiplusShutdown(__in ULONG_PTR token)
utttuiStatusGdiplusStartup(__out ULONG_PTR token *token, __in const GdiplusStartupInput *input, __out GdiplusStartupOutput *output)
ttituitituiGpStatusGdipMeasureCharacterRanges(GpGraphics* graphics,GDIPWCHAR* string,INT length,GDIPGpFont* font,GDIPRectF &layoutRect,GDIPGpStringFormat* stringFormat,INT regionCount,GpRegion* *regions)
ttittittuiGpStatusGdipMeasureDriverString(GpGraphics* graphics,GDIPUINT16* text,INT length,GDIPGpFont* font,GDIPPointF* positions,INT flags,GDIPGpMatrix* matrix,RectF* boundingBox)
ttittttttuiGpStatusGdipMeasureString(GpGraphics* graphics,GDIPWCHAR* string,INT length,GDIPGpFont* font,GDIPRectF* layoutRect,GDIPGpStringFormat* stringFormat,RectF* boundingBox,INT* codepointsFitted,INT* linesFilled)
ttuiuiGpStatusGdipMultiplyLineTransform(GpLineGradient* brush,GDIPGpMatrix* matrix,GpMatrixOrder order)
ttuiuiGpStatusGdipMultiplyMatrix(GpMatrix* matrix,GpMatrix* matrix2,GpMatrixOrder order)
ttuiuiGpStatusGdipMultiplyPathGradientTransform(GpPathGradient* brush,GDIPGpMatrix* matrix,GpMatrixOrder order)
ttuiuiGpStatusGdipMultiplyPenTransform(GpPen* pen,GDIPGpMatrix* matrix,GpMatrixOrder order)
ttuiuiGpStatusGdipMultiplyTextureTransform(GpTexture* brush,GDIPGpMatrix* matrix,GpMatrixOrder order)
ttuiuiGpStatusGdipMultiplyWorldTransform(GpGraphics* graphics,GDIPGpMatrix* matrix,GpMatrixOrder order)
tuiGpStatusGdipNewInstalledFontCollection(GpFontCollection** fontCollection)
tuiGpStatusGdipNewPrivateFontCollection(GpFontCollection** fontCollection)
ttttiiuiGpStatusGdipPathIterCopyData(GpPathIterator* iterator,INT* resultCount,GpPointF* points,BYTE* types,INT startIndex,INT endIndex)
ttttiuiGpStatusGdipPathIterEnumerate(GpPathIterator* iterator,INT* resultCount,GpPointF* points,BYTE* types,INT count)
ttuiGpStatusGdipPathIterGetCount(GpPathIterator* iterator,INT* count)
ttuiGpStatusGdipPathIterGetSubpathCount(GpPathIterator* iterator,INT* count)
ttuiGpStatusGdipPathIterHasCurve(GpPathIterator* iterator,BOOL* hasCurve)
ttuiGpStatusGdipPathIterIsValid(GpPathIterator* iterator,BOOL* valid)
ttttuiGpStatusGdipPathIterNextMarker(GpPathIterator* iterator,INT* resultCount,INT* startIndex,INT* endIndex)
tttuiGpStatusGdipPathIterNextMarkerPath(GpPathIterator* iterator,INT* resultCount,GpPath* path)
tttttuiGpStatusGdipPathIterNextPathType(GpPathIterator* iterator,INT* resultCount,BYTE* pathType,INT* startIndex,INT* endIndex)
tttttuiGpStatusGdipPathIterNextSubpath(GpPathIterator* iterator,INT* resultCount,INT* startIndex,INT* endIndex,BOOL* isClosed)
ttttuiGpStatusGdipPathIterNextSubpathPath(GpPathIterator* iterator,INT* resultCount,GpPath* path,BOOL* isClosed)
tuiGpStatusGdipPathIterRewind(GpPathIterator* iterator)
ttuiuituiGpStatusGdipPlayMetafileRecord(GDIPGpMetafile* metafile,EmfPlusRecordType recordType,UINT flags,UINT dataSize,GDIPBYTE* data)
ttuiGpStatusGdipPrivateAddFontFile(GpFontCollection* fontCollection,GDIPWCHAR* filename)
ttiuiGpStatusGdipPrivateAddMemoryFont(GpFontCollection* fontCollection,GDIPvoid* memory,INT length)
tttuittuiGpStatusGdipRecordMetafile(HDC referenceHdc,EmfType type,GDIPGpRectF* frameRect,MetafileFrameUnit frameUnit,GDIPWCHAR* description,GpMetafile* * metafile)
ttttuittuiGpStatusGdipRecordMetafileFileName(GDIPWCHAR* fileName,HDC referenceHdc,EmfType type,GDIPGpRectF* frameRect,MetafileFrameUnit frameUnit,GDIPWCHAR* description,GpMetafile* * metafile)
ttttuittuiGpStatusGdipRecordMetafileFileNameI(GDIPWCHAR* fileName,HDC referenceHdc,EmfType type,GDIPGpRect* frameRect,MetafileFrameUnit frameUnit,GDIPWCHAR* description,GpMetafile* * metafile)
tttuittuiGpStatusGdipRecordMetafileI(HDC referenceHdc,EmfType type,GDIPGpRect* frameRect,MetafileFrameUnit frameUnit,GDIPWCHAR* description,GpMetafile* * metafile)
ttttuittuiGpStatusGdipRecordMetafileStream(IStream* stream,HDC referenceHdc,EmfType type,GDIPGpRectF* frameRect,MetafileFrameUnit frameUnit,GDIPWCHAR* description,GpMetafile* * metafile)
ttttuittuiGpStatusGdipRecordMetafileStreamI(IStream* stream,HDC referenceHdc,EmfType type,GDIPGpRect* frameRect,MetafileFrameUnit frameUnit,GDIPWCHAR* description,GpMetafile* * metafile)
ttuiGpStatusGdipReleaseDC(GpGraphics* graphics,HDC hdc)
tuiuiGpStatusGdipRemovePropertyItem(GpImage* image,PROPID propId)
tuiGpStatusGdipResetClip(GpGraphics* graphics)
ttuiGpStatusGdipResetImageAttributes(GpImageAttributes* imageattr,ColorAdjustType type)
tuiGpStatusGdipResetLineTransform(GpLineGradient* brush)
tuiGpStatusGdipResetPageTransform(GpGraphics* graphics)
tuiGpStatusGdipResetPath(GpPath* path)
tuiGpStatusGdipResetPathGradientTransform(GpPathGradient* brush)
tuiGpStatusGdipResetPenTransform(GpPen* pen)
tuiGpStatusGdipResetTextureTransform(GpTexture* brush)
tuiGpStatusGdipResetWorldTransform(GpGraphics* graphics)
tuiuiGpStatusGdipRestoreGraphics(GpGraphics* graphics,GraphicsState state)
tuiGpStatusGdipReversePath(GpPath* path)
tiuiuiGpStatusGdipRotateLineTransform(GpLineGradient* brush,REAL angle,GpMatrixOrder order)
tiuiuiGpStatusGdipRotateMatrix(GpMatrix* matrix,REAL angle,GpMatrixOrder order)
tiuiuiGpStatusGdipRotatePathGradientTransform(GpPathGradient* brush,REAL angle,GpMatrixOrder order)
tiuiuiGpStatusGdipRotatePenTransform(GpPen* pen,REAL angle,GpMatrixOrder order)
tiuiuiGpStatusGdipRotateTextureTransform(GpTexture* brush,REAL angle,GpMatrixOrder order)
tiuiuiGpStatusGdipRotateWorldTransform(GpGraphics* graphics,REAL angle,GpMatrixOrder order)
ttuiGpStatusGdipSaveAdd(GpImage* image,GDIPEncoderParameters* encoderParams)
tttuiGpStatusGdipSaveAddImage(GpImage* image,GpImage* newImage,GDIPEncoderParameters* encoderParams)
ttuiGpStatusGdipSaveGraphics(GpGraphics* graphics,GraphicsState* state)
ttttuiGpStatusGdipSaveImageToFile(GpImage* image,GDIPWCHAR* filename,GDIPCLSID* clsidEncoder,GDIPEncoderParameters* encoderParams)
ttttuiGpStatusGdipSaveImageToStream(GpImage* image,IStream* stream,GDIPCLSID* clsidEncoder,GDIPEncoderParameters* encoderParams)
tiiuiuiGpStatusGdipScaleLineTransform(GpLineGradient* brush,REAL sx,REAL sy,GpMatrixOrder order)
tiiuiuiGpStatusGdipScaleMatrix(GpMatrix* matrix,REAL scaleX,REAL scaleY,GpMatrixOrder order)
tiiuiuiGpStatusGdipScalePathGradientTransform(GpPathGradient* brush,REAL sx,REAL sy,GpMatrixOrder order)
tiiuiuiGpStatusGdipScalePenTransform(GpPen* pen,REAL sx,REAL sy,GpMatrixOrder order)
tiiuiuiGpStatusGdipScaleTextureTransform(GpTexture* brush,REAL sx,REAL sy,GpMatrixOrder order)
tiiuiuiGpStatusGdipScaleWorldTransform(GpGraphics* graphics,REAL sx,REAL sy,GpMatrixOrder order)
tiuiGpStatusGdipSetAdjustableArrowCapFillState(GpAdjustableArrowCap* cap,BOOL fillState)
tiuiGpStatusGdipSetAdjustableArrowCapHeight(GpAdjustableArrowCap* cap,REAL height)
tiuiGpStatusGdipSetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap* cap,REAL middleInset)
tiuiGpStatusGdipSetAdjustableArrowCapWidth(GpAdjustableArrowCap* cap,REAL width)
tttuiGpStatusGdipSetClipGraphics(GpGraphics* graphics,GpGraphics* srcgraphics,CombineMode combineMode)
tttuiGpStatusGdipSetClipHrgn(GpGraphics* graphics,HRGN hRgn,CombineMode combineMode)
tttuiGpStatusGdipSetClipPath(GpGraphics* graphics,GpPath* path,CombineMode combineMode)
tiiiituiGpStatusGdipSetClipRect(GpGraphics* graphics,REAL x,REAL y,REAL width,REAL height,CombineMode combineMode)
tiiiituiGpStatusGdipSetClipRectI(GpGraphics* graphics,INT x,INT y,INT width,INT height,CombineMode combineMode)
tttuiGpStatusGdipSetClipRegion(GpGraphics* graphics,GpRegion* region,CombineMode combineMode)
ttuiGpStatusGdipSetCompositingMode(GpGraphics* graphics,CompositingMode compositingMode)
ttuiGpStatusGdipSetCompositingQuality(GpGraphics* graphics,CompositingQuality compositingQuality)
tuiuiGpStatusGdipSetCustomLineCapBaseCap(GpCustomLineCap* customCap,GpLineCap baseCap)
tiuiGpStatusGdipSetCustomLineCapBaseInset(GpCustomLineCap* customCap,REAL inset)
tuiuiuiGpStatusGdipSetCustomLineCapStrokeCaps(GpCustomLineCap* customCap,GpLineCap startCap,GpLineCap endCap)
tuiuiGpStatusGdipSetCustomLineCapStrokeJoin(GpCustomLineCap* customCap,GpLineJoin lineJoin)
tiuiGpStatusGdipSetCustomLineCapWidthScale(GpCustomLineCap* customCap,REAL widthScale)
tuiGpStatusGdipSetEmpty(GpRegion* region)
tiuiGpStatusGdipSetImageAttributesCachedBackground(GpImageAttributes* imageattr,BOOL enableFlag)
ttiuiuiuiGpStatusGdipSetImageAttributesColorKeys(GpImageAttributes* imageattr,ColorAdjustType type,BOOL enableFlag,ARGB colorLow,ARGB colorHigh)
ttitttuiGpStatusGdipSetImageAttributesColorMatrix(GpImageAttributes* imageattr,ColorAdjustType type,BOOL enableFlag,GDIPColorMatrix* colorMatrix,GDIPColorMatrix* grayMatrix,ColorMatrixFlags flags)
ttiiuiGpStatusGdipSetImageAttributesGamma(GpImageAttributes* imageattr,ColorAdjustType type,BOOL enableFlag,REAL gamma)
ttiuiGpStatusGdipSetImageAttributesNoOp(GpImageAttributes* imageattr,ColorAdjustType type,BOOL enableFlag)
ttituiGpStatusGdipSetImageAttributesOutputChannel(GpImageAttributes* imageattr,ColorAdjustType type,BOOL enableFlag,ColorChannelFlags channelFlags)
ttituiGpStatusGdipSetImageAttributesOutputChannelColorProfile(GpImageAttributes* imageattr,ColorAdjustType type,BOOL enableFlag,GDIPWCHAR* colorProfileFilename)
ttiuituiGpStatusGdipSetImageAttributesRemapTable(GpImageAttributes* imageattr,ColorAdjustType type,BOOL enableFlag,UINT mapSize,GDIPColorMap* map)
ttiiuiGpStatusGdipSetImageAttributesThreshold(GpImageAttributes* imageattr,ColorAdjustType type,BOOL enableFlag,REAL threshold)
ttuiGpStatusGdipSetImageAttributesToIdentity(GpImageAttributes* imageattr,ColorAdjustType type)
tuiuiiuiGpStatusGdipSetImageAttributesWrapMode(GpImageAttributes* imageAttr,WrapMode wrap,ARGB argb,BOOL clamp)
ttuiGpStatusGdipSetImagePalette(GpImage* image,GDIPColorPalette* palette)
tuiGpStatusGdipSetInfinite(GpRegion* region)
tuiuiGpStatusGdipSetInterpolationMode(GpGraphics* graphics,InterpolationMode interpolationMode)
tttiuiGpStatusGdipSetLineBlend(GpLineGradient* brush,GDIPREAL* blend,GDIPREAL* positions,INT count)
tuiuiuiGpStatusGdipSetLineColors(GpLineGradient* brush,ARGB color1,ARGB color2)
tiuiGpStatusGdipSetLineGammaCorrection(GpLineGradient* brush,BOOL useGammaCorrection)
tiiuiGpStatusGdipSetLineLinearBlend(GpLineGradient* brush,REAL focus,REAL scale)
tttiuiGpStatusGdipSetLinePresetBlend(GpLineGradient* brush,GDIPARGB* blend,GDIPREAL* positions,INT count)
tiiuiGpStatusGdipSetLineSigmaBlend(GpLineGradient* brush,REAL focus,REAL scale)
ttuiGpStatusGdipSetLineTransform(GpLineGradient* brush,GDIPGpMatrix* matrix)
tuiuiGpStatusGdipSetLineWrapMode(GpLineGradient* brush,GpWrapMode wrapmode)
tiiiiiiuiGpStatusGdipSetMatrixElements(GpMatrix* matrix,REAL m11,REAL m12,REAL m21,REAL m22,REAL dx,REAL dy)
tuiuiGpStatusGdipSetMetafileDownLevelRasterizationLimit(GpMetafile* metafile,UINT metafileRasterizationLimitDpi)
tiuiGpStatusGdipSetPageScale(GpGraphics* graphics,REAL scale)
tuiuiGpStatusGdipSetPageUnit(GpGraphics* graphics,GpUnit unit)
tuiuiGpStatusGdipSetPathFillMode(GpPath* path,GpFillMode fillmode)
tttiuiGpStatusGdipSetPathGradientBlend(GpPathGradient* brush,GDIPREAL* blend,GDIPREAL* positions,INT count)
tuiuiGpStatusGdipSetPathGradientCenterColor(GpPathGradient* brush,ARGB colors)
ttuiGpStatusGdipSetPathGradientCenterPoint(GpPathGradient* brush,GDIPGpPointF* points)
ttuiGpStatusGdipSetPathGradientCenterPointI(GpPathGradient* brush,GDIPGpPoint* points)
tiiuiGpStatusGdipSetPathGradientFocusScales(GpPathGradient* brush,REAL xScale,REAL yScale)
tiuiGpStatusGdipSetPathGradientGammaCorrection(GpPathGradient* brush,BOOL useGammaCorrection)
tiiuiGpStatusGdipSetPathGradientLinearBlend(GpPathGradient* brush,REAL focus,REAL scale)
ttuiGpStatusGdipSetPathGradientPath(GpPathGradient* brush,GDIPGpPath* path)
tttiuiGpStatusGdipSetPathGradientPresetBlend(GpPathGradient* brush,GDIPARGB* blend,GDIPREAL* positions,INT count)
tiiuiGpStatusGdipSetPathGradientSigmaBlend(GpPathGradient* brush,REAL focus,REAL scale)
tttuiGpStatusGdipSetPathGradientSurroundColorsWithCount(GpPathGradient* brush,GDIPARGB* color,INT* count)
ttuiGpStatusGdipSetPathGradientTransform(GpPathGradient* brush,GpMatrix* matrix)
tuiuiGpStatusGdipSetPathGradientWrapMode(GpPathGradient* brush,GpWrapMode wrapmode)
tuiGpStatusGdipSetPathMarker(GpPath* path)
ttuiGpStatusGdipSetPenBrushFill(GpPen* pen,GpBrush* brush)
tuiuiGpStatusGdipSetPenColor(GpPen* pen,ARGB argb)
ttiuiGpStatusGdipSetPenCompoundArray(GpPen* pen,GDIPREAL* dash,INT count)
ttuiGpStatusGdipSetPenCustomEndCap(GpPen* pen,GpCustomLineCap* customCap)
ttuiGpStatusGdipSetPenCustomStartCap(GpPen* pen,GpCustomLineCap* customCap)
ttiuiGpStatusGdipSetPenDashArray(GpPen* pen,GDIPREAL* dash,INT count)
tuiuiGpStatusGdipSetPenDashCap197819(GpPen* pen,GpDashCap dashCap)
tiuiGpStatusGdipSetPenDashOffset(GpPen* pen,REAL offset)
tuiuiGpStatusGdipSetPenDashStyle(GpPen* pen,GpDashStyle dashstyle)
tuiuiGpStatusGdipSetPenEndCap(GpPen* pen,GpLineCap endCap)
tuiuiuiuiGpStatusGdipSetPenLineCap197819(GpPen* pen,GpLineCap startCap,GpLineCap endCap,GpDashCap dashCap)
tuiuiGpStatusGdipSetPenLineJoin(GpPen* pen,GpLineJoin lineJoin)
tiuiGpStatusGdipSetPenMiterLimit(GpPen* pen,REAL miterLimit)
tuiuiGpStatusGdipSetPenMode(GpPen* pen,GpPenAlignment penMode)
tuiuiGpStatusGdipSetPenStartCap(GpPen* pen,GpLineCap startCap)
ttuiGpStatusGdipSetPenTransform(GpPen* pen,GpMatrix* matrix)
tuiuiGpStatusGdipSetPenUnit(GpPen* pen,GpUnit unit)
tiuiGpStatusGdipSetPenWidth(GpPen* pen,REAL width)
ttuiGpStatusGdipSetPixelOffsetMode(GpGraphics* graphics,PixelOffsetMode pixelOffsetMode)
ttuiGpStatusGdipSetPropertyItem(GpImage* image,GDIPPropertyItem* item)
tiiuiGpStatusGdipSetRenderingOrigin(GpGraphics* graphics,INT x,INT y)
tuiuiGpStatusGdipSetSmoothingMode(GpGraphics* graphics,SmoothingMode smoothingMode)
tuiuiGpStatusGdipSetSolidFillColor(GpSolidFill* brush,ARGB color)
tuiuiGpStatusGdipSetStringFormatAlign(GpStringFormat* format,StringAlignment align)
tuhuiuiGpStatusGdipSetStringFormatDigitSubstitution(GpStringFormat* format,LANGID language,StringDigitSubstitute substitute)
tiuiGpStatusGdipSetStringFormatFlags(GpStringFormat* format,INT flags)
tiuiGpStatusGdipSetStringFormatHotkeyPrefix(GpStringFormat* format,INT hotkeyPrefix)
tuiuiGpStatusGdipSetStringFormatLineAlign(GpStringFormat* format,StringAlignment align)
tituiGpStatusGdipSetStringFormatMeasurableCharacterRanges(GpStringFormat* format,INT rangeCount,GDIPCharacterRange* ranges)
tiituiGpStatusGdipSetStringFormatTabStops(GpStringFormat* format,REAL firstTabOffset,INT count,GDIPREAL* tabStops)
tuiuiGpStatusGdipSetStringFormatTrimming(GpStringFormat* format,StringTrimming trimming)
tuiuiGpStatusGdipSetTextRenderingHint(GpGraphics* graphics,TextRenderingHint mode)
ttuiGpStatusGdipSetTextureTransform(GpTexture* brush,GDIPGpMatrix* matrix)
tuiuiGpStatusGdipSetTextureWrapMode(GpTexture* brush,GpWrapMode wrapmode)
ttuiGpStatusGdipSetWorldTransform(GpGraphics* graphics,GpMatrix* matrix)
tiiuiuiGpStatusGdipShearMatrix(GpMatrix* matrix,REAL shearX,REAL shearY,GpMatrixOrder order)
tuiGpStatusGdipStartPathFigure(GpPath* path)
tuiGpStatusGdipStringFormatGetGenericDefault(GpStringFormat* *format)
tuiGpStatusGdipStringFormatGetGenericTypographic(GpStringFormat* *format)
uituiGpStatusGdipTestControl(GpTestControlEnum control,void* param)
ttiuiGpStatusGdipTransformMatrixPoints(GpMatrix* matrix,GpPointF* pts,INT count)
ttiuiGpStatusGdipTransformMatrixPointsI(GpMatrix* matrix,GpPoint* pts,INT count)
ttuiGpStatusGdipTransformPath(GpPath* path,GpMatrix* matrix)
tuiuitiuiGpStatusGdipTransformPoints(GpGraphics* graphics,GpCoordinateSpace destSpace,GpCoordinateSpace srcSpace,GpPointF* points,INT count)
tuiuitiuiGpStatusGdipTransformPointsI(GpGraphics* graphics,GpCoordinateSpace destSpace,GpCoordinateSpace srcSpace,GpPoint* points,INT count)
ttuiGpStatusGdipTransformRegion(GpRegion* region,GpMatrix* matrix)
tiiuiGpStatusGdipTranslateClip(GpGraphics* graphics,REAL dx,REAL dy)
tiiuiGpStatusGdipTranslateClipI(GpGraphics* graphics,INT dx,INT dy)
tiiuiuiGpStatusGdipTranslateLineTransform(GpLineGradient* brush,REAL dx,REAL dy,GpMatrixOrder order)
tiiuiuiGpStatusGdipTranslateMatrix(GpMatrix* matrix,REAL offsetX,REAL offsetY,GpMatrixOrder order)
tiiuiuiGpStatusGdipTranslatePathGradientTransform(GpPathGradient* brush,REAL dx,REAL dy,GpMatrixOrder order)
tiiuiuiGpStatusGdipTranslatePenTransform(GpPen* pen,REAL dx,REAL dy,GpMatrixOrder order)
tiiuiGpStatusGdipTranslateRegion(GpRegion* region,REAL dx,REAL dy)
tiiuiGpStatusGdipTranslateRegionI(GpRegion* region,INT dx,INT dy)
tiiuiuiGpStatusGdipTranslateTextureTransform(GpTexture* brush,REAL dx,REAL dy,GpMatrixOrder order)
tiiuiuiGpStatusGdipTranslateWorldTransform(GpGraphics* graphics,REAL dx,REAL dy,GpMatrixOrder order)
ttiuiGpStatusGdipVectorTransformMatrixPoints(GpMatrix* matrix,GpPointF* pts,INT count)
ttiuiGpStatusGdipVectorTransformMatrixPointsI(GpMatrix* matrix,GpPoint* pts,INT count)
tttiiiiiuiiuiGpStatusGdipWarpPath(GpPath* path,GpMatrix* matrix,GDIPGpPointF* points,INT count,REAL srcx,REAL srcy,REAL srcwidth,REAL srcheight,WarpMode warpMode,REAL flatness)
tttiuiGpStatusGdipWidenPath(GpPath* nativePath,GpPen* pen,GpMatrix* matrix,REAL flatness)
ttiuiGpStatusGdipWindingModeOutline(GpPath* path,GpMatrix* matrix,REAL flatness)

Glu32.dll

tiVOIDgluBeginCurve(GLUnurbs *nobj)
tiVOIDgluBeginPolygon(GLUtesselator *tess)
tiVOIDgluBeginSurface(GLUnurbs *nobj)
tiVOIDgluBeginTrim(GLUnurbs *nobj)
iiiiitiVOIDgluBuild1DMipmaps(GLenum target, GLint components, GLint width, GLenum format, GLenum type, const void *data)
iiiiiitiVOIDgluBuild2DMipmaps(GLenum target, GLint components, GLint width, GLInt height, GLenum format, GLenum type, const void *data)
tdddiiiVOIDgluCylinder(GLUquadric *qobj, GLdouble baseRadius, GLdouble topRadius, GLdouble height, GLint slices, GLint stacks)
tiVOIDgluDeleteNurbsRenderer(GLUnurbs *nobj)
tiVOIDgluDeleteQuadric(GLUquadricObj *state)
tiVOIDgluDeleteTess(GLUtesselator *tess)
tddiiiVOIDgluDisk(GLUquadric *qobj, GLdouble innerRadius, GLdouble outerRadius, GLint slices, GLint loops)
tiVOIDgluEndCurve(GLUnurbs *nobj)
tiVOIDgluEndPolygon(GLUtesselator *tess)
tiVOIDgluEndSurface(GLUnurbs *nobj)
tiVOIDgluEndTrim(GLUnurbs *nobj)
itCLubyte*gluErrorString(GLenum errCode)
titiVOIDgluGetNurbsProperty(GLUnurbs *nobj, GLenum property, GLfloat *value)
itGLubyte*gluGetString(GLenum name)
titiVOIDgluGetTessProperty(GLUtesselator *tess, GLenum which, GLdouble *value)
tffiiVOIDgluLoadSamplingMatrices(GLUnurbs *nobj, const GLfloat modelMatrix[16], const GLfloat projMatrix[16], const GLint viewport[4])
dddddddddiVOIDgluLookAt(GLdouble eyex, GLdouble eyey, GLdouble eyez, GLdouble centerx, GLdouble centery, GLdouble centerz, GLdouble upx, GLdouble upy, GLdouble upz)
tGLUnurbs*gluNewNurbsRenderer(void)
tGLUquadric*gluNewQuadric(void)
tGLUtesselator*gluNewTess(void)
tiiVOIDgluNextContour(GLUtesselator *tess, GLenum type)
titiVOIDgluNurbsCallback(GLUnurbs *nobj, GLenum which, void CALLBACK *fn)
tititiiiVOIDgluNurbsCurve(GLUnurbs *nobj, GLint nknots, GLfloat *knot, GLint stride, GLfloat *ctlarray, GLint order, GLenum type)
tifiVOIDgluNurbsProperty(GLUnurbs *nobj, GLenum property, GLfloat value)
tititiitiiiiVOIDgluNurbsSurface(GLUnurbs *nobj, GLint sknot_count, float *sknot, GLint tknot_count, GLfloat *tknot, GLint s_stride, GLint t_stride, GLfloat *ctlarray, GLint sorder, GLint torder, GLenum type)
ddddiVOIDgluOrtho2D(GLdouble left, GLdouble right, GLdouble top, GLdouble bottom)
tddiiddiVOIDgluPartialDisk(GLUquadric *qobj, GLdouble innerRadius, GLdouble outerRadius, GLint slices, GLint loops, GLdouble startAngle, GLdouble sweepAngle)
ddddiVOIDgluPerspective(GLdouble fovy, GLdouble aspect, GLdouble zNear, GLdouble zFar)
ddddiiVOIDgluPickMatrix(GLdouble x, GLdouble y, GLdouble height, GLdouble width, GLint viewport[4])
ddddditttiintgluProject(GLdouble objx, GLdouble objy, GLdouble objz, const GLdouble modelMatrix[16], const GLdouble projMatrix[16], const GLint viewport[4], GLdouble *winx, GLdouble *winy, GLdouble *winz)
titiiiVOIDgluPwlCurve(GLUnurbs *nobj, GLint count, GLfloat *array, GLint stride, GLenum type)
titiVOIDgluQuadricCallback(GLUquadric *qobj, GLenum which, void CALLBACK *fn)
tiiVOIDgluQuadricDrawStyle(GLUquadric *quadObject, GLenum drawStyle)
tiiVOIDgluQuadricNormals(GLUquadric *quadObject, GLenum normals)
tiiVOIDgluQuadricOrientation(GLUquadric *quadObject, GLenum orientation)
tiiVOIDgluQuadricTexture(GLUquadric *quadObject, GLboolean textureCoords)
iiiitiiitiintgluScaleImage(GLenum format, GLint widthin, GLint heightin, GLenum typein, const void *datain, GLint widthout, GLint heightout, GLenum typeout, void *dataout)
tdiiiVOIDgluSphere(GLUquadric *qobj, GLdouble radius, GLint slices, GLint stacks)
tiVOIDgluTessBeginContour(GLUtesselator *tess)
ttiVOIDgluTessBeginPolygon(GLUtesselator *tess, void *polygon_data)
titiVOIDgluTessCallback(GLUtesselator *tess, GLenum which, void CALLBACK *fn)
tiVOIDgluTessEndContour(GLUtesselator *tess)
tiVOIDgluTessEndPolygon(GLUtesselator *tess)
tdddiVOIDgluTessNormal(GLUtesselator *tess, GLdouble x, GLdouble y, GLdouble z)
tidiVOIDgluTessProperty(GLUtesselator *tess, GLenum which, GLdouble value)
tdtiVOIDgluTessVertex(GLUtesselator *tess, GLdouble coords[3], void *data)
ddddditttiintgluUnProject(GLdouble winx, GLdouble winy, GLdouble winz, const GLdouble modelMatrix[16], const GLdouble projMatrix[16], const GLint viewport[4], GLdouble *objx, GLdouble *objy, GLdouble *objz)

hid.dll

tucBOOLEANHidD_FlushQueue(_In_ HANDLE HidDeviceObject)
tucBOOLEANHidD_FreePreparsedData(_In_ PHIDP_PREPARSED_DATA PreparsedData)
ttucBOOLEANHidD_GetAttributes(_In_ HANDLE HidDeviceObject,_Out_ PHIDD_ATTRIBUTES Attributes)
ttuiucBOOLEANHidD_GetConfiguration(_In_ HANDLE HidDeviceObject,_Out_ PHIDD_CONFIGURATION Configuration, _In_ ULONG ConfigurationLength)
ttuiucBOOLEANHidD_GetFeature(_In_ HANDLE HidDeviceObject,_Out_ PVOID ReportBuffer,_In_ ULONG ReportBufferLength)
tuituiucBOOLEANHidD_GetIndexedString(_In_ HANDLE HidDeviceObject,_In_ ULONG StringIndex,_Out_ PVOID Buffer,_In_ ULONG BufferLength)
ttuiucBOOLEANHidD_GetInputReport(_In_ HANDLE HidDeviceObject,_Out_ PVOID ReportBuffer,_In_ ULONG ReportBufferLength)
ttuiucBOOLEANHidD_GetManufacturerString(_In_ HANDLE HidDeviceObject,_Out_ PVOID Buffer,_In_ ULONG BufferLength)
ttuiucBOOLEANHidD_GetMsGenreDescriptor(_In_ HANDLE HidDeviceObject,_Out_ PVOID Buffer,_In_ ULONG BufferLength)
ttucBOOLEANHidD_GetNumInputBuffers(_In_ HANDLE HidDeviceObject,_Out_ PULONG NumberBuffers)
ttuiucBOOLEANHidD_GetPhysicalDescriptor(_In_ HANDLE HidDeviceObject,_Out_ PVOID Buffer,_In_ ULONG BufferLength)
ttucBOOLEANHidD_GetPreparsedData(_In_ HANDLE HidDeviceObject,_Out_ PHIDP_PREPARSED_DATA * PreparsedData)
ttuiucBOOLEANHidD_GetProductString(_In_ HANDLE HidDeviceObject,_Out_ PVOID Buffer,_In_ ULONG BufferLength)
ttuiucBOOLEANHidD_GetSerialNumberString(_In_ HANDLE HidDeviceObject,_Out_ PVOID Buffer,_In_ ULONG BufferLength)
ttuiucBOOLEANHidD_SetConfiguration(_In_ HANDLE HidDeviceObject,_In_ PHIDD_CONFIGURATION Configuration, _In_ ULONG ConfigurationLength)
ttuiucBOOLEANHidD_SetFeature(_In_ HANDLE HidDeviceObject,_In_ PVOID ReportBuffer,_In_ ULONG ReportBufferLength)
tuiucBOOLEANHidD_SetNumInputBuffers(_In_ HANDLE HidDeviceObject,_In_ ULONG NumberBuffers)
ttuiucBOOLEANHidD_SetOutputReport(_In_ HANDLE HidDeviceObject,_In_ PVOID ReportBuffer,_In_ ULONG ReportBufferLength)
itttiintHidP_GetButtonCaps(_In_ HIDP_REPORT_TYPE ReportType,_Out_ PHIDP_BUTTON_CAPS ButtonCaps,_Inout_ PUSHORT ButtonCapsLength,_In_ PHIDP_PREPARSED_DATA PreparsedData)
ttiintHidP_GetCaps(_In_ PHIDP_PREPARSED_DATA PreparsedData,_Out_ PHIDP_CAPS Capabilities)
ittttuiiintHidP_GetData(_In_ HIDP_REPORT_TYPE ReportType,_Out_ PHIDP_DATA DataList,_Inout_ PULONG DataLength,_In_ PHIDP_PREPARSED_DATA PreparsedData,_Out_ PCHAR Report,_In_ ULONG ReportLength)
iuhtttiintHidP_GetExtendedAttributes(_In_ HIDP_REPORT_TYPE ReportType,_In_ USHORT DataIndex,_In_ PHIDP_PREPARSED_DATA PreparsedData,_Out_ PHIDP_EXTENDED_ATTRIBUTES Attributes,_Inout_ PULONG LengthAttributes)
tttiintHidP_GetLinkCollectionNodes(_Out_ PHIDP_LINK_COLLECTION_NODE LinkCollectionNodes,_Inout_ PULONG LinkCollectionNodesLength,_In_ PHIDP_PREPARSED_DATA PreparsedData)
iuhuhuhtttuiiintHidP_GetScaledUsageValue(_In_ HIDP_REPORT_TYPE ReportType,_In_ USAGE UsagePage,_In_opt_ USHORT LinkCollection,_In_ USAGE Usage,_Out_ PLONG UsageValue,_In_ PHIDP_PREPARSED_DATA PreparsedData,_In_ PCHAR Report,_In_ ULONG ReportLength)
iuhuhuhtttiintHidP_GetSpecificButtonCaps(_In_ HIDP_REPORT_TYPE ReportType,_In_opt_ USAGE UsagePage,_In_opt_ USHORT LinkCollection,_In_opt_ USAGE Usage,_Out_ PHIDP_BUTTON_CAPS ButtonCaps,_Inout_ PUSHORT ButtonCapsLength,_In_ PHIDP_PREPARSED_DATA PreparsedData)
iuhuhuhtttiintHidP_GetSpecificValueCaps(_In_ HIDP_REPORT_TYPE ReportType,_In_opt_ USAGE UsagePage,_In_opt_ USHORT LinkCollection,_In_opt_ USAGE Usage,_Out_ PHIDP_VALUE_CAPS ValueCaps,_Inout_ PUSHORT ValueCapsLength,_In_ PHIDP_PREPARSED_DATA PreparsedData)
iuhuhttttuiiintHidP_GetUsages(_In_ HIDP_REPORT_TYPE ReportType,_In_ USAGE UsagePage,_In_opt_ USHORT LinkCollection,_Out_ PUSAGE UsageList,_Inout_ PULONG UsageLength,_In_ PHIDP_PREPARSED_DATA PreparsedData,_Out_ PCHAR Report,_In_ ULONG ReportLength)
iuhttttuiiintHidP_GetUsagesEx(_In_ HIDP_REPORT_TYPE ReportType,_In_opt_ USHORT LinkCollection,_Inout_ PUSAGE_AND_PAGE ButtonList,_Inout_ ULONG * UsageLength,_In_ PHIDP_PREPARSED_DATA PreparsedData,_In_ PCHAR Report,_In_ ULONG ReportLength)
iuhuhuhtttuiiintHidP_GetUsageValue(_In_ HIDP_REPORT_TYPE ReportType,_In_ USAGE UsagePage,_In_opt_ USHORT LinkCollection,_In_ USAGE Usage,_Out_ PULONG UsageValue,_In_ PHIDP_PREPARSED_DATA PreparsedData,_In_ PCHAR Report,_In_ ULONG ReportLength)
iuhuhuhtuhttuiiintHidP_GetUsageValueArray(_In_ HIDP_REPORT_TYPE ReportType,_In_ USAGE UsagePage,_In_opt_ USHORT LinkCollection,_In_ USAGE Usage,_Inout_ PCHAR UsageValue,_In_ USHORT UsageValueByteLength,_In_ PHIDP_PREPARSED_DATA PreparsedData,_In_ PCHAR Report,_In_ ULONG ReportLength)
itttiintHidP_GetValueCaps(_In_ HIDP_REPORT_TYPE ReportType,_Out_ PHIDP_VALUE_CAPS ValueCaps,_Inout_ PUSHORT ValueCapsLength,_In_ PHIDP_PREPARSED_DATA PreparsedData)
iucttuiiintHidP_InitializeReportForID(_In_ HIDP_REPORT_TYPE ReportType,_In_ UCHAR ReportID,_In_ PHIDP_PREPARSED_DATA PreparsedData,_Out_ PCHAR Report,_In_ ULONG ReportLength)
ituiULONGHidP_MaxDataListLength(_In_ HIDP_REPORT_TYPE ReportType,_In_ PHIDP_PREPARSED_DATA PreparsedData)
iuhtuiULONGHidP_MaxUsageListLength(_In_ HIDP_REPORT_TYPE ReportType,_In_opt_ USAGE UsagePage,_In_ PHIDP_PREPARSED_DATA PreparsedData)
ittttuiiintHidP_SetData(_In_ HIDP_REPORT_TYPE ReportType,_Inout_ PHIDP_DATA DataList,_Inout_ PULONG DataLength,_In_ PHIDP_PREPARSED_DATA PreparsedData,_In_reads_bytes_ReportLength PCHAR Report,_In_ ULONG ReportLength)
iuhuhuhittuiiintHidP_SetScaledUsageValue(_In_ HIDP_REPORT_TYPE ReportType,_In_ USAGE UsagePage,_In_opt_ USHORT LinkCollection,_In_ USAGE Usage,_In_ LONG UsageValue,_In_ PHIDP_PREPARSED_DATA PreparsedData,_Inout_ PCHAR Report,_In_ ULONG ReportLength)
iuhuhttttuiiintHidP_SetUsages(_In_ HIDP_REPORT_TYPE ReportType,_In_ USAGE UsagePage,_In_opt_ USHORT LinkCollection,_Inout_ PUSAGE UsageList,_Inout_ PULONG UsageLength,_In_ PHIDP_PREPARSED_DATA PreparsedData,_In_ PCHAR Report,_In_ ULONG ReportLength)
iuhuhuhuittuiiintHidP_SetUsageValue(_In_ HIDP_REPORT_TYPE ReportType,_In_ USAGE UsagePage,_In_opt_ USHORT LinkCollection,_In_ USAGE Usage,_In_ ULONG UsageValue,_In_ PHIDP_PREPARSED_DATA PreparsedData,_Inout_ PCHAR Report,_In_ ULONG ReportLength)
iuhuhuhtuhttuiiintHidP_SetUsageValueArray(_In_ HIDP_REPORT_TYPE ReportType,_In_ USAGE UsagePage,_In_opt_ USHORT LinkCollection,_In_ USAGE Usage,_In_ PCHAR UsageValue,_In_ USHORT UsageValueByteLength,_In_ PHIDP_PREPARSED_DATA PreparsedData,_Inout_ PCHAR Report,_In_ ULONG ReportLength)
tuiitttiintHidP_TranslateUsagesToI8042ScanCodes(_In_ PUSAGE ChangedUsageList,_In_ ULONG UsageListLength,_In_ HIDP_KEYBOARD_DIRECTION KeyAction,_Inout_ PHIDP_KEYBOARD_MODIFIER_STATE ModifierState,_In_ PHIDP_INSERT_SCANCODES InsertCodesProcedure,_In_opt_ PVOID InsertCodesContext)
iuhuhttttuiiintHidP_UnsetUsages(_In_ HIDP_REPORT_TYPE ReportType,_In_ USAGE UsagePage,_In_opt_ USHORT LinkCollection,_Inout_ PUSAGE UsageList,_Inout_ PULONG UsageLength,_In_ PHIDP_PREPARSED_DATA PreparsedData,_In_ PCHAR Report,_In_ ULONG ReportLength)
ttttuiiintHidP_UsageListDifference(_In_ PUSAGE PreviousUsageList,_In_ PUSAGE CurrentUsageList,_Out_ PUSAGE BreakUsageList,_Out_ PUSAGE MakeUsageList,_In_ ULONG UsageListLength)

Kernel32.dll

ttiilong_hread(HFILE hFile,LPVOID lpBuffer,long lBytes)
taiilong_hwrite(HFILE hFile,LPCSTR lpBuffer,long lBytes)
ttHFILE_lclose(HFILE hFile)
aitHFILE_lcreat(LPCSTR lpPathName,int iAttribute)
tiiiLONG_llseek(HFILE hFile,LONG lOffset,int iOrigin)
aitHFILE_lopen(LPCSTR lpPathName,int iReadWrite)
ttuiuiUINT_lread(HFILE hFile,LPVOID lpBuffer,UINT uBytes)
tauiuiUINT_lwrite(HFILE hFile,LPCSTR lpBuffer,UINT uBytes)
tiVOIDAcquireSRWLockExclusive(_Inout_ PSRWLOCK SRWLock)
tiVOIDAcquireSRWLockShared(_Inout_ PSRWLOCK SRWLock)
tutiBOOLActivateActCtx(_In_ HANDLE hActCtx, _Out_ ULONG_PTR *lpCookie)
suhATOMAddAtom(_In_ LPCTSTR lpString)
auhATOMAddAtomA(_In_ LPCSTR lpString)
wuhATOMAddAtomW(_In_ LPCWSTR lpString)
sssiBOOLAddConsoleAlias(_In_ LPCTSTR Source, _In_ LPCTSTR Target, _In_ LPCTSTR ExeName)
aaaiBOOLAddConsoleAliasA(_In_ LPCSTR Source, _In_ LPCSTR Target, _In_ LPCSTR ExeName)
wwwiBOOLAddConsoleAliasW(_In_ LPCWSTR Source, _In_ LPCWSTR Target, _In_ LPCWSTR ExeName)
wtDLL_DIRECTORY_COOKIEAddDllDirectory(_In_ PCWSTR NewDirectory)
ttiBOOLAddIntegrityLabelToBoundaryDescriptor(_Inout_ HANDLE *BoundaryDescriptor, _In_ PSID IntegrityLabel)
tiVOIDAddRefActCtx(_In_ HANDLE hActCtx)
tiBOOLAddSecureMemoryCacheCallback(_In_ PSECURE_MEMORY_CACHE_CALLBACK pfnCallBack)
ttiBOOLAddSIDToBoundaryDescriptor(_Inout_ HANDLE *BoundaryDescriptor, _In_ PSID RequiredSid)
uittPVOIDAddVectoredContinueHandler(_In_ ULONG FirstHandler, _In_ PVECTORED_EXCEPTION_HANDLER VectoredHandler)
uittPVOIDAddVectoredExceptionHandler(_In_ ULONG FirstHandler, _In_ PVECTORED_EXCEPTION_HANDLER VectoredHandler)
tuiiiBOOLAdjustCalendarDate(_Inout_ LPCALDATETIME lpCalDateTime, _In_ CALDATETIME_DATEUNIT calUnit, _Out_ INT amount)
tututiBOOLAllocateUserPhysicalPages(_In_ HANDLE hProcess, _Inout_ PULONG_PTR NumberOfPages, _Out_ PULONG_PTR UserPfnArray)
tututuiiBOOLAllocateUserPhysicalPagesNuma(_In_ HANDLE hProcess, _Inout_ PULONG_PTR NumberOfPages, _Out_ PULONG_PTR PageArray, _In_ DWORD nndPreferred)
iBOOLAllocConsole(void)
iiVOIDApplicationRecoveryFinished(_In_ BOOL bSuccess)
tiHRESULTApplicationRecoveryInProgress(_Out_ PBOOL pbCanceled)
iBOOLAreFileApisANSI(void)
iBOOLAreFileApisANSI(void)
ttiBOOLAssignProcessToJobObject(_In_ HANDLE hJob, _In_ HANDLE hProcess)
uiiBOOLAttachConsole(_In_ DWORD dwProcessId)
ttuitiitiBOOLBackupRead(_In_ HANDLE hFile, _Out_ LPBYTE lpBuffer, _In_ DWORD nNumberOfBytesToRead, _Out_ LPDWORD lpNumberOfBytesRead, _In_ BOOL bAbort, _In_ BOOL bProcessSecurity, _Out_ LPVOID *lpContext)
tuiuitttiBOOLBackupSeek(_In_ HANDLE hFile, _In_ DWORD dwLowBytesToSeek, _In_ DWORD dwHighBytesToSeek, _Out_ LPDWORD lpdwLowByteSeeked, _Out_ LPDWORD lpdwHighByteSeeked, _In_ LPVOID *lpContext)
ttuitiitiBOOLBackupWrite(_In_ HANDLE hFile, _In_ LPBYTE lpBuffer, _In_ DWORD nNumberOfBytesToWrite, _Out_ LPDWORD lpNumberOfBytesWritten, _In_ BOOL bAbort, _In_ BOOL bProcessSecurity, _Out_ LPVOID *lpContext)
uiuiiBOOLBeep(_In_ DWORD dwFreq, _In_ DWORD dwDuration)
sitHANDLEBeginUpdateResource(_In_ LPCTSTR pFileName, _In_ BOOL bDeleteExistingResources)
aitHANDLEBeginUpdateResourceA(_In_ LPCSTR pFileName, _In_ BOOL bDeleteExistingResources)
witHANDLEBeginUpdateResourceW(_In_ LPCWSTR pFileName, _In_ BOOL bDeleteExistingResources)
ttuiiBOOLBindIoCompletionCallback(_In_ HANDLE FileHandle, _In_ LPOVERLAPPED_COMPLETION_ROUTINE Function, _In_ ULONG Flags)
stiBOOLBuildCommDCB(_In_ LPCTSTR lpDef, _Out_ LPDCB lpDCB)
atiBOOLBuildCommDCBA(_In_ LPCSTR lpDef, _Out_ LPDCB lpDCB)
sttiBOOLBuildCommDCBAndTimeouts(_In_ LPCTSTR lpDef, _Out_ LPDCB lpDCB, _Out_ LPCOMMTIMEOUTS lpCommTimeouts)
attiBOOLBuildCommDCBAndTimeoutsA(_In_ LPCSTR lpDef, _Out_ LPDCB lpDCB, _Out_ LPCOMMTIMEOUTS lpCommTimeouts)
wttiBOOLBuildCommDCBAndTimeoutsW(_In_ LPCWSTR lpDef, _Out_ LPDCB lpDCB, _Out_ LPCOMMTIMEOUTS lpCommTimeouts)
wtiBOOLBuildCommDCBW(_In_ LPCWSTR lpDef, _Out_ LPDCB lpDCB)
tiBOOLCallbackMayRunLong(_Inout_ PTP_CALLBACK_INSTANCE pci)
stuituituiiBOOLCallNamedPipe(_In_ LPCTSTR lpNamedPipeName, _In_ LPVOID lpInBuffer, _In_ DWORD nInBufferSize, _Out_ LPVOID lpOutBuffer, _In_ DWORD nOutBufferSize, _Out_ LPDWORD lpBytesRead, _In_ DWORD nTimeOut)
atuituituiiBOOLCallNamedPipeA(_In_ LPCSTR lpNamedPipeName, _In_ LPVOID lpInBuffer, _In_ DWORD nInBufferSize, _Out_ LPVOID lpOutBuffer, _In_ DWORD nOutBufferSize, _Out_ LPDWORD lpBytesRead, _In_ DWORD nTimeOut)
wtuituituiiBOOLCallNamedPipeW(_In_ LPCWSTR lpNamedPipeName, _In_ LPVOID lpInBuffer, _In_ DWORD nInBufferSize, _Out_ LPVOID lpOutBuffer, _In_ DWORD nOutBufferSize, _Out_ LPDWORD lpBytesRead, _In_ DWORD nTimeOut)
tiBOOLCancelDeviceWakeupRequest(HANDLE hDevice)
tiBOOLCancelIo(_In_ HANDLE hFile)
ttiBOOLCancelIoEx(_In_ HANDLE hFile, _In_opt_ LPOVERLAPPED lpOverlapped)
tiBOOLCancelSynchronousIo(_In_ HANDLE hThread)
tiVOIDCancelThreadpoolIo(_Inout_ PTP_IO pio)
ttiBOOLCancelTimerQueueTimer(HANDLE TimerQueue,HANDLE Timer)
tiBOOLCancelWaitableTimer(_In_ HANDLE hTimer)
ttuiuiiBOOLChangeTimerQueueTimer(_In_opt_ HANDLE TimerQueue, _Inout_ HANDLE Timer, _In_ ULONG DueTime, _In_ ULONG Period)
sauittiBOOLCheckNameLegalDOS8Dot3(_In_ LPCTSTR lpName, _Out_opt_ LPSTR lpOemName, _In_ DWORD OemNameSize, _Out_opt_ PBOOL pbNameContainsSpaces, _Out_ PBOOL pbNameLegal)
aauittiBOOLCheckNameLegalDOS8Dot3A(_In_ LPCSTR lpName, _Out_opt_ LPSTR lpOemName, _In_ DWORD OemNameSize, _Out_opt_ PBOOL pbNameContainsSpaces, _Out_ PBOOL pbNameLegal)
wauittiBOOLCheckNameLegalDOS8Dot3W(_In_ LPCWSTR lpName, _Out_opt_ LPSTR lpOemName, _In_ DWORD OemNameSize, _Out_opt_ PBOOL pbNameContainsSpaces, _Out_ PBOOL pbNameLegal)
ttiBOOLCheckRemoteDebuggerPresent(_In_ HANDLE hProcess, _Inout_ PBOOL pbDebuggerPresent)
tiBOOLClearCommBreak(_In_ HANDLE hFile)
tttiBOOLClearCommError(_In_ HANDLE hFile, _Out_opt_ LPDWORD lpErrors, _Out_opt_ LPCOMSTAT lpStat)
tiBOOLCloseHandle(_In_ HANDLE hObject)
tuiucBOOLEANClosePrivateNamespace(_In_ HANDLE Handle, _In_ ULONG Flags)
tiVOIDCloseThreadpool(_Inout_ PTP_POOL ptpp)
tiVOIDCloseThreadpoolCleanupGroup(_Inout_ PTP_CLEANUP_GROUP ptpcg)
titiVOIDCloseThreadpoolCleanupGroupMembers(_Inout_ PTP_CLEANUP_GROUP ptpcg, _In_ BOOL fCancelPendingCallbacks, _Inout_opt_ PVOID pvCleanupContext)
tiVOIDCloseThreadpoolIo(_Inout_ PTP_IO pio)
tiVOIDCloseThreadpoolTimer(_Inout_ PTP_TIMER pti)
tiVOIDCloseThreadpoolWait(_Inout_ PTP_WAIT pwa)
tiVOIDCloseThreadpoolWork(_Inout_ PTP_WORK pwk)
sttiBOOLCommConfigDialog(_In_ LPCTSTR lpszName, _In_ HWND hWnd, _Inout_ LPCOMMCONFIG lpCC)
attiBOOLCommConfigDialogA(_In_ LPCSTR lpszName, _In_ HWND hWnd, _Inout_ LPCOMMCONFIG lpCC)
wttiBOOLCommConfigDialogW(_In_ LPCWSTR lpszName, _In_ HWND hWnd, _Inout_ LPCOMMCONFIG lpCC)
ttiLONGCompareFileTime(_In_ const FILETIME *lpFileTime1, _In_ const FILETIME *lpFileTime2)
uiuisisiiintCompareString(_In_ LCID Locale, _In_ DWORD dwCmpFlags, _In_ LPCTSTR lpString1, _In_ int cchCount1, _In_ LPCTSTR lpString2, _In_ int cchCount2)
uiuiaiaiiintCompareStringA(_In_ LCID Locale, _In_ DWORD dwCmpFlags, _In_ LPCSTR lpString1, _In_ int cchCount1, _In_ LPCSTR lpString2, _In_ int cchCount2)
wuiwiwittutiintCompareStringEx(_In_opt_ LPCWSTR lpLocaleName, _In_ DWORD dwCmpFlags, _In_ LPCWSTR lpString1, _In_ int cchCount1, _In_ LPCWSTR lpString2, _In_ int cchCount2, _In_opt_ LPNLSVERSIONINFO lpVersionInformation, _In_opt_ LPVOID lpReserved, _In_opt_ LPARAM lParam)
wiwiiiintCompareStringOrdinal(_In_ LPCWSTR lpString1, _In_ int cchCount1, _In_ LPCWSTR lpString2, _In_ int cchCount2, _In_ BOOL bIgnoreCase)
uiuiwiwiiintCompareStringW(_In_ LCID Locale, _In_ DWORD dwCmpFlags, _In_ LPCWSTR lpString1, _In_ int cchCount1, _In_ LPCWSTR lpString2, _In_ int cchCount2)
ttiBOOLConnectNamedPipe(_In_ HANDLE hNamedPipe, _Inout_opt_ LPOVERLAPPED lpOverlapped)
uiuiuiiBOOLContinueDebugEvent(_In_ DWORD dwProcessId, _In_ DWORD dwThreadId, _In_ DWORD dwContinueStatus)
ttiBOOLConvertCalDateTimeToSystemTime(_In_ const LPCALDATETIME lpCalDateTime, _Out_ SYSTEMTIME *lpSysTime)
uiuiLCIDConvertDefaultLocale(_In_ LCID Locale)
iBOOLConvertFiberToThread(void)
tuitiBOOLConvertSystemTimeToCalDateTime(_In_ const SYSTEMTIME lpSysTime, _In_ CALID calId, _Out_ LPCALDATETIME lpCalDateTime)
ttLPVOIDConvertThreadToFiber(_In_opt_ LPVOID lpParameter)
tuitLPVOIDConvertThreadToFiberEx(_In_opt_ LPVOID lpParameter, _In_ DWORD dwFlags)
tuitiBOOLCopyContext(_Inout_ PCONTEXT Destination, _In_ DWORD ContextFlags, _In_ PCONTEXT Source)
ssiiBOOLCopyFile(_In_ LPCTSTR lpExistingFileName, _In_ LPCTSTR lpNewFileName, _In_ BOOL bFailIfExists)
aaiiBOOLCopyFileA(_In_ LPCSTR lpExistingFileName, _In_ LPCSTR lpNewFileName, _In_ BOOL bFailIfExists)
sstttuiiBOOLCopyFileEx(_In_ LPCTSTR lpExistingFileName, _In_ LPCTSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_opt_ LPBOOL pbCancel, _In_ DWORD dwCopyFlags)
aatttuiiBOOLCopyFileExA(_In_ LPCSTR lpExistingFileName, _In_ LPCSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_opt_ LPBOOL pbCancel, _In_ DWORD dwCopyFlags)
wwtttuiiBOOLCopyFileExW(_In_ LPCWSTR lpExistingFileName, _In_ LPCWSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_opt_ LPBOOL pbCancel, _In_ DWORD dwCopyFlags)
sstttuitiBOOLCopyFileTransacted(_In_ LPCTSTR lpExistingFileName, _In_ LPCTSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_opt_ LPBOOL pbCancel, _In_ DWORD dwCopyFlags, _In_ HANDLE hTransaction)
aatttuitiBOOLCopyFileTransactedA(_In_ LPCSTR lpExistingFileName, _In_ LPCSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_opt_ LPBOOL pbCancel, _In_ DWORD dwCopyFlags, _In_ HANDLE hTransaction)
wwtttuitiBOOLCopyFileTransactedW(_In_ LPCWSTR lpExistingFileName, _In_ LPCWSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_opt_ LPBOOL pbCancel, _In_ DWORD dwCopyFlags, _In_ HANDLE hTransaction)
wwiiBOOLCopyFileW(_In_ LPCWSTR lpExistingFileName, _In_ LPCWSTR lpNewFileName, _In_ BOOL bFailIfExists)
iiiLONGCopyLZFile(INT,INT)
ttHANDLECreateActCtx(_Inout_ PACTCTX pActCtx)
ttHANDLECreateActCtxA(_Inout_ PACTCTX pActCtx)
ttHANDLECreateActCtxW(_Inout_ PACTCTX pActCtx)
suitHANDLECreateBoundaryDescriptor(_In_ LPCTSTR Name, _In_ ULONG Flags)
auitHANDLECreateBoundaryDescriptorA(_In_ LPCSTR Name, _In_ ULONG Flags)
wuitHANDLECreateBoundaryDescriptorW(_In_ LPCWSTR Name, _In_ ULONG Flags)
uiuituittHANDLECreateConsoleScreenBuffer(_In_ DWORD dwDesiredAccess, _In_ DWORD dwShareMode, _In_opt_ const SECURITY_ATTRIBUTES *lpSecurityAttributes, _In_ DWORD dwFlags, _Reserved_ LPVOID lpScreenBufferData)
stiBOOLCreateDirectory(_In_ LPCTSTR lpPathName, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
atiBOOLCreateDirectoryA(_In_ LPCSTR lpPathName, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
sstiBOOLCreateDirectoryEx(_In_ LPCTSTR lpTemplateDirectory, _In_ LPCTSTR lpNewDirectory, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
aatiBOOLCreateDirectoryExA(_In_ LPCSTR lpTemplateDirectory, _In_ LPCSTR lpNewDirectory, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
wwtiBOOLCreateDirectoryExW(_In_ LPCWSTR lpTemplateDirectory, _In_ LPCWSTR lpNewDirectory, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
ssttiBOOLCreateDirectoryTransacted(_In_opt_ LPCTSTR lpTemplateDirectory, _In_ LPCTSTR lpNewDirectory, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ HANDLE hTransaction)
aattiBOOLCreateDirectoryTransactedA(_In_opt_ LPCSTR lpTemplateDirectory, _In_ LPCSTR lpNewDirectory, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ HANDLE hTransaction)
wwttiBOOLCreateDirectoryTransactedW(_In_opt_ LPCWSTR lpTemplateDirectory, _In_ LPCWSTR lpNewDirectory, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ HANDLE hTransaction)
wtiBOOLCreateDirectoryW(_In_ LPCWSTR lpPathName, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
tiistHANDLECreateEvent(_In_opt_ LPSECURITY_ATTRIBUTES lpEventAttributes, _In_ BOOL bManualReset, _In_ BOOL bInitialState, _In_opt_ LPCTSTR lpName)
tiiatHANDLECreateEventA(_In_opt_ LPSECURITY_ATTRIBUTES lpEventAttributes, _In_ BOOL bManualReset, _In_ BOOL bInitialState, _In_opt_ LPCSTR lpName)
tsuiuitHANDLECreateEventEx(_In_opt_ LPSECURITY_ATTRIBUTES lpEventAttributes, _In_opt_ LPCTSTR lpName, _In_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
tauiuitHANDLECreateEventExA(_In_opt_ LPSECURITY_ATTRIBUTES lpEventAttributes, _In_opt_ LPCSTR lpName, _In_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
twuiuitHANDLECreateEventExW(_In_opt_ LPSECURITY_ATTRIBUTES lpEventAttributes, _In_opt_ LPCWSTR lpName, _In_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
tiiwtHANDLECreateEventW(_In_opt_ LPSECURITY_ATTRIBUTES lpEventAttributes, _In_ BOOL bManualReset, _In_ BOOL bInitialState, _In_opt_ LPCWSTR lpName)
uttttLPVOIDCreateFiber(_In_ SIZE_T dwStackSize, _In_ LPFIBER_START_ROUTINE lpStartAddress, _In_opt_ LPVOID lpParameter)
ututuitttLPVOIDCreateFiberEx(_In_ SIZE_T dwStackCommitSize, _In_ SIZE_T dwStackReserveSize, _In_ DWORD dwFlags, _In_ LPFIBER_START_ROUTINE lpStartAddress, _In_opt_ LPVOID lpParameter)
suiuituiuittHANDLECreateFile(_In_ LPCTSTR lpFileName, _In_ DWORD dwDesiredAccess, _In_ DWORD dwShareMode, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ DWORD dwCreationDisposition, _In_ DWORD dwFlagsAndAttributes, _In_opt_ HANDLE hTemplateFile)
auiuituiuittHANDLECreateFileA(_In_ LPCSTR lpFileName, _In_ DWORD dwDesiredAccess, _In_ DWORD dwShareMode, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ DWORD dwCreationDisposition, _In_ DWORD dwFlagsAndAttributes, _In_opt_ HANDLE hTemplateFile)
ttuiuiuistHANDLECreateFileMapping(_In_ HANDLE hFile, _In_opt_ LPSECURITY_ATTRIBUTES lpAttributes, _In_ DWORD flProtect, _In_ DWORD dwMaximumSizeHigh, _In_ DWORD dwMaximumSizeLow, _In_opt_ LPCTSTR lpName)
ttuiuiuiatHANDLECreateFileMappingA(_In_ HANDLE hFile, _In_opt_ LPSECURITY_ATTRIBUTES lpAttributes, _In_ DWORD flProtect, _In_ DWORD dwMaximumSizeHigh, _In_ DWORD dwMaximumSizeLow, _In_opt_ LPCSTR lpName)
ttuiuiuisuitHANDLECreateFileMappingNuma(_In_ HANDLE hFile, _In_opt_ LPSECURITY_ATTRIBUTES lpFileMappingAttributes, _In_ DWORD flProtect, _In_ DWORD dwMaximumSizeHigh, _In_ DWORD dwMaximumSizeLow, _In_opt_ LPCTSTR lpName, _In_ DWORD nndPreferred)
ttuiuiuiauitHANDLECreateFileMappingNumaA(_In_ HANDLE hFile, _In_opt_ LPSECURITY_ATTRIBUTES lpFileMappingAttributes, _In_ DWORD flProtect, _In_ DWORD dwMaximumSizeHigh, _In_ DWORD dwMaximumSizeLow, _In_opt_ LPCSTR lpName, _In_ DWORD nndPreferred)
ttuiuiuiwuitHANDLECreateFileMappingNumaW(_In_ HANDLE hFile, _In_opt_ LPSECURITY_ATTRIBUTES lpFileMappingAttributes, _In_ DWORD flProtect, _In_ DWORD dwMaximumSizeHigh, _In_ DWORD dwMaximumSizeLow, _In_opt_ LPCWSTR lpName, _In_ DWORD nndPreferred)
ttuiuiuiwtHANDLECreateFileMappingW(_In_ HANDLE hFile, _In_opt_ LPSECURITY_ATTRIBUTES lpAttributes, _In_ DWORD flProtect, _In_ DWORD dwMaximumSizeHigh, _In_ DWORD dwMaximumSizeLow, _In_opt_ LPCWSTR lpName)
suiuituiuitttttHANDLECreateFileTransacted(_In_ LPCTSTR lpFileName, _In_ DWORD dwDesiredAccess, _In_ DWORD dwShareMode, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ DWORD dwCreationDisposition, _In_ DWORD dwFlagsAndAttributes, _In_opt_ HANDLE hTemplateFile, _In_ HANDLE hTransaction, _In_opt_ PUSHORT pusMiniVersion, _Reserved_ PVOID pExtendedParameter)
auiuituiuitttttHANDLECreateFileTransactedA(_In_ LPCSTR lpFileName, _In_ DWORD dwDesiredAccess, _In_ DWORD dwShareMode, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ DWORD dwCreationDisposition, _In_ DWORD dwFlagsAndAttributes, _In_opt_ HANDLE hTemplateFile, _In_ HANDLE hTransaction, _In_opt_ PUSHORT pusMiniVersion, _Reserved_ PVOID pExtendedParameter)
wuiuituiuitttttHANDLECreateFileTransactedW(_In_ LPCWSTR lpFileName, _In_ DWORD dwDesiredAccess, _In_ DWORD dwShareMode, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ DWORD dwCreationDisposition, _In_ DWORD dwFlagsAndAttributes, _In_opt_ HANDLE hTemplateFile, _In_ HANDLE hTransaction, _In_opt_ PUSHORT pusMiniVersion, _Reserved_ PVOID pExtendedParameter)
wuiuituiuittHANDLECreateFileW(_In_ LPCWSTR lpFileName, _In_ DWORD dwDesiredAccess, _In_ DWORD dwShareMode, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ DWORD dwCreationDisposition, _In_ DWORD dwFlagsAndAttributes, _In_opt_ HANDLE hTemplateFile)
sstiBOOLCreateHardLink(_In_ LPCTSTR lpFileName, _In_ LPCTSTR lpExistingFileName, _Reserved_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
aatiBOOLCreateHardLinkA(_In_ LPCSTR lpFileName, _In_ LPCSTR lpExistingFileName, _Reserved_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
ssttiBOOLCreateHardLinkTransacted(_In_ LPCTSTR lpFileName, _In_ LPCTSTR lpExistingFileName, _Reserved_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ HANDLE hTransaction)
aattiBOOLCreateHardLinkTransactedA(_In_ LPCSTR lpFileName, _In_ LPCSTR lpExistingFileName, _Reserved_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ HANDLE hTransaction)
wwttiBOOLCreateHardLinkTransactedW(_In_ LPCWSTR lpFileName, _In_ LPCWSTR lpExistingFileName, _Reserved_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ HANDLE hTransaction)
wwtiBOOLCreateHardLinkW(_In_ LPCWSTR lpFileName, _In_ LPCWSTR lpExistingFileName, _Reserved_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
ttutuitHANDLECreateIoCompletionPort(_In_ HANDLE FileHandle, _In_opt_ HANDLE ExistingCompletionPort, _In_ ULONG_PTR CompletionKey, _In_ DWORD NumberOfConcurrentThreads)
tstHANDLECreateJobObject(_In_opt_ LPSECURITY_ATTRIBUTES lpJobAttributes, _In_opt_ LPCTSTR lpName)
tatHANDLECreateJobObjectA(_In_opt_ LPSECURITY_ATTRIBUTES lpJobAttributes, _In_opt_ LPCSTR lpName)
twtHANDLECreateJobObjectW(_In_opt_ LPSECURITY_ATTRIBUTES lpJobAttributes, _In_opt_ LPCWSTR lpName)
uituiiBOOLCreateJobSet(ULONG NumJob,PJOB_SET_ARRAY UserJobSet,ULONG Flags)
suiuittHANDLECreateMailslot(_In_ LPCTSTR lpName, _In_ DWORD nMaxMessageSize, _In_ DWORD lReadTimeout, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
auiuittHANDLECreateMailslotA(_In_ LPCSTR lpName, _In_ DWORD nMaxMessageSize, _In_ DWORD lReadTimeout, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
wuiuittHANDLECreateMailslotW(_In_ LPCWSTR lpName, _In_ DWORD nMaxMessageSize, _In_ DWORD lReadTimeout, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
uitHANDLECreateMemoryResourceNotification(_In_ MEMORY_RESOURCE_NOTIFICATION_TYPE NotificationType)
tistHANDLECreateMutex(_In_opt_ LPSECURITY_ATTRIBUTES lpMutexAttributes, _In_ BOOL bInitialOwner, _In_opt_ LPCTSTR lpName)
tiatHANDLECreateMutexA(_In_opt_ LPSECURITY_ATTRIBUTES lpMutexAttributes, _In_ BOOL bInitialOwner, _In_opt_ LPCSTR lpName)
tsuiuitHANDLECreateMutexEx(_In_opt_ LPSECURITY_ATTRIBUTES lpMutexAttributes, _In_opt_ LPCTSTR lpName, _In_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
tauiuitHANDLECreateMutexExA(_In_opt_ LPSECURITY_ATTRIBUTES lpMutexAttributes, _In_opt_ LPCSTR lpName, _In_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
twuiuitHANDLECreateMutexExW(_In_opt_ LPSECURITY_ATTRIBUTES lpMutexAttributes, _In_opt_ LPCWSTR lpName, _In_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
tiwtHANDLECreateMutexW(_In_opt_ LPSECURITY_ATTRIBUTES lpMutexAttributes, _In_ BOOL bInitialOwner, _In_opt_ LPCWSTR lpName)
suiuiuiuiuiuittHANDLECreateNamedPipe(_In_ LPCTSTR lpName, _In_ DWORD dwOpenMode, _In_ DWORD dwPipeMode, _In_ DWORD nMaxInstances, _In_ DWORD nOutBufferSize, _In_ DWORD nInBufferSize, _In_ DWORD nDefaultTimeOut, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
auiuiuiuiuiuittHANDLECreateNamedPipeA(_In_ LPCSTR lpName, _In_ DWORD dwOpenMode, _In_ DWORD dwPipeMode, _In_ DWORD nMaxInstances, _In_ DWORD nOutBufferSize, _In_ DWORD nInBufferSize, _In_ DWORD nDefaultTimeOut, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
wuiuiuiuiuiuittHANDLECreateNamedPipeW(_In_ LPCWSTR lpName, _In_ DWORD dwOpenMode, _In_ DWORD dwPipeMode, _In_ DWORD nMaxInstances, _In_ DWORD nOutBufferSize, _In_ DWORD nInBufferSize, _In_ DWORD nDefaultTimeOut, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes)
tttuiiBOOLCreatePipe(_Out_ PHANDLE hReadPipe, _Out_ PHANDLE hWritePipe, _In_opt_ LPSECURITY_ATTRIBUTES lpPipeAttributes, _In_ DWORD nSize)
ttstHANDLECreatePrivateNamespace(_In_opt_ LPSECURITY_ATTRIBUTES lpPrivateNamespaceAttributes, _In_ LPVOID lpBoundaryDescriptor, _In_ LPCTSTR lpAliasPrefix)
ttatHANDLECreatePrivateNamespaceA(_In_opt_ LPSECURITY_ATTRIBUTES lpPrivateNamespaceAttributes, _In_ LPVOID lpBoundaryDescriptor, _In_ LPCSTR lpAliasPrefix)
ttwtHANDLECreatePrivateNamespaceW(_In_opt_ LPSECURITY_ATTRIBUTES lpPrivateNamespaceAttributes, _In_ LPVOID lpBoundaryDescriptor, _In_ LPCWSTR lpAliasPrefix)
ssttiuitsttiBOOLCreateProcess(_In_opt_ LPCTSTR lpApplicationName, _Inout_opt_ LPTSTR lpCommandLine, _In_opt_ LPSECURITY_ATTRIBUTES lpProcessAttributes, _In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes, _In_ BOOL bInheritHandles, _In_ DWORD dwCreationFlags, _In_opt_ LPVOID lpEnvironment, _In_opt_ LPCTSTR lpCurrentDirectory, _In_ LPSTARTUPINFO lpStartupInfo, _Out_ LPPROCESS_INFORMATION lpProcessInformation)
aattiuitattiBOOLCreateProcessA(_In_opt_ LPCSTR lpApplicationName, _Inout_opt_ LPSTR lpCommandLine, _In_opt_ LPSECURITY_ATTRIBUTES lpProcessAttributes, _In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes, _In_ BOOL bInheritHandles, _In_ DWORD dwCreationFlags, _In_opt_ LPVOID lpEnvironment, _In_opt_ LPCSTR lpCurrentDirectory, _In_ LPSTARTUPINFO lpStartupInfo, _Out_ LPPROCESS_INFORMATION lpProcessInformation)
wwttiuitwttiBOOLCreateProcessW(_In_opt_ LPCWSTR lpApplicationName, _Inout_opt_ LPWSTR lpCommandLine, _In_opt_ LPSECURITY_ATTRIBUTES lpProcessAttributes, _In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes, _In_ BOOL bInheritHandles, _In_ DWORD dwCreationFlags, _In_opt_ LPVOID lpEnvironment, _In_opt_ LPCWSTR lpCurrentDirectory, _In_ LPSTARTUPINFO lpStartupInfo, _Out_ LPPROCESS_INFORMATION lpProcessInformation)
ttutttuittHANDLECreateRemoteThread(_In_ HANDLE hProcess, _In_ LPSECURITY_ATTRIBUTES lpThreadAttributes, _In_ SIZE_T dwStackSize, _In_ LPTHREAD_START_ROUTINE lpStartAddress, _In_ LPVOID lpParameter, _In_ DWORD dwCreationFlags, _Out_ LPDWORD lpThreadId)
ttutttuitttHANDLECreateRemoteThreadEx(_In_ HANDLE hProcess, _In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes, _In_ SIZE_T dwStackSize, _In_ LPTHREAD_START_ROUTINE lpStartAddress, _In_opt_ LPVOID lpParameter, _In_ DWORD dwCreationFlags, _In_opt_ LPPROC_THREAD_ATTRIBUTE_LIST lpAttributeList, _Out_opt_ LPDWORD lpThreadId)
tiistHANDLECreateSemaphore(_In_opt_ LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, _In_ LONG lInitialCount, _In_ LONG lMaximumCount, _In_opt_ LPCTSTR lpName)
tiiatHANDLECreateSemaphoreA(_In_opt_ LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, _In_ LONG lInitialCount, _In_ LONG lMaximumCount, _In_opt_ LPCSTR lpName)
tiisuiuitHANDLECreateSemaphoreEx(_In_opt_ LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, _In_ LONG lInitialCount, _In_ LONG lMaximumCount, _In_opt_ LPCTSTR lpName, _Reserved_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
tiiauiuitHANDLECreateSemaphoreExA(_In_opt_ LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, _In_ LONG lInitialCount, _In_ LONG lMaximumCount, _In_opt_ LPCSTR lpName, _Reserved_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
tiiwuiuitHANDLECreateSemaphoreExW(_In_opt_ LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, _In_ LONG lInitialCount, _In_ LONG lMaximumCount, _In_opt_ LPCWSTR lpName, _Reserved_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
tiiwtHANDLECreateSemaphoreW(_In_opt_ LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, _In_ LONG lInitialCount, _In_ LONG lMaximumCount, _In_opt_ LPCWSTR lpName)
ssuiucBOOLEANCreateSymbolicLink(_In_ LPTSTR lpSymlinkFileName, _In_ LPTSTR lpTargetFileName, _In_ DWORD dwFlags)
aauiucBOOLEANCreateSymbolicLinkA(_In_ LPSTR lpSymlinkFileName, _In_ LPSTR lpTargetFileName, _In_ DWORD dwFlags)
ssuitucBOOLEANCreateSymbolicLinkTransacted(_In_ LPTSTR lpSymlinkFileName, _In_ LPTSTR lpTargetFileName, _In_ DWORD dwFlags, _In_ HANDLE hTransaction)
aauitucBOOLEANCreateSymbolicLinkTransactedA(_In_ LPSTR lpSymlinkFileName, _In_ LPSTR lpTargetFileName, _In_ DWORD dwFlags, _In_ HANDLE hTransaction)
wwuitucBOOLEANCreateSymbolicLinkTransactedW(_In_ LPWSTR lpSymlinkFileName, _In_ LPWSTR lpTargetFileName, _In_ DWORD dwFlags, _In_ HANDLE hTransaction)
wwuiucBOOLEANCreateSymbolicLinkW(_In_ LPWSTR lpSymlinkFileName, _In_ LPWSTR lpTargetFileName, _In_ DWORD dwFlags)
tuiuiuiuiDWORDCreateTapePartition(_In_ HANDLE hDevice, _In_ DWORD dwPartitionMethod, _In_ DWORD dwCount, _In_ DWORD dwSize)
tutttuittHANDLECreateThread(_In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes, _In_ SIZE_T dwStackSize, _In_ LPTHREAD_START_ROUTINE lpStartAddress, _In_opt_ LPVOID lpParameter, _In_ DWORD dwCreationFlags, _Out_opt_ LPDWORD lpThreadId)
ttPTP_POOLCreateThreadpool(_Reserved_ PVOID reserved)
tPTP_CLEANUP_GROUPCreateThreadpoolCleanupGroup(void)
tttttPTP_IOCreateThreadpoolIo(_In_ HANDLE fl, _In_ PTP_WIN32_IO_CALLBACK pfnio, _Inout_opt_ PVOID pv, _In_opt_ PTP_CALLBACK_ENVIRON pcbe)
ttttPTP_TIMERCreateThreadpoolTimer(_In_ PTP_TIMER_CALLBACK pfnti, _Inout_opt_ PVOID pv, _In_opt_ PTP_CALLBACK_ENVIRON pcbe)
ttttPTP_WAITCreateThreadpoolWait(_In_ PTP_WAIT_CALLBACK pfnwa, _Inout_opt_ PVOID pv, _In_opt_ PTP_CALLBACK_ENVIRON pcbe)
ttttPTP_WORKCreateThreadpoolWork(_In_ PTP_WORK_CALLBACK pfnwk, _Inout_opt_ PVOID pv, _In_opt_ PTP_CALLBACK_ENVIRON pcbe)
tHANDLECreateTimerQueue(void)
ttttuiuiuiiBOOLCreateTimerQueueTimer(_Out_ PHANDLE phNewTimer, _In_opt_ HANDLE TimerQueue, _In_ WAITORTIMERCALLBACK Callback, _In_opt_ PVOID Parameter, _In_ DWORD DueTime, _In_ DWORD Period, _In_ ULONG Flags)
uiuitHANDLECreateToolhelp32Snapshot(_In_ DWORD dwFlags, _In_ DWORD th32ProcessID)
tistHANDLECreateWaitableTimer(_In_opt_ LPSECURITY_ATTRIBUTES lpTimerAttributes, _In_ BOOL bManualReset, _In_opt_ LPCTSTR lpTimerName)
tiatHANDLECreateWaitableTimerA(_In_opt_ LPSECURITY_ATTRIBUTES lpTimerAttributes, _In_ BOOL bManualReset, _In_opt_ LPCSTR lpTimerName)
tsuiuitHANDLECreateWaitableTimerEx(_In_opt_ LPSECURITY_ATTRIBUTES lpTimerAttributes, _In_opt_ LPCTSTR lpTimerName, _In_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
tauiuitHANDLECreateWaitableTimerExA(_In_opt_ LPSECURITY_ATTRIBUTES lpTimerAttributes, _In_opt_ LPCSTR lpTimerName, _In_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
twuiuitHANDLECreateWaitableTimerExW(_In_opt_ LPSECURITY_ATTRIBUTES lpTimerAttributes, _In_opt_ LPCWSTR lpTimerName, _In_ DWORD dwFlags, _In_ DWORD dwDesiredAccess)
tiwtHANDLECreateWaitableTimerW(_In_opt_ LPSECURITY_ATTRIBUTES lpTimerAttributes, _In_ BOOL bManualReset, _In_opt_ LPCWSTR lpTimerName)
uiutiBOOLDeactivateActCtx(_In_ DWORD dwFlags, _In_ ULONG_PTR ulCookie)
uiiBOOLDebugActiveProcess(_In_ DWORD dwProcessId)
uiiBOOLDebugActiveProcessStop(_In_ DWORD dwProcessId)
iVOIDDebugBreak(void)
tiBOOLDebugBreakProcess(_In_ HANDLE Process)
iiBOOLDebugSetProcessKillOnExit(_In_ BOOL KillOnExit)
uissiBOOLDefineDosDevice(_In_ DWORD dwFlags, _In_ LPCTSTR lpDeviceName, _In_opt_ LPCTSTR lpTargetPath)
uiaaiBOOLDefineDosDeviceA(_In_ DWORD dwFlags, _In_ LPCSTR lpDeviceName, _In_opt_ LPCSTR lpTargetPath)
uiwwiBOOLDefineDosDeviceW(_In_ DWORD dwFlags, _In_ LPCWSTR lpDeviceName, _In_opt_ LPCWSTR lpTargetPath)
uhuhATOMDeleteAtom(_In_ ATOM nAtom)
tiVOIDDeleteBoundaryDescriptor(_In_ HANDLE BoundaryDescriptor)
tiVOIDDeleteCriticalSection(_Inout_ LPCRITICAL_SECTION lpCriticalSection)
tiVOIDDeleteFiber(_In_ LPVOID lpFiber)
siBOOLDeleteFile(_In_ LPCTSTR lpFileName)
aiBOOLDeleteFileA(_In_ LPCSTR lpFileName)
stiBOOLDeleteFileTransacted(_In_ LPCTSTR lpFileName, _In_ HANDLE hTransaction)
atiBOOLDeleteFileTransactedA(_In_ LPCSTR lpFileName, _In_ HANDLE hTransaction)
wtiBOOLDeleteFileTransactedW(_In_ LPCWSTR lpFileName, _In_ HANDLE hTransaction)
wiBOOLDeleteFileW(_In_ LPCWSTR lpFileName)
tiVOIDDeleteProcThreadAttributeList(_Inout_ LPPROC_THREAD_ATTRIBUTE_LIST lpAttributeList)
tiBOOLDeleteTimerQueue(_In_ HANDLE TimerQueue)
ttiBOOLDeleteTimerQueueEx(_In_ HANDLE TimerQueue, _In_opt_ HANDLE CompletionEvent)
tttiBOOLDeleteTimerQueueTimer(_In_opt_ HANDLE TimerQueue, _In_ HANDLE Timer, _In_opt_ HANDLE CompletionEvent)
siBOOLDeleteVolumeMountPoint(_In_ LPCTSTR lpszVolumeMountPoint)
aiBOOLDeleteVolumeMountPointA(_In_ LPCSTR lpszVolumeMountPoint)
wiBOOLDeleteVolumeMountPointW(_In_ LPCWSTR lpszVolumeMountPoint)
tuituituittiBOOLDeviceIoControl(_In_ HANDLE hDevice, _In_ DWORD dwIoControlCode, _In_opt_ LPVOID lpInBuffer, _In_ DWORD nInBufferSize, _Out_opt_ LPVOID lpOutBuffer, _In_ DWORD nOutBufferSize, _Out_opt_ LPDWORD lpBytesReturned, _Inout_opt_ LPOVERLAPPED lpOverlapped)
tiBOOLDisableThreadLibraryCalls(_In_ HMODULE hModule)
tuiDWORDDisableThreadProfiling(_In_ HANDLE PerformanceDataHandle)
tiVOIDDisassociateCurrentThreadFromCallback(_Inout_ PTP_CALLBACK_INSTANCE pci)
tiBOOLDisconnectNamedPipe(_In_ HANDLE hNamedPipe)
sstiBOOLDnsHostnameToComputerName(_In_ LPCTSTR Hostname, _Out_ LPTSTR ComputerName, _Inout_ LPDWORD nSize)
aatiBOOLDnsHostnameToComputerNameA(_In_ LPCSTR Hostname, _Out_ LPSTR ComputerName, _Inout_ LPDWORD nSize)
wwtiBOOLDnsHostnameToComputerNameW(_In_ LPCWSTR Hostname, _Out_ LPWSTR ComputerName, _Inout_ LPDWORD nSize)
uhuhtiBOOLDosDateTimeToFileTime(_In_ WORD wFatDate, _In_ WORD wFatTime, _Out_ LPFILETIME lpFileTime)
ttttuiiuiiBOOLDuplicateHandle(_In_ HANDLE hSourceProcessHandle, _In_ HANDLE hSourceHandle, _In_ HANDLE hTargetProcessHandle, _Out_ LPHANDLE lpTargetHandle, _In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ DWORD dwOptions)
tuiui6tuiDWORDEnableThreadProfiling(_In_ HANDLE ThreadHandle, _In_ DWORD Flags, _In_ DWORD64 HardwareCounters, _Out_ HANDLE PerformanceDataHandle)
tiiBOOLEndUpdateResource(_In_ HANDLE hUpdate, _In_ BOOL fDiscard)
tiiBOOLEndUpdateResourceA(_In_ HANDLE hUpdate, _In_ BOOL fDiscard)
tiiBOOLEndUpdateResourceW(_In_ HANDLE hUpdate, _In_ BOOL fDiscard)
tiVOIDEnterCriticalSection(_Inout_ LPCRITICAL_SECTION lpCriticalSection)
tuiuiuiiBOOLEnumCalendarInfo(_In_ CALINFO_ENUMPROC pCalInfoEnumProc, _In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType)
tuiuiuiiBOOLEnumCalendarInfoA(_In_ CALINFO_ENUMPROC pCalInfoEnumProc, _In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType)
tuiuiuiiBOOLEnumCalendarInfoEx(_In_ CALINFO_ENUMPROCEX pCalInfoEnumProcEx, _In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType)
tuiuiuiiBOOLEnumCalendarInfoExA(_In_ CALINFO_ENUMPROCEX pCalInfoEnumProcEx, _In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType)
twuiwuiutiBOOLEnumCalendarInfoExEx(_In_ CALINFO_ENUMPROCEXEX pCalInfoEnumProcExEx, _In_opt_ LPCWSTR lpLocaleName, _In_ CALID Calendar, _In_opt_ LPCWSTR lpReserved, _In_ CALTYPE CalType, _In_ LPARAM lParam)
tuiuiuiiBOOLEnumCalendarInfoExW(_In_ CALINFO_ENUMPROCEX pCalInfoEnumProcEx, _In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType)
tuiuiuiiBOOLEnumCalendarInfoW(_In_ CALINFO_ENUMPROC pCalInfoEnumProc, _In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType)
tuiuiiBOOLEnumDateFormats(_In_ DATEFMT_ENUMPROC lpDateFmtEnumProc, _In_ LCID Locale, _In_ DWORD dwFlags)
tuiuiiBOOLEnumDateFormatsA(_In_ DATEFMT_ENUMPROC lpDateFmtEnumProc, _In_ LCID Locale, _In_ DWORD dwFlags)
tuiuiiBOOLEnumDateFormatsEx(_In_ DATEFMT_ENUMPROCEX lpDateFmtEnumProcEx, _In_ LCID Locale, _In_ DWORD dwFlags)
tuiuiiBOOLEnumDateFormatsExA(_In_ DATEFMT_ENUMPROCEX lpDateFmtEnumProcEx, _In_ LCID Locale, _In_ DWORD dwFlags)
twuiutiBOOLEnumDateFormatsExEx(_In_ DATEFMT_ENUMPROCEXEX lpDateFmtEnumProcExEx, _In_opt_ LPCWSTR lpLocaleName, _In_ DWORD dwFlags, _In_ LPARAM lParam)
tuiuiiBOOLEnumDateFormatsExW(_In_ DATEFMT_ENUMPROCEX lpDateFmtEnumProcEx, _In_ LCID Locale, _In_ DWORD dwFlags)
tuiuiiBOOLEnumDateFormatsW(_In_ DATEFMT_ENUMPROC lpDateFmtEnumProc, _In_ LCID Locale, _In_ DWORD dwFlags)
tuiuitiBOOLEnumLanguageGroupLocales(_In_ LANGGROUPLOCALE_ENUMPROC lpLangGroupLocaleEnumProc, _In_ LGRPID LanguageGroup, _In_ DWORD dwFlags, _In_ LONG_PTR lParam)
tuiuitiBOOLEnumLanguageGroupLocalesA(_In_ LANGGROUPLOCALE_ENUMPROC lpLangGroupLocaleEnumProc, _In_ LGRPID LanguageGroup, _In_ DWORD dwFlags, _In_ LONG_PTR lParam)
tuiuitiBOOLEnumLanguageGroupLocalesW(_In_ LANGGROUPLOCALE_ENUMPROC lpLangGroupLocaleEnumProc, _In_ LGRPID LanguageGroup, _In_ DWORD dwFlags, _In_ LONG_PTR lParam)
tssttiBOOLEnumResourceLanguages(_In_ HMODULE hModule, _In_ LPCTSTR lpType, _In_ LPCTSTR lpName, _In_ ENUMRESLANGPROC lpEnumFunc, _In_ LONG_PTR lParam)
taattiBOOLEnumResourceLanguagesA(_In_ HMODULE hModule, _In_ LPCSTR lpType, _In_ LPCSTR lpName, _In_ ENUMRESLANGPROC lpEnumFunc, _In_ LONG_PTR lParam)
tssttuiuhiBOOLEnumResourceLanguagesEx(_In_ HMODULE hModule, _In_ LPCTSTR lpType, _In_ LPCTSTR lpName, _In_ ENUMRESLANGPROC lpEnumFunc, _In_ LONG_PTR lParam, _In_ DWORD dwFlags, _In_ LANGID LangId)
taattuiuhiBOOLEnumResourceLanguagesExA(_In_ HMODULE hModule, _In_ LPCSTR lpType, _In_ LPCSTR lpName, _In_ ENUMRESLANGPROC lpEnumFunc, _In_ LONG_PTR lParam, _In_ DWORD dwFlags, _In_ LANGID LangId)
twwttuiuhiBOOLEnumResourceLanguagesExW(_In_ HMODULE hModule, _In_ LPCWSTR lpType, _In_ LPCWSTR lpName, _In_ ENUMRESLANGPROC lpEnumFunc, _In_ LONG_PTR lParam, _In_ DWORD dwFlags, _In_ LANGID LangId)
twwttiBOOLEnumResourceLanguagesW(_In_ HMODULE hModule, _In_ LPCWSTR lpType, _In_ LPCWSTR lpName, _In_ ENUMRESLANGPROC lpEnumFunc, _In_ LONG_PTR lParam)
tsttiBOOLEnumResourceNames(_In_opt_ HMODULE hModule, _In_ LPCTSTR lpszType, _In_ ENUMRESNAMEPROC lpEnumFunc, _In_ LONG_PTR lParam)
tattiBOOLEnumResourceNamesA(_In_opt_ HMODULE hModule, _In_ LPCSTR lpszType, _In_ ENUMRESNAMEPROC lpEnumFunc, _In_ LONG_PTR lParam)
tsttuiuhiBOOLEnumResourceNamesEx(_In_opt_ HMODULE hModule, _In_ LPCTSTR lpszType, _In_ ENUMRESNAMEPROC lpEnumFunc, _In_ LONG_PTR lParam, _In_ DWORD dwFlags, _In_ LANGID LangId)
tattuiuhiBOOLEnumResourceNamesExA(_In_opt_ HMODULE hModule, _In_ LPCSTR lpszType, _In_ ENUMRESNAMEPROC lpEnumFunc, _In_ LONG_PTR lParam, _In_ DWORD dwFlags, _In_ LANGID LangId)
twttuiuhiBOOLEnumResourceNamesExW(_In_opt_ HMODULE hModule, _In_ LPCWSTR lpszType, _In_ ENUMRESNAMEPROC lpEnumFunc, _In_ LONG_PTR lParam, _In_ DWORD dwFlags, _In_ LANGID LangId)
twttiBOOLEnumResourceNamesW(_In_opt_ HMODULE hModule, _In_ LPCWSTR lpszType, _In_ ENUMRESNAMEPROC lpEnumFunc, _In_ LONG_PTR lParam)
tttiBOOLEnumResourceTypes(_In_opt_ HMODULE hModule, _In_ ENUMRESTYPEPROC lpEnumFunc, _In_ LONG_PTR lParam)
tttiBOOLEnumResourceTypesA(_In_opt_ HMODULE hModule, _In_ ENUMRESTYPEPROC lpEnumFunc, _In_ LONG_PTR lParam)
tttuiuhiBOOLEnumResourceTypesEx(_In_opt_ HMODULE hModule, _In_ ENUMRESTYPEPROC lpEnumFunc, _In_ LONG_PTR lParam, _In_ DWORD dwFlags, _In_ LANGID LangId)
tttuiuhiBOOLEnumResourceTypesExA(_In_opt_ HMODULE hModule, _In_ ENUMRESTYPEPROC lpEnumFunc, _In_ LONG_PTR lParam, _In_ DWORD dwFlags, _In_ LANGID LangId)
tttuiuhiBOOLEnumResourceTypesExW(_In_opt_ HMODULE hModule, _In_ ENUMRESTYPEPROC lpEnumFunc, _In_ LONG_PTR lParam, _In_ DWORD dwFlags, _In_ LANGID LangId)
tttiBOOLEnumResourceTypesW(_In_opt_ HMODULE hModule, _In_ ENUMRESTYPEPROC lpEnumFunc, _In_ LONG_PTR lParam)
tuiiBOOLEnumSystemCodePages(_In_ CODEPAGE_ENUMPROC lpCodePageEnumProc, _In_ DWORD dwFlags)
tuiiBOOLEnumSystemCodePagesA(_In_ CODEPAGE_ENUMPROC lpCodePageEnumProc, _In_ DWORD dwFlags)
tuiiBOOLEnumSystemCodePagesW(_In_ CODEPAGE_ENUMPROC lpCodePageEnumProc, _In_ DWORD dwFlags)
uituiuiUINTEnumSystemFirmwareTables(_In_ DWORD FirmwareTableProviderSignature, _Out_ PVOID pFirmwareTableBuffer, _In_ DWORD BufferSize)
uiuitiBOOLEnumSystemGeoID(_In_ GEOCLASS GeoClass, _In_ GEOID ParentGeoId, _In_ GEO_ENUMPROC lpGeoEnumProc)
tuitiBOOLEnumSystemLanguageGroups(_In_ LANGUAGEGROUP_ENUMPROC lpLanguageGroupEnumProc, _In_ DWORD dwFlags, _In_ LONG_PTR lParam)
tuitiBOOLEnumSystemLanguageGroupsA(_In_ LANGUAGEGROUP_ENUMPROC lpLanguageGroupEnumProc, _In_ DWORD dwFlags, _In_ LONG_PTR lParam)
tuitiBOOLEnumSystemLanguageGroupsW(_In_ LANGUAGEGROUP_ENUMPROC lpLanguageGroupEnumProc, _In_ DWORD dwFlags, _In_ LONG_PTR lParam)
tuiiBOOLEnumSystemLocales(_In_ LOCALE_ENUMPROC lpLocaleEnumProc, _In_ DWORD dwFlags)
tuiiBOOLEnumSystemLocalesA(_In_ LOCALE_ENUMPROC lpLocaleEnumProc, _In_ DWORD dwFlags)
tuiuttiBOOLEnumSystemLocalesEx(_In_ LOCALE_ENUMPROCEX lpLocaleEnumProcEx, _In_ DWORD dwFlags, _In_ LPARAM lParam, _In_opt_ LPVOID lpReserved)
tuiiBOOLEnumSystemLocalesW(_In_ LOCALE_ENUMPROC lpLocaleEnumProc, _In_ DWORD dwFlags)
tuiuiiBOOLEnumTimeFormats(_In_ TIMEFMT_ENUMPROC lpTimeFmtEnumProc, _In_ LCID Locale, _In_ DWORD dwFlags)
tuiuiiBOOLEnumTimeFormatsA(_In_ TIMEFMT_ENUMPROC lpTimeFmtEnumProc, _In_ LCID Locale, _In_ DWORD dwFlags)
twuiutiBOOLEnumTimeFormatsEx(_In_ TIMEFMT_ENUMPROCEX lpTimeFmtEnumProcEx, _In_opt_ LPCWSTR lpLocaleName, _In_ DWORD dwFlags, _In_ LPARAM lParam)
tuiuiiBOOLEnumTimeFormatsW(_In_ TIMEFMT_ENUMPROC lpTimeFmtEnumProc, _In_ LCID Locale, _In_ DWORD dwFlags)
tuitiBOOLEnumUILanguages(_In_ UILANGUAGE_ENUMPROC lpUILanguageEnumProc, _In_ DWORD dwFlags, _In_ LONG_PTR lParam)
tuitiBOOLEnumUILanguagesA(_In_ UILANGUAGE_ENUMPROC lpUILanguageEnumProc, _In_ DWORD dwFlags, _In_ LONG_PTR lParam)
tuitiBOOLEnumUILanguagesW(_In_ UILANGUAGE_ENUMPROC lpUILanguageEnumProc, _In_ DWORD dwFlags, _In_ LONG_PTR lParam)
tuiiuiDWORDEraseTape(_In_ HANDLE hDevice, _In_ DWORD dwEraseType, _In_ BOOL bImmediate)
tuiiBOOLEscapeCommFunction(_In_ HANDLE hFile, _In_ DWORD dwFunc)
uiiVOIDExitProcess(_In_ UINT uExitCode)
uiiVOIDExitThread(_In_ DWORD dwExitCode)
ssuiuiDWORDExpandEnvironmentStrings(_In_ LPCTSTR lpSrc, _Out_opt_ LPTSTR lpDst, _In_ DWORD nSize)
aauiuiDWORDExpandEnvironmentStringsA(_In_ LPCSTR lpSrc, _Out_opt_ LPSTR lpDst, _In_ DWORD nSize)
wwuiuiDWORDExpandEnvironmentStringsW(_In_ LPCWSTR lpSrc, _Out_opt_ LPWSTR lpDst, _In_ DWORD nSize)
uisiVOIDFatalAppExit(_In_ UINT uAction, _In_ LPCTSTR lpMessageText)
uiaiVOIDFatalAppExitA(_In_ UINT uAction, _In_ LPCSTR lpMessageText)
uiwiVOIDFatalAppExitW(_In_ UINT uAction, _In_ LPCWSTR lpMessageText)
iiVOIDFatalExit(_In_ int ExitCode)
tttiBOOLFileTimeToDosDateTime(_In_ const FILETIME *lpFileTime, _Out_ LPWORD lpFatDate, _Out_ LPWORD lpFatTime)
ttiBOOLFileTimeToLocalFileTime(_In_ const FILETIME *lpFileTime, _Out_ LPFILETIME lpLocalFileTime)
ttiBOOLFileTimeToSystemTime(_In_ const FILETIME *lpFileTime, _Out_ LPSYSTEMTIME lpSystemTime)
tuhuiuitiBOOLFillConsoleOutputAttribute(_In_ HANDLE hConsoleOutput, _In_ WORD wAttribute, _In_ DWORD nLength, _In_ COORD dwWriteCoord, _Out_ LPDWORD lpNumberOfAttrsWritten)
tyuiuitiBOOLFillConsoleOutputCharacter(_In_ HANDLE hConsoleOutput, _In_ TCHAR cCharacter, _In_ DWORD nLength, _In_ COORD dwWriteCoord, _Out_ LPDWORD lpNumberOfCharsWritten)
tyuiuitiBOOLFillConsoleOutputCharacterA(_In_ HANDLE hConsoleOutput, _In_ TCHAR cCharacter, _In_ DWORD nLength, _In_ COORD dwWriteCoord, _Out_ LPDWORD lpNumberOfCharsWritten)
tyuiuitiBOOLFillConsoleOutputCharacterW(_In_ HANDLE hConsoleOutput, _In_ TCHAR cCharacter, _In_ DWORD nLength, _In_ COORD dwWriteCoord, _Out_ LPDWORD lpNumberOfCharsWritten)
uituittiBOOLFindActCtxSectionGuid(_In_ DWORD dwFlags, _In_ const GUID *lpExtensionGuid, _In_ ULONG ulSectionId, _In_ const GUID *lpGuidToFind, _Out_ PACTCTX_SECTION_KEYED_DATA ReturnedData)
uituistiBOOLFindActCtxSectionString(_In_ DWORD dwFlags, _In_ const GUID *lpExtensionGuid, _In_ ULONG ulSectionId, _In_ LPCTSTR lpStringToFind, _Out_ PACTCTX_SECTION_KEYED_DATA ReturnedData)
uituiatiBOOLFindActCtxSectionStringA(_In_ DWORD dwFlags, _In_ const GUID *lpExtensionGuid, _In_ ULONG ulSectionId, _In_ LPCSTR lpStringToFind, _Out_ PACTCTX_SECTION_KEYED_DATA ReturnedData)
uituiwtiBOOLFindActCtxSectionStringW(_In_ DWORD dwFlags, _In_ const GUID *lpExtensionGuid, _In_ ULONG ulSectionId, _In_ LPCWSTR lpStringToFind, _Out_ PACTCTX_SECTION_KEYED_DATA ReturnedData)
suhATOMFindAtom(_In_ LPCTSTR lpString)
auhATOMFindAtomA(_In_ LPCSTR lpString)
wuhATOMFindAtomW(_In_ LPCWSTR lpString)
tiBOOLFindClose(_Inout_ HANDLE hFindFile)
tiBOOLFindCloseChangeNotification(_In_ HANDLE hChangeHandle)
siuitHANDLEFindFirstChangeNotification(_In_ LPCTSTR lpPathName, _In_ BOOL bWatchSubtree, _In_ DWORD dwNotifyFilter)
aiuitHANDLEFindFirstChangeNotificationA(_In_ LPCSTR lpPathName, _In_ BOOL bWatchSubtree, _In_ DWORD dwNotifyFilter)
wiuitHANDLEFindFirstChangeNotificationW(_In_ LPCWSTR lpPathName, _In_ BOOL bWatchSubtree, _In_ DWORD dwNotifyFilter)
sttHANDLEFindFirstFile(_In_ LPCTSTR lpFileName, _Out_ LPWIN32_FIND_DATA lpFindFileData)
attHANDLEFindFirstFileA(_In_ LPCSTR lpFileName, _Out_ LPWIN32_FIND_DATA lpFindFileData)
suituituitHANDLEFindFirstFileEx(_In_ LPCTSTR lpFileName, _In_ FINDEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFindFileData, _In_ FINDEX_SEARCH_OPS fSearchOp, _Reserved_ LPVOID lpSearchFilter, _In_ DWORD dwAdditionalFlags)
auituituitHANDLEFindFirstFileExA(_In_ LPCSTR lpFileName, _In_ FINDEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFindFileData, _In_ FINDEX_SEARCH_OPS fSearchOp, _Reserved_ LPVOID lpSearchFilter, _In_ DWORD dwAdditionalFlags)
wuituituitHANDLEFindFirstFileExW(_In_ LPCWSTR lpFileName, _In_ FINDEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFindFileData, _In_ FINDEX_SEARCH_OPS fSearchOp, _Reserved_ LPVOID lpSearchFilter, _In_ DWORD dwAdditionalFlags)
wuitwttHANDLEFindFirstFileNameTransactedW(_In_ LPCWSTR lpFileName, _In_ DWORD dwFlags, _Inout_ LPDWORD StringLength, _Inout_ PWCHAR LinkName, _In_opt_ HANDLE hTransaction)
wuitwtHANDLEFindFirstFileNameW(_In_ LPCWSTR lpFileName, _In_ DWORD dwFlags, _Inout_ LPDWORD StringLength, _Inout_ PWCHAR LinkName)
suituituittHANDLEFindFirstFileTransacted(_In_ LPCTSTR lpFileName, _In_ FINDEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFindFileData, _In_ FINDEX_SEARCH_OPS fSearchOp, _Reserved_ LPVOID lpSearchFilter, _In_ DWORD dwAdditionalFlags, _In_ HANDLE hTransaction)
auituituittHANDLEFindFirstFileTransactedA(_In_ LPCSTR lpFileName, _In_ FINDEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFindFileData, _In_ FINDEX_SEARCH_OPS fSearchOp, _Reserved_ LPVOID lpSearchFilter, _In_ DWORD dwAdditionalFlags, _In_ HANDLE hTransaction)
wuituituittHANDLEFindFirstFileTransactedW(_In_ LPCWSTR lpFileName, _In_ FINDEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFindFileData, _In_ FINDEX_SEARCH_OPS fSearchOp, _Reserved_ LPVOID lpSearchFilter, _In_ DWORD dwAdditionalFlags, _In_ HANDLE hTransaction)
wttHANDLEFindFirstFileW(_In_ LPCWSTR lpFileName, _Out_ LPWIN32_FIND_DATA lpFindFileData)
wuituittHANDLEFindFirstStreamTransactedW(_In_ LPCWSTR lpFileName, _In_ STREAM_INFO_LEVELS InfoLevel, _Out_ LPVOID lpFindStreamData, _Reserved_ DWORD dwFlags, _In_ HANDLE hTransaction)
wuituitHANDLEFindFirstStreamW(_In_ LPCWSTR lpFileName, _In_ STREAM_INFO_LEVELS InfoLevel, _Out_ LPVOID lpFindStreamData, _Reserved_ DWORD dwFlags)
suitHANDLEFindFirstVolume(_Out_ LPTSTR lpszVolumeName, _In_ DWORD cchBufferLength)
auitHANDLEFindFirstVolumeA(_Out_ LPSTR lpszVolumeName, _In_ DWORD cchBufferLength)
ssuitHANDLEFindFirstVolumeMountPoint(_In_ LPTSTR lpszRootPathName, _Out_ LPTSTR lpszVolumeMountPoint, _In_ DWORD cchBufferLength)
aauitHANDLEFindFirstVolumeMountPointA(_In_ LPSTR lpszRootPathName, _Out_ LPSTR lpszVolumeMountPoint, _In_ DWORD cchBufferLength)
wwuitHANDLEFindFirstVolumeMountPointW(_In_ LPWSTR lpszRootPathName, _Out_ LPWSTR lpszVolumeMountPoint, _In_ DWORD cchBufferLength)
wuitHANDLEFindFirstVolumeW(_Out_ LPWSTR lpszVolumeName, _In_ DWORD cchBufferLength)
tiBOOLFindNextChangeNotification(_In_ HANDLE hChangeHandle)
ttiBOOLFindNextFile(_In_ HANDLE hFindFile, _Out_ LPWIN32_FIND_DATA lpFindFileData)
ttiBOOLFindNextFileA(_In_ HANDLE hFindFile, _Out_ LPWIN32_FIND_DATA lpFindFileData)
ttwiBOOLFindNextFileNameW(_In_ HANDLE hFindStream, _Inout_ LPDWORD StringLength, _Inout_ PWCHAR LinkName)
ttiBOOLFindNextFileW(_In_ HANDLE hFindFile, _Out_ LPWIN32_FIND_DATA lpFindFileData)
ttiBOOLFindNextStreamW(_In_ HANDLE hFindStream, _Out_ LPVOID lpFindStreamData)
tsuiiBOOLFindNextVolume(_In_ HANDLE hFindVolume, _Out_ LPTSTR lpszVolumeName, _In_ DWORD cchBufferLength)
tauiiBOOLFindNextVolumeA(_In_ HANDLE hFindVolume, _Out_ LPSTR lpszVolumeName, _In_ DWORD cchBufferLength)
tsuiiBOOLFindNextVolumeMountPoint(_In_ HANDLE hFindVolumeMountPoint, _Out_ LPTSTR lpszVolumeMountPoint, _In_ DWORD cchBufferLength)
tauiiBOOLFindNextVolumeMountPointA(_In_ HANDLE hFindVolumeMountPoint, _Out_ LPSTR lpszVolumeMountPoint, _In_ DWORD cchBufferLength)
twuiiBOOLFindNextVolumeMountPointW(_In_ HANDLE hFindVolumeMountPoint, _Out_ LPWSTR lpszVolumeMountPoint, _In_ DWORD cchBufferLength)
twuiiBOOLFindNextVolumeW(_In_ HANDLE hFindVolume, _Out_ LPWSTR lpszVolumeName, _In_ DWORD cchBufferLength)
uiuiwiwitiintFindNLSString(_In_ LCID Locale, _In_ DWORD dwFindNLSStringFlags, _In_ LPCWSTR lpStringSource, _In_ int cchSource, _In_ LPCWSTR lpStringValue, _In_ int cchValue, _Out_opt_ LPINT pcchFound)
wuiwiwitttutiintFindNLSStringEx(_In_opt_ LPCWSTR lpLocaleName, _In_ DWORD dwFindNLSStringFlags, _In_ LPCWSTR lpStringSource, _In_ int cchSource, _In_ LPCWSTR lpStringValue, _In_ int cchValue, _Out_opt_ LPINT pcchFound, _In_opt_ LPNLSVERSIONINFO lpVersionInformation, _In_opt_ LPVOID lpReserved, _In_opt_ LPARAM sortHandle)
tsstHRSRCFindResource(_In_opt_ HMODULE hModule, _In_ LPCTSTR lpName, _In_ LPCTSTR lpType)
taatHRSRCFindResourceA(_In_opt_ HMODULE hModule, _In_ LPCSTR lpName, _In_ LPCSTR lpType)
tssuhtHRSRCFindResourceEx(_In_opt_ HMODULE hModule, _In_ LPCTSTR lpType, _In_ LPCTSTR lpName, _In_ WORD wLanguage)
taauhtHRSRCFindResourceExA(_In_opt_ HMODULE hModule, _In_ LPCSTR lpType, _In_ LPCSTR lpName, _In_ WORD wLanguage)
twwuhtHRSRCFindResourceExW(_In_opt_ HMODULE hModule, _In_ LPCWSTR lpType, _In_ LPCWSTR lpName, _In_ WORD wLanguage)
twwtHRSRCFindResourceW(_In_opt_ HMODULE hModule, _In_ LPCWSTR lpName, _In_ LPCWSTR lpType)
uiwiwiiiintFindStringOrdinal(_In_ DWORD dwFindStringOrdinalFlags, _In_ LPCWSTR lpStringSource, _In_ int cchSource, _In_ LPCWSTR lpStringValue, _In_ int cchValue, _In_ BOOL bIgnoreCase)
tiBOOLFindVolumeClose(_In_ HANDLE hFindVolume)
tiBOOLFindVolumeMountPointClose(_In_ HANDLE hFindVolumeMountPoint)
tuiDWORDFlsAlloc(_In_ PFLS_CALLBACK_FUNCTION lpCallback)
uiiBOOLFlsFree(_In_ DWORD dwFlsIndex)
uitPVOIDFlsGetValue(_In_ DWORD dwFlsIndex)
uitiBOOLFlsSetValue(_In_ DWORD dwFlsIndex, _In_opt_ PVOID lpFlsData)
tiBOOLFlushConsoleInputBuffer(_In_ HANDLE hConsoleInput)
tiBOOLFlushFileBuffers(_In_ HANDLE hFile)
ttutiBOOLFlushInstructionCache(_In_ HANDLE hProcess, _In_ LPCVOID lpBaseAddress, _In_ SIZE_T dwSize)
iVOIDFlushProcessWriteBuffers(void)
tutiBOOLFlushViewOfFile(_In_ LPCVOID lpBaseAddress, _In_ SIZE_T dwNumberOfBytesToFlush)
uisisiiintFoldString(_In_ DWORD dwMapFlags, _In_ LPCTSTR lpSrcStr, _In_ int cchSrc, _Out_opt_ LPTSTR lpDestStr, _In_ int cchDest)
uiaiaiiintFoldStringA(_In_ DWORD dwMapFlags, _In_ LPCSTR lpSrcStr, _In_ int cchSrc, _Out_opt_ LPSTR lpDestStr, _In_ int cchDest)
uiwiwiiintFoldStringW(_In_ DWORD dwMapFlags, _In_ LPCWSTR lpSrcStr, _In_ int cchSrc, _Out_opt_ LPWSTR lpDestStr, _In_ int cchDest)
uituiuisuituiDWORDFormatMessage(_In_ DWORD dwFlags, _In_opt_ LPCVOID lpSource, _In_ DWORD dwMessageId, _In_ DWORD dwLanguageId, _Out_ LPTSTR lpBuffer, _In_ DWORD nSize, _In_opt_ va_list *Arguments)
uituiuiauituiDWORDFormatMessageA(_In_ DWORD dwFlags, _In_opt_ LPCVOID lpSource, _In_ DWORD dwMessageId, _In_ DWORD dwLanguageId, _Out_ LPSTR lpBuffer, _In_ DWORD nSize, _In_opt_ va_list *Arguments)
uituiuiwuituiDWORDFormatMessageW(_In_ DWORD dwFlags, _In_opt_ LPCVOID lpSource, _In_ DWORD dwMessageId, _In_ DWORD dwLanguageId, _Out_ LPWSTR lpBuffer, _In_ DWORD nSize, _In_opt_ va_list *Arguments)
iBOOLFreeConsole(void)
siBOOLFreeEnvironmentStrings(_In_ LPTCH lpszEnvironmentBlock)
aiBOOLFreeEnvironmentStringsA(_In_ LPCH lpszEnvironmentBlock)
wiBOOLFreeEnvironmentStringsW(_In_ LPWCH lpszEnvironmentBlock)
tiBOOLFreeLibrary(_In_ HMODULE hModule)
tuiiVOIDFreeLibraryAndExitThread(_In_ HMODULE hModule, _In_ DWORD dwExitCode)
ttiVOIDFreeLibraryWhenCallbackReturns(_Inout_ PTP_CALLBACK_INSTANCE pci, _In_ HMODULE mod)
tiBOOLFreeResource(_In_ HGLOBAL hglbResource)
tututiBOOLFreeUserPhysicalPages(_In_ HANDLE hProcess, _Inout_ PULONG_PTR NumberOfPages, _In_ PULONG_PTR UserPfnArray)
uiuiiBOOLGenerateConsoleCtrlEvent(_In_ DWORD dwCtrlEvent, _In_ DWORD dwProcessGroupId)
uiUINTGetACP(void)
uiUINTGetACP(void)
uhuiDWORDGetActiveProcessorCount(_In_ WORD GroupNumber)
uhWORDGetActiveProcessorGroupCount(void)
tttttiHRESULTGetApplicationRecoveryCallback(_In_ HANDLE hProcess, _Out_ APPLICATION_RECOVERY_CALLBACK *pRecoveryCallback, _Out_ PVOID *ppvParameter, _Out_ PDWORD pdwPingInterval, _Out_ PDWORD pdwFlags)
ttttiHRESULTGetApplicationRestartSettings(_In_ HANDLE hProcess, _Out_opt_ PWSTR pwzCommandline, _Inout_ PDWORD pcchSize, _Out_opt_ PDWORD pdwFlags)
uhsiuiUINTGetAtomName(_In_ ATOM nAtom, _Out_ LPTSTR lpBuffer, _In_ int nSize)
uhaiuiUINTGetAtomNameA(_In_ ATOM nAtom, _Out_ LPSTR lpBuffer, _In_ int nSize)
uhwiuiUINTGetAtomNameW(_In_ ATOM nAtom, _Out_ LPWSTR lpBuffer, _In_ int nSize)
stiBOOLGetBinaryType(_In_ LPCTSTR lpApplicationName, _Out_ LPDWORD lpBinaryType)
atiBOOLGetBinaryTypeA(_In_ LPCSTR lpApplicationName, _Out_ LPDWORD lpBinaryType)
wtiBOOLGetBinaryTypeW(_In_ LPCWSTR lpApplicationName, _Out_ LPDWORD lpBinaryType)
wuitwwiiBOOLGetCalendarDateFormatEx(_In_ LPCWSTR lpszLocale, _In_ DWORD dwFlags, _In_ const LPCALDATETIME lpCalDateTime, _In_ LPCWSTR lpFormat, _Out_ LPWSTR lpDateStr, _In_ int cchDate)
uiuiuisitiintGetCalendarInfo(_In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType, _Out_opt_ LPTSTR lpCalData, _In_ int cchData, _Out_opt_ LPDWORD lpValue)
uiuiuiaitiintGetCalendarInfoA(_In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType, _Out_opt_ LPSTR lpCalData, _In_ int cchData, _Out_opt_ LPDWORD lpValue)
wuiwuiwitiintGetCalendarInfoEx(_In_opt_ LPCWSTR lpLocaleName, _In_ CALID Calendar, _In_opt_ LPCWSTR lpReserved, _In_ CALTYPE CalType, _Out_opt_ LPWSTR lpCalData, _In_ int cchData, _Out_opt_ LPDWORD lpValue)
uiuiuiwitiintGetCalendarInfoW(_In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType, _Out_opt_ LPWSTR lpCalData, _In_ int cchData, _Out_opt_ LPDWORD lpValue)
uittiBOOLGetCalendarSupportedDateRange(_In_ CALID Calendar, _Out_ LPCALDATETIME lpCalMinDateTime, _Out_ LPCALDATETIME lpCalMaxDateTime)
sLPTSTRGetCommandLine(void)
aLPSTRGetCommandLineA(void)
wLPWSTRGetCommandLineW(void)
tttiBOOLGetCommConfig(_In_ HANDLE hCommDev, _Out_ LPCOMMCONFIG lpCC, _Inout_ LPDWORD lpdwSize)
ttiBOOLGetCommMask(_In_ HANDLE hFile, _Out_ LPDWORD lpEvtMask)
ttiBOOLGetCommModemStatus(_In_ HANDLE hFile, _Out_ LPDWORD lpModemStat)
ttiBOOLGetCommProperties(_In_ HANDLE hFile, _Out_ LPCOMMPROP lpCommProp)
ttiBOOLGetCommState(_In_ HANDLE hFile, _Inout_ LPDCB lpDCB)
ttiBOOLGetCommTimeouts(_In_ HANDLE hFile, _Out_ LPCOMMTIMEOUTS lpCommTimeouts)
stuiDWORDGetCompressedFileSize(_In_ LPCTSTR lpFileName, _Out_opt_ LPDWORD lpFileSizeHigh)
atuiDWORDGetCompressedFileSizeA(_In_ LPCSTR lpFileName, _Out_opt_ LPDWORD lpFileSizeHigh)
sttuiDWORDGetCompressedFileSizeTransacted(_In_ LPCTSTR lpFileName, _Out_opt_ LPDWORD lpFileSizeHigh, _In_ HANDLE hTransaction)
attuiDWORDGetCompressedFileSizeTransactedA(_In_ LPCSTR lpFileName, _Out_opt_ LPDWORD lpFileSizeHigh, _In_ HANDLE hTransaction)
wttuiDWORDGetCompressedFileSizeTransactedW(_In_ LPCWSTR lpFileName, _Out_opt_ LPDWORD lpFileSizeHigh, _In_ HANDLE hTransaction)
wtuiDWORDGetCompressedFileSizeW(_In_ LPCWSTR lpFileName, _Out_opt_ LPDWORD lpFileSizeHigh)
stiBOOLGetComputerName(_Out_ LPTSTR lpBuffer, _Inout_ LPDWORD lpnSize)
atiBOOLGetComputerNameA(_Out_ LPSTR lpBuffer, _Inout_ LPDWORD lpnSize)
uistiBOOLGetComputerNameEx(_In_ COMPUTER_NAME_FORMAT NameType, _Out_ LPTSTR lpBuffer, _Inout_ LPDWORD lpnSize)
uiatiBOOLGetComputerNameExA(_In_ COMPUTER_NAME_FORMAT NameType, _Out_ LPSTR lpBuffer, _Inout_ LPDWORD lpnSize)
uiwtiBOOLGetComputerNameExW(_In_ COMPUTER_NAME_FORMAT NameType, _Out_ LPWSTR lpBuffer, _Inout_ LPDWORD lpnSize)
wtiBOOLGetComputerNameW(_Out_ LPWSTR lpBuffer, _Inout_ LPDWORD lpnSize)
ssuisuiDWORDGetConsoleAlias(_In_ LPTSTR lpSource, _Out_ LPTSTR lpTargetBuffer, _In_ DWORD TargetBufferLength, _In_ LPTSTR lpExeName)
aauiauiDWORDGetConsoleAliasA(_In_ LPSTR lpSource, _Out_ LPSTR lpTargetBuffer, _In_ DWORD TargetBufferLength, _In_ LPSTR lpExeName)
suisuiDWORDGetConsoleAliases(_Out_ LPTSTR lpAliasBuffer, _In_ DWORD AliasBufferLength, _In_ LPTSTR lpExeName)
auiauiDWORDGetConsoleAliasesA(_Out_ LPSTR lpAliasBuffer, _In_ DWORD AliasBufferLength, _In_ LPSTR lpExeName)
suiDWORDGetConsoleAliasesLength(_In_ LPTSTR lpExeName)
auiDWORDGetConsoleAliasesLengthA(_In_ LPSTR lpExeName)
wuiDWORDGetConsoleAliasesLengthW(_In_ LPWSTR lpExeName)
wuiwuiDWORDGetConsoleAliasesW(_Out_ LPWSTR lpAliasBuffer, _In_ DWORD AliasBufferLength, _In_ LPWSTR lpExeName)
suiuiDWORDGetConsoleAliasExes(_Out_ LPTSTR lpExeNameBuffer, _In_ DWORD ExeNameBufferLength)
auiuiDWORDGetConsoleAliasExesA(_Out_ LPSTR lpExeNameBuffer, _In_ DWORD ExeNameBufferLength)
uiDWORDGetConsoleAliasExesLength(void)
uiDWORDGetConsoleAliasExesLengthA(void)
uiDWORDGetConsoleAliasExesLengthW(void)
wuiuiDWORDGetConsoleAliasExesW(_Out_ LPWSTR lpExeNameBuffer, _In_ DWORD ExeNameBufferLength)
wwuiwuiDWORDGetConsoleAliasW(_In_ LPWSTR lpSource, _Out_ LPWSTR lpTargetBuffer, _In_ DWORD TargetBufferLength, _In_ LPWSTR lpExeName)
uiUINTGetConsoleCP(void)
uiUINTGetConsoleCP(void)
ttiBOOLGetConsoleCursorInfo(_In_ HANDLE hConsoleOutput, _Out_ PCONSOLE_CURSOR_INFO lpConsoleCursorInfo)
tiBOOLGetConsoleDisplayMode(_Out_ LPDWORD lpModeFlags)
tuiuiCOORDGetConsoleFontSize(_In_ HANDLE hConsoleOutput, _In_ DWORD nFont)
tiBOOLGetConsoleHistoryInfo(_Out_ PCONSOLE_HISTORY_INFO lpConsoleHistoryInfo)
ttiBOOLGetConsoleMode(_In_ HANDLE hConsoleHandle, _Out_ LPDWORD lpMode)
suiuiDWORDGetConsoleOriginalTitle(_Out_ LPTSTR lpConsoleTitle, _In_ DWORD nSize)
auiuiDWORDGetConsoleOriginalTitleA(_Out_ LPSTR lpConsoleTitle, _In_ DWORD nSize)
wuiuiDWORDGetConsoleOriginalTitleW(_Out_ LPWSTR lpConsoleTitle, _In_ DWORD nSize)
uiUINTGetConsoleOutputCP(void)
uiUINTGetConsoleOutputCP(void)
tuiuiDWORDGetConsoleProcessList(_Out_ LPDWORD lpdwProcessList, _In_ DWORD dwProcessCount)
ttiBOOLGetConsoleScreenBufferInfo(_In_ HANDLE hConsoleOutput, _Out_ PCONSOLE_SCREEN_BUFFER_INFO lpConsoleScreenBufferInfo)
ttiBOOLGetConsoleScreenBufferInfoEx(_In_ HANDLE hConsoleOutput, _Out_ PCONSOLE_SCREEN_BUFFER_INFOEX lpConsoleScreenBufferInfoEx)
tiBOOLGetConsoleSelectionInfo(_Out_ PCONSOLE_SELECTION_INFO lpConsoleSelectionInfo)
suiuiDWORDGetConsoleTitle(_Out_ LPTSTR lpConsoleTitle, _In_ DWORD nSize)
auiuiDWORDGetConsoleTitleA(_Out_ LPSTR lpConsoleTitle, _In_ DWORD nSize)
wuiuiDWORDGetConsoleTitleW(_Out_ LPWSTR lpConsoleTitle, _In_ DWORD nSize)
tHWNDGetConsoleWindow(void)
uitiBOOLGetCPInfo(_In_ UINT CodePage, _Out_ LPCPINFO lpCPInfo)
uiuitiBOOLGetCPInfoEx(_In_ UINT CodePage, _In_ DWORD dwFlags, _Out_ LPCPINFOEX lpCPInfoEx)
uiuitiBOOLGetCPInfoExA(_In_ UINT CodePage, _In_ DWORD dwFlags, _Out_ LPCPINFOEX lpCPInfoEx)
uiuitiBOOLGetCPInfoExW(_In_ UINT CodePage, _In_ DWORD dwFlags, _Out_ LPCPINFOEX lpCPInfoEx)
uiuistsiiintGetCurrencyFormat(_In_ LCID Locale, _In_ DWORD dwFlags, _In_ LPCTSTR lpValue, _In_opt_ const CURRENCYFMT *lpFormat, _Out_opt_ LPTSTR lpCurrencyStr, _In_ int cchCurrency)
uiuiataiiintGetCurrencyFormatA(_In_ LCID Locale, _In_ DWORD dwFlags, _In_ LPCSTR lpValue, _In_opt_ const CURRENCYFMT *lpFormat, _Out_opt_ LPSTR lpCurrencyStr, _In_ int cchCurrency)
wuiwtwiiintGetCurrencyFormatEx(_In_opt_ LPCWSTR lpLocaleName, _In_ DWORD dwFlags, _In_ LPCWSTR lpValue, _In_opt_ const CURRENCYFMT *lpFormat, _Out_opt_ LPWSTR lpCurrencyStr, _In_ int cchCurrency)
uiuiwtwiiintGetCurrencyFormatW(_In_ LCID Locale, _In_ DWORD dwFlags, _In_ LPCWSTR lpValue, _In_opt_ const CURRENCYFMT *lpFormat, _Out_opt_ LPWSTR lpCurrencyStr, _In_ int cchCurrency)
tiBOOLGetCurrentActCtx(_Out_ HANDLE *lphActCtx)
titiBOOLGetCurrentConsoleFont(_In_ HANDLE hConsoleOutput, _In_ BOOL bMaximumWindow, _Out_ PCONSOLE_FONT_INFO lpConsoleCurrentFont)
titiBOOLGetCurrentConsoleFontEx(_In_ HANDLE hConsoleOutput, _In_ BOOL bMaximumWindow, _Out_ PCONSOLE_FONT_INFOEX lpConsoleCurrentFontEx)
uisuiDWORDGetCurrentDirectory(_In_ DWORD nBufferLength, _Out_ LPTSTR lpBuffer)
uiauiDWORDGetCurrentDirectoryA(_In_ DWORD nBufferLength, _Out_ LPSTR lpBuffer)
uiwuiDWORDGetCurrentDirectoryW(_In_ DWORD nBufferLength, _Out_ LPWSTR lpBuffer)
tHANDLEGetCurrentProcess(void)
uiDWORDGetCurrentProcessId(void)
uiDWORDGetCurrentProcessorNumber(void)
tiVOIDGetCurrentProcessorNumberEx(_Out_ PPROCESSOR_NUMBER ProcNumber)
tHANDLEGetCurrentThread(void)
uiDWORDGetCurrentThreadId(void)
uiuitssiiintGetDateFormat(_In_ LCID Locale, _In_ DWORD dwFlags, _In_opt_ const SYSTEMTIME *lpDate, _In_opt_ LPCTSTR lpFormat, _Out_opt_ LPTSTR lpDateStr, _In_ int cchDate)
uiuitaaiiintGetDateFormatA(_In_ LCID Locale, _In_ DWORD dwFlags, _In_opt_ const SYSTEMTIME *lpDate, _In_opt_ LPCSTR lpFormat, _Out_opt_ LPSTR lpDateStr, _In_ int cchDate)
wuitwwiwiintGetDateFormatEx(_In_opt_ LPCWSTR lpLocaleName, _In_ DWORD dwFlags, _In_opt_ const SYSTEMTIME *lpDate, _In_opt_ LPCWSTR lpFormat, _Out_opt_ LPWSTR lpDateStr, _In_ int cchDate, _In_opt_ LPCWSTR lpCalendar)
uiuitwwiiintGetDateFormatW(_In_ LCID Locale, _In_ DWORD dwFlags, _In_opt_ const SYSTEMTIME *lpDate, _In_opt_ LPCWSTR lpFormat, _Out_opt_ LPWSTR lpDateStr, _In_ int cchDate)
sttiBOOLGetDefaultCommConfig(_In_ LPCTSTR lpszName, _Out_ LPCOMMCONFIG lpCC, _Inout_ LPDWORD lpdwSize)
attiBOOLGetDefaultCommConfigA(_In_ LPCSTR lpszName, _Out_ LPCOMMCONFIG lpCC, _Inout_ LPDWORD lpdwSize)
wttiBOOLGetDefaultCommConfigW(_In_ LPCWSTR lpszName, _Out_ LPCOMMCONFIG lpCC, _Inout_ LPDWORD lpdwSize)
ttiBOOLGetDevicePowerState(_In_ HANDLE hDevice, _Out_ BOOL *pfOn)
sttttiBOOLGetDiskFreeSpace(_In_ LPCTSTR lpRootPathName, _Out_ LPDWORD lpSectorsPerCluster, _Out_ LPDWORD lpBytesPerSector, _Out_ LPDWORD lpNumberOfFreeClusters, _Out_ LPDWORD lpTotalNumberOfClusters)
attttiBOOLGetDiskFreeSpaceA(_In_ LPCSTR lpRootPathName, _Out_ LPDWORD lpSectorsPerCluster, _Out_ LPDWORD lpBytesPerSector, _Out_ LPDWORD lpNumberOfFreeClusters, _Out_ LPDWORD lpTotalNumberOfClusters)
stttiBOOLGetDiskFreeSpaceEx(_In_opt_ LPCTSTR lpDirectoryName, _Out_opt_ PULARGE_INTEGER lpFreeBytesAvailable, _Out_opt_ PULARGE_INTEGER lpTotalNumberOfBytes, _Out_opt_ PULARGE_INTEGER lpTotalNumberOfFreeBytes)
atttiBOOLGetDiskFreeSpaceExA(_In_opt_ LPCSTR lpDirectoryName, _Out_opt_ PULARGE_INTEGER lpFreeBytesAvailable, _Out_opt_ PULARGE_INTEGER lpTotalNumberOfBytes, _Out_opt_ PULARGE_INTEGER lpTotalNumberOfFreeBytes)
wtttiBOOLGetDiskFreeSpaceExW(_In_opt_ LPCWSTR lpDirectoryName, _Out_opt_ PULARGE_INTEGER lpFreeBytesAvailable, _Out_opt_ PULARGE_INTEGER lpTotalNumberOfBytes, _Out_opt_ PULARGE_INTEGER lpTotalNumberOfFreeBytes)
wttttiBOOLGetDiskFreeSpaceW(_In_ LPCWSTR lpRootPathName, _Out_ LPDWORD lpSectorsPerCluster, _Out_ LPDWORD lpBytesPerSector, _Out_ LPDWORD lpNumberOfFreeClusters, _Out_ LPDWORD lpTotalNumberOfClusters)
uisuiDWORDGetDllDirectory(_In_ DWORD nBufferLength, _Out_ LPTSTR lpBuffer)
uiauiDWORDGetDllDirectoryA(_In_ DWORD nBufferLength, _Out_ LPSTR lpBuffer)
uiwuiDWORDGetDllDirectoryW(_In_ DWORD nBufferLength, _Out_ LPWSTR lpBuffer)
suiUINTGetDriveType(_In_opt_ LPCTSTR lpRootPathName)
auiUINTGetDriveTypeA(_In_opt_ LPCSTR lpRootPathName)
wuiUINTGetDriveTypeW(_In_opt_ LPCWSTR lpRootPathName)
uiuitui6wwiiintGetDurationFormat(_In_ LCID Locale, _In_ DWORD dwFlags, _In_opt_ const SYSTEMTIME *lpDuration, _In_ ULONGLONG ullDuration, _In_opt_ LPCWSTR lpFormat, _Out_opt_ LPWSTR lpDurationStr, _In_ int cchDuration)
wuitui6wwiiintGetDurationFormatEx(_In_opt_ LPCWSTR lpLocaleName, _In_ DWORD dwFlags, _In_opt_ const SYSTEMTIME *lpDuration, _In_ ULONGLONG ullDuration, _In_opt_ LPCWSTR lpFormat, _Out_opt_ LPWSTR lpDurationStr, _In_ int cchDuration)
tuiDWORDGetDynamicTimeZoneInformation(_Out_ PDYNAMIC_TIME_ZONE_INFORMATION pTimeZoneInformation)
ui6DWORD64GetEnabledXStateFeatures(void)
sLPTCHGetEnvironmentStrings(void)
aLPCHGetEnvironmentStringsA(void)
wLPWCHGetEnvironmentStringsW(void)
ssuiuiDWORDGetEnvironmentVariable(_In_opt_ LPCTSTR lpName, _Out_opt_ LPTSTR lpBuffer, _In_ DWORD nSize)
aauiuiDWORDGetEnvironmentVariableA(_In_opt_ LPCSTR lpName, _Out_opt_ LPSTR lpBuffer, _In_ DWORD nSize)
wwuiuiDWORDGetEnvironmentVariableW(_In_opt_ LPCWSTR lpName, _Out_opt_ LPWSTR lpBuffer, _In_ DWORD nSize)
uiUINTGetErrorMode(void)
ttiBOOLGetExitCodeProcess(_In_ HANDLE hProcess, _Out_ LPDWORD lpExitCode)
ttiBOOLGetExitCodeThread(_In_ HANDLE hThread, _Out_ LPDWORD lpExitCode)
ssiINTGetExpandedName(LPTSTR,LPTSTR)
aaiINTGetExpandedNameA(LPSTR,LPSTR)
wwiINTGetExpandedNameW(LPWSTR,LPWSTR)
suiDWORDGetFileAttributes(_In_ LPCTSTR lpFileName)
auiDWORDGetFileAttributesA(_In_ LPCSTR lpFileName)
suitiBOOLGetFileAttributesEx(_In_ LPCTSTR lpFileName, _In_ GET_FILEEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFileInformation)
auitiBOOLGetFileAttributesExA(_In_ LPCSTR lpFileName, _In_ GET_FILEEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFileInformation)
wuitiBOOLGetFileAttributesExW(_In_ LPCWSTR lpFileName, _In_ GET_FILEEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFileInformation)
suittiBOOLGetFileAttributesTransacted(_In_ LPCTSTR lpFileName, _In_ GET_FILEEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFileInformation, _In_ HANDLE hTransaction)
auittiBOOLGetFileAttributesTransactedA(_In_ LPCSTR lpFileName, _In_ GET_FILEEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFileInformation, _In_ HANDLE hTransaction)
wuittiBOOLGetFileAttributesTransactedW(_In_ LPCWSTR lpFileName, _In_ GET_FILEEX_INFO_LEVELS fInfoLevelId, _Out_ LPVOID lpFileInformation, _In_ HANDLE hTransaction)
wuiDWORDGetFileAttributesW(_In_ LPCWSTR lpFileName)
ttttttiBOOLGetFileBandwidthReservation(_In_ HANDLE hFile, _Out_ LPDWORD lpPeriodMilliseconds, _Out_ LPDWORD lpBytesPerPeriod, _Out_ LPBOOL pDiscardable, _Out_ LPDWORD lpTransferSize, _Out_ LPDWORD lpNumOutstandingRequests)
ttiBOOLGetFileInformationByHandle(_In_ HANDLE hFile, _Out_ LPBY_HANDLE_FILE_INFORMATION lpFileInformation)
tituiiBOOLGetFileInformationByHandleEx(_In_ HANDLE hFile, _In_ FILE_INFO_BY_HANDLE_CLASS FileInformationClass, _Out_ LPVOID lpFileInformation, _In_ DWORD dwBufferSize)
uiwttiBOOLGetFileMUIInfo(_In_ DWORD dwFlags, _In_ PCWSTR pcwszFilePath, _Inout_opt_ PFILEMUIINFO pFileMUIInfo, _Inout_ DWORD *pcbFileMUIInfo)
uiwtttttiBOOLGetFileMUIPath(_In_ DWORD dwFlags, _In_ PCWSTR pcwszFilePath, _Inout_opt_ PWSTR pwszLanguage, _Inout_ PULONG pcchLanguage, _Out_opt_ PWSTR pwszFileMUIPath, _Inout_ PULONG pcchFileMUIPath, _Inout_ PULONGLONG pululEnumerator)
ttuiDWORDGetFileSize(_In_ HANDLE hFile, _Out_opt_ LPDWORD lpFileSizeHigh)
ttiBOOLGetFileSizeEx(_In_ HANDLE hFile, _Out_ PLARGE_INTEGER lpFileSize)
ttttiBOOLGetFileTime(_In_ HANDLE hFile, _Out_opt_ LPFILETIME lpCreationTime, _Out_opt_ LPFILETIME lpLastAccessTime, _Out_opt_ LPFILETIME lpLastWriteTime)
tuiDWORDGetFileType(_In_ HANDLE hFile)
tsuiuiuiDWORDGetFinalPathNameByHandle(_In_ HANDLE hFile, _Out_ LPTSTR lpszFilePath, _In_ DWORD cchFilePath, _In_ DWORD dwFlags)
tauiuiuiDWORDGetFinalPathNameByHandleA(_In_ HANDLE hFile, _Out_ LPSTR lpszFilePath, _In_ DWORD cchFilePath, _In_ DWORD dwFlags)
twuiuiuiDWORDGetFinalPathNameByHandleW(_In_ HANDLE hFile, _Out_ LPWSTR lpszFilePath, _In_ DWORD cchFilePath, _In_ DWORD dwFlags)
sstuiuiDWORDGetFirmwareEnvironmentVariable(_In_ LPCTSTR lpName, _In_ LPCTSTR lpGuid, _Out_ PVOID pBuffer, _In_ DWORD nSize)
aatuiuiDWORDGetFirmwareEnvironmentVariableA(_In_ LPCSTR lpName, _In_ LPCSTR lpGuid, _Out_ PVOID pBuffer, _In_ DWORD nSize)
wwtuiuiDWORDGetFirmwareEnvironmentVariableW(_In_ LPCWSTR lpName, _In_ LPCWSTR lpGuid, _Out_ PVOID pBuffer, _In_ DWORD nSize)
suistuiDWORDGetFullPathName(_In_ LPCTSTR lpFileName, _In_ DWORD nBufferLength, _Out_ LPTSTR lpBuffer, _Out_ LPTSTR *lpFilePart)
auiatuiDWORDGetFullPathNameA(_In_ LPCSTR lpFileName, _In_ DWORD nBufferLength, _Out_ LPSTR lpBuffer, _Out_ LPSTR *lpFilePart)
suisttuiDWORDGetFullPathNameTransacted(_In_ LPCTSTR lpFileName, _In_ DWORD nBufferLength, _Out_ LPTSTR lpBuffer, _Out_ LPTSTR *lpFilePart, _In_ HANDLE hTransaction)
auiattuiDWORDGetFullPathNameTransactedA(_In_ LPCSTR lpFileName, _In_ DWORD nBufferLength, _Out_ LPSTR lpBuffer, _Out_ LPSTR *lpFilePart, _In_ HANDLE hTransaction)
wuiwttuiDWORDGetFullPathNameTransactedW(_In_ LPCWSTR lpFileName, _In_ DWORD nBufferLength, _Out_ LPWSTR lpBuffer, _Out_ LPWSTR *lpFilePart, _In_ HANDLE hTransaction)
wuiwtuiDWORDGetFullPathNameW(_In_ LPCWSTR lpFileName, _In_ DWORD nBufferLength, _Out_ LPWSTR lpBuffer, _Out_ LPWSTR *lpFilePart)
uiuisiuhiintGetGeoInfo(_In_ GEOID Location, _In_ GEOTYPE GeoType, _Out_opt_ LPTSTR lpGeoData, _In_ int cchData, _In_ LANGID LangId)
uiuiaiuhiintGetGeoInfoA(_In_ GEOID Location, _In_ GEOTYPE GeoType, _Out_opt_ LPSTR lpGeoData, _In_ int cchData, _In_ LANGID LangId)
uiuiwiuhiintGetGeoInfoW(_In_ GEOID Location, _In_ GEOTYPE GeoType, _Out_opt_ LPWSTR lpGeoData, _In_ int cchData, _In_ LANGID LangId)
ttiBOOLGetHandleInformation(_In_ HANDLE hObject, _Out_ LPDWORD lpdwFlags)
utSIZE_TGetLargePageMinimum(void)
tuiCOORDGetLargestConsoleWindowSize(_In_ HANDLE hConsoleOutput)
uiDWORDGetLastError(void)
uiuisiiintGetLocaleInfo(_In_ LCID Locale, _In_ LCTYPE LCType, _Out_opt_ LPTSTR lpLCData, _In_ int cchData)
uiuiaiiintGetLocaleInfoA(_In_ LCID Locale, _In_ LCTYPE LCType, _Out_opt_ LPSTR lpLCData, _In_ int cchData)
wuiwiiintGetLocaleInfoEx(_In_opt_ LPCWSTR lpLocaleName, _In_ LCTYPE LCType, _Out_opt_ LPWSTR lpLCData, _In_ int cchData)
uiuiwiiintGetLocaleInfoW(_In_ LCID Locale, _In_ LCTYPE LCType, _Out_opt_ LPWSTR lpLCData, _In_ int cchData)
tiVOIDGetLocalTime(_Out_ LPSYSTEMTIME lpSystemTime)
uiDWORDGetLogicalDrives(void)
uisuiDWORDGetLogicalDriveStrings(_In_ DWORD nBufferLength, _Out_ LPTSTR lpBuffer)
uiauiDWORDGetLogicalDriveStringsA(_In_ DWORD nBufferLength, _Out_ LPSTR lpBuffer)
uiwuiDWORDGetLogicalDriveStringsW(_In_ DWORD nBufferLength, _Out_ LPWSTR lpBuffer)
ttiBOOLGetLogicalProcessorInformation(_Out_ PSYSTEM_LOGICAL_PROCESSOR_INFORMATION Buffer, _Inout_ PDWORD ReturnLength)
uittiBOOLGetLogicalProcessorInformationEx(_In_ LOGICAL_PROCESSOR_RELATIONSHIP RelationshipType, _Out_opt_ PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX Buffer, _Inout_ PDWORD ReturnedLength)
ssuiuiDWORDGetLongPathName(_In_ LPCTSTR lpszShortPath, _Out_ LPTSTR lpszLongPath, _In_ DWORD cchBuffer)
aauiuiDWORDGetLongPathNameA(_In_ LPCSTR lpszShortPath, _Out_ LPSTR lpszLongPath, _In_ DWORD cchBuffer)
ssuituiDWORDGetLongPathNameTransacted(_In_ LPCTSTR lpszShortPath, _Out_ LPTSTR lpszLongPath, _In_ DWORD cchBuffer, _In_ HANDLE hTransaction)
aauituiDWORDGetLongPathNameTransactedA(_In_ LPCSTR lpszShortPath, _Out_ LPSTR lpszLongPath, _In_ DWORD cchBuffer, _In_ HANDLE hTransaction)
wwuituiDWORDGetLongPathNameTransactedW(_In_ LPCWSTR lpszShortPath, _Out_ LPWSTR lpszLongPath, _In_ DWORD cchBuffer, _In_ HANDLE hTransaction)
wwuiuiDWORDGetLongPathNameW(_In_ LPCWSTR lpszShortPath, _Out_ LPWSTR lpszLongPath, _In_ DWORD cchBuffer)
tttttiBOOLGetMailslotInfo(_In_ HANDLE hMailslot, _Out_opt_ LPDWORD lpMaxMessageSize, _Out_opt_ LPDWORD lpNextSize, _Out_opt_ LPDWORD lpMessageCount, _Out_opt_ LPDWORD lpReadTimeout)
uhuiDWORDGetMaximumProcessorCount(_In_ WORD GroupNumber)
uhWORDGetMaximumProcessorGroupCount(void)
tsuiuiDWORDGetModuleFileName(_In_opt_ HMODULE hModule, _Out_ LPTSTR lpFilename, _In_ DWORD nSize)
tauiuiDWORDGetModuleFileNameA(_In_opt_ HMODULE hModule, _Out_ LPSTR lpFilename, _In_ DWORD nSize)
twuiuiDWORDGetModuleFileNameW(_In_opt_ HMODULE hModule, _Out_ LPWSTR lpFilename, _In_ DWORD nSize)
stHMODULEGetModuleHandle(_In_opt_ LPCTSTR lpModuleName)
atHMODULEGetModuleHandleA(_In_opt_ LPCSTR lpModuleName)
uistiBOOLGetModuleHandleEx(_In_ DWORD dwFlags, _In_opt_ LPCTSTR lpModuleName, _Out_ HMODULE *phModule)
uiatiBOOLGetModuleHandleExA(_In_ DWORD dwFlags, _In_opt_ LPCSTR lpModuleName, _Out_ HMODULE *phModule)
uiwtiBOOLGetModuleHandleExW(_In_ DWORD dwFlags, _In_opt_ LPCWSTR lpModuleName, _Out_ HMODULE *phModule)
wtHMODULEGetModuleHandleW(_In_opt_ LPCWSTR lpModuleName)
tsuiiBOOLGetNamedPipeClientComputerName(_In_ HANDLE Pipe, _Out_ LPTSTR ClientComputerName, _In_ ULONG ClientComputerNameLength)
tauiiBOOLGetNamedPipeClientComputerNameA(_In_ HANDLE Pipe, _Out_ LPSTR ClientComputerName, _In_ ULONG ClientComputerNameLength)
twuiiBOOLGetNamedPipeClientComputerNameW(_In_ HANDLE Pipe, _Out_ LPWSTR ClientComputerName, _In_ ULONG ClientComputerNameLength)
ttiBOOLGetNamedPipeClientProcessId(_In_ HANDLE Pipe, _Out_ PULONG ClientProcessId)
ttiBOOLGetNamedPipeClientSessionId(_In_ HANDLE Pipe, _Out_ PULONG ClientSessionId)
tttttsuiiBOOLGetNamedPipeHandleState(_In_ HANDLE hNamedPipe, _Out_opt_ LPDWORD lpState, _Out_opt_ LPDWORD lpCurInstances, _Out_opt_ LPDWORD lpMaxCollectionCount, _Out_opt_ LPDWORD lpCollectDataTimeout, _Out_opt_ LPTSTR lpUserName, _In_ DWORD nMaxUserNameSize)
tttttauiiBOOLGetNamedPipeHandleStateA(_In_ HANDLE hNamedPipe, _Out_opt_ LPDWORD lpState, _Out_opt_ LPDWORD lpCurInstances, _Out_opt_ LPDWORD lpMaxCollectionCount, _Out_opt_ LPDWORD lpCollectDataTimeout, _Out_opt_ LPSTR lpUserName, _In_ DWORD nMaxUserNameSize)
tttttwuiiBOOLGetNamedPipeHandleStateW(_In_ HANDLE hNamedPipe, _Out_opt_ LPDWORD lpState, _Out_opt_ LPDWORD lpCurInstances, _Out_opt_ LPDWORD lpMaxCollectionCount, _Out_opt_ LPDWORD lpCollectDataTimeout, _Out_opt_ LPWSTR lpUserName, _In_ DWORD nMaxUserNameSize)
tttttiBOOLGetNamedPipeInfo(_In_ HANDLE hNamedPipe, _Out_opt_ LPDWORD lpFlags, _Out_opt_ LPDWORD lpOutBufferSize, _Out_opt_ LPDWORD lpInBufferSize, _Out_opt_ LPDWORD lpMaxInstances)
ttiBOOLGetNamedPipeServerProcessId(_In_ HANDLE Pipe, _Out_ PULONG ServerProcessId)
ttiBOOLGetNamedPipeServerSessionId(_In_ HANDLE Pipe, _Out_ PULONG ServerSessionId)
tiVOIDGetNativeSystemInfo(_Out_ LPSYSTEM_INFO lpSystemInfo)
uiuitiBOOLGetNLSVersion(_In_ NLS_FUNCTION Function, _In_ LCID Locale, _Inout_ LPNLSVERSIONINFO lpVersionInformation)
uiwtiBOOLGetNLSVersionEx(_In_ NLS_FUNCTION function, _In_opt_ LPCWSTR lpLocaleName, _Inout_ LPNLSVERSIONINFOEX lpVersionInformation)
uctiBOOLGetNumaAvailableMemoryNode(_In_ UCHAR Node, _Out_ PULONGLONG AvailableBytes)
uhtiBOOLGetNumaAvailableMemoryNodeEx(_In_ USHORT Node, _Out_ PULONGLONG AvailableBytes)
tiBOOLGetNumaHighestNodeNumber(_Out_ PULONG HighestNodeNumber)
ttiBOOLGetNumaNodeNumberFromHandle(_In_ HANDLE hFile, _Out_ PUSHORT NodeNumber)
uctiBOOLGetNumaNodeProcessorMask(_In_ UCHAR Node, _Out_ PULONGLONG ProcessorMask)
uhtiBOOLGetNumaNodeProcessorMaskEx(_In_ USHORT Node, _Out_ PGROUP_AFFINITY ProcessorMask)
uctiBOOLGetNumaProcessorNode(_In_ UCHAR Processor, _Out_ PUCHAR NodeNumber)
ttiBOOLGetNumaProcessorNodeEx(_In_ PPROCESSOR_NUMBER Processor, _Out_ PUSHORT NodeNumber)
uitiBOOLGetNumaProximityNode(_In_ ULONG ProximityId, _Out_ PUCHAR NodeNumber)
uitiBOOLGetNumaProximityNodeEx(_In_ ULONG ProximityId, _Out_ PUSHORT NodeNumber)
uiuistsiiintGetNumberFormat(_In_ LCID Locale, _In_ DWORD dwFlags, _In_ LPCTSTR lpValue, _In_opt_ const NUMBERFMT *lpFormat, _Out_opt_ LPTSTR lpNumberStr, _In_ int cchNumber)
uiuiataiiintGetNumberFormatA(_In_ LCID Locale, _In_ DWORD dwFlags, _In_ LPCSTR lpValue, _In_opt_ const NUMBERFMT *lpFormat, _Out_opt_ LPSTR lpNumberStr, _In_ int cchNumber)
wuiwtwiiintGetNumberFormatEx(_In_opt_ LPCWSTR lpLocaleName, _In_ DWORD dwFlags, _In_ LPCWSTR lpValue, _In_opt_ const NUMBERFMT *lpFormat, _Out_opt_ LPWSTR lpNumberStr, _In_ int cchNumber)
uiuiwtwiiintGetNumberFormatW(_In_ LCID Locale, _In_ DWORD dwFlags, _In_ LPCWSTR lpValue, _In_opt_ const NUMBERFMT *lpFormat, _Out_opt_ LPWSTR lpNumberStr, _In_ int cchNumber)
ttiBOOLGetNumberOfConsoleInputEvents(_In_ HANDLE hConsoleInput, _Out_ LPDWORD lpcNumberOfEvents)
tiBOOLGetNumberOfConsoleMouseButtons(_Out_ LPDWORD lpNumberOfMouseButtons)
uiUINTGetOEMCP(void)
uiUINTGetOEMCP(void)
tttiiBOOLGetOverlappedResult(_In_ HANDLE hFile, _In_ LPOVERLAPPED lpOverlapped, _Out_ LPDWORD lpNumberOfBytesTransferred, _In_ BOOL bWait)
tiBOOLGetPhysicallyInstalledSystemMemory(_Out_ PULONGLONG TotalMemoryInKilobytes)
tuiDWORDGetPriorityClass(_In_ HANDLE hProcess)
ssisuiUINTGetPrivateProfileInt(_In_ LPCTSTR lpAppName, _In_ LPCTSTR lpKeyName, _In_ INT nDefault, _In_ LPCTSTR lpFileName)
aaiauiUINTGetPrivateProfileIntA(_In_ LPCSTR lpAppName, _In_ LPCSTR lpKeyName, _In_ INT nDefault, _In_ LPCSTR lpFileName)
wwiwuiUINTGetPrivateProfileIntW(_In_ LPCWSTR lpAppName, _In_ LPCWSTR lpKeyName, _In_ INT nDefault, _In_ LPCWSTR lpFileName)
ssuisuiDWORDGetPrivateProfileSection(_In_ LPCTSTR lpAppName, _Out_ LPTSTR lpReturnedString, _In_ DWORD nSize, _In_ LPCTSTR lpFileName)
aauiauiDWORDGetPrivateProfileSectionA(_In_ LPCSTR lpAppName, _Out_ LPSTR lpReturnedString, _In_ DWORD nSize, _In_ LPCSTR lpFileName)
suisuiDWORDGetPrivateProfileSectionNames(_Out_ LPTSTR lpszReturnBuffer, _In_ DWORD nSize, _In_ LPCTSTR lpFileName)
auiauiDWORDGetPrivateProfileSectionNamesA(_Out_ LPSTR lpszReturnBuffer, _In_ DWORD nSize, _In_ LPCSTR lpFileName)
wuiwuiDWORDGetPrivateProfileSectionNamesW(_Out_ LPWSTR lpszReturnBuffer, _In_ DWORD nSize, _In_ LPCWSTR lpFileName)
wwuiwuiDWORDGetPrivateProfileSectionW(_In_ LPCWSTR lpAppName, _Out_ LPWSTR lpReturnedString, _In_ DWORD nSize, _In_ LPCWSTR lpFileName)
ssssuisuiDWORDGetPrivateProfileString(_In_ LPCTSTR lpAppName, _In_ LPCTSTR lpKeyName, _In_ LPCTSTR lpDefault, _Out_ LPTSTR lpReturnedString, _In_ DWORD nSize, _In_ LPCTSTR lpFileName)
aaaauiauiDWORDGetPrivateProfileStringA(_In_ LPCSTR lpAppName, _In_ LPCSTR lpKeyName, _In_ LPCSTR lpDefault, _Out_ LPSTR lpReturnedString, _In_ DWORD nSize, _In_ LPCSTR lpFileName)
wwwwuiwuiDWORDGetPrivateProfileStringW(_In_ LPCWSTR lpAppName, _In_ LPCWSTR lpKeyName, _In_ LPCWSTR lpDefault, _Out_ LPWSTR lpReturnedString, _In_ DWORD nSize, _In_ LPCWSTR lpFileName)
sstuisiBOOLGetPrivateProfileStruct(_In_ LPCTSTR lpszSection, _In_ LPCTSTR lpszKey, _Out_ LPVOID lpStruct, _In_ UINT uSizeStruct, _In_ LPCTSTR szFile)
aatuiaiBOOLGetPrivateProfileStructA(_In_ LPCSTR lpszSection, _In_ LPCSTR lpszKey, _Out_ LPVOID lpStruct, _In_ UINT uSizeStruct, _In_ LPCSTR szFile)
wwtuiwiBOOLGetPrivateProfileStructW(_In_ LPCWSTR lpszSection, _In_ LPCWSTR lpszKey, _Out_ LPVOID lpStruct, _In_ UINT uSizeStruct, _In_ LPCWSTR szFile)
tatPROCGetProcAddress(_In_ HMODULE hModule, _In_ LPCSTR lpProcName)
tututiBOOLGetProcessAffinityMask(_In_ HANDLE hProcess, _Out_ PDWORD_PTR lpProcessAffinityMask, _Out_ PDWORD_PTR lpSystemAffinityMask)
tttiBOOLGetProcessDEPPolicy(_In_ HANDLE hProcess, _Out_ LPDWORD lpFlags, _Out_ PBOOL lpPermanent)
tttiBOOLGetProcessGroupAffinity(_In_ HANDLE hProcess, _Inout_ PUSHORT GroupCount, _Out_ PUSHORT GroupArray)
ttiBOOLGetProcessHandleCount(_In_ HANDLE hProcess, _Inout_ PDWORD pdwHandleCount)
tHANDLEGetProcessHeap(void)
uituiDWORDGetProcessHeaps(_In_ DWORD NumberOfHeaps, _Out_ PHANDLE ProcessHeaps)
tuiDWORDGetProcessId(_In_ HANDLE Process)
tuiDWORDGetProcessIdOfThread(_In_ HANDLE Thread)
ttiBOOLGetProcessIoCounters(_In_ HANDLE hProcess, _Out_ PIO_COUNTERS lpIoCounters)
uhttiBOOLGetProcessorSystemCycleTime(_In_ USHORT Group, _Out_ PSYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION Buffer, _Inout_ PDWORD ReturnedLength)
uitwtiBOOLGetProcessPreferredUILanguages(_In_ DWORD dwFlags, _Out_ PULONG pulNumLanguages, _Out_opt_ PZZWSTR pwszLanguagesBuffer, _Inout_ PULONG pcchLanguagesBuffer)
ttiBOOLGetProcessPriorityBoost(_In_ HANDLE hProcess, _Out_ PBOOL pDisablePriorityBoost)
ttiBOOLGetProcessShutdownParameters(_Out_ LPDWORD lpdwLevel, _Out_ LPDWORD lpdwFlags)
tttttiBOOLGetProcessTimes(_In_ HANDLE hProcess, _Out_ LPFILETIME lpCreationTime, _Out_ LPFILETIME lpExitTime, _Out_ LPFILETIME lpKernelTime, _Out_ LPFILETIME lpUserTime)
uiuiDWORDGetProcessVersion(_In_ DWORD ProcessId)
tttiBOOLGetProcessWorkingSetSize(_In_ HANDLE hProcess, _Out_ PSIZE_T lpMinimumWorkingSetSize, _Out_ PSIZE_T lpMaximumWorkingSetSize)
ttttiBOOLGetProcessWorkingSetSizeEx(_In_ HANDLE hProcess, _Out_ PSIZE_T lpMinimumWorkingSetSize, _Out_ PSIZE_T lpMaximumWorkingSetSize, _Out_ PDWORD Flags)
uiuiuiuitiBOOLGetProductInfo(_In_ DWORD dwOSMajorVersion, _In_ DWORD dwOSMinorVersion, _In_ DWORD dwSpMajorVersion, _In_ DWORD dwSpMinorVersion, _Out_ PDWORD pdwReturnedProductType)
ssiuiUINTGetProfileInt(_In_ LPCTSTR lpAppName, _In_ LPCTSTR lpKeyName, _In_ INT nDefault)
aaiuiUINTGetProfileIntA(_In_ LPCSTR lpAppName, _In_ LPCSTR lpKeyName, _In_ INT nDefault)
wwiuiUINTGetProfileIntW(_In_ LPCWSTR lpAppName, _In_ LPCWSTR lpKeyName, _In_ INT nDefault)
ssuiuiDWORDGetProfileSection(_In_ LPCTSTR lpAppName, _Out_ LPTSTR lpReturnedString, _In_ DWORD nSize)
aauiuiDWORDGetProfileSectionA(_In_ LPCSTR lpAppName, _Out_ LPSTR lpReturnedString, _In_ DWORD nSize)
wwuiuiDWORDGetProfileSectionW(_In_ LPCWSTR lpAppName, _Out_ LPWSTR lpReturnedString, _In_ DWORD nSize)
ssssuiuiDWORDGetProfileString(_In_ LPCTSTR lpAppName, _In_ LPCTSTR lpKeyName, _In_ LPCTSTR lpDefault, _Out_ LPTSTR lpReturnedString, _In_ DWORD nSize)
aaaauiuiDWORDGetProfileStringA(_In_ LPCSTR lpAppName, _In_ LPCSTR lpKeyName, _In_ LPCSTR lpDefault, _Out_ LPSTR lpReturnedString, _In_ DWORD nSize)
wwwwuiuiDWORDGetProfileStringW(_In_ LPCWSTR lpAppName, _In_ LPCWSTR lpKeyName, _In_ LPCWSTR lpDefault, _Out_ LPWSTR lpReturnedString, _In_ DWORD nSize)
ttuttuiiBOOLGetQueuedCompletionStatus(_In_ HANDLE CompletionPort, _Out_ LPDWORD lpNumberOfBytes, _Out_ PULONG_PTR lpCompletionKey, _Out_ LPOVERLAPPED *lpOverlapped, _In_ DWORD dwMilliseconds)
ttuituiiiBOOLGetQueuedCompletionStatusEx(_In_ HANDLE CompletionPort, _Out_ LPOVERLAPPED_ENTRY lpCompletionPortEntries, _In_ ULONG ulCount, _Out_ PULONG ulNumEntriesRemoved, _In_ DWORD dwMilliseconds, _In_ BOOL fAlertable)
ssuiuiDWORDGetShortPathName(_In_ LPCTSTR lpszLongPath, _Out_ LPTSTR lpszShortPath, _In_ DWORD cchBuffer)
aauiuiDWORDGetShortPathNameA(_In_ LPCSTR lpszLongPath, _Out_ LPSTR lpszShortPath, _In_ DWORD cchBuffer)
wwuiuiDWORDGetShortPathNameW(_In_ LPCWSTR lpszLongPath, _Out_ LPWSTR lpszShortPath, _In_ DWORD cchBuffer)
tiVOIDGetStartupInfo(_Out_ LPSTARTUPINFO lpStartupInfo)
tiVOIDGetStartupInfoA(_Out_ LPSTARTUPINFO lpStartupInfo)
tiVOIDGetStartupInfoW(_Out_ LPSTARTUPINFO lpStartupInfo)
uitHANDLEGetStdHandle(_In_ DWORD nStdHandle)
uiwiwiiintGetStringScripts(_In_ DWORD dwFlags, _In_ LPCWSTR lpString, _In_ int cchString, _Out_opt_ LPWSTR lpScripts, _In_ int cchScripts)
uiuisitiBOOLGetStringType(LCID Locale,DWORD dwInfoType,LPCTSTR lpSrcStr,int cchSrc,LPWORD lpCharType)
uiuiaitiBOOLGetStringTypeA(_In_ LCID Locale, _In_ DWORD dwInfoType, _In_ LPCSTR lpSrcStr, _In_ int cchSrc, _Out_ LPWORD lpCharType)
uiuisitiBOOLGetStringTypeEx(_In_ LCID Locale, _In_ DWORD dwInfoType, _In_ LPCTSTR lpSrcStr, _In_ int cchSrc, _Out_ LPWORD lpCharType)
uiuiaitiBOOLGetStringTypeExA(_In_ LCID Locale, _In_ DWORD dwInfoType, _In_ LPCSTR lpSrcStr, _In_ int cchSrc, _Out_ LPWORD lpCharType)
uiuiwitiBOOLGetStringTypeExW(_In_ LCID Locale, _In_ DWORD dwInfoType, _In_ LPCWSTR lpSrcStr, _In_ int cchSrc, _Out_ LPWORD lpCharType)
uiwitiBOOLGetStringTypeW(_In_ DWORD dwInfoType, _In_ LPCWSTR lpSrcStr, _In_ int cchSrc, _Out_ LPWORD lpCharType)
uhLANGIDGetSystemDefaultLangID(void)
uhLANGIDGetSystemDefaultLangID(void)
uiLCIDGetSystemDefaultLCID(void)
uiLCIDGetSystemDefaultLCID(void)
wiiintGetSystemDefaultLocaleName(_Out_ LPWSTR lpLocaleName, _In_ int cchLocaleName)
uhLANGIDGetSystemDefaultUILanguage(void)
uiDEP_SYSTEM_POLICY_TYPEGetSystemDEPPolicy(void)
suiuiUINTGetSystemDirectory(_Out_ LPTSTR lpBuffer, _In_ UINT uSize)
auiuiUINTGetSystemDirectoryA(_Out_ LPSTR lpBuffer, _In_ UINT uSize)
wuiuiUINTGetSystemDirectoryW(_Out_ LPWSTR lpBuffer, _In_ UINT uSize)
tttiBOOLGetSystemFileCacheSize(_Out_ PSIZE_T lpMinimumFileCacheSize, _Out_ PSIZE_T lpMaximumFileCacheSize, _Out_ PDWORD lpFlags)
uiuituiuiUINTGetSystemFirmwareTable(_In_ DWORD FirmwareTableProviderSignature, _In_ DWORD FirmwareTableID, _Out_ PVOID pFirmwareTableBuffer, _In_ DWORD BufferSize)
tiVOIDGetSystemInfo(_Out_ LPSYSTEM_INFO lpSystemInfo)
tiBOOLGetSystemPowerStatus(_Out_ LPSYSTEM_POWER_STATUS lpSystemPowerStatus)
uitwtiBOOLGetSystemPreferredUILanguages(_In_ DWORD dwFlags, _Out_ PULONG pulNumLanguages, _Out_opt_ PZZWSTR pwszLanguagesBuffer, _Inout_ PULONG pcchLanguagesBuffer)
ttiBOOLGetSystemRegistryQuota(_Out_opt_ PDWORD pdwQuotaAllowed, _Out_opt_ PDWORD pdwQuotaUsed)
tiVOIDGetSystemTime(_Out_ LPSYSTEMTIME lpSystemTime)
tttiBOOLGetSystemTimeAdjustment(_Out_ PDWORD lpTimeAdjustment, _Out_ PDWORD lpTimeIncrement, _Out_ PBOOL lpTimeAdjustmentDisabled)
tiVOIDGetSystemTimeAsFileTime(_Out_ LPFILETIME lpSystemTimeAsFileTime)
tttiBOOLGetSystemTimes(_Out_opt_ LPFILETIME lpIdleTime, _Out_opt_ LPFILETIME lpKernelTime, _Out_opt_ LPFILETIME lpUserTime)
suiuiUINTGetSystemWindowsDirectory(_Out_ LPTSTR lpBuffer, _In_ UINT uSize)
auiuiUINTGetSystemWindowsDirectoryA(_Out_ LPSTR lpBuffer, _In_ UINT uSize)
wuiuiUINTGetSystemWindowsDirectoryW(_Out_ LPWSTR lpBuffer, _In_ UINT uSize)
suiuiUINTGetSystemWow64Directory(_Out_ LPTSTR lpBuffer, _In_ UINT uSize)
auiuiUINTGetSystemWow64DirectoryA(_Out_ LPSTR lpBuffer, _In_ UINT uSize)
wuiuiUINTGetSystemWow64DirectoryW(_Out_ LPWSTR lpBuffer, _In_ UINT uSize)
tuittuiDWORDGetTapeParameters(_In_ HANDLE hDevice, _In_ DWORD dwOperation, _Out_ LPDWORD lpdwSize, _Out_ LPVOID lpTapeInformation)
tuitttuiDWORDGetTapePosition(_In_ HANDLE hDevice, _In_ DWORD dwPositionType, _Out_ LPDWORD lpdwPartition, _Out_ LPDWORD lpdwOffsetLow, _Out_ LPDWORD lpdwOffsetHigh)
tuiDWORDGetTapeStatus(_In_ HANDLE hDevice)
ssuisuiUINTGetTempFileName(_In_ LPCTSTR lpPathName, _In_ LPCTSTR lpPrefixString, _In_ UINT uUnique, _Out_ LPTSTR lpTempFileName)
aauiauiUINTGetTempFileNameA(_In_ LPCSTR lpPathName, _In_ LPCSTR lpPrefixString, _In_ UINT uUnique, _Out_ LPSTR lpTempFileName)
wwuiwuiUINTGetTempFileNameW(_In_ LPCWSTR lpPathName, _In_ LPCWSTR lpPrefixString, _In_ UINT uUnique, _Out_ LPWSTR lpTempFileName)
uisuiDWORDGetTempPath(_In_ DWORD nBufferLength, _Out_ LPTSTR lpBuffer)
uiauiDWORDGetTempPathA(_In_ DWORD nBufferLength, _Out_ LPSTR lpBuffer)
uiwuiDWORDGetTempPathW(_In_ DWORD nBufferLength, _Out_ LPWSTR lpBuffer)
ttiBOOLGetThreadContext(_In_ HANDLE hThread, _Inout_ LPCONTEXT lpContext)
uiDWORDGetThreadErrorMode(void)
ttiBOOLGetThreadGroupAffinity(_In_ HANDLE hThread, _Out_ PGROUP_AFFINITY GroupAffinity)
tuiDWORDGetThreadId(_In_ HANDLE Thread)
ttiBOOLGetThreadIdealProcessorEx(_In_ HANDLE hThread, _Out_ PPROCESSOR_NUMBER lpIdealProcessor)
ttiBOOLGetThreadIOPendingFlag(_In_ HANDLE hThread, _Inout_ PBOOL lpIOIsPending)
uiLCIDGetThreadLocale(void)
uitwtiBOOLGetThreadPreferredUILanguages(_In_ DWORD dwFlags, _Out_ PULONG pulNumLanguages, _Out_opt_ PZZWSTR pwszLanguagesBuffer, _Inout_ PULONG pcchLanguagesBuffer)
tiintGetThreadPriority(_In_ HANDLE hThread)
ttiBOOLGetThreadPriorityBoost(_In_ HANDLE hThread, _Out_ PBOOL pDisablePriorityBoost)
tuitiBOOLGetThreadSelectorEntry(_In_ HANDLE hThread, _In_ DWORD dwSelector, _Out_ LPLDT_ENTRY lpSelectorEntry)
tttttiBOOLGetThreadTimes(_In_ HANDLE hThread, _Out_ LPFILETIME lpCreationTime, _Out_ LPFILETIME lpExitTime, _Out_ LPFILETIME lpKernelTime, _Out_ LPFILETIME lpUserTime)
uhLANGIDGetThreadUILanguage(void)
uiDWORDGetTickCount(void)
ui6ULONGLONGGetTickCount64(void)
uiuitssiiintGetTimeFormat(_In_ LCID Locale, _In_ DWORD dwFlags, _In_opt_ const SYSTEMTIME *lpTime, _In_opt_ LPCTSTR lpFormat, _Out_opt_ LPTSTR lpTimeStr, _In_ int cchTime)
uiuitaaiiintGetTimeFormatA(_In_ LCID Locale, _In_ DWORD dwFlags, _In_opt_ const SYSTEMTIME *lpTime, _In_opt_ LPCSTR lpFormat, _Out_opt_ LPSTR lpTimeStr, _In_ int cchTime)
wuitwwiiintGetTimeFormatEx(_In_opt_ LPCWSTR lpLocaleName, _In_ DWORD dwFlags, _In_opt_ const SYSTEMTIME *lpTime, _In_opt_ LPCWSTR lpFormat, _Out_opt_ LPWSTR lpTimeStr, _In_ int cchTime)
uiuitwwiiintGetTimeFormatW(_In_ LCID Locale, _In_ DWORD dwFlags, _In_opt_ const SYSTEMTIME *lpTime, _In_opt_ LPCWSTR lpFormat, _Out_opt_ LPWSTR lpTimeStr, _In_ int cchTime)
tuiDWORDGetTimeZoneInformation(_Out_ LPTIME_ZONE_INFORMATION lpTimeZoneInformation)
uhttiBOOLGetTimeZoneInformationForYear(_In_ USHORT wYear, _In_opt_ PDYNAMIC_TIME_ZONE_INFORMATION pdtzi, _Out_ LPTIME_ZONE_INFORMATION ptzi)
uiwwttiBOOLGetUILanguageInfo(_In_ DWORD dwFlags, _In_ PCZZWSTR pwmszLanguage, _Out_opt_ PZZWSTR pwszFallbackLanguages, _Inout_opt_ PDWORD pcchFallbackLanguages, _Out_ PDWORD pdwAttributes)
uhLANGIDGetUserDefaultLangID(void)
uhLANGIDGetUserDefaultLangID(void)
uiLCIDGetUserDefaultLCID(void)
uiLCIDGetUserDefaultLCID(void)
wiiintGetUserDefaultLocaleName(_Out_ LPWSTR lpLocaleName, _In_ int cchLocaleName)
uhLANGIDGetUserDefaultUILanguage(void)
uiuiGEOIDGetUserGeoID(_In_ GEOCLASS GeoClass)
uitwtiBOOLGetUserPreferredUILanguages(_In_ DWORD dwFlags, _Out_ PULONG pulNumLanguages, _Out_opt_ PZZWSTR pwszLanguagesBuffer, _Inout_ PULONG pcchLanguagesBuffer)
uiDWORDGetVersion(void)
tiBOOLGetVersionEx(_Inout_ LPOSVERSIONINFO lpVersionInfo)
tiBOOLGetVersionExA(_Inout_ LPOSVERSIONINFO lpVersionInfo)
tiBOOLGetVersionExW(_Inout_ LPOSVERSIONINFO lpVersionInfo)
ssuitttsuiiBOOLGetVolumeInformation(_In_opt_ LPCTSTR lpRootPathName, _Out_opt_ LPTSTR lpVolumeNameBuffer, _In_ DWORD nVolumeNameSize, _Out_opt_ LPDWORD lpVolumeSerialNumber, _Out_opt_ LPDWORD lpMaximumComponentLength, _Out_opt_ LPDWORD lpFileSystemFlags, _Out_opt_ LPTSTR lpFileSystemNameBuffer, _In_ DWORD nFileSystemNameSize)
aauitttauiiBOOLGetVolumeInformationA(_In_opt_ LPCSTR lpRootPathName, _Out_opt_ LPSTR lpVolumeNameBuffer, _In_ DWORD nVolumeNameSize, _Out_opt_ LPDWORD lpVolumeSerialNumber, _Out_opt_ LPDWORD lpMaximumComponentLength, _Out_opt_ LPDWORD lpFileSystemFlags, _Out_opt_ LPSTR lpFileSystemNameBuffer, _In_ DWORD nFileSystemNameSize)
twuitttwuiiBOOLGetVolumeInformationByHandleW(_In_ HANDLE hFile, _Out_opt_ LPWSTR lpVolumeNameBuffer, _In_ DWORD nVolumeNameSize, _Out_opt_ LPDWORD lpVolumeSerialNumber, _Out_opt_ LPDWORD lpMaximumComponentLength, _Out_opt_ LPDWORD lpFileSystemFlags, _Out_opt_ LPWSTR lpFileSystemNameBuffer, _In_ DWORD nFileSystemNameSize)
wwuitttwuiiBOOLGetVolumeInformationW(_In_opt_ LPCWSTR lpRootPathName, _Out_opt_ LPWSTR lpVolumeNameBuffer, _In_ DWORD nVolumeNameSize, _Out_opt_ LPDWORD lpVolumeSerialNumber, _Out_opt_ LPDWORD lpMaximumComponentLength, _Out_opt_ LPDWORD lpFileSystemFlags, _Out_opt_ LPWSTR lpFileSystemNameBuffer, _In_ DWORD nFileSystemNameSize)
ssuiiBOOLGetVolumeNameForVolumeMountPoint(_In_ LPCTSTR lpszVolumeMountPoint, _Out_ LPTSTR lpszVolumeName, _In_ DWORD cchBufferLength)
aauiiBOOLGetVolumeNameForVolumeMountPointA(_In_ LPCSTR lpszVolumeMountPoint, _Out_ LPSTR lpszVolumeName, _In_ DWORD cchBufferLength)
wwuiiBOOLGetVolumeNameForVolumeMountPointW(_In_ LPCWSTR lpszVolumeMountPoint, _Out_ LPWSTR lpszVolumeName, _In_ DWORD cchBufferLength)
ssuiiBOOLGetVolumePathName(_In_ LPCTSTR lpszFileName, _Out_ LPTSTR lpszVolumePathName, _In_ DWORD cchBufferLength)
aauiiBOOLGetVolumePathNameA(_In_ LPCSTR lpszFileName, _Out_ LPSTR lpszVolumePathName, _In_ DWORD cchBufferLength)
ssuitiBOOLGetVolumePathNamesForVolumeName(_In_ LPCTSTR lpszVolumeName, _Out_ LPTSTR lpszVolumePathNames, _In_ DWORD cchBufferLength, _Out_ PDWORD lpcchReturnLength)
aauitiBOOLGetVolumePathNamesForVolumeNameA(_In_ LPCSTR lpszVolumeName, _Out_ LPSTR lpszVolumePathNames, _In_ DWORD cchBufferLength, _Out_ PDWORD lpcchReturnLength)
wwuitiBOOLGetVolumePathNamesForVolumeNameW(_In_ LPCWSTR lpszVolumeName, _Out_ LPWSTR lpszVolumePathNames, _In_ DWORD cchBufferLength, _Out_ PDWORD lpcchReturnLength)
wwuiiBOOLGetVolumePathNameW(_In_ LPCWSTR lpszFileName, _Out_ LPWSTR lpszVolumePathName, _In_ DWORD cchBufferLength)
suiuiUINTGetWindowsDirectory(_Out_ LPTSTR lpBuffer, _In_ UINT uSize)
auiuiUINTGetWindowsDirectoryA(_Out_ LPSTR lpBuffer, _In_ UINT uSize)
wuiuiUINTGetWindowsDirectoryW(_Out_ LPWSTR lpBuffer, _In_ UINT uSize)
uituttuttuiUINTGetWriteWatch(_In_ DWORD dwFlags, _In_ PVOID lpBaseAddress, _In_ SIZE_T dwRegionSize, _Out_ PVOID *lpAddresses, _Inout_ PULONG_PTR lpdwCount, _Out_ PULONG lpdwGranularity)
ttiBOOLGetXStateFeaturesMask(_In_ PCONTEXT Context, _Out_ PWORD64 FeatureMask)
suhATOMGlobalAddAtom(_In_ LPCTSTR lpString)
auhATOMGlobalAddAtomA(_In_ LPCSTR lpString)
wuhATOMGlobalAddAtomW(_In_ LPCWSTR lpString)
uiuttHGLOBALGlobalAlloc(_In_ UINT uFlags, _In_ SIZE_T dwBytes)
uiutSIZE_TGlobalCompact(DWORD dwMinFree)
uhuhATOMGlobalDeleteAtom(_In_ ATOM nAtom)
suhATOMGlobalFindAtom(_In_ LPCTSTR lpString)
auhATOMGlobalFindAtomA(_In_ LPCSTR lpString)
wuhATOMGlobalFindAtomW(_In_ LPCWSTR lpString)
tiVOIDGlobalFix(HGLOBAL hMem)
tuiUINTGlobalFlags(_In_ HGLOBAL hMem)
ttHGLOBALGlobalFree(_In_ HGLOBAL hMem)
uhsiuiUINTGlobalGetAtomName(_In_ ATOM nAtom, _Out_ LPTSTR lpBuffer, _In_ int nSize)
uhaiuiUINTGlobalGetAtomNameA(_In_ ATOM nAtom, _Out_ LPSTR lpBuffer, _In_ int nSize)
uhwiuiUINTGlobalGetAtomNameW(_In_ ATOM nAtom, _Out_ LPWSTR lpBuffer, _In_ int nSize)
ttHGLOBALGlobalHandle(_In_ LPCVOID pMem)
ttLPVOIDGlobalLock(_In_ HGLOBAL hMem)
tiVOIDGlobalMemoryStatus(_Out_ LPMEMORYSTATUS lpBuffer)
tiBOOLGlobalMemoryStatusEx(_Inout_ LPMEMORYSTATUSEX lpBuffer)
tutuitHGLOBALGlobalReAlloc(_In_ HGLOBAL hMem, _In_ SIZE_T dwBytes, _In_ UINT uFlags)
tutSIZE_TGlobalSize(_In_ HGLOBAL hMem)
tiVOIDGlobalUnfix(HGLOBAL hMem)
tiBOOLGlobalUnlock(_In_ HGLOBAL hMem)
tiBOOLGlobalUnWire(HGLOBAL hMem)
ttLPVOIDGlobalWire(HGLOBAL hMem)
tuiutiBOOLHeap32First(_Inout_ LPHEAPENTRY32 lphe, _In_ DWORD th32ProcessID, _In_ ULONG_PTR th32HeapID)
ttiBOOLHeap32ListFirst(_In_ HANDLE hSnapshot, _Inout_ LPHEAPLIST32 lphl)
ttiBOOLHeap32ListNext(_In_ HANDLE hSnapshot, _Out_ LPHEAPLIST32 lphl)
tiBOOLHeap32Next(_Out_ LPHEAPENTRY32 lphe)
tuiuttLPVOIDHeapAlloc(_In_ HANDLE hHeap, _In_ DWORD dwFlags, _In_ SIZE_T dwBytes)
tuiutSIZE_THeapCompact(_In_ HANDLE hHeap, _In_ DWORD dwFlags)
uiututtHANDLEHeapCreate(_In_ DWORD flOptions, _In_ SIZE_T dwInitialSize, _In_ SIZE_T dwMaximumSize)
tiBOOLHeapDestroy(_In_ HANDLE hHeap)
tuitiBOOLHeapFree(_In_ HANDLE hHeap, _In_ DWORD dwFlags, _In_ LPVOID lpMem)
tiBOOLHeapLock(_In_ HANDLE hHeap)
tituttiBOOLHeapQueryInformation(_In_opt_ HANDLE HeapHandle, _In_ HEAP_INFORMATION_CLASS HeapInformationClass, _Out_ PVOID HeapInformation, _In_ SIZE_T HeapInformationLength, _Out_opt_ PSIZE_T ReturnLength)
tuituttLPVOIDHeapReAlloc(_In_ HANDLE hHeap, _In_ DWORD dwFlags, _In_ LPVOID lpMem, _In_ SIZE_T dwBytes)
titutiBOOLHeapSetInformation(_In_opt_ HANDLE HeapHandle, _In_ HEAP_INFORMATION_CLASS HeapInformationClass, _In_ PVOID HeapInformation, _In_ SIZE_T HeapInformationLength)
tuitutSIZE_THeapSize(_In_ HANDLE hHeap, _In_ DWORD dwFlags, _In_ LPCVOID lpMem)
tiBOOLHeapUnlock(_In_ HANDLE hHeap)
tuitiBOOLHeapValidate(_In_ HANDLE hHeap, _In_ DWORD dwFlags, _In_opt_ LPCVOID lpMem)
ttiBOOLHeapWalk(_In_ HANDLE hHeap, _Inout_ LPPROCESS_HEAP_ENTRY lpEntry)
uiwiwiiintIdnToAscii(_In_ DWORD dwFlags, _In_ LPCWSTR lpUnicodeCharStr, _In_ int cchUnicodeChar, _Out_opt_ LPWSTR lpASCIICharStr, _In_ int cchASCIIChar)
uiwiwiiintIdnToNameprepUnicode(_In_ DWORD dwFlags, _In_ LPCWSTR lpUnicodeCharStr, _In_ int cchUnicodeChar, _Out_opt_ LPWSTR lpNameprepCharStr, _In_ int cchNameprepChar)
uiwiwiiintIdnToUnicode(_In_ DWORD dwFlags, _In_ LPCWSTR lpASCIICharStr, _In_ int cchASCIIChar, _Out_opt_ LPWSTR lpUnicodeCharStr, _In_ int cchUnicodeChar)
uiiBOOLInitAtomTable(_In_ DWORD nSize)
tiVOIDInitializeConditionVariable(_Out_ PCONDITION_VARIABLE ConditionVariable)
tuittiBOOLInitializeContext(_Out_opt_ PVOID Buffer, _In_ DWORD ContextFlags, _Out_opt_ PCONTEXT *Context, _Inout_ PWORD ContextLength)
tiVOIDInitializeCriticalSection(_Out_ LPCRITICAL_SECTION lpCriticalSection)
tuiiBOOLInitializeCriticalSectionAndSpinCount(_Out_ LPCRITICAL_SECTION lpCriticalSection, _In_ DWORD dwSpinCount)
tuiuiiBOOLInitializeCriticalSectionEx(_Out_ LPCRITICAL_SECTION lpCriticalSection, _In_ DWORD dwSpinCount, _In_ DWORD Flags)
tuiuitiBOOLInitializeProcThreadAttributeList(_Out_opt_ LPPROC_THREAD_ATTRIBUTE_LIST lpAttributeList, _In_ DWORD dwAttributeCount, _Reserved_ DWORD dwFlags, _Inout_ PSIZE_T lpSize)
tiVOIDInitializeSListHead(_Inout_ PSLIST_HEADER ListHead)
tiVOIDInitializeSRWLock(_Out_ PSRWLOCK SRWLock)
tuittiBOOLInitOnceBeginInitialize(_Inout_ LPINIT_ONCE lpInitOnce, _In_ DWORD dwFlags, _Out_ PBOOL fPending, _Out_opt_ LPVOID *lpContext)
tuitiBOOLInitOnceComplete(_Inout_ LPINIT_ONCE lpInitOnce, _In_ DWORD dwFlags, _In_opt_ LPVOID lpContext)
ttttiBOOLInitOnceExecuteOnce(_Inout_ PINIT_ONCE InitOnce, _In_ PINIT_ONCE_FN InitFn, _Inout_opt_ PVOID Parameter, _Out_opt_ LPVOID *Context)
tiVOIDInitOnceInitialize(_Out_ PINIT_ONCE InitOnce)
tiiiLONGInterlockedCompareExchange(_Inout_ LONG volatile *Destination, _In_ LONG Exchange, _In_ LONG Comparand)
ti6i6i6LONGLONGInterlockedCompareExchange64(_Inout_ LONGLONG volatile *Destination, _In_ LONGLONG Exchange, _In_ LONGLONG Comparand)
tiLONGInterlockedDecrement(_Inout_ LONG volatile *Addend)
tiiLONGInterlockedExchange(_Inout_ LONG volatile *Target, _In_ LONG Value)
tiiLONGInterlockedExchangeAdd(_Inout_ LONG volatile *Addend, _In_ LONG Value)
ttPSLIST_ENTRYInterlockedFlushSList(_Inout_ PSLIST_HEADER ListHead)
tiLONGInterlockedIncrement(_Inout_ LONG volatile *Addend)
ttPSLIST_ENTRYInterlockedPopEntrySList(_Inout_ PSLIST_HEADER ListHead)
tttPSLIST_ENTRYInterlockedPushEntrySList(_Inout_ PSLIST_HEADER ListHead, _Inout_ PSLIST_ENTRY ListEntry)
tttuitPSLIST_ENTRYInterlockedPushListSList(_Inout_ PSLIST_HEADER ListHead, _Inout_ PSLIST_ENTRY List, _Inout_ PSLIST_ENTRY ListEnd, _In_ ULONG Count)
tiBOOLIsBadCodePtr(_In_ FARPROC lpfn)
tutiBOOLIsBadHugeReadPtr(VOID* lp,UINT_PTR ucb)
tutiBOOLIsBadHugeWritePtr(LPVOID lp,UINT_PTR ucb)
tutiBOOLIsBadReadPtr(_In_ const VOID *lp, _In_ UINT_PTR ucb)
sutiBOOLIsBadStringPtr(_In_ LPCTSTR lpsz, _In_ UINT_PTR ucchMax)
autiBOOLIsBadStringPtrA(_In_ LPCSTR lpsz, _In_ UINT_PTR ucchMax)
wutiBOOLIsBadStringPtrW(_In_ LPCWSTR lpsz, _In_ UINT_PTR ucchMax)
tutiBOOLIsBadWritePtr(_In_ LPVOID lp, _In_ UINT_PTR ucb)
uiuiuiiBOOLIsCalendarLeapYear(_In_ CALID calId, _In_ UINT year, _In_ UINT era)
uciBOOLIsDBCSLeadByte(_In_ BYTE TestChar)
uiuciBOOLIsDBCSLeadByteEx(_In_ UINT CodePage, _In_ BYTE TestChar)
iBOOLIsDebuggerPresent(void)
uiuitwiiBOOLIsNLSDefinedString(_In_ NLS_FUNCTION Function, _In_ DWORD dwFlags, _In_ LPNLSVERSIONINFO lpVersionInformation, _In_ LPCWSTR lpString, _In_ INT cchStr)
uiwiiBOOLIsNormalizedString(_In_ NORM_FORM NormForm, _In_ LPCWSTR lpString, _In_ int cwLength)
tttiBOOLIsProcessInJob(_In_ HANDLE ProcessHandle, _In_opt_ HANDLE JobHandle, _Out_ PBOOL Result)
uiiBOOLIsProcessorFeaturePresent(_In_ DWORD ProcessorFeature)
iBOOLIsSystemResumeAutomatic(void)
iBOOLIsThreadAFiber(void)
tiBOOLIsThreadpoolTimerSet(_Inout_ PTP_TIMER pti)
uiiBOOLIsValidCodePage(_In_ UINT CodePage)
uiuiiBOOLIsValidLanguageGroup(_In_ LGRPID LanguageGroup, _In_ DWORD dwFlags)
uiuiiBOOLIsValidLocale(_In_ LCID Locale, _In_ DWORD dwFlags)
wiBOOLIsValidLocaleName(_In_ LPCWSTR lpLocaleName)
ttiBOOLIsWow64Process(_In_ HANDLE hProcess, _Out_ PBOOL Wow64Process)
uiwiuiiintLCIDToLocaleName(_In_ LCID Locale, _Out_opt_ LPWSTR lpName, _In_ int cchName, _In_ DWORD dwFlags)
uiuisisiiintLCMapString(_In_ LCID Locale, _In_ DWORD dwMapFlags, _In_ LPCTSTR lpSrcStr, _In_ int cchSrc, _Out_opt_ LPTSTR lpDestStr, _In_ int cchDest)
uiuiaiaiiintLCMapStringA(_In_ LCID Locale, _In_ DWORD dwMapFlags, _In_ LPCSTR lpSrcStr, _In_ int cchSrc, _Out_opt_ LPSTR lpDestStr, _In_ int cchDest)
wuiwiwittutiintLCMapStringEx(_In_opt_ LPCWSTR lpLocaleName, _In_ DWORD dwMapFlags, _In_ LPCWSTR lpSrcStr, _In_ int cchSrc, _Out_opt_ LPWSTR lpDestStr, _In_ int cchDest, _In_opt_ LPNLSVERSIONINFO lpVersionInformation, _In_opt_ LPVOID lpReserved, _In_opt_ LPARAM sortHandle)
uiuiwiwiiintLCMapStringW(_In_ LCID Locale, _In_ DWORD dwMapFlags, _In_ LPCWSTR lpSrcStr, _In_ int cchSrc, _Out_opt_ LPWSTR lpDestStr, _In_ int cchDest)
tiVOIDLeaveCriticalSection(_Inout_ LPCRITICAL_SECTION lpCriticalSection)
ttiVOIDLeaveCriticalSectionWhenCallbackReturns(_Inout_ PTP_CALLBACK_INSTANCE pci, _Inout_ PCRITICAL_SECTION pcs)
stHMODULELoadLibrary(_In_ LPCTSTR lpFileName)
atHMODULELoadLibraryA(_In_ LPCSTR lpFileName)
stuitHMODULELoadLibraryEx(_In_ LPCTSTR lpFileName, _Reserved_ HANDLE hFile, _In_ DWORD dwFlags)
atuitHMODULELoadLibraryExA(_In_ LPCSTR lpFileName, _Reserved_ HANDLE hFile, _In_ DWORD dwFlags)
wtuitHMODULELoadLibraryExW(_In_ LPCWSTR lpFileName, _Reserved_ HANDLE hFile, _In_ DWORD dwFlags)
wtHMODULELoadLibraryW(_In_ LPCWSTR lpFileName)
atuiDWORDLoadModule(_In_ LPCSTR lpModuleName, _In_ LPVOID lpParameterBlock)
tttHGLOBALLoadResource(_In_opt_ HMODULE hModule, _In_ HRSRC hResInfo)
uiwwtuiwtiBOOLLoadStringByReference(_In_ DWORD Flags, _In_opt_ PCWSTR Language, _In_ PCWSTR SourceString, _Out_opt_ PWSTR Buffer, _In_ ULONG cchBuffer, _In_opt_ PCWSTR Directory, _Out_opt_ PULONG pcchBufferOut)
uiuttHLOCALLocalAlloc(_In_ UINT uFlags, _In_ SIZE_T uBytes)
uiutSIZE_TLocalCompact(UINT uMinFree)
wuiuiLCIDLocaleNameToLCID(_In_ LPCWSTR lpName, _In_ DWORD dwFlags)
ttiBOOLLocalFileTimeToFileTime(_In_ const FILETIME *lpLocalFileTime, _Out_ LPFILETIME lpFileTime)
tuiUINTLocalFlags(_In_ HLOCAL hMem)
ttHLOCALLocalFree(_In_ HLOCAL hMem)
ttHLOCALLocalHandle(_In_ LPCVOID pMem)
ttLPVOIDLocalLock(_In_ HLOCAL hMem)
tutuitHLOCALLocalReAlloc(_In_ HLOCAL hMem, _In_ SIZE_T uBytes, _In_ UINT uFlags)
tuiutSIZE_TLocalShrink(HLOCAL hMem,UINT cbNewSize)
tuiUINTLocalSize(_In_ HLOCAL hMem)
tiBOOLLocalUnlock(_In_ HLOCAL hMem)
tuittPVOIDLocateXStateFeature(_In_ PCONTEXT Context, _In_ DWORD FeatureId, _Out_opt_ PDWORD Length)
tuiuiuiuiiBOOLLockFile(_In_ HANDLE hFile, _In_ DWORD dwFileOffsetLow, _In_ DWORD dwFileOffsetHigh, _In_ DWORD nNumberOfBytesToLockLow, _In_ DWORD nNumberOfBytesToLockHigh)
tuiuiuiuitiBOOLLockFileEx(_In_ HANDLE hFile, _In_ DWORD dwFlags, _Reserved_ DWORD dwReserved, _In_ DWORD nNumberOfBytesToLockLow, _In_ DWORD nNumberOfBytesToLockHigh, _Inout_ LPOVERLAPPED lpOverlapped)
ttLPVOIDLockResource(_In_ HGLOBAL hResData)
sssLPTSTRlstrcat(_Inout_ LPTSTR lpString1, _In_ LPTSTR lpString2)
aaaLPSTRlstrcatA(_Inout_ LPSTR lpString1, _In_ LPSTR lpString2)
wwwLPWSTRlstrcatW(_Inout_ LPWSTR lpString1, _In_ LPWSTR lpString2)
ssiintlstrcmp(_In_ LPCTSTR lpString1, _In_ LPCTSTR lpString2)
aaiintlstrcmpA(_In_ LPCSTR lpString1, _In_ LPCSTR lpString2)
ssiintlstrcmpi(_In_ LPCTSTR lpString1, _In_ LPCTSTR lpString2)
aaiintlstrcmpiA(_In_ LPCSTR lpString1, _In_ LPCSTR lpString2)
wwiintlstrcmpiW(_In_ LPCWSTR lpString1, _In_ LPCWSTR lpString2)
wwiintlstrcmpW(_In_ LPCWSTR lpString1, _In_ LPCWSTR lpString2)
sssLPTSTRlstrcpy(_Out_ LPTSTR lpString1, _In_ LPTSTR lpString2)
aaaLPSTRlstrcpyA(_Out_ LPSTR lpString1, _In_ LPSTR lpString2)
ssisLPTSTRlstrcpyn(_Out_ LPTSTR lpString1, _In_ LPCTSTR lpString2, _In_ int iMaxLength)
aaiaLPSTRlstrcpynA(_Out_ LPSTR lpString1, _In_ LPCSTR lpString2, _In_ int iMaxLength)
wwiwLPWSTRlstrcpynW(_Out_ LPWSTR lpString1, _In_ LPCWSTR lpString2, _In_ int iMaxLength)
wwwLPWSTRlstrcpyW(_Out_ LPWSTR lpString1, _In_ LPWSTR lpString2)
siintlstrlen(_In_ LPCTSTR lpString)
aiintlstrlenA(_In_ LPCSTR lpString)
wiintlstrlenW(_In_ LPCWSTR lpString)
iiVOIDLZClose(INT)
iiiLONGLZCopy(INT,INT)
iVOIDLZDone(VOID)
iiINTLZInit(INT)
stuhiINTLZOpenFile(LPTSTR,LPOFSTRUCT,WORD)
atuhiINTLZOpenFileA(LPSTR,LPOFSTRUCT,WORD)
wtuhiINTLZOpenFileW(LPWSTR,LPOFSTRUCT,WORD)
iaiiINTLZRead(INT,LPSTR,INT)
iiiiLONGLZSeek(INT,LONG,INT)
iINTLZStart(VOID)
tututiBOOLMapUserPhysicalPages(_In_ PVOID lpAddress, _In_ ULONG_PTR NumberOfPages, _In_ PULONG_PTR UserPfnArray)
tututiBOOLMapUserPhysicalPagesScatter(_In_ PVOID *VirtualAddresses, _In_ ULONG_PTR NumberOfPages, _In_ PULONG_PTR PageArray)
tuiuiuiuttLPVOIDMapViewOfFile(_In_ HANDLE hFileMappingObject, _In_ DWORD dwDesiredAccess, _In_ DWORD dwFileOffsetHigh, _In_ DWORD dwFileOffsetLow, _In_ SIZE_T dwNumberOfBytesToMap)
tuiuiuiutttLPVOIDMapViewOfFileEx(_In_ HANDLE hFileMappingObject, _In_ DWORD dwDesiredAccess, _In_ DWORD dwFileOffsetHigh, _In_ DWORD dwFileOffsetLow, _In_ SIZE_T dwNumberOfBytesToMap, _In_opt_ LPVOID lpBaseAddress)
tuiuiuiuttuitLPVOIDMapViewOfFileExNuma(_In_ HANDLE hFileMappingObject, _In_ DWORD dwDesiredAccess, _In_ DWORD dwFileOffsetHigh, _In_ DWORD dwFileOffsetLow, _In_ SIZE_T dwNumberOfBytesToMap, _In_opt_ LPVOID lpBaseAddress, _In_ DWORD nndPreferred)
ttiBOOLModule32First(_In_ HANDLE hSnapshot, _Inout_ LPMODULEENTRY32 lpme)
ttiBOOLModule32FirstW(_In_ HANDLE hSnapshot, _Inout_ LPMODULEENTRY32 lpme)
ttiBOOLModule32Next(_In_ HANDLE hSnapshot, _Out_ LPMODULEENTRY32 lpme)
ttiBOOLModule32NextW(_In_ HANDLE hSnapshot, _Out_ LPMODULEENTRY32 lpme)
ssiBOOLMoveFile(_In_ LPCTSTR lpExistingFileName, _In_ LPCTSTR lpNewFileName)
aaiBOOLMoveFileA(_In_ LPCSTR lpExistingFileName, _In_ LPCSTR lpNewFileName)
ssuiiBOOLMoveFileEx(_In_ LPCTSTR lpExistingFileName, _In_opt_ LPCTSTR lpNewFileName, _In_ DWORD dwFlags)
aauiiBOOLMoveFileExA(_In_ LPCSTR lpExistingFileName, _In_opt_ LPCSTR lpNewFileName, _In_ DWORD dwFlags)
wwuiiBOOLMoveFileExW(_In_ LPCWSTR lpExistingFileName, _In_opt_ LPCWSTR lpNewFileName, _In_ DWORD dwFlags)
ssttuitiBOOLMoveFileTransacted(_In_ LPCTSTR lpExistingFileName, _In_opt_ LPCTSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_ DWORD dwFlags, _In_ HANDLE hTransaction)
aattuitiBOOLMoveFileTransactedA(_In_ LPCSTR lpExistingFileName, _In_opt_ LPCSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_ DWORD dwFlags, _In_ HANDLE hTransaction)
wwttuitiBOOLMoveFileTransactedW(_In_ LPCWSTR lpExistingFileName, _In_opt_ LPCWSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_ DWORD dwFlags, _In_ HANDLE hTransaction)
wwiBOOLMoveFileW(_In_ LPCWSTR lpExistingFileName, _In_ LPCWSTR lpNewFileName)
ssttuiiBOOLMoveFileWithProgress(_In_ LPCTSTR lpExistingFileName, _In_opt_ LPCTSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_ DWORD dwFlags)
aattuiiBOOLMoveFileWithProgressA(_In_ LPCSTR lpExistingFileName, _In_opt_ LPCSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_ DWORD dwFlags)
wwttuiiBOOLMoveFileWithProgressW(_In_ LPCWSTR lpExistingFileName, _In_opt_ LPCWSTR lpNewFileName, _In_opt_ LPPROGRESS_ROUTINE lpProgressRoutine, _In_opt_ LPVOID lpData, _In_ DWORD dwFlags)
iiiiintMulDiv(int nNumber,int nNumerator,int nDenominator)
uiuiaiwiiintMultiByteToWideChar(_In_ UINT CodePage, _In_ DWORD dwFlags, _In_ LPCSTR lpMultiByteStr, _In_ int cbMultiByte, _Out_opt_ LPWSTR lpWideCharStr, _In_ int cchWideChar)
siBOOLNeedCurrentDirectoryForExePath(_In_ LPCTSTR ExeName)
aiBOOLNeedCurrentDirectoryForExePathA(_In_ LPCSTR ExeName)
wiBOOLNeedCurrentDirectoryForExePathW(_In_ LPCWSTR ExeName)
uiwwuitiBOOLNotifyUILanguageChange(_In_ DWORD dwFlags, _In_opt_ PCWSTR pcwstrNewLanguage, _In_opt_ PCWSTR pcwstrPreviousLanguage, _In_ DWORD dwReserved, _Out_opt_ PDWORD pdwStatusRtrn)
uiistHANDLEOpenEvent(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCTSTR lpName)
uiiatHANDLEOpenEventA(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCSTR lpName)
uiiwtHANDLEOpenEventW(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCWSTR lpName)
atuitHFILEOpenFile(_In_ LPCSTR lpFileName, _Out_ LPOFSTRUCT lpReOpenBuff, _In_ UINT uStyle)
ttuiuituitHANDLEOpenFileById(_In_ HANDLE hFile, _In_ LPFILE_ID_DESCRIPTOR lpFileID, _In_ DWORD dwDesiredAccess, _In_ DWORD dwShareMode, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _In_ DWORD dwFlags)
uiistHANDLEOpenFileMapping(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCTSTR lpName)
uiiatHANDLEOpenFileMappingA(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCSTR lpName)
uiiwtHANDLEOpenFileMappingW(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCWSTR lpName)
uiistHANDLEOpenJobObject(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandles, _In_ LPCTSTR lpName)
uiiatHANDLEOpenJobObjectA(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandles, _In_ LPCSTR lpName)
uiiwtHANDLEOpenJobObjectW(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandles, _In_ LPCWSTR lpName)
uiistHANDLEOpenMutex(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCTSTR lpName)
uiiatHANDLEOpenMutexA(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCSTR lpName)
uiiwtHANDLEOpenMutexW(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCWSTR lpName)
tstHANDLEOpenPrivateNamespace(_In_ LPVOID lpBoundaryDescriptor, _In_ LPCTSTR lpAliasPrefix)
tatHANDLEOpenPrivateNamespaceA(_In_ LPVOID lpBoundaryDescriptor, _In_ LPCSTR lpAliasPrefix)
twtHANDLEOpenPrivateNamespaceW(_In_ LPVOID lpBoundaryDescriptor, _In_ LPCWSTR lpAliasPrefix)
uiiuitHANDLEOpenProcess(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ DWORD dwProcessId)
uiistHANDLEOpenSemaphore(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCTSTR lpName)
uiiatHANDLEOpenSemaphoreA(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCSTR lpName)
uiiwtHANDLEOpenSemaphoreW(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCWSTR lpName)
uiiuitHANDLEOpenThread(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ DWORD dwThreadId)
uiistHANDLEOpenWaitableTimer(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCTSTR lpTimerName)
uiiatHANDLEOpenWaitableTimerA(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCSTR lpTimerName)
uiiwtHANDLEOpenWaitableTimerW(_In_ DWORD dwDesiredAccess, _In_ BOOL bInheritHandle, _In_ LPCWSTR lpTimerName)
siVOIDOutputDebugString(_In_opt_ LPCTSTR lpOutputString)
aiVOIDOutputDebugStringA(_In_opt_ LPCSTR lpOutputString)
wiVOIDOutputDebugStringW(_In_opt_ LPCWSTR lpOutputString)
ttuitiBOOLPeekConsoleInput(_In_ HANDLE hConsoleInput, _Out_ PINPUT_RECORD lpBuffer, _In_ DWORD nLength, _Out_ LPDWORD lpNumberOfEventsRead)
ttuitiBOOLPeekConsoleInputA(_In_ HANDLE hConsoleInput, _Out_ PINPUT_RECORD lpBuffer, _In_ DWORD nLength, _Out_ LPDWORD lpNumberOfEventsRead)
ttuitiBOOLPeekConsoleInputW(_In_ HANDLE hConsoleInput, _Out_ PINPUT_RECORD lpBuffer, _In_ DWORD nLength, _Out_ LPDWORD lpNumberOfEventsRead)
ttuitttiBOOLPeekNamedPipe(_In_ HANDLE hNamedPipe, _Out_opt_ LPVOID lpBuffer, _In_ DWORD nBufferSize, _Out_opt_ LPDWORD lpBytesRead, _Out_opt_ LPDWORD lpTotalBytesAvail, _Out_opt_ LPDWORD lpBytesLeftThisMessage)
tuiuttiBOOLPostQueuedCompletionStatus(_In_ HANDLE CompletionPort, _In_ DWORD dwNumberOfBytesTransferred, _In_ ULONG_PTR dwCompletionKey, _In_opt_ LPOVERLAPPED lpOverlapped)
tiiBOOLPowerClearRequest(_In_ HANDLE PowerRequest, _In_ POWER_REQUEST_TYPE RequestType)
ttHANDLEPowerCreateRequest(_In_ PREASON_CONTEXT Context)
tiiBOOLPowerSetRequest(_In_ HANDLE PowerRequest, _In_ POWER_REQUEST_TYPE RequestType)
tuiiuiDWORDPrepareTape(_In_ HANDLE hDevice, _In_ DWORD dwOperation, _In_ BOOL bImmediate)
ttiBOOLProcess32First(_In_ HANDLE hSnapshot, _Inout_ LPPROCESSENTRY32 lppe)
ttiBOOLProcess32FirstW(_In_ HANDLE hSnapshot, _Inout_ LPPROCESSENTRY32 lppe)
ttiBOOLProcess32Next(_In_ HANDLE hSnapshot, _Out_ LPPROCESSENTRY32 lppe)
ttiBOOLProcess32NextW(_In_ HANDLE hSnapshot, _Out_ LPPROCESSENTRY32 lppe)
uitiBOOLProcessIdToSessionId(_In_ DWORD dwProcessId, _Out_ DWORD *pSessionId)
tiBOOLPulseEvent(_In_ HANDLE hEvent)
tuiiBOOLPurgeComm(_In_ HANDLE hFile, _In_ DWORD dwFlags)
uitwwtuttiBOOLQueryActCtxSettingsW(_In_opt_ DWORD dwFlags, _In_opt_ HANDLE hActCtx, _In_opt_ PCWSTR settingsNameSpace, _In_ PCWSTR settingName, _Out_ PWSTR pvBuffer, _In_ SIZE_T dwBuffer, _Out_opt_ SIZE_T *pdwWrittenOrRequired)
uittuituttiBOOLQueryActCtxW(_In_ DWORD dwFlags, _In_ HANDLE hActCtx, _In_opt_ PVOID pvSubInstance, _In_ ULONG ulInfoClass, _Out_ PVOID pvBuffer, _In_opt_ SIZE_T cbBuffer, _Out_opt_ SIZE_T *pcbWrittenOrRequired)
tuhUSHORTQueryDepthSList(_In_ PSLIST_HEADER ListHead)
ssuiuiDWORDQueryDosDevice(_In_opt_ LPCTSTR lpDeviceName, _Out_ LPTSTR lpTargetPath, _In_ DWORD ucchMax)
aauiuiDWORDQueryDosDeviceA(_In_opt_ LPCSTR lpDeviceName, _Out_ LPSTR lpTargetPath, _In_ DWORD ucchMax)
wwuiuiDWORDQueryDosDeviceW(_In_opt_ LPCWSTR lpDeviceName, _Out_ LPWSTR lpTargetPath, _In_ DWORD ucchMax)
tuistiBOOLQueryFullProcessImageName(_In_ HANDLE hProcess, _In_ DWORD dwFlags, _Out_ LPTSTR lpExeName, _Inout_ PDWORD lpdwSize)
tuiatiBOOLQueryFullProcessImageNameA(_In_ HANDLE hProcess, _In_ DWORD dwFlags, _Out_ LPSTR lpExeName, _Inout_ PDWORD lpdwSize)
tuiwtiBOOLQueryFullProcessImageNameW(_In_ HANDLE hProcess, _In_ DWORD dwFlags, _Out_ LPWSTR lpExeName, _Inout_ PDWORD lpdwSize)
ttiBOOLQueryIdleProcessorCycleTime(_Inout_ PULONG BufferLength, _Out_ PULONG64 ProcessorIdleCycleTime)
uhttiBOOLQueryIdleProcessorCycleTimeEx(_In_ USHORT Group, _Inout_ PULONG BufferLength, _Out_ PULONG64 ProcessorIdleCycleTime)
tuituitiBOOLQueryInformationJobObject(_In_opt_ HANDLE hJob, _In_ JOBOBJECTINFOCLASS JobObjectInfoClass, _Out_ LPVOID lpJobObjectInfo, _In_ DWORD cbJobObjectInfoLength, _Out_opt_ LPDWORD lpReturnLength)
ttiBOOLQueryMemoryResourceNotification(_In_ HANDLE ResourceNotificationHandle, _Out_ PBOOL ResourceState)
tiBOOLQueryPerformanceCounter(_Out_ LARGE_INTEGER *lpPerformanceCount)
tiBOOLQueryPerformanceFrequency(_Out_ LARGE_INTEGER *lpFrequency)
tuiiBOOLQueryProcessAffinityUpdateMode(_In_ HANDLE ProcessHandle, _Out_opt_ DWORD lpdwFlags)
ttiBOOLQueryProcessCycleTime(_In_ HANDLE ProcessHandle, _Out_ PULONG64 CycleTime)
ttiBOOLQueryThreadCycleTime(_In_ HANDLE ThreadHandle, _Out_ PULONG64 CycleTime)
ttiBOOLQueryThreadpoolStackInformation(_In_ PTP_POOL ptpp, _Out_ PTP_POOL_STACK_INFORMATION ptpsi)
ttuiDWORDQueryThreadProfiling(_In_ HANDLE ThreadHandle, _Out_ PBOOLEAN Enabled)
tiBOOLQueryUnbiasedInterruptTime(_Out_ PULONGLONG UnbiasedTime)
ttutuiDWORDQueueUserAPC(_In_ PAPCFUNC pfnAPC, _In_ HANDLE hThread, _In_ ULONG_PTR dwData)
ttuiiBOOLQueueUserWorkItem(_In_ LPTHREAD_START_ROUTINE Function, _In_opt_ PVOID Context, _In_ ULONG Flags)
uiuiuiutiVOIDRaiseException(_In_ DWORD dwExceptionCode, _In_ DWORD dwExceptionFlags, _In_ DWORD nNumberOfArguments, _In_ const ULONG_PTR *lpArguments)
ttuiiVOIDRaiseFailFastException(_In_opt_ PEXCEPTION_RECORD pExceptionRecord, _In_opt_ PCONTEXT pContextRecord, _In_ DWORD dwFlags)
ttuittiBOOLReadConsole(_In_ HANDLE hConsoleInput, _Out_ LPVOID lpBuffer, _In_ DWORD nNumberOfCharsToRead, _Out_ LPDWORD lpNumberOfCharsRead, _In_opt_ LPVOID pInputControl)
ttuittiBOOLReadConsoleA(_In_ HANDLE hConsoleInput, _Out_ LPVOID lpBuffer, _In_ DWORD nNumberOfCharsToRead, _Out_ LPDWORD lpNumberOfCharsRead, _In_opt_ LPVOID pInputControl)
ttuitiBOOLReadConsoleInput(_In_ HANDLE hConsoleInput, _Out_ PINPUT_RECORD lpBuffer, _In_ DWORD nLength, _Out_ LPDWORD lpNumberOfEventsRead)
ttuitiBOOLReadConsoleInputA(_In_ HANDLE hConsoleInput, _Out_ PINPUT_RECORD lpBuffer, _In_ DWORD nLength, _Out_ LPDWORD lpNumberOfEventsRead)
ttuitiBOOLReadConsoleInputW(_In_ HANDLE hConsoleInput, _Out_ PINPUT_RECORD lpBuffer, _In_ DWORD nLength, _Out_ LPDWORD lpNumberOfEventsRead)
ttuiuitiBOOLReadConsoleOutput(_In_ HANDLE hConsoleOutput, _Out_ PCHAR_INFO lpBuffer, _In_ COORD dwBufferSize, _In_ COORD dwBufferCoord, _Inout_ PSMALL_RECT lpReadRegion)
ttuiuitiBOOLReadConsoleOutputA(_In_ HANDLE hConsoleOutput, _Out_ PCHAR_INFO lpBuffer, _In_ COORD dwBufferSize, _In_ COORD dwBufferCoord, _Inout_ PSMALL_RECT lpReadRegion)
ttuiuitiBOOLReadConsoleOutputAttribute(_In_ HANDLE hConsoleOutput, _Out_ LPWORD lpAttribute, _In_ DWORD nLength, _In_ COORD dwReadCoord, _Out_ LPDWORD lpNumberOfAttrsRead)
tsuiuitiBOOLReadConsoleOutputCharacter(_In_ HANDLE hConsoleOutput, _Out_ LPTSTR lpCharacter, _In_ DWORD nLength, _In_ COORD dwReadCoord, _Out_ LPDWORD lpNumberOfCharsRead)
tauiuitiBOOLReadConsoleOutputCharacterA(_In_ HANDLE hConsoleOutput, _Out_ LPSTR lpCharacter, _In_ DWORD nLength, _In_ COORD dwReadCoord, _Out_ LPDWORD lpNumberOfCharsRead)
twuiuitiBOOLReadConsoleOutputCharacterW(_In_ HANDLE hConsoleOutput, _Out_ LPWSTR lpCharacter, _In_ DWORD nLength, _In_ COORD dwReadCoord, _Out_ LPDWORD lpNumberOfCharsRead)
ttuiuitiBOOLReadConsoleOutputW(_In_ HANDLE hConsoleOutput, _Out_ PCHAR_INFO lpBuffer, _In_ COORD dwBufferSize, _In_ COORD dwBufferCoord, _Inout_ PSMALL_RECT lpReadRegion)
ttuittiBOOLReadConsoleW(_In_ HANDLE hConsoleInput, _Out_ LPVOID lpBuffer, _In_ DWORD nNumberOfCharsToRead, _Out_ LPDWORD lpNumberOfCharsRead, _In_opt_ LPVOID pInputControl)
ttuiiuitttiBOOLReadDirectoryChangesW(_In_ HANDLE hDirectory, _Out_ LPVOID lpBuffer, _In_ DWORD nBufferLength, _In_ BOOL bWatchSubtree, _In_ DWORD dwNotifyFilter, _Out_opt_ LPDWORD lpBytesReturned, _Inout_opt_ LPOVERLAPPED lpOverlapped, _In_opt_ LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
ttuittiBOOLReadFile(_In_ HANDLE hFile, _Out_ LPVOID lpBuffer, _In_ DWORD nNumberOfBytesToRead, _Out_opt_ LPDWORD lpNumberOfBytesRead, _Inout_opt_ LPOVERLAPPED lpOverlapped)
ttuittiBOOLReadFileEx(_In_ HANDLE hFile, _Out_opt_ LPVOID lpBuffer, _In_ DWORD nNumberOfBytesToRead, _Inout_ LPOVERLAPPED lpOverlapped, _In_ LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
ttuittiBOOLReadFileScatter(_In_ HANDLE hFile, _In_ FILE_SEGMENT_ELEMENT aSegmentArray[], _In_ DWORD nNumberOfBytesToRead, _Reserved_ LPDWORD lpReserved, _Inout_ LPOVERLAPPED lpOverlapped)
tttuttiBOOLReadProcessMemory(_In_ HANDLE hProcess, _In_ LPCVOID lpBaseAddress, _Out_ LPVOID lpBuffer, _In_ SIZE_T nSize, _Out_ SIZE_T *lpNumberOfBytesRead)
tuituiDWORDReadThreadProfilingData(_In_ HANDLE PerformanceDataHandle, _In_ DWORD Flags, _Out_ PPERFORMANCE_DATA PerformanceData)
ttuiuiiHRESULTRegisterApplicationRecoveryCallback(_In_ APPLICATION_RECOVERY_CALLBACK pRecoveryCallback, _In_opt_ PVOID pvParameter, _In_ DWORD dwPingInterval, _In_ DWORD dwFlags)
wuiiHRESULTRegisterApplicationRestart(_In_opt_ PCWSTR pwzCommandline, _In_ DWORD dwFlags)
ttttuiuiiBOOLRegisterWaitForSingleObject(_Out_ PHANDLE phNewWaitObject, _In_ HANDLE hObject, _In_ WAITORTIMERCALLBACK Callback, _In_opt_ PVOID Context, _In_ ULONG dwMilliseconds, _In_ ULONG dwFlags)
tttuiuitHANDLERegisterWaitForSingleObjectEx(HANDLE hObject,WAITORTIMERCALLBACK Callback,PVOID Context,ULONG dwMilliseconds,ULONG dwFlags)
tiVOIDReleaseActCtx(_In_ HANDLE hActCtx)
tiBOOLReleaseMutex(_In_ HANDLE hMutex)
ttiVOIDReleaseMutexWhenCallbackReturns(_Inout_ PTP_CALLBACK_INSTANCE pci, _In_ HANDLE mut)
titiBOOLReleaseSemaphore(_In_ HANDLE hSemaphore, _In_ LONG lReleaseCount, _Out_opt_ LPLONG lpPreviousCount)
ttuiiVOIDReleaseSemaphoreWhenCallbackReturns(_Inout_ PTP_CALLBACK_INSTANCE pci, _In_ HANDLE sem, _In_ DWORD crel)
tiVOIDReleaseSRWLockExclusive(_Inout_ PSRWLOCK SRWLock)
tiVOIDReleaseSRWLockShared(_Inout_ PSRWLOCK SRWLock)
siBOOLRemoveDirectory(_In_ LPCTSTR lpPathName)
aiBOOLRemoveDirectoryA(_In_ LPCSTR lpPathName)
stiBOOLRemoveDirectoryTransacted(_In_ LPCTSTR lpPathName, _In_ HANDLE hTransaction)
atiBOOLRemoveDirectoryTransactedA(_In_ LPCSTR lpPathName, _In_ HANDLE hTransaction)
wtiBOOLRemoveDirectoryTransactedW(_In_ LPCWSTR lpPathName, _In_ HANDLE hTransaction)
wiBOOLRemoveDirectoryW(_In_ LPCWSTR lpPathName)
tiBOOLRemoveDllDirectory(_In_ DLL_DIRECTORY_COOKIE Cookie)
tiBOOLRemoveSecureMemoryCacheCallback(_In_ PSECURE_MEMORY_CACHE_CALLBACK pfnCallBack)
tuiULONGRemoveVectoredContinueHandler(_In_ PVOID Handler)
tuiULONGRemoveVectoredExceptionHandler(_In_ PVOID Handler)
tuiuiuitHANDLEReOpenFile(_In_ HANDLE hOriginalFile, _In_ DWORD dwDesiredAccess, _In_ DWORD dwShareMode, _In_ DWORD dwFlags)
sssuittiBOOLReplaceFile(_In_ LPCTSTR lpReplacedFileName, _In_ LPCTSTR lpReplacementFileName, _In_opt_ LPCTSTR lpBackupFileName, _In_ DWORD dwReplaceFlags, _Reserved_ LPVOID lpExclude, _Reserved_ LPVOID lpReserved)
aaauittiBOOLReplaceFileA(_In_ LPCSTR lpReplacedFileName, _In_ LPCSTR lpReplacementFileName, _In_opt_ LPCSTR lpBackupFileName, _In_ DWORD dwReplaceFlags, _Reserved_ LPVOID lpExclude, _Reserved_ LPVOID lpReserved)
wwwuittiBOOLReplaceFileW(_In_ LPCWSTR lpReplacedFileName, _In_ LPCWSTR lpReplacementFileName, _In_opt_ LPCWSTR lpBackupFileName, _In_ DWORD dwReplaceFlags, _Reserved_ LPVOID lpExclude, _Reserved_ LPVOID lpReserved)
tiBOOLRequestDeviceWakeup(HANDLE hDevice)
iiBOOLRequestWakeupLatency(_In_ LATENCY_TIME latency)
tiBOOLResetEvent(_In_ HANDLE hEvent)
tutuiUINTResetWriteWatch(_In_ LPVOID lpBaseAddress, _In_ SIZE_T dwRegionSize)
wwiiintResolveLocaleName(_In_opt_ LPCWSTR lpNameToResolve, _Out_opt_ LPWSTR lpLocaleName, _In_ int cchLocaleName)
uiiVOIDRestoreLastError(DWORD dwErrCode)
tuiDWORDResumeThread(_In_ HANDLE hThread)
tiVOIDRtlCaptureContext(_Out_ PCONTEXT ContextRecord)
tutuciVOIDRtlFillMemory(VOID UNALIGNED* Destination,SIZE_T Length,BYTE Fill)
wuiiBOOLRtlIsValidLocaleName(_In_ LPCWSTR LocaleName, _In_ ULONG Flags)
ttutiVOIDRtlMoveMemory(VOID UNALIGNED* Destination,VOID UNALIGNED* Source,SIZE_T Length)
tttPVOIDRtlPcToFileHeader(_In_ PVOID PcValue, _Out_ PVOID *BaseOfImage)
ttttiVOIDRtlUnwind(_In_opt_ PVOID TargetFrame, _In_opt_ PVOID TargetIp, _In_opt_ PEXCEPTION_RECORD ExceptionRecord, _In_ PVOID ReturnValue)
tutiVOIDRtlZeroMemory(VOID UNALIGNED* Destination,SIZE_T Length)
tttuitiBOOLScrollConsoleScreenBuffer(_In_ HANDLE hConsoleOutput, _In_ const SMALL_RECT *lpScrollRectangle, _In_opt_ const SMALL_RECT *lpClipRectangle, _In_ COORD dwDestinationOrigin, _In_ const CHAR_INFO *lpFill)
tttuitiBOOLScrollConsoleScreenBufferA(_In_ HANDLE hConsoleOutput, _In_ const SMALL_RECT *lpScrollRectangle, _In_opt_ const SMALL_RECT *lpClipRectangle, _In_ COORD dwDestinationOrigin, _In_ const CHAR_INFO *lpFill)
tttuitiBOOLScrollConsoleScreenBufferW(_In_ HANDLE hConsoleOutput, _In_ const SMALL_RECT *lpScrollRectangle, _In_opt_ const SMALL_RECT *lpClipRectangle, _In_ COORD dwDestinationOrigin, _In_ const CHAR_INFO *lpFill)
sssuistuiDWORDSearchPath(_In_opt_ LPCTSTR lpPath, _In_ LPCTSTR lpFileName, _In_opt_ LPCTSTR lpExtension, _In_ DWORD nBufferLength, _Out_ LPTSTR lpBuffer, _Out_opt_ LPTSTR *lpFilePart)
aaauiatuiDWORDSearchPathA(_In_opt_ LPCSTR lpPath, _In_ LPCSTR lpFileName, _In_opt_ LPCSTR lpExtension, _In_ DWORD nBufferLength, _Out_ LPSTR lpBuffer, _Out_opt_ LPSTR *lpFilePart)
wwwuiwtuiDWORDSearchPathW(_In_opt_ LPCWSTR lpPath, _In_ LPCWSTR lpFileName, _In_opt_ LPCWSTR lpExtension, _In_ DWORD nBufferLength, _Out_ LPWSTR lpBuffer, _Out_opt_ LPWSTR *lpFilePart)
uiuiuisiBOOLSetCalendarInfo(_In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType, _In_ LPCTSTR lpCalData)
uiuiuiaiBOOLSetCalendarInfoA(_In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType, _In_ LPCSTR lpCalData)
uiuiuiwiBOOLSetCalendarInfoW(_In_ LCID Locale, _In_ CALID Calendar, _In_ CALTYPE CalType, _In_ LPCWSTR lpCalData)
tiBOOLSetCommBreak(_In_ HANDLE hFile)
ttuiiBOOLSetCommConfig(_In_ HANDLE hCommDev, _In_ LPCOMMCONFIG lpCC, _In_ DWORD dwSize)
tuiiBOOLSetCommMask(_In_ HANDLE hFile, _In_ DWORD dwEvtMask)
ttiBOOLSetCommState(_In_ HANDLE hFile, _In_ LPDCB lpDCB)
ttiBOOLSetCommTimeouts(_In_ HANDLE hFile, _In_ LPCOMMTIMEOUTS lpCommTimeouts)
siBOOLSetComputerName(_In_ LPCTSTR lpComputerName)
aiBOOLSetComputerNameA(_In_ LPCSTR lpComputerName)
uisiBOOLSetComputerNameEx(_In_ COMPUTER_NAME_FORMAT NameType, _In_ LPCTSTR lpBuffer)
uiaiBOOLSetComputerNameExA(_In_ COMPUTER_NAME_FORMAT NameType, _In_ LPCSTR lpBuffer)
uiwiBOOLSetComputerNameExW(_In_ COMPUTER_NAME_FORMAT NameType, _In_ LPCWSTR lpBuffer)
wiBOOLSetComputerNameW(_In_ LPCWSTR lpComputerName)
tiBOOLSetConsoleActiveScreenBuffer(_In_ HANDLE hConsoleOutput)
uiiBOOLSetConsoleCP(_In_ UINT wCodePageID)
tiiBOOLSetConsoleCtrlHandler(_In_opt_ PHANDLER_ROUTINE HandlerRoutine, _In_ BOOL Add)
ttiBOOLSetConsoleCursorInfo(_In_ HANDLE hConsoleOutput, _In_ const CONSOLE_CURSOR_INFO *lpConsoleCursorInfo)
tuiiBOOLSetConsoleCursorPosition(_In_ HANDLE hConsoleOutput, _In_ COORD dwCursorPosition)
tuitiBOOLSetConsoleDisplayMode(_In_ HANDLE hConsoleOutput, _In_ DWORD dwFlags, _Out_opt_ PCOORD lpNewScreenBufferDimensions)
tiBOOLSetConsoleHistoryInfo(_In_ PCONSOLE_HISTORY_INFO lpConsoleHistoryInfo)
tuiiBOOLSetConsoleMode(_In_ HANDLE hConsoleHandle, _In_ DWORD dwMode)
uiiBOOLSetConsoleOutputCP(_In_ UINT wCodePageID)
ttiBOOLSetConsoleScreenBufferInfoEx(_In_ HANDLE hConsoleOutput, _In_ PCONSOLE_SCREEN_BUFFER_INFOEX lpConsoleScreenBufferInfoEx)
tuiiBOOLSetConsoleScreenBufferSize(_In_ HANDLE hConsoleOutput, _In_ COORD dwSize)
tuhiBOOLSetConsoleTextAttribute(_In_ HANDLE hConsoleOutput, _In_ WORD wAttributes)
siBOOLSetConsoleTitle(_In_ LPCTSTR lpConsoleTitle)
aiBOOLSetConsoleTitleA(_In_ LPCSTR lpConsoleTitle)
wiBOOLSetConsoleTitleW(_In_ LPCWSTR lpConsoleTitle)
titiBOOLSetConsoleWindowInfo(_In_ HANDLE hConsoleOutput, _In_ BOOL bAbsolute, _In_ const SMALL_RECT *lpConsoleWindow)
tuiuiDWORDSetCriticalSectionSpinCount(_Inout_ LPCRITICAL_SECTION lpCriticalSection, _In_ DWORD dwSpinCount)
titiBOOLSetCurrentConsoleFontEx(_In_ HANDLE hConsoleOutput, _In_ BOOL bMaximumWindow, _In_ PCONSOLE_FONT_INFOEX lpConsoleCurrentFontEx)
siBOOLSetCurrentDirectory(_In_ LPCTSTR lpPathName)
aiBOOLSetCurrentDirectoryA(_In_ LPCSTR lpPathName)
wiBOOLSetCurrentDirectoryW(_In_ LPCWSTR lpPathName)
stuiiBOOLSetDefaultCommConfig(_In_ LPCTSTR lpszName, _In_ LPCOMMCONFIG lpCC, _In_ DWORD dwSize)
atuiiBOOLSetDefaultCommConfigA(_In_ LPCSTR lpszName, _In_ LPCOMMCONFIG lpCC, _In_ DWORD dwSize)
wtuiiBOOLSetDefaultCommConfigW(_In_ LPCWSTR lpszName, _In_ LPCOMMCONFIG lpCC, _In_ DWORD dwSize)
uiiBOOLSetDefaultDllDirectories(_In_ DWORD DirectoryFlags)
siBOOLSetDllDirectory(_In_opt_ LPCTSTR lpPathName)
aiBOOLSetDllDirectoryA(_In_opt_ LPCSTR lpPathName)
wiBOOLSetDllDirectoryW(_In_opt_ LPCWSTR lpPathName)
tiBOOLSetDynamicTimeZoneInformation(_In_ const DYNAMIC_TIME_ZONE_INFORMATION *lpTimeZoneInformation)
tiBOOLSetEndOfFile(_In_ HANDLE hFile)
ssiBOOLSetEnvironmentVariable(_In_ LPCTSTR lpName, _In_opt_ LPCTSTR lpValue)
aaiBOOLSetEnvironmentVariableA(_In_ LPCSTR lpName, _In_opt_ LPCSTR lpValue)
wwiBOOLSetEnvironmentVariableW(_In_ LPCWSTR lpName, _In_opt_ LPCWSTR lpValue)
uiuiUINTSetErrorMode(_In_ UINT uMode)
tiBOOLSetEvent(_In_ HANDLE hEvent)
ttiVOIDSetEventWhenCallbackReturns(_Inout_ PTP_CALLBACK_INSTANCE pci, _In_ HANDLE evt)
iVOIDSetFileApisToANSI(void)
iVOIDSetFileApisToANSI(void)
iVOIDSetFileApisToOEM(void)
iVOIDSetFileApisToOEM(void)
suiiBOOLSetFileAttributes(_In_ LPCTSTR lpFileName, _In_ DWORD dwFileAttributes)
auiiBOOLSetFileAttributesA(_In_ LPCSTR lpFileName, _In_ DWORD dwFileAttributes)
suitiBOOLSetFileAttributesTransacted(_In_ LPCTSTR lpFileName, _In_ DWORD dwFileAttributes, _In_ HANDLE hTransaction)
auitiBOOLSetFileAttributesTransactedA(_In_ LPCSTR lpFileName, _In_ DWORD dwFileAttributes, _In_ HANDLE hTransaction)
wuitiBOOLSetFileAttributesTransactedW(_In_ LPCWSTR lpFileName, _In_ DWORD dwFileAttributes, _In_ HANDLE hTransaction)
wuiiBOOLSetFileAttributesW(_In_ LPCWSTR lpFileName, _In_ DWORD dwFileAttributes)
tuiuiittiBOOLSetFileBandwidthReservation(_In_ HANDLE hFile, _In_ DWORD nPeriodMilliseconds, _In_ DWORD nBytesPerPeriod, _In_ BOOL bDiscardable, _Out_ LPDWORD lpTransferSize, _Out_ LPDWORD lpNumOutstandingRequests)
tuciBOOLSetFileCompletionNotificationModes(_In_ HANDLE FileHandle, _In_ UCHAR Flags)
tituiiBOOLSetFileInformationByHandle(_In_ HANDLE hFile, _In_ FILE_INFO_BY_HANDLE_CLASS FileInformationClass, _In_ LPVOID lpFileInformation, _In_ DWORD dwBufferSize)
ttuiiBOOLSetFileIoOverlappedRange(_In_ HANDLE FileHandle, _In_ PUCHAR OverlappedRangeStart, _In_ ULONG Length)
tituiuiDWORDSetFilePointer(_In_ HANDLE hFile, _In_ LONG lDistanceToMove, _Inout_opt_ PLONG lpDistanceToMoveHigh, _In_ DWORD dwMoveMethod)
ti6tuiiBOOLSetFilePointerEx(_In_ HANDLE hFile, _In_ LARGE_INTEGER liDistanceToMove, _Out_opt_ PLARGE_INTEGER lpNewFilePointer, _In_ DWORD dwMoveMethod)
tsiBOOLSetFileShortName(_In_ HANDLE hFile, _In_ LPCTSTR lpShortName)
taiBOOLSetFileShortNameA(_In_ HANDLE hFile, _In_ LPCSTR lpShortName)
twiBOOLSetFileShortNameW(_In_ HANDLE hFile, _In_ LPCWSTR lpShortName)
ttttiBOOLSetFileTime(_In_ HANDLE hFile, _In_opt_ const FILETIME *lpCreationTime, _In_opt_ const FILETIME *lpLastAccessTime, _In_opt_ const FILETIME *lpLastWriteTime)
ti6iBOOLSetFileValidData(_In_ HANDLE hFile, _In_ LONGLONG ValidDataLength)
sstuiiBOOLSetFirmwareEnvironmentVariable(_In_ LPCTSTR lpName, _In_ LPCTSTR lpGuid, _In_ PVOID pBuffer, _In_ DWORD nSize)
aatuiiBOOLSetFirmwareEnvironmentVariableA(_In_ LPCSTR lpName, _In_ LPCSTR lpGuid, _In_ PVOID pBuffer, _In_ DWORD nSize)
wwtuiiBOOLSetFirmwareEnvironmentVariableW(_In_ LPCWSTR lpName, _In_ LPCWSTR lpGuid, _In_ PVOID pBuffer, _In_ DWORD nSize)
uiuiUINTSetHandleCount(UINT uNumber)
tuiuiiBOOLSetHandleInformation(_In_ HANDLE hObject, _In_ DWORD dwMask, _In_ DWORD dwFlags)
tuituiiBOOLSetInformationJobObject(_In_ HANDLE hJob, _In_ JOBOBJECTINFOCLASS JobObjectInfoClass, _In_ LPVOID lpJobObjectInfo, _In_ DWORD cbJobObjectInfoLength)
uiiVOIDSetLastError(_In_ DWORD dwErrCode)
uiuisiBOOLSetLocaleInfo(_In_ LCID Locale, _In_ LCTYPE LCType, _In_ LPCTSTR lpLCData)
uiuiaiBOOLSetLocaleInfoA(_In_ LCID Locale, _In_ LCTYPE LCType, _In_ LPCSTR lpLCData)
uiuiwiBOOLSetLocaleInfoW(_In_ LCID Locale, _In_ LCTYPE LCType, _In_ LPCWSTR lpLCData)
tiBOOLSetLocalTime(_In_ const SYSTEMTIME *lpSystemTime)
tuiiBOOLSetMailslotInfo(_In_ HANDLE hMailslot, _In_ DWORD lReadTimeout)
tuiiBOOLSetMessageWaitingIndicator(HANDLE hMsgIndicator,ULONG ulMsgCount)
ttttiBOOLSetNamedPipeHandleState(_In_ HANDLE hNamedPipe, _In_opt_ LPDWORD lpMode, _In_opt_ LPDWORD lpMaxCollectionCount, _In_opt_ LPDWORD lpCollectDataTimeout)
tuiiBOOLSetPriorityClass(_In_ HANDLE hProcess, _In_ DWORD dwPriorityClass)
tutiBOOLSetProcessAffinityMask(_In_ HANDLE hProcess, _In_ DWORD_PTR dwProcessAffinityMask)
tuiiBOOLSetProcessAffinityUpdateMode(_In_ HANDLE ProcessHandle, _In_ DWORD dwFlags)
uiiBOOLSetProcessDEPPolicy(_In_ DWORD dwFlags)
uiwtiBOOLSetProcessPreferredUILanguages(_In_ DWORD dwFlags, _In_opt_ PCZZWSTR pwszLanguagesBuffer, _Out_opt_ PULONG pulNumLanguages)
tiiBOOLSetProcessPriorityBoost(_In_ HANDLE hProcess, _In_ BOOL DisablePriorityBoost)
uiuiiBOOLSetProcessShutdownParameters(_In_ DWORD dwLevel, _In_ DWORD dwFlags)
tututiBOOLSetProcessWorkingSetSize(_In_ HANDLE hProcess, _In_ SIZE_T dwMinimumWorkingSetSize, _In_ SIZE_T dwMaximumWorkingSetSize)
tututuiiBOOLSetProcessWorkingSetSizeEx(_In_ HANDLE hProcess, _In_ SIZE_T dwMinimumWorkingSetSize, _In_ SIZE_T dwMaximumWorkingSetSize, _In_ DWORD Flags)
uiiBOOLSetSearchPathMode(_In_ DWORD Flags)
uitiBOOLSetStdHandle(_In_ DWORD nStdHandle, _In_ HANDLE hHandle)
ututuiiBOOLSetSystemFileCacheSize(_In_ SIZE_T MinimumFileCacheSize, _In_ SIZE_T MaximumFileCacheSize, _In_ DWORD Flags)
iiiBOOLSetSystemPowerState(_In_ BOOL fSuspend, _In_ BOOL fForce)
tiBOOLSetSystemTime(_In_ const SYSTEMTIME *lpSystemTime)
uiiiBOOLSetSystemTimeAdjustment(_In_ DWORD dwTimeAdjustment, _In_ BOOL bTimeAdjustmentDisabled)
tuituiDWORDSetTapeParameters(_In_ HANDLE hDevice, _In_ DWORD dwOperation, _In_ LPVOID lpTapeInformation)
tuiuiuiuiiuiDWORDSetTapePosition(_In_ HANDLE hDevice, _In_ DWORD dwPositionMethod, _In_ DWORD dwPartition, _In_ DWORD dwOffsetLow, _In_ DWORD dwOffsetHigh, _In_ BOOL bImmediate)
tututDWORD_PTRSetThreadAffinityMask(_In_ HANDLE hThread, _In_ DWORD_PTR dwThreadAffinityMask)
ttiBOOLSetThreadContext(_In_ HANDLE hThread, _In_ const CONTEXT *lpContext)
uitiBOOLSetThreadErrorMode(_In_ DWORD dwNewMode, _Out_ LPDWORD lpOldMode)
uiuiEXECUTION_STATESetThreadExecutionState(_In_ EXECUTION_STATE esFlags)
tttiBOOLSetThreadGroupAffinity(_In_ HANDLE hThread, _In_ const GROUP_AFFINITY *GroupAffinity, _Out_opt_ PGROUP_AFFINITY PreviousGroupAffinity)
tuiuiDWORDSetThreadIdealProcessor(_In_ HANDLE hThread, _In_ DWORD dwIdealProcessor)
tttiBOOLSetThreadIdealProcessorEx(_In_ HANDLE hThread, _In_ PPROCESSOR_NUMBER lpIdealProcessor, _Out_opt_ PPROCESSOR_NUMBER lpPreviousIdealProcessor)
uiiBOOLSetThreadLocale(_In_ LCID Locale)
ttiBOOLSetThreadpoolStackInformation(_Inout_ PTP_POOL ptpp, _In_ PTP_POOL_STACK_INFORMATION ptpsi)
tuiiVOIDSetThreadpoolThreadMaximum(_Inout_ PTP_POOL ptpp, _In_ DWORD cthrdMost)
tuiiBOOLSetThreadpoolThreadMinimum(_Inout_ PTP_POOL ptpp, _In_ DWORD cthrdMic)
ttuiuiiVOIDSetThreadpoolTimer(_Inout_ PTP_TIMER pti, _In_opt_ PFILETIME pftDueTime, _In_ DWORD msPeriod, _In_opt_ DWORD msWindowLength)
tttiVOIDSetThreadpoolWait(_Inout_ PTP_WAIT pwa, _In_opt_ HANDLE h, _In_opt_ PFILETIME pftTimeout)
uiwtiBOOLSetThreadPreferredUILanguages(_In_ DWORD dwFlags, _In_opt_ PCZZWSTR pwszLanguagesBuffer, _Out_opt_ PULONG pulNumLanguages)
tiiBOOLSetThreadPriority(_In_ HANDLE hThread, _In_ int nPriority)
tiiBOOLSetThreadPriorityBoost(_In_ HANDLE hThread, _In_ BOOL DisablePriorityBoost)
tiBOOLSetThreadStackGuarantee(_Inout_ PULONG StackSizeInBytes)
uhuhLANGIDSetThreadUILanguage(_In_ LANGID LangId)
tttuiuiitHANDLESetTimerQueueTimer(HANDLE TimerQueue,WAITORTIMERCALLBACK Callback,PVOID Parameter,DWORD DueTime,DWORD Period,BOOL PreferIo)
tiBOOLSetTimeZoneInformation(_In_ const TIME_ZONE_INFORMATION *lpTimeZoneInformation)
ttLPTOP_LEVEL_EXCEPTION_FILTERSetUnhandledExceptionFilter(_In_ LPTOP_LEVEL_EXCEPTION_FILTER lpTopLevelExceptionFilter)
tuiuiiBOOLSetupComm(_In_ HANDLE hFile, _In_ DWORD dwInQueue, _In_ DWORD dwOutQueue)
uiiBOOLSetUserGeoID(_In_ GEOID GeoId)
ssiBOOLSetVolumeLabel(_In_opt_ LPCTSTR lpRootPathName, _In_opt_ LPCTSTR lpVolumeName)
aaiBOOLSetVolumeLabelA(_In_opt_ LPCSTR lpRootPathName, _In_opt_ LPCSTR lpVolumeName)
wwiBOOLSetVolumeLabelW(_In_opt_ LPCWSTR lpRootPathName, _In_opt_ LPCWSTR lpVolumeName)
ssiBOOLSetVolumeMountPoint(_In_ LPCTSTR lpszVolumeMountPoint, _In_ LPCTSTR lpszVolumeName)
aaiBOOLSetVolumeMountPointA(_In_ LPCSTR lpszVolumeMountPoint, _In_ LPCSTR lpszVolumeName)
wwiBOOLSetVolumeMountPointW(_In_ LPCWSTR lpszVolumeMountPoint, _In_ LPCWSTR lpszVolumeName)
ttittiiBOOLSetWaitableTimer(_In_ HANDLE hTimer, _In_ const LARGE_INTEGER *pDueTime, _In_ LONG lPeriod, _In_opt_ PTIMERAPCROUTINE pfnCompletionRoutine, _In_opt_ LPVOID lpArgToCompletionRoutine, _In_ BOOL fResume)
ttitttuiiBOOLSetWaitableTimerEx(_In_ HANDLE hTimer, _In_ const LARGE_INTEGER *lpDueTime, _In_ LONG lPeriod, _In_ PTIMERAPCROUTINE pfnCompletionRoutine, _In_ LPVOID lpArgToCompletionRoutine, _In_ PREASON_CONTEXT WakeContext, _In_ ULONG TolerableDelay)
tui6iBOOLSetXStateFeaturesMask(_Inout_ PCONTEXT Context, _In_ DWORD64 FeatureMask)
ttuiiuiDWORDSignalObjectAndWait(_In_ HANDLE hObjectToSignal, _In_ HANDLE hObjectToWaitOn, _In_ DWORD dwMilliseconds, _In_ BOOL bAlertable)
ttuiDWORDSizeofResource(_In_opt_ HMODULE hModule, _In_ HRSRC hResInfo)
uiiVOIDSleep_(_In_ DWORD dwMilliseconds)
ttuiiBOOLSleepConditionVariableCS(_Inout_ PCONDITION_VARIABLE ConditionVariable, _Inout_ PCRITICAL_SECTION CriticalSection, _In_ DWORD dwMilliseconds)
ttuiuiiBOOLSleepConditionVariableSRW(_Inout_ PCONDITION_VARIABLE ConditionVariable, _Inout_ PSRWLOCK SRWLock, _In_ DWORD dwMilliseconds, _In_ ULONG Flags)
uiiuiDWORDSleepEx(_In_ DWORD dwMilliseconds, _In_ BOOL bAlertable)
tiVOIDStartThreadpoolIo(_Inout_ PTP_IO pio)
tiVOIDSubmitThreadpoolWork(_Inout_ PTP_WORK pwk)
tuiDWORDSuspendThread(_In_ HANDLE hThread)
tiVOIDSwitchToFiber(_In_ LPVOID lpFiber)
iBOOLSwitchToThread(void)
ttiBOOLSystemTimeToFileTime(_In_ const SYSTEMTIME *lpSystemTime, _Out_ LPFILETIME lpFileTime)
tttiBOOLSystemTimeToTzSpecificLocalTime(_In_opt_ LPTIME_ZONE_INFORMATION lpTimeZone, _In_ LPSYSTEMTIME lpUniversalTime, _Out_ LPSYSTEMTIME lpLocalTime)
tttiBOOLSystemTimeToTzSpecificLocalTimeEx(_In_opt_ const DYNAMIC_TIME_ZONE_INFORMATION *lpTimeZoneInformation, _In_ const SYSTEMTIME *lpUniversalTime, _Out_ LPSYSTEMTIME lpLocalTime)
tuiiBOOLTerminateJobObject(_In_ HANDLE hJob, _In_ UINT uExitCode)
tuiiBOOLTerminateProcess(_In_ HANDLE hProcess, _In_ UINT uExitCode)
tuiiBOOLTerminateThread(_Inout_ HANDLE hThread, _In_ DWORD dwExitCode)
ttiBOOLThread32First(_In_ HANDLE hSnapshot, _Inout_ LPTHREADENTRY32 lpte)
ttiBOOLThread32Next(_In_ HANDLE hSnapshot, _Out_ LPTHREADENTRY32 lpte)
uiDWORDTlsAlloc(void)
uiiBOOLTlsFree(_In_ DWORD dwTlsIndex)
uitLPVOIDTlsGetValue(_In_ DWORD dwTlsIndex)
uitiBOOLTlsSetValue(_In_ DWORD dwTlsIndex, _In_opt_ LPVOID lpTlsValue)
uittututiBOOLToolhelp32ReadProcessMemory(_In_ DWORD th32ProcessID, _In_ LPCVOID lpBaseAddress, _Out_ LPVOID lpBuffer, _In_ SIZE_T cbRead, _Out_ SIZE_T lpNumberOfBytesRead)
ttuituittiBOOLTransactNamedPipe(_In_ HANDLE hNamedPipe, _In_ LPVOID lpInBuffer, _In_ DWORD nInBufferSize, _Out_ LPVOID lpOutBuffer, _In_ DWORD nOutBufferSize, _Out_ LPDWORD lpBytesRead, _Inout_opt_ LPOVERLAPPED lpOverlapped)
tciBOOLTransmitCommChar(_In_ HANDLE hFile, _In_ char cChar)
tucBOOLEANTryAcquireSRWLockExclusive(_Inout_ PSRWLOCK SRWLock)
tucBOOLEANTryAcquireSRWLockShared(_Inout_ PSRWLOCK SRWLock)
tiBOOLTryEnterCriticalSection(_Inout_ LPCRITICAL_SECTION lpCriticalSection)
tttiBOOLTrySubmitThreadpoolCallback(_In_ PTP_SIMPLE_CALLBACK pfns, _Inout_opt_ PVOID pv, _In_opt_ PTP_CALLBACK_ENVIRON pcbe)
tttiBOOLTzSpecificLocalTimeToSystemTime(_In_opt_ LPTIME_ZONE_INFORMATION lpTimeZoneInformation, _In_ LPSYSTEMTIME lpLocalTime, _Out_ LPSYSTEMTIME lpUniversalTime)
tttiBOOLTzSpecificLocalTimeToSystemTimeEx(_In_opt_ const DYNAMIC_TIME_ZONE_INFORMATION *lpTimeZoneInformation, _In_ const SYSTEMTIME *lpLocalTime, _Out_ LPSYSTEMTIME lpUniversalTime)
tiLONGUnhandledExceptionFilter(_In_ struct _EXCEPTION_POINTERS *ExceptionInfo)
tuiuiuiuiiBOOLUnlockFile(_In_ HANDLE hFile, _In_ DWORD dwFileOffsetLow, _In_ DWORD dwFileOffsetHigh, _In_ DWORD nNumberOfBytesToUnlockLow, _In_ DWORD nNumberOfBytesToUnlockHigh)
tuiuiuitiBOOLUnlockFileEx(_In_ HANDLE hFile, _Reserved_ DWORD dwReserved, _In_ DWORD nNumberOfBytesToUnlockLow, _In_ DWORD nNumberOfBytesToUnlockHigh, _Inout_ LPOVERLAPPED lpOverlapped)
tiBOOLUnmapViewOfFile(_In_ LPCVOID lpBaseAddress)
iHRESULTUnregisterApplicationRecoveryCallback(void)
iHRESULTUnregisterApplicationRestart(void)
tiBOOLUnregisterWait(_In_ HANDLE WaitHandle)
ttiBOOLUnregisterWaitEx(_In_ HANDLE WaitHandle, _In_opt_ HANDLE CompletionEvent)
tiBOOLUpdateCalendarDayOfWeek(_Inout_ LPCALDATETIME lpCalDateTime)
tuiuttutttiBOOLUpdateProcThreadAttribute(_Inout_ LPPROC_THREAD_ATTRIBUTE_LIST lpAttributeList, _In_ DWORD dwFlags, _In_ DWORD_PTR Attribute, _In_ PVOID lpValue, _In_ SIZE_T cbSize, _Out_opt_ PVOID lpPreviousValue, _In_opt_ PSIZE_T lpReturnSize)
tssuhtuiiBOOLUpdateResource(_In_ HANDLE hUpdate, _In_ LPCTSTR lpType, _In_ LPCTSTR lpName, _In_ WORD wLanguage, _In_opt_ LPVOID lpData, _In_ DWORD cbData)
taauhtuiiBOOLUpdateResourceA(_In_ HANDLE hUpdate, _In_ LPCSTR lpType, _In_ LPCSTR lpName, _In_ WORD wLanguage, _In_opt_ LPVOID lpData, _In_ DWORD cbData)
twwuhtuiiBOOLUpdateResourceW(_In_ HANDLE hUpdate, _In_ LPCWSTR lpType, _In_ LPCWSTR lpName, _In_ WORD wLanguage, _In_opt_ LPVOID lpData, _In_ DWORD cbData)
uiwiwiiBOOLVerifyScripts(_In_ DWORD dwFlags, _In_ LPCWSTR lpLocaleScripts, _In_ int cchLocaleScripts, _In_ LPCWSTR lpTestScripts, _In_ int cchTestScripts)
tuiui6iBOOLVerifyVersionInfo(_In_ LPOSVERSIONINFOEX lpVersionInfo, _In_ DWORD dwTypeMask, _In_ DWORDLONG dwlConditionMask)
tuiui6iBOOLVerifyVersionInfoA(_In_ LPOSVERSIONINFOEX lpVersionInfo, _In_ DWORD dwTypeMask, _In_ DWORDLONG dwlConditionMask)
tuiui6iBOOLVerifyVersionInfoW(_In_ LPOSVERSIONINFOEX lpVersionInfo, _In_ DWORD dwTypeMask, _In_ DWORDLONG dwlConditionMask)
uisuiuiDWORDVerLanguageName(_In_ DWORD wLang, _Out_ LPTSTR szLang, _In_ DWORD cchLang)
uiauiuiDWORDVerLanguageNameA(_In_ DWORD wLang, _Out_ LPSTR szLang, _In_ DWORD cchLang)
uiwuiuiDWORDVerLanguageNameW(_In_ DWORD wLang, _Out_ LPWSTR szLang, _In_ DWORD cchLang)
ui6uiucui6ULONGLONGVerSetConditionMask(_In_ ULONGLONG dwlConditionMask, _In_ DWORD dwTypeBitMask, _In_ BYTE dwConditionMask)
tutuiuitLPVOIDVirtualAlloc(_In_opt_ LPVOID lpAddress, _In_ SIZE_T dwSize, _In_ DWORD flAllocationType, _In_ DWORD flProtect)
ttutuiuitLPVOIDVirtualAllocEx(_In_ HANDLE hProcess, _In_opt_ LPVOID lpAddress, _In_ SIZE_T dwSize, _In_ DWORD flAllocationType, _In_ DWORD flProtect)
ttutuiuiuitLPVOIDVirtualAllocExNuma(_In_ HANDLE hProcess, _In_opt_ LPVOID lpAddress, _In_ SIZE_T dwSize, _In_ DWORD flAllocationType, _In_ DWORD flProtect, _In_ DWORD nndPreferred)
tutuiiBOOLVirtualFree(_In_ LPVOID lpAddress, _In_ SIZE_T dwSize, _In_ DWORD dwFreeType)
ttutuiiBOOLVirtualFreeEx(_In_ HANDLE hProcess, _In_ LPVOID lpAddress, _In_ SIZE_T dwSize, _In_ DWORD dwFreeType)
tutiBOOLVirtualLock(_In_ LPVOID lpAddress, _In_ SIZE_T dwSize)
tutuitiBOOLVirtualProtect(_In_ LPVOID lpAddress, _In_ SIZE_T dwSize, _In_ DWORD flNewProtect, _Out_ PDWORD lpflOldProtect)
ttutuitiBOOLVirtualProtectEx(_In_ HANDLE hProcess, _In_ LPVOID lpAddress, _In_ SIZE_T dwSize, _In_ DWORD flNewProtect, _Out_ PDWORD lpflOldProtect)
ttututSIZE_TVirtualQuery(_In_opt_ LPCVOID lpAddress, _Out_ PMEMORY_BASIC_INFORMATION lpBuffer, _In_ SIZE_T dwLength)
tttututSIZE_TVirtualQueryEx(_In_ HANDLE hProcess, _In_opt_ LPCVOID lpAddress, _Out_ PMEMORY_BASIC_INFORMATION lpBuffer, _In_ SIZE_T dwLength)
tutiBOOLVirtualUnlock(_In_ LPVOID lpAddress, _In_ SIZE_T dwSize)
tttiBOOLWaitCommEvent(_In_ HANDLE hFile, _Out_ LPDWORD lpEvtMask, _In_ LPOVERLAPPED lpOverlapped)
tuiiBOOLWaitForDebugEvent(_Out_ LPDEBUG_EVENT lpDebugEvent, _In_ DWORD dwMilliseconds)
uitiuiuiDWORDWaitForMultipleObjects(_In_ DWORD nCount, _In_ const HANDLE *lpHandles, _In_ BOOL bWaitAll, _In_ DWORD dwMilliseconds)
uitiuiiuiDWORDWaitForMultipleObjectsEx(_In_ DWORD nCount, _In_ const HANDLE *lpHandles, _In_ BOOL bWaitAll, _In_ DWORD dwMilliseconds, _In_ BOOL bAlertable)
tuiuiDWORDWaitForSingleObject(_In_ HANDLE hHandle, _In_ DWORD dwMilliseconds)
tuiiuiDWORDWaitForSingleObjectEx(_In_ HANDLE hHandle, _In_ DWORD dwMilliseconds, _In_ BOOL bAlertable)
tiiVOIDWaitForThreadpoolIoCallbacks(_Inout_ PTP_IO pio, _In_ BOOL fCancelPendingCallbacks)
tiiVOIDWaitForThreadpoolTimerCallbacks(_Inout_ PTP_TIMER pti, _In_ BOOL fCancelPendingCallbacks)
tiiVOIDWaitForThreadpoolWaitCallbacks(_Inout_ PTP_WAIT pwa, _In_ BOOL fCancelPendingCallbacks)
tiiVOIDWaitForThreadpoolWorkCallbacks(_Inout_ PTP_WORK pwk, _In_ BOOL fCancelPendingCallbacks)
suiiBOOLWaitNamedPipe(_In_ LPCTSTR lpNamedPipeName, _In_ DWORD nTimeOut)
auiiBOOLWaitNamedPipeA(_In_ LPCSTR lpNamedPipeName, _In_ DWORD nTimeOut)
wuiiBOOLWaitNamedPipeW(_In_ LPCWSTR lpNamedPipeName, _In_ DWORD nTimeOut)
tiVOIDWakeAllConditionVariable(_Inout_ PCONDITION_VARIABLE ConditionVariable)
tiVOIDWakeConditionVariable(_Inout_ PCONDITION_VARIABLE ConditionVariable)
ttiHRESULTWerGetFlags(_In_ HANDLE hProcess, _Out_ PDWORD pdwFlags)
wuiuiiHRESULTWerRegisterFile(_In_ PCWSTR pwzFile, _In_ WER_REGISTER_FILE_TYPE regFileType, _In_ DWORD dwFlags)
tuiiHRESULTWerRegisterMemoryBlock(_In_ PVOID pvAddress, _In_ DWORD dwSize)
wtiHRESULTWerRegisterRuntimeExceptionModule(_In_ PCWSTR pwszOutOfProcessCallbackDll, _In_opt_ PVOID pContext)
uiiHRESULTWerSetFlags(_In_ DWORD dwFlags)
wiHRESULTWerUnregisterFile(_In_ PCWSTR pwzFilePath)
tiHRESULTWerUnregisterMemoryBlock(_In_ PVOID pvAddress)
wtiHRESULTWerUnregisterRuntimeExceptionModule(_In_ PCWSTR pwszOutOfProcessCallbackDll, _In_opt_ PVOID pContext)
uiuiwiaiatiintWideCharToMultiByte(_In_ UINT CodePage, _In_ DWORD dwFlags, _In_ LPCWSTR lpWideCharStr, _In_ int cchWideChar, _Out_opt_ LPSTR lpMultiByteStr, _In_ int cbMultiByte, _In_opt_ LPCSTR lpDefaultChar, _Out_opt_ LPBOOL lpUsedDefaultChar)
auiuiUINTWinExec(_In_ LPCSTR lpCmdLine, _In_ UINT uCmdShow)
tiBOOLWow64DisableWow64FsRedirection(_Out_ PVOID *OldValue)
ucucBOOLEANWow64EnableWow64FsRedirection(_In_ BOOLEAN Wow64FsEnableRedirection)
ttiBOOLWow64GetThreadContext(_In_ HANDLE hThread, _Inout_ PWOW64_CONTEXT lpContext)
tuitiBOOLWow64GetThreadSelectorEntry(_In_ HANDLE hThread, _In_ DWORD dwSelector, _Out_ PWOW64_LDT_ENTRY lpSelectorEntry)
tiBOOLWow64RevertWow64FsRedirection(_In_ PVOID OldValue)
ttiBOOLWow64SetThreadContext(_In_ HANDLE hThread, _In_ const WOW64_CONTEXT *lpContext)
tuiDWORDWow64SuspendThread(_In_ HANDLE hThread)
ttuittiBOOLWriteConsole(_In_ HANDLE hConsoleOutput, _In_ const VOID *lpBuffer, _In_ DWORD nNumberOfCharsToWrite, _Out_ LPDWORD lpNumberOfCharsWritten, _Reserved_ LPVOID lpReserved)
ttuittiBOOLWriteConsoleA(_In_ HANDLE hConsoleOutput, _In_ const VOID *lpBuffer, _In_ DWORD nNumberOfCharsToWrite, _Out_ LPDWORD lpNumberOfCharsWritten, _Reserved_ LPVOID lpReserved)
ttuitiBOOLWriteConsoleInput(_In_ HANDLE hConsoleInput, _In_ const INPUT_RECORD *lpBuffer, _In_ DWORD nLength, _Out_ LPDWORD lpNumberOfEventsWritten)
ttuitiBOOLWriteConsoleInputA(_In_ HANDLE hConsoleInput, _In_ const INPUT_RECORD *lpBuffer, _In_ DWORD nLength, _Out_ LPDWORD lpNumberOfEventsWritten)
ttuitiBOOLWriteConsoleInputW(_In_ HANDLE hConsoleInput, _In_ const INPUT_RECORD *lpBuffer, _In_ DWORD nLength, _Out_ LPDWORD lpNumberOfEventsWritten)
ttuiuitiBOOLWriteConsoleOutput(_In_ HANDLE hConsoleOutput, _In_ const CHAR_INFO *lpBuffer, _In_ COORD dwBufferSize, _In_ COORD dwBufferCoord, _Inout_ PSMALL_RECT lpWriteRegion)
ttuiuitiBOOLWriteConsoleOutputA(_In_ HANDLE hConsoleOutput, _In_ const CHAR_INFO *lpBuffer, _In_ COORD dwBufferSize, _In_ COORD dwBufferCoord, _Inout_ PSMALL_RECT lpWriteRegion)
ttuiuitiBOOLWriteConsoleOutputAttribute(_In_ HANDLE hConsoleOutput, _In_ const WORD *lpAttribute, _In_ DWORD nLength, _In_ COORD dwWriteCoord, _Out_ LPDWORD lpNumberOfAttrsWritten)
tsuiuitiBOOLWriteConsoleOutputCharacter(_In_ HANDLE hConsoleOutput, _In_ LPCTSTR lpCharacter, _In_ DWORD nLength, _In_ COORD dwWriteCoord, _Out_ LPDWORD lpNumberOfCharsWritten)
tauiuitiBOOLWriteConsoleOutputCharacterA(_In_ HANDLE hConsoleOutput, _In_ LPCSTR lpCharacter, _In_ DWORD nLength, _In_ COORD dwWriteCoord, _Out_ LPDWORD lpNumberOfCharsWritten)
twuiuitiBOOLWriteConsoleOutputCharacterW(_In_ HANDLE hConsoleOutput, _In_ LPCWSTR lpCharacter, _In_ DWORD nLength, _In_ COORD dwWriteCoord, _Out_ LPDWORD lpNumberOfCharsWritten)
ttuiuitiBOOLWriteConsoleOutputW(_In_ HANDLE hConsoleOutput, _In_ const CHAR_INFO *lpBuffer, _In_ COORD dwBufferSize, _In_ COORD dwBufferCoord, _Inout_ PSMALL_RECT lpWriteRegion)
ttuittiBOOLWriteConsoleW(_In_ HANDLE hConsoleOutput, _In_ const VOID *lpBuffer, _In_ DWORD nNumberOfCharsToWrite, _Out_ LPDWORD lpNumberOfCharsWritten, _Reserved_ LPVOID lpReserved)
ttuittiBOOLWriteFile(_In_ HANDLE hFile, _In_ LPCVOID lpBuffer, _In_ DWORD nNumberOfBytesToWrite, _Out_opt_ LPDWORD lpNumberOfBytesWritten, _Inout_opt_ LPOVERLAPPED lpOverlapped)
ttuittiBOOLWriteFileEx(_In_ HANDLE hFile, _In_opt_ LPCVOID lpBuffer, _In_ DWORD nNumberOfBytesToWrite, _Inout_ LPOVERLAPPED lpOverlapped, _In_ LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
ttuittiBOOLWriteFileGather(_In_ HANDLE hFile, _In_ FILE_SEGMENT_ELEMENT aSegmentArray[], _In_ DWORD nNumberOfBytesToWrite, _Reserved_ LPDWORD lpReserved, _Inout_ LPOVERLAPPED lpOverlapped)
sssiBOOLWritePrivateProfileSection(_In_ LPCTSTR lpAppName, _In_ LPCTSTR lpString, _In_ LPCTSTR lpFileName)
aaaiBOOLWritePrivateProfileSectionA(_In_ LPCSTR lpAppName, _In_ LPCSTR lpString, _In_ LPCSTR lpFileName)
wwwiBOOLWritePrivateProfileSectionW(_In_ LPCWSTR lpAppName, _In_ LPCWSTR lpString, _In_ LPCWSTR lpFileName)
ssssiBOOLWritePrivateProfileString(_In_ LPCTSTR lpAppName, _In_ LPCTSTR lpKeyName, _In_ LPCTSTR lpString, _In_ LPCTSTR lpFileName)
aaaaiBOOLWritePrivateProfileStringA(_In_ LPCSTR lpAppName, _In_ LPCSTR lpKeyName, _In_ LPCSTR lpString, _In_ LPCSTR lpFileName)
wwwwiBOOLWritePrivateProfileStringW(_In_ LPCWSTR lpAppName, _In_ LPCWSTR lpKeyName, _In_ LPCWSTR lpString, _In_ LPCWSTR lpFileName)
sstuisiBOOLWritePrivateProfileStruct(_In_ LPCTSTR lpszSection, _In_ LPCTSTR lpszKey, _In_ LPVOID lpStruct, _In_ UINT uSizeStruct, _In_ LPCTSTR szFile)
aatuiaiBOOLWritePrivateProfileStructA(_In_ LPCSTR lpszSection, _In_ LPCSTR lpszKey, _In_ LPVOID lpStruct, _In_ UINT uSizeStruct, _In_ LPCSTR szFile)
wwtuiwiBOOLWritePrivateProfileStructW(_In_ LPCWSTR lpszSection, _In_ LPCWSTR lpszKey, _In_ LPVOID lpStruct, _In_ UINT uSizeStruct, _In_ LPCWSTR szFile)
tttuttiBOOLWriteProcessMemory(_In_ HANDLE hProcess, _In_ LPVOID lpBaseAddress, _In_ LPCVOID lpBuffer, _In_ SIZE_T nSize, _Out_ SIZE_T *lpNumberOfBytesWritten)
ssiBOOLWriteProfileSection(_In_ LPCTSTR lpAppName, _In_ LPCTSTR lpString)
aaiBOOLWriteProfileSectionA(_In_ LPCSTR lpAppName, _In_ LPCSTR lpString)
wwiBOOLWriteProfileSectionW(_In_ LPCWSTR lpAppName, _In_ LPCWSTR lpString)
sssiBOOLWriteProfileString(_In_ LPCTSTR lpAppName, _In_ LPCTSTR lpKeyName, _In_ LPCTSTR lpString)
aaaiBOOLWriteProfileStringA(_In_ LPCSTR lpAppName, _In_ LPCSTR lpKeyName, _In_ LPCSTR lpString)
wwwiBOOLWriteProfileStringW(_In_ LPCWSTR lpAppName, _In_ LPCWSTR lpKeyName, _In_ LPCWSTR lpString)
tuiuiiuiDWORDWriteTapemark(_In_ HANDLE hDevice, _In_ DWORD dwTapemarkType, _In_ DWORD dwTapemarkCount, _In_ BOOL bImmediate)
uiDWORDWTSGetActiveConsoleSessionId(void)
tiBOOLZombifyActCtx(_In_ HANDLE hActCtx)

Ole32.dll

tuittiHRESULTBindMoniker(_In_ LPMONIKER pmk, _In_ DWORD grfOpt, _In_ REFIID iidResult, _Out_ LPVOID *ppvResult)
stiHRESULTCLSIDFromProgID(_In_ LPCOLESTR lpszProgID, _Out_ LPCLSID lpclsid)
stiHRESULTCLSIDFromProgIDEx(_In_ LPCOLESTR lpszProgID, _Out_ LPCLSID lpclsid)
stiHRESULTCLSIDFromString(_In_ LPCOLESTR lpsz, _Out_ LPCLSID pclsid)
uiULONGCoAddRefServerProcess(void)
ttiHRESULTCoAllowSetForegroundWindow(_In_ IUnknown *pUnk, _In_ LPVOID lpvReserved)
uiuiiHRESULTCoCancelCall(_In_ DWORD dwThreadId, _In_ ULONG ulTimeout)
ttiHRESULTCoCopyProxy(_In_ IUnknown *pProxy, _Out_ IUnknown **ppCopy)
ttiHRESULTCoCreateFreeThreadedMarshaler(_In_ LPUNKNOWN punkOuter, _Out_ LPUNKNOWN *ppunkMarshal)
tiHRESULTCoCreateGuid(_Out_ GUID *pguid)
ttuittiHRESULTCoCreateInstance(_In_ REFCLSID rclsid, _In_ LPUNKNOWN pUnkOuter, _In_ DWORD dwClsContext, _In_ REFIID riid, _Out_ LPVOID *ppv)
ttuituitiHRESULTCoCreateInstanceEx(_In_ REFCLSID rclsid, _In_ IUnknown *punkOuter, _In_ DWORD dwClsCtx, _In_ COSERVERINFO *pServerInfo, _In_ DWORD dwCount, _Inout_ MULTI_QI *pResults)
tiHRESULTCoDisableCallCancellation(_In_opt_ LPVOID pReserved)
uiiHRESULTCoDisconnectContext(_In_ DWORD dwTimeout)
tuiiHRESULTCoDisconnectObject(_In_ LPUNKNOWN pUnk, _In_ DWORD dwReserved)
uhuhtiBOOLCoDosDateTimeToFileTime(_In_ WORD nDosDate, _In_ WORD nDosTime, _Out_ FILETIME *lpFileTime)
tiHRESULTCoEnableCallCancellation(_In_opt_ LPVOID pReserved)
tiHRESULTCoFileTimeNow(_Out_ FILETIME *lpFileTime)
tttiBOOLCoFileTimeToDosDateTime(_In_ FILETIME *lpFileTime, _Out_ LPWORD lpDosDate, _Out_ LPWORD lpDosTime)
iVOIDCoFreeAllLibraries(void)
tiVOIDCoFreeLibrary(_In_ HINSTANCE hInst)
iVOIDCoFreeUnusedLibraries(void)
uiuiiVOIDCoFreeUnusedLibrariesEx(_In_ DWORD dwUnloadDelay, _In_ DWORD dwReserved)
ttiHRESULTCoGetApartmentType(_Out_ APTTYPE *pAptType, _Out_ APTTYPEQUALIFIER *pAptQualifier)
ttiHRESULTCoGetCallContext(_In_ REFIID riid, _Out_ void **ppInterface)
tiHRESULTCoGetCallerTID(_Out_ LPDWORD lpdwTID)
uittiHRESULTCoGetCancelObject(_In_ DWORD dwThreadId, _In_ REFIID iid, _Out_ void **ppUnk)
tuitttiHRESULTCoGetClassObject(_In_ REFCLSID rclsid, _In_ DWORD dwClsContext, _In_opt_ COSERVERINFO *pServerInfo, _In_ REFIID riid, _Out_ LPVOID *ppv)
utiHRESULTCoGetContextToken(_Out_ ULONG_PTR *pToken)
tiHRESULTCoGetCurrentLogicalThreadId(_Out_ GUID *pguid)
uiDWORDCoGetCurrentProcess(void)
ittiHRESULTCoGetDefaultContext(_In_ APITYPE aptType, _In_ REFIID riid, _Out_ void **ppv)
tttuiuiwuitiHRESULTCoGetInstanceFromFile(_In_opt_ COSERVERINFO *pServerInfo, _In_opt_ CLSID *pClsid, _In_opt_ IUnknown *punkOuter, _In_ DWORD dwClsCtx, _In_ DWORD grfMode, _In_ OLECHAR *pwszName, _In_ DWORD dwCount, _Inout_ MULTI_QI *pResults)
tttuituitiHRESULTCoGetInstanceFromIStorage(_In_opt_ COSERVERINFO *pServerInfo, _In_opt_ CLSID *pClsid, _In_opt_ IUnknown *punkOuter, _In_ DWORD dwClsCtx, _In_ struct IStorage *pstg, _In_ DWORD dwCount, _Inout_ MULTI_QI *pResults)
ttttiHRESULTCoGetInterceptor(_In_ REFIID iidIntercepted, _In_ IUnknown *punkOuter, _In_ REFIID iid, _Out_ void **ppv)
tttiHRESULTCoGetInterfaceAndReleaseStream(_In_ LPSTREAM pStm, _In_ REFIID iid, _Out_ LPVOID *ppv)
uitiHRESULTCoGetMalloc(_In_ DWORD dwMemContext, _Out_ LPMALLOC *ppMalloc)
tttuituiiHRESULTCoGetMarshalSizeMax(_Out_ ULONG *pulSize, _In_ REFIID riid, _In_ LPUNKNOWN pUnk, _In_ DWORD dwDestContext, _In_opt_ LPVOID pvDestContext, _In_ DWORD mshlflags)
wtttiHRESULTCoGetObject(_In_ LPCWSTR pszName, _In_opt_ BIND_OPTS *pBindOptions, _In_ REFIID riid, _Out_ void **ppv)
ttiHRESULTCoGetObjectContext(_In_ REFIID riid, _Out_ LPVOID *ppv)
ttiHRESULTCoGetPSClsid(_In_ REFIID riid, _Out_ CLSID *pClsid)
ttuituitiHRESULTCoGetStandardMarshal(_In_ REFIID riid, _In_ LPUNKNOWN pUnk, _In_ DWORD dwDestContext, _In_opt_ LPVOID pvDestContext, _In_ DWORD mshlflags, _Out_ LPMARSHAL *ppMarshal)
tuitiHRESULTCoGetStdMarshalEx(_In_ LPUNKNOWN pUnkOuter, _In_ DWORD smexflags, _Out_ LPUNKNOWN *ppUnkInner)
ttiHRESULTCoGetTreatAsClass(_In_ REFCLSID clsidOld, _Out_ LPCLSID pClsidNew)
iHRESULTCoImpersonateClient(void)
tiHRESULTCoInitialize(_In_opt_ LPVOID pvReserved)
tuiiHRESULTCoInitializeEx(_In_opt_ LPVOID pvReserved, _In_ DWORD dwCoInit)
tittuiuituitiHRESULTCoInitializeSecurity(_In_opt_ PSECURITY_DESCRIPTOR pSecDesc, _In_ LONG cAuthSvc, _In_opt_ SOLE_AUTHENTICATION_SERVICE *asAuthSvc, _In_opt_ void *pReserved1, _In_ DWORD dwAuthnLevel, _In_ DWORD dwImpLevel, _In_opt_ void *pAuthList, _In_ DWORD dwCapabilities, _In_opt_ void *pReserved3)
tuittwiHRESULTCoInstall(_In_ IBindCtx *pbc, _In_ DWORD dwFlags, _In_ uCLSSPEC *pClassSpec, _In_ QUERYCONTEXT *pQuery, _In_ LPWSTR pszCodeBase)
siHRESULTCoInvalidateRemoteMachineBindings(_In_ LPOLESTR pszMachineName)
tiBOOLCoIsHandlerConnected(_In_ LPUNKNOWN pUnk)
tiBOOLCoIsOle1Class(_In_ REFCLSID rclsid)
sitHINSTANCECoLoadLibrary(_In_ LPOLESTR lpszLibName, _In_ BOOL bAutoFree)
tiiiHRESULTCoLockObjectExternal(_In_ LPUNKNOWN pUnk, _In_ BOOL fLock, _In_ BOOL fLastUnlockReleases)
tiiHRESULTCoMarshalHresult(_In_ LPSTREAM pstm, _In_ HRESULT hresult)
tttuituiiHRESULTCoMarshalInterface(_In_ LPSTREAM pStm, _In_ REFIID riid, _In_ LPUNKNOWN pUnk, _In_ DWORD dwDestContext, _In_opt_ LPVOID pvDestContext, _In_ DWORD mshlflags)
tttiHRESULTCoMarshalInterThreadInterfaceInStream(_In_ REFIID riid, _In_ LPUNKNOWN pUnk, _Out_ LPSTREAM *ppStm)
ttiHRESULTCoQueryAuthenticationServices(_Out_ DWORD *pcAuthSvc, _Out_ SOLE_AUTHENTICATION_SERVICE **asAuthSvc)
ttwttttiHRESULTCoQueryClientBlanket(_Out_opt_ DWORD *pAuthnSvc, _Out_opt_ DWORD *pAuthzSvc, _Out_opt_ OLECHAR **pServerPrincName, _Out_opt_ DWORD *pAuthnLevel, _Out_opt_ DWORD *pImpLevel, _Out_opt_ RPC_AUTHZ_HANDLE *pPrivs, _Inout_opt_ DWORD *pCapabilities)
tttwttttiHRESULTCoQueryProxyBlanket(_In_ IUnknown *pProxy, _Out_opt_ DWORD *pwAuthnSvc, _Out_opt_ DWORD *pAuthzSvc, _Out_opt_ OLECHAR **pServerPrincName, _Out_opt_ DWORD *pAuthnLevel, _Out_opt_ DWORD *pImpLevel, _Out_opt_ RPC_AUTH_IDENTITY_HANDLE *pAuthInfo, _Out_opt_ DWORD *pCapabilites)
ttiHRESULTCoRegisterChannelHook(_In_ REFGUID ExtensionUuid, _In_ IChannelHook *pChannelHook)
ttuiuitiHRESULTCoRegisterClassObject(_In_ REFCLSID rclsid, _In_ LPUNKNOWN pUnk, _In_ DWORD dwClsContext, _In_ DWORD flags, _Out_ LPDWORD lpdwRegister)
ttiHRESULTCoRegisterInitializeSpy(_In_ LPINITIALIZESPY pSpy, _Out_ ULARGE_INTEGER *puliCookie)
tiHRESULTCoRegisterMallocSpy(_In_ LPMALLOCSPY pMallocSpy)
ttiHRESULTCoRegisterMessageFilter(_In_opt_ LPMESSAGEFILTER lpMessageFilter, _Out_opt_ LPMESSAGEFILTER *lplpMessageFilter)
ttiHRESULTCoRegisterPSClsid(_In_ REFIID riid, _In_ REFCLSID rclsid)
tiHRESULTCoRegisterSurrogate(_In_ LPSURROGATE pSurrogate)
tiHRESULTCoReleaseMarshalData(_In_ LPSTREAM pStm)
uiULONGCoReleaseServerProcess(void)
iHRESULTCoResumeClassObjects(void)
iHRESULTCoRevertToSelf(void)
uiiHRESULTCoRevokeClassObject(_In_ DWORD dwRegister)
i6iHRESULTCoRevokeInitializeSpy(_In_ ULARGE_INTEGER uliCookie)
iHRESULTCoRevokeMallocSpy(void)
tiHRESULTCoSetCancelObject(_In_opt_ IUnknown *pUnk)
tuiuiwuiuituiiHRESULTCoSetProxyBlanket(_In_ IUnknown *pProxy, _In_ DWORD dwAuthnSvc, _In_ DWORD dwAuthzSvc, _In_opt_ OLECHAR *pServerPrincName, _In_ DWORD dwAuthnLevel, _In_ DWORD dwImpLevel, _In_opt_ RPC_AUTH_IDENTITY_HANDLE pAuthInfo, _In_ DWORD dwCapabilities)
iHRESULTCoSuspendClassObjects(void)
ttiHRESULTCoSwitchCallContext(_In_opt_ IUnknown *pNewObject, _Out_ IUnknown **ppOldObject)
uttLPVOIDCoTaskMemAlloc(_In_ SIZE_T cb)
tiVOIDCoTaskMemFree(_In_opt_ LPVOID pv)
tuttLPVOIDCoTaskMemRealloc(_In_opt_ LPVOID pv, _In_ SIZE_T cb)
iHRESULTCoTestCancel(void)
ttiHRESULTCoTreatAsClass(_In_ REFCLSID clsidOld, _In_ REFCLSID clsidNew)
iVOIDCoUninitialize(void)
ttiHRESULTCoUnmarshalHresult(_In_ LPSTREAM pstm, _Out_ HRESULT *phresult)
tttiHRESULTCoUnmarshalInterface(_In_ LPSTREAM pStm, _In_ REFIID riid, _Out_ LPVOID *ppv)
uiuiuittiHRESULTCoWaitForMultipleHandles(_In_ DWORD dwFlags, _In_ DWORD dwTimeout, _In_ ULONG cHandles, _In_ LPHANDLE pHandles, _Out_ LPDWORD lpdwindex)
tiHRESULTCreateAntiMoniker(_Out_ LPMONIKER *ppmk)
uitiHRESULTCreateBindCtx(_In_ DWORD reserved, _Out_ LPBC *ppbc)
ttiHRESULTCreateClassMoniker(_In_ REFCLSID rclsid, _Out_ LPMONIKER *ppmk)
tiHRESULTCreateDataAdviseHolder(_Out_ LPDATAADVISEHOLDER *ppDAHolder)
ttttiHRESULTCreateDataCache(_In_ LPUNKNOWN pUnkOuter, _In_ REFCLSID rclsid, _In_ REFIID iid, _Out_ LPVOID *ppv)
stiHRESULTCreateFileMoniker(_In_ LPCOLESTR lpszPathName, _Out_ LPMONIKER *ppmk)
tttiHRESULTCreateGenericComposite(_In_opt_ LPMONIKER pmkFirst, _In_opt_ LPMONIKER pmkRest, _Out_ LPMONIKER *ppmkComposite)
titiintCreateILockBytesOnHGlobal(_In_ HGLOBAL hGlobal, _In_ BOOL fDeleteOnRelease, _Out_ ILockBytes **ppLkbyt)
sstiHRESULTCreateItemMoniker(_In_ LPCOLESTR lpszDelim, _In_ LPCOLESTR lpszItem, _Out_ LPMONIKER *ppmk)
ttiHRESULTCreateObjrefMoniker(_In_opt_ LPUNKNOWN punk, _Out_ LPMONIKER *ppmk)
tiHRESULTCreateOleAdviseHolder(_Out_ LPOLEADVISEHOLDER *ppOAHolder)
ttiHRESULTCreatePointerMoniker(_In_opt_ LPUNKNOWN punk, _Out_ LPMONIKER *ppmk)
titiintCreateStreamOnHGlobal(_In_ HGLOBAL hGlobal, _In_ BOOL fDeleteOnRelease, _Out_ LPSTREAM *ppstm)
itiBOOLDllDebugObjectRPCHook(BOOL fTrace, LPORPC_INIT_ARGS lpOrpcInitArgs)
ttuitiHRESULTDoDragDrop(_In_ LPDATAOBJECT pDataObj, _In_ LPDROPSOURCE pDropSource, _In_ DWORD dwOKEffects, _Out_ LPDWORD pdwEffect)
tsiHRESULTFmtIdToPropStgName(_In_ const FMTID *pfmtid, _Out_ LPOLESTR oszName)
uitiHRESULTFreePropVariantArray(_In_ ULONG cVariants, _Inout_ PROPVARIANT *rgvars)
stiHRESULTGetClassFile(_In_ LPCOLESTR szFilename, _Out_ CLSID *pclsid)
tiintGetConvertStg(_In_ IStorage *pStg)
ttiintGetHGlobalFromILockBytes(_In_ ILockBytes *pLkbyt, _Out_ HGLOBAL *phglobal)
ttiintGetHGlobalFromStream(_In_ IStream *pstm, _Out_ HGLOBAL *phglobal)
uitiHRESULTGetRunningObjectTable(_In_ DWORD reserved, _Out_ LPRUNNINGOBJECTTABLE *pprot)
stiHRESULTIIDFromString(_In_ LPCOLESTR lpsz, _Out_ LPIID lpiid)
tittiBOOLIsAccelerator(_In_ HACCEL hAccel, _In_ int cAccelEntries, _In_ LPMSG lpMsg, _Out_ WORD *lpwCmd)
ttiBOOLIsEqualGUID(_In_ REFGUID rguid1, _In_ REFGUID rguid2)
tsttiHRESULTMkParseDisplayName(_In_ LPBC pbc, _In_ LPCOLESTR szUserName, _Out_ ULONG *pchEaten, _Out_ LPMONIKER *ppmk)
tttiHRESULTMonikerCommonPrefixWith(_In_ LPMONIKER pmkThis, _In_ LPMONIKER pmkOther, _Out_ LPMONIKER *ppmkCommon)
tttiiHRESULTMonikerRelativePathTo(_In_ LPMONIKER pmkSrc, _In_ LPMONIKER pmkDest, _Out_ LPMONIKER *ppmkRelPath, _In_ BOOL dwReserved)
ttiintOleConvertIStorageToOLESTREAM(_In_ IStorage *pStg, _Out_ LPOLESTREAM lpolestream)
tuhiiuittiintOleConvertIStorageToOLESTREAMEx(_In_ IStorage *pStg, _In_ CLIPFORMAT cfFormat, _In_ LONG lWidth, _In_ LONG lHeight, _In_ DWORD dwSize, _In_ STGMEDIUM pmedium, _Out_ LPOLESTREAM lpolestm)
tttiintOleConvertOLESTREAMToIStorage(_In_ LPOLESTREAM lpolestream, _Out_ IStorage *pstg, _In_ const DVTARGETDEVICE *ptd)
tttttttiintOleConvertOLESTREAMToIStorageEx(_In_ LPOLESTREAM lpolestm, _Out_ IStorage *pstg, _Out_ CLIPFORMAT *pcfFormat, _Out_ LONG *plWidth, _Out_ LONG *plHeight, _Out_ DWORD *pdwSize, _Out_ STGMEDIUM pmedium)
ttuittttiHRESULTOleCreate(_In_ REFCLSID rclsid, _In_ REFIID riid, _In_ DWORD renderopt, _In_ LPFORMATETC pFormatEtc, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
ttttiHRESULTOleCreateDefaultHandler(_In_ REFCLSID clsid, _In_ LPUNKNOWN pUnkOuter, _In_ REFIID riid, _Out_ LPVOID *lplpObj)
ttuitttiHRESULTOleCreateEmbeddingHelper(_In_ REFCLSID clsid, _In_ LPUNKNOWN pUnkOuter, _In_ DWORD flags, _In_ LPCLASSFACTORY pCF, _In_ REFIID riid, _Out_ LPVOID *lplpObj)
ttuiuiuitttttttiHRESULTOleCreateEx(_In_ REFCLSID rclsid, _In_ REFIID riid, _In_ DWORD dwFlags, _In_ DWORD renderopt, _In_ ULONG cFormats, _In_ DWORD *rgAdvf, _In_ LPFORMATETC rgFormatEtc, _In_ IAdviseSink *lpAdviseSink, _Out_ DWORD *rgdwConnection, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
ttuittttiHRESULTOleCreateFromData(_In_ LPDATAOBJECT pSrcDataObj, _In_ REFIID riid, _In_ DWORD renderopt, _In_ LPFORMATETC pFormatEtc, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
ttuiuiuitttttttiHRESULTOleCreateFromDataEx(_In_ LPDATAOBJECT pSrcDataObj, _In_ REFIID riid, _In_ DWORD dwFlags, _In_ DWORD renderopt, _In_ ULONG cFormats, _In_ DWORD *rgAdvf, _In_ LPFORMATETC rgFormatEtc, _In_ IAdviseSink *lpAdviseSink, _Out_ DWORD *rgdwConnection, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
tstuittttiHRESULTOleCreateFromFile(_In_ REFCLSID rclsid, _In_ LPCOLESTR lpszFileName, _In_ REFIID riid, _In_ DWORD renderopt, _In_ LPFORMATETC lpFormatEtc, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
tstuiuiuitttttttiHRESULTOleCreateFromFileEx(_In_ REFCLSID rclsid, _In_ LPCOLESTR lpszFileName, _In_ REFIID riid, _In_ DWORD dwFlags, _In_ DWORD renderopt, _In_ ULONG cFormats, _In_ DWORD *rgAdvf, _In_ LPFORMATETC rgFormatEtc, _In_ IAdviseSink *lpAdviseSink, _Out_ DWORD *rgdwConnection, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
ttuittttiHRESULTOleCreateLink(_In_ LPMONIKER pmkLinkSrc, _In_ REFIID riid, _In_ DWORD renderopt, _In_ LPFORMATETC lpFormatEtc, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
ttuiuiuitttttttiHRESULTOleCreateLinkEx(_In_ LPMONIKER pmkLinkSrc, _In_ REFIID riid, _In_ DWORD dwFlags, _In_ DWORD renderopt, _In_ ULONG cFormats, _In_ DWORD *rgAdvf, _In_ LPFORMATETC rgFormatEtc, _In_ IAdviseSink *lpAdviseSink, _Out_ DWORD *rgdwConnection, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
ttuittttiHRESULTOleCreateLinkFromData(_In_ LPDATAOBJECT pSrcDataObj, _In_ REFIID riid, _In_ DWORD renderopt, _In_ LPFORMATETC pFormatEtc, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
ttuiuiuitttttttiHRESULTOleCreateLinkFromDataEx(_In_ LPDATAOBJECT pSrcDataObj, _In_ REFIID riid, _In_ DWORD dwFlags, _In_ DWORD renderopt, _In_ ULONG cFormats, _In_ DWORD *rgAdvf, _In_ LPFORMATETC rgFormatEtc, _In_ IAdviseSink *lpAdviseSink, _Inout_ DWORD *rgdwConnection, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
stuittttiHRESULTOleCreateLinkToFile(_In_ LPCOLESTR lpszFileName, _In_ REFIID riid, _In_ DWORD renderopt, _In_ LPFORMATETC lpFormatEtc, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
stuiuiuitttttttiHRESULTOleCreateLinkToFileEx(_In_ LPCOLESTR lpszFileName, _In_ REFIID riid, _In_ DWORD dwFlags, _In_ DWORD renderopt, _In_ ULONG cFormats, _In_ DWORD *rgAdvf, _In_ LPFORMATETC rgFormatEtc, _In_ IAdviseSink *lpAdviseSink, _Out_ DWORD *rgdwConnection, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
tttHOLEMENUOleCreateMenuDescriptor(_In_ HMENU hmenuCombined, _In_ LPOLEMENUGROUPWIDTHS lpMenuWidths)
ttuittttiHRESULTOleCreateStaticFromData(_In_ LPDATAOBJECT pSrcDataObj, _In_ REFIID iid, _In_ DWORD renderopt, _In_ LPFORMATETC pFormatEtc, _In_ LPOLECLIENTSITE pClientSite, _In_ LPSTORAGE pStg, _Out_ LPVOID *ppvObj)
tiVOIDOleDestroyMenuDescriptor(_In_ HOLEMENU holemenu)
ttiHRESULTOleDoAutoConvert(_In_ LPSTORAGE pStg, _Out_ LPCLSID pClsidNew)
tuittiHRESULTOleDraw(_In_ LPUNKNOWN pUnknown, _In_ DWORD dwAspect, _In_ HDC hdcDraw, _In_ LPCRECT lprcBounds)
tuhuitHANDLEOleDuplicateData(_In_ HANDLE hSrc, _In_ CLIPFORMAT cfFormat, _In_ UINT uiFlags)
iHRESULTOleFlushClipboard(void)
ttiHRESULTOleGetAutoConvert(_In_ REFCLSID clsidOld, _Out_ LPCLSID pClsidNew)
tiHRESULTOleGetClipboard(_Out_ LPDATAOBJECT *ppDataObj)
tsitHGLOBALOleGetIconOfClass(_In_ REFCLSID rclsid, _In_opt_ LPOLESTR lpszLabel, _In_ BOOL fUseTypeAsLabel)
sitHGLOBALOleGetIconOfFile(_In_ LPOLESTR lpszPath, _In_ BOOL fUseFileAsLabel)
tiHRESULTOleInitialize(_In_ LPVOID pvReserved)
tiHRESULTOleIsCurrentClipboard(_In_ LPDATAOBJECT pDataObj)
tiBOOLOleIsRunning(_In_ LPOLEOBJECT pObject)
ttttiHRESULTOleLoad(_In_ LPSTORAGE pStg, _In_ REFIID riid, _In_ LPOLECLIENTSITE pClientSite, _Out_ LPVOID *ppvObj)
tttiHRESULTOleLoadFromStream(_In_ LPSTREAM pStm, _In_ REFIID iidInterface, _Out_ LPVOID *ppvObj)
tiiiHRESULTOleLockRunning(_In_ LPUNKNOWN pUnknown, _In_ BOOL fLock, _In_ BOOL fLastUnlockCloses)
tssuitHGLOBALOleMetafilePictFromIconAndLabel(_In_ HICON hIcon, _In_ LPOLESTR lpszLabel, _In_ LPOLESTR lpszSourceFile, _In_ UINT iIconIndex)
tiiHRESULTOleNoteObjectVisible(_In_ LPUNKNOWN pUnknown, _In_ BOOL fVisible)
tiHRESULTOleQueryCreateFromData(_In_ LPDATAOBJECT pSrcDataObject)
tiHRESULTOleQueryLinkFromData(_In_ LPDATAOBJECT pSrcDataObject)
tuitiHRESULTOleRegEnumFormatEtc(_In_ REFCLSID clsid, _In_ DWORD dwDirection, _Out_ LPENUMFORMATETC *ppenum)
ttiHRESULTOleRegEnumVerbs(_In_ REFCLSID clsid, _Out_ LPENUMOLEVERB *ppenum)
tuitiHRESULTOleRegGetMiscStatus(_In_ REFCLSID clsid, _In_ DWORD dwAspect, _Out_ DWORD *pdwStatus)
tuitiHRESULTOleRegGetUserType(_In_ REFCLSID clsid, _In_ DWORD dwFormOfType, _Out_ LPOLESTR *pszUserType)
tiHRESULTOleRun(_In_ LPUNKNOWN pUnknown)
ttiiHRESULTOleSave(_In_ LPPERSISTSTORAGE pPS, _In_ LPSTORAGE pStg, _In_ BOOL fSameAsLoad)
ttiHRESULTOleSaveToStream(_In_ LPPERSISTSTREAM pPStm, _In_ LPSTREAM pStm)
ttiHRESULTOleSetAutoConvert(_In_ REFCLSID clsidOld, _In_ REFCLSID clsidNew)
tiHRESULTOleSetClipboard(_In_ LPDATAOBJECT pDataObj)
tiiHRESULTOleSetContainedObject(_In_ LPUNKNOWN pUnknown, _In_ BOOL fContained)
tttttiHRESULTOleSetMenuDescriptor(_In_ HOLEMENU holemenu, _In_ HWND hwndFrame, _In_ HWND hwndActiveObject, _In_ LPOLEINPLACEFRAME lpFrame, _In_ LPOLEINPLACEACTIVEOBJECT lpActiveObj)
tttiHRESULTOleTranslateAccelerator(_In_ LPOLEINPLACEFRAME lpFrame, _In_ LPOLEINPLACEFRAMEINFO lpFrameInfo, _In_ LPMSG lpmsg)
iVOIDOleUninitialize(void)
ttiHRESULTProgIDFromCLSID(_In_ REFCLSID clsid, _Out_ LPOLESTR *lplpszProgID)
stiHRESULTPropStgNameToFmtId(_In_ const LPOLESTR oszName, _Out_ FMTID *pfmtid)
tiHRESULTPropVariantClear(_Inout_ PROPVARIANT *pvar)
ttiHRESULTPropVariantCopy(_Out_ PROPVARIANT *pvarDest, _In_ const PROPVARIANT *pvarSrc)
ttiintReadClassStg(_In_ IStorage *pStg, _Out_ CLSID *pclsid)
ttiintReadClassStm(_In_ IStream *pStm, _Out_ CLSID *pclsid)
tttiintReadFmtUserTypeStg(_In_ IStorage *pStg, _Out_ CLIPFORMAT *pcf, _Out_ LPWSTR *lplpszUserType)
ttiHRESULTRegisterDragDrop(_In_ HWND hwnd, _In_ LPDROPTARGET pDropTarget)
tiVOIDReleaseStgMedium(_In_ LPSTGMEDIUM pMedium)
tiHRESULTRevokeDragDrop(_In_ HWND hwnd)
tiiintSetConvertStg(IStorage *pStg, BOOL fConvert)
tuhttucBOOLEANStgConvertPropertyToVariant(_In_ const SERIALIZEDPROPERTYVALUE *prop, _In_ USHORT CodePage, _Out_ PROPVARIANT *pvar, _In_ PMemoryAllocator *pma)
tuhttuiucttSERIALIZEDPROPERTYVALUE*StgConvertVariantToProperty(_In_ const PROPVARIANT *pvar, _In_ USHORT CodePage, _Out_opt_ SERIALIZEDPROPERTYVALUE *pprop, _Inout_ ULONG *pcb, _In_ PROPID pid, _Reserved_ BOOLEAN fReserved, _Inout_opt_ ULONG *pcIndirect)
wuiuitiHRESULTStgCreateDocfile(_In_ const WCHAR *pwcsName, _In_ DWORD grfMode, _In_ DWORD reserved, _Out_ IStorage **ppstgOpen)
tuiuitiHRESULTStgCreateDocfileOnILockBytes(_In_ ILockBytes *plkbyt, _In_ DWORD grfMode, _In_ DWORD reserved, _Out_ IStorage **ppstgOpen)
tuitiHRESULTStgCreatePropSetStg(_In_ IStorage *pStorage, DWORD dwReserved, _Out_ IPropertySetStorage **ppPropSetStg)
tttuiuitiHRESULTStgCreatePropStg(_In_ IUnknown *pUnk, _In_ REFFMTID fmtid, _In_ const CLSID *pclsid, _In_ DWORD grfFlags, _In_ DWORD dwReserved, _Out_ IPropertyStorage **ppPropStg)
wuiuiuittttiintStgCreateStorageEx(_In_ const WCHAR *pwcsName, _In_ DWORD grfMode, _In_ STGFMT stgfmt, _In_ DWORD grfAttrs, _In_ STGOPTIONS *pStgOptions, _In_ PSECURITY_DESCRIPTOR *pSecurityDescriptor, _In_ REFIID riid, _Out_ void **ppObjectOpen)
wtiintStgGetIFillLockBytesOnFile(_In_ OLECHAR *pwcsName, _Out_ IFillLockBytes **ppflb)
ttiintStgGetIFillLockBytesOnILockBytes(_In_ ILockBytes *pilb, _Out_ IFillLockBytes **ppflb)
wiintStgIsStorageFile(_In_ const WCHAR *pwcsName)
tiintStgIsStorageILockBytes(ILockBytes *plkbyt)
tuiuitiintStgOpenAsyncDocfileOnIFillLockBytes(_In_ IFillLockBytes *ppflb, _In_ DWORD grfmode, _In_ DWORD asyncFlags, _Out_ IStorage **ppstgOpen)
ttuiuitiHRESULTStgOpenPropStg(_In_ IUnknown *pUnk, _In_ REFFMTID fmtid, _In_ DWORD grfFlags, _In_ DWORD dwReserved, _Out_ IPropertyStorage **ppPropStg)
wtuituitiHRESULTStgOpenStorage(_In_ const WCHAR *pwcsName, _In_ IStorage *pstgPriority, _In_ DWORD grfMode, _In_ SNB snbExclude, _In_ DWORD reserved, _Out_ IStorage **ppstgOpen)
wuiuiuittttiHRESULTStgOpenStorageEx(_In_ const WCHAR *pwcsName, _In_ DWORD grfMode, _In_ STGFMT stgfmt, _In_ DWORD grfAttrs, _Inout_ STGOPTIONS *pStgOptions, _In_ void *reserved2, _In_ REFIID riid, _Out_ void **ppObjectOpen)
ttuituitiHRESULTStgOpenStorageOnILockBytes(_In_ ILockBytes *plkbyt, _In_ IStorage *pStgPriority, _In_ DWORD grfMode, _In_ SNB snbExclude, _In_ DWORD reserved, _Out_ IStorage **ppstgOpen)
tuiuhucuiULONGStgPropertyLengthAsVariant(_In_ const SERIALIZEDPROPERTYVALUE *pProp, _In_ ULONG cbProp, _In_ USHORT CodePage, _Reserved_ BYTE bReserved)
wtttiintStgSetTimes(_In_ WCHAR const *lpszName, _In_ FILETIME const *pctime, _In_ FILETIME const *patime, _In_ FILETIME const *pmtime)
ttiHRESULTStringFromCLSID(_In_ REFCLSID rclsid, _Out_ LPOLESTR *lplpsz)
tsiiintStringFromGUID2(_In_ REFGUID rguid, _Out_ LPOLESTR lpsz, _In_ int cchMax)
ttiHRESULTStringFromIID(_In_ REFIID rclsid, _Out_ LPOLESTR *lplpsz)
ttiintWriteClassStg(_In_ IStorage *pStg, _In_ REFCLSID rclsid)
ttiintWriteClassStm(_In_ IStream *pStm, _In_ REFCLSID rclsid)
tuhtiintWriteFmtUserTypeStg(_In_ IStorage *pStg, _In_ CLIPFORMAT cf, _In_ LPWSTR *lpszUserType)

Oleacc.dll

tiittiintAccessibleChildren(_In_ IAccessible *paccContainer, _In_ LONG iChildStart, _In_ LONG cChildren, _Out_ VARIANT *rgvarChildren, _Out_ LONG *pcObtained)
tuiuittiintAccessibleObjectFromEvent(_In_ HWND hwnd, _In_ DWORD dwObjectID, _In_ DWORD dwChildID, _Out_ IAccessible **ppacc, _Out_ VARIANT *pvarChild)
ui6ttiintAccessibleObjectFromPoint(_In_ POINT ptScreen, _Out_ IAccessible **ppacc, _Out_ VARIANT *pvarChild)
tuittiintAccessibleObjectFromWindow(_In_ HWND hwnd, _In_ DWORD dwObjectID, _In_ REFIID riid, _Out_ void **ppvObject)
tittiintCreateStdAccessibleObject(_In_ HWND hwnd, _In_ LONG idObject, _In_ REFIID riidInterface, _Out_ void **ppvObject)
tsittiintCreateStdAccessibleProxy(_In_ HWND hwnd, _In_ LPCTSTR pszClassName, _In_ LONG idObject, _In_ REFIID riidInterface, _Out_ void **ppvObject)
taittiintCreateStdAccessibleProxyA(_In_ HWND hwnd, _In_ LPCSTR pszClassName, _In_ LONG idObject, _In_ REFIID riidInterface, _Out_ void **ppvObject)
twittiintCreateStdAccessibleProxyW(_In_ HWND hwnd, _In_ LPCWSTR pszClassName, _In_ LONG idObject, _In_ REFIID riidInterface, _Out_ void **ppvObject)
ttiVOIDGetOleaccVersionInfo(_Out_ DWORD *pdwVer, _Out_ DWORD *pdwBuild)
ttHANDLEGetProcessHandleFromHwnd(_In_ HWND hwnd)
uisuiuiUINTGetRoleText(_In_ DWORD dwRole, _Out_ LPTSTR lpszRole, _In_ UINT cchRoleMax)
uiauiuiUINTGetRoleTextA(_In_ DWORD dwRole, _Out_ LPSTR lpszRole, _In_ UINT cchRoleMax)
uiwuiuiUINTGetRoleTextW(_In_ DWORD dwRole, _Out_ LPWSTR lpszRole, _In_ UINT cchRoleMax)
uisuiuiUINTGetStateText(_In_ DWORD dwStateBit, _Out_ LPTSTR lpszStateBit, _In_ UINT cchStateBitMax)
uiauiuiUINTGetStateTextA(_In_ DWORD dwStateBit, _Out_ LPSTR lpszStateBit, _In_ UINT cchStateBitMax)
uiwuiuiUINTGetStateTextW(_In_ DWORD dwStateBit, _Out_ LPWSTR lpszStateBit, _In_ UINT cchStateBitMax)
tutttLRESULTLresultFromObject(_In_ REFIID riid, _In_ WPARAM wParam, _In_ LPUNKNOWN pAcc)
ttuttiintObjectFromLresult(_In_ LRESULT lResult, _In_ REFIID riid, _In_ WPARAM wParam, _Out_ void **ppvObject)
ttiintWindowFromAccessibleObject(_In_ IAccessible *pacc, _Out_ HWND *phwnd)

OleAut32.dll

ttiVOIDBSTR_UserFree(_In_ unsigned long *pFlags, _In_ BSTR *pBstr)
tattunsignedchar*BSTR_UserMarshal(_In_ unsigned long *pFlags, _Inout_ unsigned char *pBuffer, _In_ BSTR *pBstr)
tuituiunsignedlongBSTR_UserSize(_In_ unsigned long *pFlags, _In_ unsigned long Offset, _In_ BSTR *pBstr)
tattunsignedchar*BSTR_UserUnmarshal(_In_ unsigned long *pFlags, _In_ unsigned char *pBuffer, _Out_ BSTR *pBstr)
ttiHRESULTBstrFromVector(_In_ SAFEARRAY *psa, _Out_ BSTR *pbstr)
tiVOIDClearCustData(LPCUSTDATA pCustData)
tuitiHRESULTCreateDispTypeInfo(INTERFACEDATA *pidata, LCID lcid, ITypeInfo **pptinfo)
tiHRESULTCreateErrorInfo(_Out_ ICreateErrorInfo **pperrinfo)
ttttiHRESULTCreateStdDispatch(IUnknown *punkOuter, void *pvThis, ITypeInfo *ptinfo, IUnknown **ppunkStdDisp)
uistiHRESULTCreateTypeLib(SYSKIND syskind, LPCOLESTR szFile, ICreateTypeLib **ppctlib)
uistiHRESULTCreateTypeLib2(SYSKIND syskind, LPCOLESTR szFile, ICreateTypeLib2 **ppctlib)
tutiuhuitttiHRESULTDispCallFunc(void *pvInstance, ULONG_PTR oVft, CALLCONV cc, VARTYPE vtReturn, UINT cActuals, VARTYPE *prgvt, VARIANTARG **prgpvarg, VARIANT *pvargResult)
twuitiHRESULTDispGetIDsOfNames(ITypeInfo *ptinfo, _In_ OLECHAR **rgszNames, UINT cNames, _Out_ DISPID *rgdispid)
tuiuhttiHRESULTDispGetParam(_In_ DISPPARAMS *pdispparams, UINT position, VARTYPE vtTarg, _Out_ VARIANT *pvarResult, _Out_opt_ UINT *puArgErr)
ttiuhttttiHRESULTDispInvoke(void *_this, ITypeInfo *ptinfo, DISPID dispidMember, WORD wFlags, DISPPARAMS *pparams, VARIANT *pvarResult, EXCEPINFO *pexcepinfo, UINT *puArgErr)
uhuhtiintDosDateTimeToVariantTime(_In_ USHORT wDosDate, _In_ USHORT wDosTime, _Out_ DOUBLE *pvtime)
tttiHRESULTGetActiveObject(_In_ REFCLSID rclsid, _Reserved_ void *pvReserved, _Out_ IUnknown **ppunk)
uitiHRESULTGetAltMonthNames(_In_ LCID lcid, _Out_ LPOLESTR **prgp)
uitiHRESULTGetErrorInfo(_In_ ULONG dwReserved, _Out_ IErrorInfo **pperrinfo)
tuiuiuittiHRESULTGetRecordInfoFromGuids(_In_ REFGUID rGuidTypeLib, _In_ ULONG uVerMajor, _In_ ULONG uVerMinor, _In_ LCID lcid, _In_ REFGUID rGuidTypeInfo, _Out_ IRecordInfo **ppRecInfo)
ttiHRESULTGetRecordInfoFromTypeInfo(_In_ ITypeInfo *pTypeInfo, _Out_ IRecordInfo **ppRecInfo)
tiHRESULTGetVarConversionLocaleSetting(_Out_ ULONG *dwFlags)
uiuiwuiULONGLHashValOfNameSys(SYSKIND syskind, LCID lcid, const OLECHAR *szName)
uiuiauiULONGLHashValOfNameSysA(SYSKIND syskind, LCID lcid, LPCSTR szName)
tuhuhuitiHRESULTLoadRegTypeLib(REFGUID rguid, WORD wVerMajor, WORD wVerMinor, LCID lcid, ITypeLib **pptlib)
stiHRESULTLoadTypeLib(LPCOLESTR szFile, ITypeLib **pptlib)
suitiHRESULTLoadTypeLibEx(LPCOLESTR szFile, REGKIND regkind, ITypeLib **pptlib)
tatttunsignedchar*LPSAFEARRAY_Marshal(_In_ unsigned long *pFlags, _Inout_ unsigned char *pBuffer, _In_ LPSAFEARRAY *ppSafeArray, _In_ const IID *piid)
tuittuiunsignedlongLPSAFEARRAY_Size(_In_ unsigned long *pFlags, _In_ unsigned long Offset, _In_ LPSAFEARRAY *ppSafeArray, _In_ const IID *piid)
tatttunsignedchar*LPSAFEARRAY_Unmarshal(_In_ unsigned long *pFlags, _Inout_ unsigned char *pBuffer, _In_ LPSAFEARRAY *ppSafeArray, _In_ const IID *piid)
ttiVOIDLPSAFEARRAY_UserFree(_In_ unsigned long *pFlags, _In_ LPSAFEARRAY *ppSafeArray)
tattunsignedchar*LPSAFEARRAY_UserMarshal(_In_ unsigned long *pFlags, _Inout_ unsigned char *pBuffer, _In_ LPSAFEARRAY *ppSafeArray)
tuituiunsignedlongLPSAFEARRAY_UserSize(_In_ unsigned long *pFlags, _In_ unsigned long Offset, _In_ LPSAFEARRAY *ppSafeArray)
tattunsignedchar*LPSAFEARRAY_UserUnmarshal(_In_ unsigned long *pFlags, _Inout_ unsigned char *pBuffer, _In_ LPSAFEARRAY *ppSafeArray)
uiULONGOaBuildVersion(void)
iVOIDOaEnablePerUserTLibRegistration(void)
tttiHRESULTOleCreateFontIndirect(_In_ LPFONTDESC lpFontDesc, _In_ REFIID riid, _Out_ LPVOID *lplpvObj)
ttitiHRESULTOleCreatePictureIndirect(_In_ LPPICTDESC lpPictDesc, _In_ REFIID riid, _In_ BOOL fOwn, _Out_ LPVOID *lplpvObj)
tuiuisuituituiuitiHRESULTOleCreatePropertyFrame(_In_ HWND hwndOwner, _In_ UINT x, _In_ UINT y, _In_ LPCOLESTR lpszCaption, _In_ ULONG cObjects, _In_ LPUNKNOWN *ppUnk, _In_ ULONG cPages, _In_ LPCLSID pPageClsID, _In_ LCID lcid, _In_ DWORD dwReserved, _In_ LPVOID pvReserved)
tiHRESULTOleCreatePropertyFrameIndirect(_In_ LPOCPFIPARAMS lpParams)
tttHCURSOROleIconToCursor(_In_ HINSTANCE hinstExe, _In_ HICON hIcon)
tiittiHRESULTOleLoadPicture(_In_ LPSTREAM lpstream, _In_ LONG lSize, _In_ BOOL fRunmode, _In_ REFIID riid, _Out_ LPVOID *lplpvObj)
tiituiuiuitiHRESULTOleLoadPictureEx(_In_ LPSTREAM lpstream, _In_ LONG lSize, _In_ BOOL fRunmode, _In_ REFIID riid, _In_ DWORD xSizeDesired, _In_ DWORD ySizeDesired, _In_ DWORD dwFlags, _Out_ LPVOID *lplpvObj)
ttiHRESULTOleLoadPictureFile(_In_ VARIANT varFileName, _Out_ LPDISPATCH *lplpdispPicture)
tuiuiuitiHRESULTOleLoadPictureFileEx(_In_ VARIANT varFileName, _In_ DWORD xSizeDesired, _In_ DWORD ySizeDesired, _In_ DWORD dwFlags, _Out_ LPDISPATCH *lplpdispPicture)
stuiuittiHRESULTOleLoadPicturePath(_In_ LPOLESTR szURLorPath, _In_ LPUNKNOWN punkCaller, _In_ DWORD dwReserved, _In_ OLE_COLOR clrReserved, _In_ REFIID riid, _Out_ LPVOID *ppvRet)
tsiHRESULTOleSavePictureFile(_In_ LPDISPATCH lpdispPicture, _In_ BSTR bstrFileName)
uittiHRESULTOleTranslateColor(_In_ OLE_COLOR clr, _In_ HPALETTE hpal, _Out_ COLORREF *lpcolorref)
tuhuhuisiHRESULTQueryPathOfRegTypeLib(REFGUID guid, USHORT wMaj, USHORT wMin, LCID lcid, _Out_ LPBSTR lpbstrPathName)
ttuitiHRESULTRegisterActiveObject(IUnknown *punk, REFCLSID rclsid, DWORD dwFlags, DWORD *pdwRegister)
tssiHRESULTRegisterTypeLib(ITypeLib *ptlib, _In_ LPCOLESTR szFullPath, _In_opt_ LPCOLESTR szHelpDir)
twwiHRESULTRegisterTypeLibForUser(ITypeLib *ptlib, _In_ OLECHAR *szFullPath, _In_opt_ OLECHAR *szHelpDir)
uitiHRESULTRevokeActiveObject(_In_ DWORD dwRegister, _Reserved_ void *pvReserved)
ttiHRESULTSafeArrayAccessData(_In_ SAFEARRAY *psa, _Out_ void **ppvData)
tiHRESULTSafeArrayAllocData(_In_ SAFEARRAY *psa)
uitiHRESULTSafeArrayAllocDescriptor(_In_ UINT cDims, _Out_ SAFEARRAY **ppsaOut)
uhuitiHRESULTSafeArrayAllocDescriptorEx(_In_ VARTYPE vt, _In_ UINT cDims, _Out_ SAFEARRAY **ppsaOut)
ttiHRESULTSafeArrayCopy(_In_ SAFEARRAY *psa, _Out_ SAFEARRAY **ppsaOut)
ttiHRESULTSafeArrayCopyData(_In_ SAFEARRAY *psaSource, _In_ SAFEARRAY *psaTarget)
uhuittSAFEARRAY*SafeArrayCreate(_In_ VARTYPE vt, _In_ UINT cDims, _In_ SAFEARRAYBOUND *rgsabound)
uhuitttSAFEARRAY*SafeArrayCreateEx(_In_ VARTYPE vt, _In_ UINT cDims, _In_ SAFEARRAYBOUND *rgsabound, _In_ PVOID pvExtra)
uhiuitSAFEARRAY*SafeArrayCreateVector(_In_ VARTYPE vt, _In_ LONG lLbound, _In_ ULONG cElements)
uhiuittSAFEARRAY*SafeArrayCreateVectorEx(_In_ VARTYPE vt, _In_ LONG lLbound, _In_ ULONG cElements, _In_ PVOID pvExtra)
tiHRESULTSafeArrayDestroy(_In_ SAFEARRAY *psa)
tiHRESULTSafeArrayDestroyData(_In_ SAFEARRAY *psa)
tiHRESULTSafeArrayDestroyDescriptor(_In_ SAFEARRAY *psa)
tuiUINTSafeArrayGetDim(_In_ SAFEARRAY *psa)
tttiHRESULTSafeArrayGetElement(_In_ SAFEARRAY *psa, _In_ LONG *rgIndices, _Out_ void *pv)
tuiUINTSafeArrayGetElemsize(_In_ SAFEARRAY *psa)
ttiHRESULTSafeArrayGetIID(_In_ SAFEARRAY *psa, _Out_ GUID *pguid)
tuitiHRESULTSafeArrayGetLBound(_In_ SAFEARRAY *psa, _In_ UINT nDim, _Out_ LONG *plLbound)
ttiHRESULTSafeArrayGetRecordInfo(_In_ SAFEARRAY *psa, _Out_ IRecordInfo **prinfo)
tuitiHRESULTSafeArrayGetUBound(_In_ SAFEARRAY *psa, _In_ UINT nDim, _Out_ LONG *plUbound)
ttiHRESULTSafeArrayGetVartype(_In_ SAFEARRAY *psa, _Out_ VARTYPE *pvt)
tiHRESULTSafeArrayLock(_In_ SAFEARRAY *psa)
tttiHRESULTSafeArrayPtrOfIndex(_In_ SAFEARRAY *psa, _In_ LONG *rgIndices, _Out_ void **ppvData)
tttiHRESULTSafeArrayPutElement(_In_ SAFEARRAY *psa, _In_ LONG *rgIndices, _In_ void *pv)
ttiHRESULTSafeArrayRedim(_Inout_ SAFEARRAY *psa, _In_ SAFEARRAYBOUND *psaboundNew)
ttiHRESULTSafeArraySetIID(_In_ SAFEARRAY *psa, _In_ REFGUID guid)
ttiHRESULTSafeArraySetRecordInfo(_In_ SAFEARRAY *psa, _In_ IRecordInfo *prinfo)
tiHRESULTSafeArrayUnaccessData(_In_ SAFEARRAY *psa)
tiHRESULTSafeArrayUnlock(_In_ SAFEARRAY *psa)
uitiHRESULTSetErrorInfo(_In_ ULONG dwReserved, _In_opt_ IErrorInfo *perrinfo)
iVOIDSetOaNoCache(void)
uiiHRESULTSetVarConversionLocaleSetting(_In_ ULONG dwFlags)
wsBSTRSysAllocString(_In_opt_ const OLECHAR *psz)
auisBSTRSysAllocStringByteLen(_In_opt_ LPCSTR psz, _In_ UINT len)
wuisBSTRSysAllocStringLen(_In_ const OLECHAR *strIn, _In_ UINT ui)
siVOIDSysFreeString(_In_opt_ BSTR bstrString)
twiintSysReAllocString(_Inout_ BSTR *pbstr, _In_opt_ const OLECHAR *psz)
twuiiintSysReAllocStringLen(_Inout_ BSTR *pbstr, _In_opt_ const OLECHAR *psz, _In_ unsigned int len)
suiUINTSysStringByteLen(_In_opt_ BSTR bstr)
suiUINTSysStringLen(_In_opt_ BSTR bstr)
ttiintSystemTimeToVariantTime(_In_ LPSYSTEMTIME lpSystemTime, _Out_ DOUBLE *pvtime)
tuhuhuiuiiHRESULTUnRegisterTypeLib(REFGUID libID, WORD wVerMajor, WORD wVerMinor, LCID lcid, SYSKIND syskind)
tuhuhuiuiiHRESULTUnRegisterTypeLibForUser(REFGUID libID, WORD wMajorVerNum, WORD wMinorVerNum, LCID lcid, SYSKIND syskind)
ttiHRESULTVarAbs(_In_ LPVARIANT pvarIn, _Out_ LPVARIANT pvarResult)
tttiHRESULTVarAdd(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
tttiHRESULTVarAnd(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
i6tiHRESULTVarBoolFromCy(_In_ CY cyIn, _Out_ VARIANT_BOOL *pboolOut)
dtiHRESULTVarBoolFromDate(_In_ DATE dateIn, _Out_ VARIANT_BOOL *pboolOut)
ttiHRESULTVarBoolFromDec(_In_ const DECIMAL *pdecIn, _Out_ VARIANT_BOOL *pboolOut)
tuitiHRESULTVarBoolFromDisp(IDispatch *pdispIn, _In_ LCID lcid, _Out_ VARIANT_BOOL *pboolOut)
ctiHRESULTVarBoolFromI1(_In_ CHAR cIn, _Out_ VARIANT_BOOL *pboolOut)
htiHRESULTVarBoolFromI2(_In_ SHORT sIn, _Out_ VARIANT_BOOL *pboolOut)
itiHRESULTVarBoolFromI4(_In_ LONG lIn, _Out_ VARIANT_BOOL *pboolOut)
i6tiHRESULTVarBoolFromI8(_In_ LONG64 i64In, _Out_ VARIANT_BOOL *pboolOut)
ftiHRESULTVarBoolFromR4(_In_ FLOAT fltIn, _Out_ VARIANT_BOOL *pboolOut)
dtiHRESULTVarBoolFromR8(_In_ DOUBLE dblIn, _Out_ VARIANT_BOOL *pboolOut)
suiuitiHRESULTVarBoolFromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ VARIANT_BOOL *pboolOut)
uctiHRESULTVarBoolFromUI1(_In_ BYTE bIn, _Out_ VARIANT_BOOL *pboolOut)
uhtiHRESULTVarBoolFromUI2(_In_ USHORT uiIn, _Out_ VARIANT_BOOL *pboolOut)
uitiHRESULTVarBoolFromUI4(_In_ ULONG ulIn, _Out_ VARIANT_BOOL *pboolOut)
ui6tiHRESULTVarBoolFromUI8(_In_ ULONG64 i64In, _Out_ VARIANT_BOOL *pboolOut)
sssiHRESULTVarBstrCat(_In_ BSTR bstrLeft, _In_ BSTR bstrRight, _Out_ LPBSTR pbstrResult)
ssuiuiiHRESULTVarBstrCmp(_In_ BSTR bstrLeft, _In_ BSTR bstrRight, _In_ LCID lcid, _In_ ULONG dwFlags)
huiuitiHRESULTVarBstrFromBool(_In_ VARIANT_BOOL boolIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
i6uiuitiHRESULTVarBstrFromCy(_In_ CY cyIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
duiuitiHRESULTVarBstrFromDate(_In_ DATE dateIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
tuiuitiHRESULTVarBstrFromDec(_In_ const DECIMAL *pdecIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
tuiuitiHRESULTVarBstrFromDisp(IDispatch *pdispIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
cuiuitiHRESULTVarBstrFromI1(_In_ CHAR cIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
huiuitiHRESULTVarBstrFromI2(_In_ SHORT iVal, _In_ LCID lcid, _In_ ULONG dwFlags, BSTR *pbstrOut)
iuiuitiHRESULTVarBstrFromI4(_In_ LONG lIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
i6uiuitiHRESULTVarBstrFromI8(_In_ LONG64 i64In, _In_ LCID lcid, _In_ unsigned long dwFlags, _Out_ BSTR *pbstrOut)
fuiuitiHRESULTVarBstrFromR4(_In_ FLOAT fltIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
duiuitiHRESULTVarBstrFromR8(_In_ DOUBLE dblIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
ucuiuitiHRESULTVarBstrFromUI1(_In_ BYTE bVal, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
uhuiuitiHRESULTVarBstrFromUI2(_In_ USHORT uiIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
uiuiuitiHRESULTVarBstrFromUI4(_In_ ULONG ulIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
ui6uiuitiHRESULTVarBstrFromUI8(_In_ ULONG64 ui64In, _In_ LCID lcid, _In_ unsigned long dwFlags, _Out_ BSTR *pbstrOut)
tttiHRESULTVarCat(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
ttuiuiiHRESULTVarCmp(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _In_ LCID lcid, _In_ ULONG dwFlags)
i6tiHRESULTVarCyAbs(_In_ CY cyIn, _Out_ LPCY pcyResult)
i6i6tiHRESULTVarCyAdd(_In_ CY cyLeft, _In_ CY cyRight, _Out_ LPCY pcyResult)
i6i6iHRESULTVarCyCmp(_In_ CY cyLeft, _In_ CY cyRight)
i6diHRESULTVarCyCmpR8(_In_ CY cyLeft, _In_ double dblRight)
i6tiHRESULTVarCyFix(_In_ CY cyIn, _Out_ LPCY pcyResult)
htiHRESULTVarCyFromBool(_In_ VARIANT_BOOL boolIn, _Out_ CY *pcyOut)
dtiHRESULTVarCyFromDate(_In_ DATE dateIn, _Out_ CY *pcyOut)
ttiHRESULTVarCyFromDec(_In_ const DECIMAL *pdecIn, _Out_ CY *pcyOut)
tuitiHRESULTVarCyFromDisp(_In_ IDispatch *pdispIn, _In_ LCID lcid, _Out_ CY *pcyOut)
ctiHRESULTVarCyFromI1(_In_ CHAR cIn, _Out_ CY *pcyOut)
htiHRESULTVarCyFromI2(_In_ SHORT sIn, _Out_ CY *pcyOut)
itiHRESULTVarCyFromI4(_In_ LONG lIn, _Out_ CY *pcyOut)
i6tiHRESULTVarCyFromI8(_In_ LONG64 i64In, _Out_ CY *pcyOut)
ftiHRESULTVarCyFromR4(_In_ FLOAT fltIn, _Out_ CY *pcyOut)
dtiHRESULTVarCyFromR8(_In_ DOUBLE dblIn, _Out_ CY *pcyOut)
suiuitiHRESULTVarCyFromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ CY *pcyOut)
uctiHRESULTVarCyFromUI1(_In_ BYTE bIn, _Out_ CY *pcyOut)
uhtiHRESULTVarCyFromUI2(_In_ USHORT uiIn, _Out_ CY *pcyOut)
uitiHRESULTVarCyFromUI4(_In_ ULONG ulIn, _Out_ CY *pcyOut)
ui6tiHRESULTVarCyFromUI8(_In_ ULONG64 ui64In, _Out_ CY *pcyOut)
i6tiHRESULTVarCyInt(_In_ CY cyIn, _Out_ LPCY pcyResult)
i6i6tiHRESULTVarCyMul(_In_ CY cyLeft, _In_ CY cyRight, _Out_ LPCY pcyResult)
i6itiHRESULTVarCyMulI4(_In_ CY cyLeft, _In_ long lRight, _Out_ LPCY pcyResult)
i6i6tiHRESULTVarCyMulI8(_In_ CY cyLeft, _In_ LONG64 lRight, _Out_ LPCY pcyResult)
i6tiHRESULTVarCyNeg(_In_ CY cyIn, _Out_ LPCY pcyResult)
i6itiHRESULTVarCyRound(_In_ CY cyIn, _In_ int cDecimals, _Out_ LPCY pcyResult)
i6i6tiHRESULTVarCySub(_In_ CY cyLeft, _In_ CY cyRight, _Out_ LPCY pcyResult)
htiHRESULTVarDateFromBool(_In_ VARIANT_BOOL boolIn, _Out_ DATE *pdateOut)
i6tiHRESULTVarDateFromCy(_In_ CY cyIn, _Out_ DATE *pdateOut)
ttiHRESULTVarDateFromDec(_In_ const DECIMAL *pdecIn, _Out_ DATE *pdateOut)
tuitiHRESULTVarDateFromDisp(IDispatch *pdispIn, _In_ LCID lcid, _Out_ DATE *pdateOut)
ctiHRESULTVarDateFromI1(_In_ CHAR cIn, _Out_ DATE *pdateOut)
htiHRESULTVarDateFromI2(_In_ SHORT sIn, _Out_ DATE *pdateOut)
itiHRESULTVarDateFromI4(_In_ LONG lIn, _Out_ DATE *pdateOut)
i6tiHRESULTVarDateFromI8(_In_ LONG64 i64In, _Out_ DATE *pdateOut)
ftiHRESULTVarDateFromR4(_In_ FLOAT fltIn, _Out_ DATE *pdateOut)
dtiHRESULTVarDateFromR8(_In_ DOUBLE dblIn, _Out_ DATE *pdateOut)
suiuitiHRESULTVarDateFromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ DATE *pdateOut)
tuitiHRESULTVarDateFromUdate(_In_ UDATE *pudateIn, _In_ ULONG dwFlags, _Out_ DATE *pdateOut)
tuiuitiHRESULTVarDateFromUdateEx(_In_ UDATE *pudateIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ DATE *pdateOut)
uctiHRESULTVarDateFromUI1(_In_ BYTE bIn, _Out_ DATE *pdateOut)
uhtiHRESULTVarDateFromUI2(_In_ USHORT uiIn, _Out_ DATE *pdateOut)
uitiHRESULTVarDateFromUI4(_In_ ULONG ulIn, _Out_ DATE *pdateOut)
ui6tiHRESULTVarDateFromUI8(_In_ ULONG64 ui64In, _Out_ DATE *pdateOut)
ttiHRESULTVarDecAbs(_In_ LPDECIMAL pdecIn, _Out_ LPDECIMAL pdecResult)
tttiHRESULTVarDecAdd(_In_ LPDECIMAL pdecLeft, _In_ LPDECIMAL pdecRight, _Out_ LPDECIMAL pdecResult)
ttiHRESULTVarDecCmp(_In_ LPDECIMAL pdecLeft, _In_ LPDECIMAL pdecRight)
tdiHRESULTVarDecCmpR8(_In_ LPDECIMAL pdecLeft, _In_ double dblRight)
tttiHRESULTVarDecDiv(_In_ LPDECIMAL pdecLeft, _In_ LPDECIMAL pdecRight, _Out_ LPDECIMAL pdecResult)
ttiHRESULTVarDecFix(_In_ LPDECIMAL pdecIn, _Out_ LPDECIMAL pdecResult)
htiHRESULTVarDecFromBool(_In_ VARIANT_BOOL boolIn, _Out_ DECIMAL *pdecOut)
i6tiHRESULTVarDecFromCy(_In_ CY cyIn, _Out_ DECIMAL *pdecOut)
dtiHRESULTVarDecFromDate(_In_ DATE dateIn, _Out_ DECIMAL *pdecOut)
tuitiHRESULTVarDecFromDisp(_In_ IDispatch *pdispIn, _In_ LCID lcid, _Out_ DECIMAL *pdecOut)
ctiHRESULTVarDecFromI1(_In_ CHAR cIn, _Out_ DECIMAL *pdecOut)
htiHRESULTVarDecFromI2(_In_ SHORT uiIn, _Out_ DECIMAL *pdecOut)
itiHRESULTVarDecFromI4(_In_ LONG lIn, _Out_ DECIMAL *pdecOut)
i6tiHRESULTVarDecFromI8(_In_ LONG64 i64In, _Out_ DECIMAL *pdecOut)
ftiHRESULTVarDecFromR4(_In_ FLOAT fltIn, _Out_ DECIMAL *pdecOut)
dtiHRESULTVarDecFromR8(_In_ DOUBLE dblIn, _Out_ DECIMAL *pdecOut)
suiuitiHRESULTVarDecFromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ DECIMAL *pdecOut)
uctiHRESULTVarDecFromUI1(_In_ BYTE bIn, _Out_ DECIMAL *pdecOut)
uhtiHRESULTVarDecFromUI2(_In_ USHORT uiIn, _Out_ DECIMAL *pdecOut)
uitiHRESULTVarDecFromUI4(_In_ ULONG ulIn, _Out_ DECIMAL *pdecOut)
ui6tiHRESULTVarDecFromUI8(_In_ ULONG64 ui64In, _Out_ DECIMAL *pdecOut)
ttiHRESULTVarDecInt(_In_ LPDECIMAL pdecIn, _Out_ LPDECIMAL pdecResult)
tttiHRESULTVarDecMul(_In_ LPDECIMAL pdecLeft, _In_ LPDECIMAL pdecRight, _Out_ LPDECIMAL pdecResult)
ttiHRESULTVarDecNeg(_In_ LPDECIMAL pdecIn, _Out_ LPDECIMAL pdecResult)
titiHRESULTVarDecRound(_In_ LPDECIMAL pdecIn, _In_ int cDecimals, _Out_ LPDECIMAL pdecResult)
tttiHRESULTVarDecSub(_In_ LPDECIMAL pdecLeft, _In_ LPDECIMAL pdecRight, _Out_ LPDECIMAL pdecResult)
tttiHRESULTVarDiv(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
tttiHRESULTVarEqv(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
ttiHRESULTVarFix(_In_ LPVARIANT pvarIn, _Out_ LPVARIANT pvarResult)
tsiiuitiHRESULTVarFormat(_In_ LPVARIANT pvarIn, _In_opt_ LPOLESTR pstrFormat, _In_ int iFirstDay, _In_ int iFirstWeek, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
tiiiiuitiHRESULTVarFormatCurrency(_In_ LPVARIANT pvarIn, _In_ int iNumDig, _In_ int iIncLead, _In_ int iUseParens, _In_ int iGroup, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
tiuitiHRESULTVarFormatDateTime(_In_ LPVARIANT pvarIn, _In_ int iNamedFormat, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
tstuituiiHRESULTVarFormatFromTokens(_In_ LPVARIANT pvarIn, _In_opt_ LPOLESTR pstrFormat, _In_ LPBYTE pbTokCur, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut, _In_ LCID lcid)
tiiiiuitiHRESULTVarFormatNumber(_In_ LPVARIANT pvarIn, _In_ int iNumDig, _In_ int iIncLead, _In_ int iUseParens, _In_ int iGroup, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
tiiiiuitiHRESULTVarFormatPercent(_In_ LPVARIANT pvarIn, _In_ int iNumDig, _In_ int iIncLead, _In_ int iUseParens, _In_ int iGroup, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
haiHRESULTVarI1FromBool(_In_ VARIANT_BOOL boolIn, _Out_ CHAR *pcOut)
i6aiHRESULTVarI1FromCy(_In_ CY cyIn, _Out_ CHAR *pcOut)
daiHRESULTVarI1FromDate(_In_ DATE dateIn, _Out_ CHAR *pcOut)
taiHRESULTVarI1FromDec(_In_ const DECIMAL *pdecIn, _Out_ CHAR *pcOut)
tuiaiHRESULTVarI1FromDisp(_In_ IDispatch *pdispIn, _In_ LCID lcid, _Out_ CHAR *pcOut)
haiHRESULTVarI1FromI2(_In_ SHORT uiIn, _Out_ CHAR *pcOut)
iaiHRESULTVarI1FromI4(_In_ LONG lIn, _Out_ CHAR *pcOut)
i6aiHRESULTVarI1FromI8(_In_ LONG64 i64In, _Out_ CHAR *pcOut)
faiHRESULTVarI1FromR4(_In_ FLOAT fltIn, _Out_ CHAR *pcOut)
daiHRESULTVarI1FromR8(_In_ DOUBLE dblIn, _Out_ CHAR *pcOut)
suiuiaiHRESULTVarI1FromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ CHAR *pcOut)
ucaiHRESULTVarI1FromUI1(_In_ BYTE bIn, _Out_ CHAR *pcOut)
uhaiHRESULTVarI1FromUI2(_In_ USHORT uiIn, _Out_ CHAR *pcOut)
uiaiHRESULTVarI1FromUI4(_In_ ULONG ulIn, _Out_ CHAR *pcOut)
ui6aiHRESULTVarI1FromUI8(_In_ ULONG64 i64In, _Out_ CHAR *pcOut)
htiHRESULTVarI2FromBool(_In_ VARIANT_BOOL boolIn, _Out_ SHORT *psOut)
i6tiHRESULTVarI2FromCy(_In_ CY cyIn, SHORT *psOut)
dtiHRESULTVarI2FromDate(_In_ DATE dateIn, _Out_ SHORT *psOut)
ttiHRESULTVarI2FromDec(_In_ const DECIMAL *pdecIn, _Out_ SHORT *psOut)
tuitiHRESULTVarI2FromDisp(IDispatch *pdispIn, _In_ LCID lcid, _Out_ SHORT *psOut)
ctiHRESULTVarI2FromI1(_In_ CHAR cIn, _Out_ SHORT *psOut)
itiHRESULTVarI2FromI4(_In_ LONG lIn, _Out_ SHORT *psOut)
i6tiHRESULTVarI2FromI8(_In_ LONG64 i64In, _Out_ SHORT *psOut)
ftiHRESULTVarI2FromR4(_In_ FLOAT fltIn, _Out_ SHORT *psOut)
dtiHRESULTVarI2FromR8(_In_ DOUBLE dblIn, _Out_ SHORT *psOut)
suiuitiHRESULTVarI2FromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ SHORT *psOut)
uctiHRESULTVarI2FromUI1(_In_ BYTE bIn, _Out_ SHORT *psOut)
uhtiHRESULTVarI2FromUI2(_In_ USHORT uiIn, _Out_ SHORT *psOut)
uitiHRESULTVarI2FromUI4(_In_ ULONG ulIn, _Out_ SHORT *psOut)
ui6tiHRESULTVarI2FromUI8(_In_ ULONG64 ui64In, _Out_ SHORT *psOut)
htiHRESULTVarI4FromBool(_In_ VARIANT_BOOL boolIn, _Out_ LONG *plOut)
i6tiHRESULTVarI4FromCy(_In_ CY cyIn, _Out_ LONG *plOut)
dtiHRESULTVarI4FromDate(_In_ DATE dateIn, _Out_ LONG *plOut)
ttiHRESULTVarI4FromDec(_In_ const DECIMAL *pdecIn, _Out_ LONG *plOut)
tuitiHRESULTVarI4FromDisp(IDispatch *pdispIn, _In_ LCID lcid, _Out_ LONG *plOut)
ctiHRESULTVarI4FromI1(_In_ CHAR cIn, _Out_ LONG *plOut)
htiHRESULTVarI4FromI2(_In_ SHORT sIn, _Out_ LONG *plOut)
i6tiHRESULTVarI4FromI8(_In_ LONG64 i64In, _Out_ LONG *plOut)
ftiHRESULTVarI4FromR4(_In_ FLOAT fltIn, _Out_ LONG *plOut)
dtiHRESULTVarI4FromR8(_In_ DOUBLE dblIn, _Out_ LONG *plOut)
suiuitiHRESULTVarI4FromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ LONG *plOut)
uctiHRESULTVarI4FromUI1(_In_ BYTE bIn, _Out_ LONG *plOut)
uhtiHRESULTVarI4FromUI2(_In_ USHORT uiIn, _Out_ LONG *plOut)
uitiHRESULTVarI4FromUI4(_In_ ULONG ulIn, _Out_ LONG *plOut)
ui6tiHRESULTVarI4FromUI8(_In_ ULONG64 ui64In, _Out_ LONG *plOut)
htiHRESULTVarI8FromBool(_In_ VARIANT_BOOL boolIn, _Out_ LONG64 *pi64Out)
i6tiHRESULTVarI8FromCy(_In_ CY cyIn, _Out_ LONG64 *pi64Out)
dtiHRESULTVarI8FromDate(_In_ DATE dateIn, _Out_ LONG64 *pi64Out)
ttiHRESULTVarI8FromDec(_In_ const DECIMAL *pdecIn, _Out_ LONG64 *pi64Out)
tuitiHRESULTVarI8FromDisp(IDispatch *pdispIn, _In_ LCID lcid, _Out_ LONG64 *pi64Out)
ctiHRESULTVarI8FromI1(_In_ CHAR cIn, _Out_ LONG64 *pi64Out)
htiHRESULTVarI8FromI2(_In_ SHORT sIn, _Out_ LONG64 *pi64Out)
ftiHRESULTVarI8FromR4(_In_ FLOAT fltIn, _Out_ LONG64 *pi64Out)
dtiHRESULTVarI8FromR8(_In_ DOUBLE dblIn, _Out_ LONG64 *pi64Out)
suiuitiHRESULTVarI8FromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ unsigned long dwFlags, _Out_ LONG64 *pi64Out)
uctiHRESULTVarI8FromUI1(_In_ BYTE bIn, _Out_ LONG64 *pi64Out)
uhtiHRESULTVarI8FromUI2(_In_ USHORT uiIn, _Out_ LONG64 *pi64Out)
uitiHRESULTVarI8FromUI4(_In_ ULONG ulIn, _Out_ LONG64 *pi64Out)
ui6tiHRESULTVarI8FromUI8(_In_ ULONG64 ui64In, _Out_ LONG64 *pi64Out)
ttiVOIDVARIANT_UserFree(_In_ unsigned long *pFlags, _In_ VARIANT *pVariant)
tattunsignedchar*VARIANT_UserMarshal(_In_ unsigned long *pFlags, _Inout_ unsigned char *pBuffer, _In_ VARIANT *pVariant)
tuituiunsignedlongVARIANT_UserSize(_In_ unsigned long *pFlags, _In_ unsigned long Offset, _In_ VARIANT *pVariant)
tattunsignedchar*VARIANT_UserUnmarshal(_In_ unsigned long *pFlags, _In_ unsigned char *pBuffer, _Out_ VARIANT *pVariant)
ttuhuhiHRESULTVariantChangeType(_Out_ VARIANTARG *pvargDest, _In_ const VARIANTARG *pvarSrc, _In_ USHORT wFlags, _In_ VARTYPE vt)
ttuiuhuhiHRESULTVariantChangeTypeEx(_Out_ VARIANTARG *pvargDest, _In_ const VARIANTARG *pvarSrc, _In_ LCID lcid, _In_ USHORT wFlags, _In_ VARTYPE vt)
tiHRESULTVariantClear(_Inout_ VARIANTARG *pvarg)
ttiHRESULTVariantCopy(_Out_ VARIANTARG *pvargDest, _In_ const VARIANTARG *pvargSrc)
ttiHRESULTVariantCopyInd(_Out_ VARIANT *pvarDest, _In_ const VARIANTARG *pvargSrc)
tiVOIDVariantInit(_Out_ VARIANTARG *pvarg)
dttiintVariantTimeToDosDateTime(_In_ DOUBLE vtime, _Out_ USHORT *pwDosDate, _Out_ USHORT *pwDosTime)
dtiintVariantTimeToSystemTime(_In_ DOUBLE vtime, _Out_ LPSYSTEMTIME lpSystemTime)
tttiHRESULTVarIdiv(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
tttiHRESULTVarImp(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
ttiHRESULTVarInt(_In_ LPVARIANT pvarIn, _Out_ LPVARIANT pvarResult)
tttiHRESULTVarMod(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
iiuitiHRESULTVarMonthName(_In_ int iMonth, _In_ int fAbbrev, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
tttiHRESULTVarMul(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
ttiHRESULTVarNeg(_In_ LPVARIANT pvarIn, _Out_ LPVARIANT pvarResult)
ttiHRESULTVarNot(_In_ LPVARIANT pvarIn, _Out_ LPVARIANT pvarResult)
ttuitiHRESULTVarNumFromParseNum(_In_ NUMPARSE *pnumprs, _In_ BYTE *rgbDig, _In_ ULONG dwVtBits, _Out_ VARIANT *pvar)
tttiHRESULTVarOr(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
suiuittiHRESULTVarParseNumFromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ NUMPARSE *pnumprs, _Out_ BYTE *rgbDig)
tttiHRESULTVarPow(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
fdiHRESULTVarR4CmpR8(_In_ float fltLeft, _In_ double dblRight)
htiHRESULTVarR4FromBool(_In_ VARIANT_BOOL boolIn, _Out_ FLOAT *pfltOut)
i6tiHRESULTVarR4FromCy(_In_ CY cyIn, FLOAT *pfltOut)
dtiHRESULTVarR4FromDate(_In_ DATE dateIn, _Out_ FLOAT *pfltOut)
ttiHRESULTVarR4FromDec(_In_ const DECIMAL *pdecIn, _Out_ FLOAT *pfltOut)
tuitiHRESULTVarR4FromDisp(IDispatch *pdispIn, _In_ LCID lcid, _Out_ FLOAT *pfltOut)
ctiHRESULTVarR4FromI1(_In_ CHAR cIn, _Out_ FLOAT *pfltOut)
htiHRESULTVarR4FromI2(_In_ SHORT sIn, _Out_ FLOAT *pfltOut)
itiHRESULTVarR4FromI4(_In_ LONG lIn, _Out_ FLOAT *pfltOut)
i6tiHRESULTVarR4FromI8(_In_ LONG64 i64In, _Out_ FLOAT *pfltOut)
dtiHRESULTVarR4FromR8(_In_ DOUBLE dblIn, _Out_ FLOAT *pfltOut)
suiuitiHRESULTVarR4FromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ FLOAT *pfltOut)
uctiHRESULTVarR4FromUI1(_In_ BYTE bIn, _Out_ FLOAT *pfltOut)
uhtiHRESULTVarR4FromUI2(_In_ USHORT uiIn, _Out_ FLOAT *pfltOut)
uitiHRESULTVarR4FromUI4(_In_ ULONG ulIn, _Out_ FLOAT *pfltOut)
ui6tiHRESULTVarR4FromUI8(_In_ ULONG64 ui64In, _Out_ FLOAT *pfltOut)
htiHRESULTVarR8FromBool(_In_ VARIANT_BOOL boolIn, _Out_ DOUBLE *pdblOut)
i6tiHRESULTVarR8FromCy(_In_ CY cyIn, DOUBLE *pdblOut)
dtiHRESULTVarR8FromDate(_In_ DATE dateIn, _Out_ DOUBLE *pdblOut)
ttiHRESULTVarR8FromDec(_In_ const DECIMAL *pdecIn, _Out_ DOUBLE *pdblOut)
tuitiHRESULTVarR8FromDisp(IDispatch *pdispIn, _In_ LCID lcid, _Out_ DOUBLE *pdblOut)
ctiHRESULTVarR8FromI1(_In_ CHAR cIn, DOUBLE *pdblOut)
htiHRESULTVarR8FromI2(_In_ SHORT sIn, _Out_ DOUBLE *pdblOut)
itiHRESULTVarR8FromI4(_In_ LONG lIn, _Out_ DOUBLE *pdblOut)
i6tiHRESULTVarR8FromI8(_In_ LONG64 i64In, _Out_ DOUBLE *pdblOut)
ftiHRESULTVarR8FromR4(_In_ FLOAT fltIn, _Out_ DOUBLE *pdblOut)
suiuitiHRESULTVarR8FromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ DOUBLE *pdblOut)
uctiHRESULTVarR8FromUI1(_In_ BYTE bIn, _Out_ DOUBLE *pdblOut)
uhtiHRESULTVarR8FromUI2(_In_ USHORT uiIn, _Out_ DOUBLE *pdblOut)
uitiHRESULTVarR8FromUI4(_In_ ULONG ulIn, _Out_ DOUBLE *pdblOut)
ui6tiHRESULTVarR8FromUI8(_In_ ULONG64 ui64In, _Out_ DOUBLE *pdblOut)
ddtiHRESULTVarR8Pow(_In_ double dblLeft, _In_ double dblRight, _Out_ double *pdblResult)
ditiHRESULTVarR8Round(_In_ double dblIn, _In_ int cDecimals, _Out_ double *pdblResult)
titiHRESULTVarRound(_In_ LPVARIANT pvarIn, _In_ int cDecimals, _Out_ LPVARIANT pvarResult)
tttiHRESULTVarSub(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
stiiiuitiHRESULTVarTokenizeFormatString(_In_opt_ LPOLESTR pstrFormat, _Inout_ LPBYTE rgbTok, _In_ int cbTok, _In_ int iFirstDay, _In_ int iFirstWeek, _In_ LCID lcid, _In_opt_ int *pcbActual)
duitiHRESULTVarUdateFromDate(_In_ DATE dateIn, _In_ ULONG dwFlags, _Out_ UDATE *pudateOut)
htiHRESULTVarUI1FromBool(_In_ VARIANT_BOOL boolIn, _Out_ BYTE *pbOut)
i6tiHRESULTVarUI1FromCy(_In_ CY cyIn, _Out_ BYTE *pbOut)
dtiHRESULTVarUI1FromDate(_In_ DATE dateIn, _Out_ BYTE *pbOut)
ttiHRESULTVarUI1FromDec(_In_ const DECIMAL *pdecIn, _Out_ BYTE *pbOut)
tuitiHRESULTVarUI1FromDisp(IDispatch *pdispIn, _In_ LCID lcid, _Out_ BYTE *pbOut)
ctiHRESULTVarUI1FromI1(_In_ CHAR cIn, _Out_ BYTE *pbOut)
htiHRESULTVarUI1FromI2(_In_ SHORT sIn, _Out_ BYTE *pbOut)
itiHRESULTVarUI1FromI4(_In_ LONG lIn, _Out_ BYTE *pbOut)
i6tiHRESULTVarUI1FromI8(_In_ LONG64 i64In, _Out_ BYTE *pbOut)
ftiHRESULTVarUI1FromR4(_In_ FLOAT fltIn, BYTE *pbOut)
dtiHRESULTVarUI1FromR8(_In_ DOUBLE dblIn, _Out_ BYTE *pbOut)
suiuitiHRESULTVarUI1FromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ BYTE *pbOut)
uhtiHRESULTVarUI1FromUI2(_In_ USHORT uiIn, _Out_ BYTE *pbOut)
uitiHRESULTVarUI1FromUI4(_In_ ULONG ulIn, _Out_ BYTE *pbOut)
ui6tiHRESULTVarUI1FromUI8(_In_ ULONG64 ui64In, _Out_ BYTE *pbOut)
htiHRESULTVarUI2FromBool(_In_ VARIANT_BOOL boolIn, _Out_ USHORT *puiOut)
i6tiHRESULTVarUI2FromCy(_In_ CY cyIn, _Out_ USHORT *puiOut)
dtiHRESULTVarUI2FromDate(_In_ DATE dateIn, _Out_ USHORT *puiOut)
ttiHRESULTVarUI2FromDec(_In_ const DECIMAL *pdecIn, _Out_ USHORT *puiOut)
tuitiHRESULTVarUI2FromDisp(_In_ IDispatch *pdispIn, _In_ LCID lcid, _Out_ USHORT *puiOut)
ctiHRESULTVarUI2FromI1(_In_ CHAR cIn, _Out_ USHORT *puiOut)
htiHRESULTVarUI2FromI2(_In_ SHORT uiIn, _Out_ USHORT *puiOut)
itiHRESULTVarUI2FromI4(_In_ LONG lIn, _Out_ USHORT *puiOut)
i6tiHRESULTVarUI2FromI8(_In_ LONG64 i64In, _Out_ USHORT *puiOut)
ftiHRESULTVarUI2FromR4(_In_ FLOAT fltIn, _Out_ USHORT *puiOut)
dtiHRESULTVarUI2FromR8(_In_ DOUBLE dblIn, USHORT *puiOut)
suiuitiHRESULTVarUI2FromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ USHORT *puiOut)
uctiHRESULTVarUI2FromUI1(_In_ BYTE bIn, _Out_ USHORT *puiOut)
uitiHRESULTVarUI2FromUI4(_In_ ULONG ulIn, _Out_ USHORT *puiOut)
ui6tiHRESULTVarUI2FromUI8(_In_ ULONG64 i64In, _Out_ USHORT *puiOut)
htiHRESULTVarUI4FromBool(_In_ VARIANT_BOOL boolIn, _Out_ ULONG *pulOut)
i6tiHRESULTVarUI4FromCy(_In_ CY cyIn, _Out_ ULONG *pulOut)
dtiHRESULTVarUI4FromDate(_In_ DATE dateIn, _Out_ ULONG *pulOut)
ttiHRESULTVarUI4FromDec(_In_ const DECIMAL *pdecIn, _Out_ ULONG *pulOut)
tuitiHRESULTVarUI4FromDisp(_In_ IDispatch *pdispIn, _In_ LCID lcid, _Out_ ULONG *pulOut)
ctiHRESULTVarUI4FromI1(_In_ CHAR cIn, _Out_ ULONG *pulOut)
htiHRESULTVarUI4FromI2(_In_ SHORT uiIn, _Out_ ULONG *pulOut)
itiHRESULTVarUI4FromI4(_In_ LONG lIn, _Out_ ULONG *pulOut)
i6tiHRESULTVarUI4FromI8(_In_ LONG64 i64In, _Out_ ULONG *plOut)
ftiHRESULTVarUI4FromR4(_In_ FLOAT fltIn, _Out_ ULONG *pulOut)
dtiHRESULTVarUI4FromR8(_In_ DOUBLE dblIn, _Out_ ULONG *pulOut)
suiuitiHRESULTVarUI4FromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ ULONG dwFlags, _Out_ ULONG *pulOut)
uctiHRESULTVarUI4FromUI1(_In_ BYTE bIn, _Out_ ULONG *pulOut)
uhtiHRESULTVarUI4FromUI2(_In_ USHORT uiIn, _Out_ ULONG *pulOut)
ui6tiHRESULTVarUI4FromUI8(_In_ ULONG64 ui64In, _Out_ ULONG *plOut)
hui6iHRESULTVarUI8FromBool(_In_ VARIANT_BOOL boolIn, _Out_ ULONG64 *pi64Out)
i6ui6iHRESULTVarUI8FromCy(_In_ CY cyIn, _Out_ ULONG64 *pi64Out)
dui6iHRESULTVarUI8FromDate(_In_ DATE dateIn, _Out_ ULONG64 *pi64Out)
tui6iHRESULTVarUI8FromDec(_In_ const DECIMAL *pdecIn, _Out_ ULONG64 *pi64Out)
tuiui6iHRESULTVarUI8FromDisp(_In_ IDispatch *pdispIn, _In_ LCID lcid, _Out_ ULONG64 *pi64Out)
cui6iHRESULTVarUI8FromI1(_In_ CHAR cIn, _Out_ ULONG64 *pi64Out)
hui6iHRESULTVarUI8FromI2(_In_ SHORT sIn, _Out_ ULONG64 *pi64Out)
i6ui6iHRESULTVarUI8FromI8(_In_ LONG64 ui64In, _Out_ ULONG64 *pi64Out)
fui6iHRESULTVarUI8FromR4(_In_ FLOAT fltIn, _Out_ ULONG64 *pi64Out)
dui6iHRESULTVarUI8FromR8(_In_ DOUBLE dblIn, _Out_ ULONG64 *pi64Out)
suiuiui6iHRESULTVarUI8FromStr(_In_ LPCOLESTR strIn, _In_ LCID lcid, _In_ unsigned long dwFlags, _Out_ ULONG64 *pi64Out)
ucui6iHRESULTVarUI8FromUI1(_In_ BYTE bIn, _Out_ ULONG64 *pi64Out)
uhui6iHRESULTVarUI8FromUI2(_In_ USHORT uiIn, _Out_ ULONG64 *pi64Out)
uiui6iHRESULTVarUI8FromUI4(_In_ ULONG ulIn, _Out_ ULONG64 *pi64Out)
iiiuitiHRESULTVarWeekdayName(_In_ int iWeekday, _In_ int fAbbrev, _In_ int iFirstDay, _In_ ULONG dwFlags, _Out_ BSTR *pbstrOut)
tttiHRESULTVarXor(_In_ LPVARIANT pvarLeft, _In_ LPVARIANT pvarRight, _Out_ LPVARIANT pvarResult)
stiHRESULTVectorFromBstr(_In_ BSTR bstr, _Out_ SAFEARRAY **ppsa)

Opengl32.dll

ifiVOIDglAccum(GLenum op, GLfloat value)
ifiVOIDglAlphaFunc(GLenum func, GLclampf ref)
ittiGLbooleanglAreTexturesResident(GLsizei n, const GLuint *textures, GLboolean *residences)
iiVOIDglArrayElement(GLint index)
iiVOIDglBegin(GLenum mode)
iuiiVOIDglBindTexture(GLenum target, GLuint texture)
iifffftiVOIDglBitmap(GLSizei width, GLSizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap)
iiiVOIDglBlendFunc(GLenum sfactor, GLenum dfactor)
uiiVOIDglCallList(GLuint list)
iitiVOIDglCallLists(GLsizei n, GLenum type, const GLvoid *lists)
uiiVOIDglClear(GLbitfield mask)
ffffiVOIDglClearAccum(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
ffffiVOIDglClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
diVOIDglClearDepth(GLclampd depth)
fiVOIDglClearIndex(GLfloat c)
iiVOIDglClearStencil(GLint s)
itiVOIDglClipPlane(GLenum plane, const GLdouble *equation)
ccciVOIDglColor3b(GLbyte red, GLbyte green, GLbyte blue)
tiVOIDglColor3bv(const GLbyte *v)
dddiVOIDglColor3d(GLdouble red, GLdouble green, GLdouble blue)
tiVOIDglColor3dv(const GLdouble *v)
fffiVOIDglColor3f(GLfloat red, GLfloat green, GLfloat blue)
tiVOIDglColor3fv(const GLfloat *v)
iiiiVOIDglColor3i(GLint red, GLint green, GLint blue)
tiVOIDglColor3iv(const GLint *v)
hhhiVOIDglColor3s(GLshort red, GLshort green, GLshort blue)
tiVOIDglColor3sv(const GLshort *v)
ccciVOIDglColor3ub(GLubyte red, GLubyte green, GLubyte blue)
tiVOIDglColor3ubv(const GLubyte *v)
uiuiuiiVOIDglColor3ui(GLuint red, GLuint green, GLuint blue)
tiVOIDglColor3uiv(const GLuint *v)
hhhiVOIDglColor3us(GLushort red, GLushort green, GLushort blue)
tiVOIDglColor3usv(const GLushort *v)
cccciVOIDglColor4b(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha)
tiVOIDglColor4bv(const GLbyte *v)
ddddiVOIDglColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha)
tiVOIDglColor4dv(const GLdouble *v)
ffffiVOIDglColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
tiVOIDglColor4fv(const GLfloat *v)
iiiiiVOIDglColor4i(GLint red, GLint green, GLint blue, GLint alpha)
tiVOIDglColor4iv(const GLint *v)
hhhhiVOIDglColor4s(GLshort red, GLshort green, GLshort blue, GLshort alpha)
tiVOIDglColor4sv(const GLshort *v)
cccciVOIDglColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha)
tiVOIDglColor4ubv(const GLubyte *v)
uiuiuiuiiVOIDglColor4ui(GLuint red, GLuint green, GLuint blue, GLuint alpha)
tiVOIDglColor4uiv(const GLuint *v)
hhhhiVOIDglColor4us(GLushort red, GLushort green, GLushort blue, GLushort alpha)
tiVOIDglColor4usv(const GLushort *v)
iiiiiVOIDglColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha)
iiiVOIDglColorMaterial(GLenum face, GLenum mode)
iiitiVOIDglColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
iiiiiiVOIDglCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type)
iiiiiiiiVOIDglCopyTexImage1D(GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLint border)
iiiiiiiiiVOIDglCopyTexImage2D(GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
iiiiiiiVOIDglCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width)
iiiiiiiiiVOIDglCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
iiVOIDglCullFace(GLenum mode)
uiiiVOIDglDeleteLists(GLuint list, GLsizei range)
itiVOIDglDeleteTextures(GLsizei n, const GLuint *textures)
iiVOIDglDepthFunc(GLenum func)
iiVOIDglDepthMask(GLboolean flag)
ddiVOIDglDepthRange(GLclampd zNear, GLclampd zFar)
iiVOIDglDisable(GLenum cap)
iiVOIDglDisableClientState(GLenum array)
iiiiVOIDglDrawArrays(GLenum mode, GLint first, GLsizei count)
iiVOIDglDrawBuffer(GLenum mode)
iiitiVOIDglDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices)
iiiitiVOIDglDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
iiVOIDglEdgeFlag(GLboolean flag)
itiVOIDglEdgeFlagPointer(GLsizei stride, const GLvoid *pointer)
tiVOIDglEdgeFlagv(const GLboolean *flag)
iiVOIDglEnable(GLenum cap)
iiVOIDglEnableClientState(GLenum array)
iVOIDglEnd(void)
iVOIDglEndList(void)
diVOIDglEvalCoord1d(GLdouble u)
tiVOIDglEvalCoord1dv(const GLdouble *u)
fiVOIDglEvalCoord1f(GLfloat u)
tiVOIDglEvalCoord1fv(const GLfloat *u)
ddiVOIDglEvalCoord2d(GLdouble u, GLdouble v)
tiVOIDglEvalCoord2dv(const GLdouble *u)
ffiVOIDglEvalCoord2f(GLfloat u, GLfloat v)
tiVOIDglEvalCoord2fv(const GLfloat *u)
iiiiVOIDglEvalMesh1(GLenum mode, GLint i1, GLint i2)
iiiiiiVOIDglEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2)
iiVOIDglEvalPoint1(GLint i)
iiiVOIDglEvalPoint2(GLint i, GLint j)
iitiVOIDglFeedbackBuffer(GLsizei size, GLenum type, GLfloat *buffer)
iVOIDglFinish(void)
iVOIDglFlush(void)
ifiVOIDglFogf(GLenum pname, GLfloat param)
itiVOIDglFogfv(GLenum pname, const GLfloat *params)
iiiVOIDglFogi(GLenum pname, GLint param)
itiVOIDglFogiv(GLenum pname, const GLint *params)
iiVOIDglFrontFace(GLenum mode)
ddddddiVOIDglFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
iuiGLuintglGenLists(GLsizei range)
itiVOIDglGenTextures(GLsizei n, GLuint *textures)
itiVOIDglGetBooleanv(GLenum pname, GLboolean *params)
itiVOIDglGetClipPlane(GLenum plane, GLdouble *equation)
itiVOIDglGetDoublev(GLenum pname, GLboolean *params)
iGLenumglGetError(void)
itiVOIDglGetFloatv(GLenum pname, GLboolean *params)
itiVOIDglGetIntegerv(GLenum pname, GLboolean *params)
iitiVOIDglGetLightfv(GLenum light, GLenum pname, GLfloat *params)
iitiVOIDglGetLightiv(GLenum light, GLenum pname, GLint *params)
iitiVOIDglGetMapdv(GLenum target, GLenum query, GLdouble *v)
iitiVOIDglGetMapfv(GLenum target, GLenum query, GLfloat *v)
iitiVOIDglGetMapiv(GLenum target, GLenum query, GLint *v)
iitiVOIDglGetMaterialfv(GLenum face, GLenum pname, GLfloat *params)
iitiVOIDglGetMaterialiv(GLenum face, GLenum pname, GLint *params)
itiVOIDglGetPixelMapfv(GLenum map, GLfloat *values)
itiVOIDglGetPixelMapuiv(GLenum map, GLuint *values)
itiVOIDglGetPixelMapusv(GLenum map, GLushort *values)
itiVOIDglGetPointerv(GLenum pname, GLvoid **params)
tiVOIDglGetPolygonStipple(GLubyte *mask)
itGLubyte*glGetString(GLenum name)
iitiVOIDglGetTexEnvfv(GLenum target, GLenum pname, GLfloat *params)
iitiVOIDglGetTexEnviv(GLenum target, GLenum pname, GLint *params)
iitiVOIDglGetTexGendv(GLenum coord, GLenum pname, GLdouble *params)
iitiVOIDglGetTexGenfv(GLenum coord, GLenum pname, GLfloat *params)
iitiVOIDglGetTexGeniv(GLenum coord, GLenum pname, GLint *params)
iiiitiVOIDglGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels)
iiitiVOIDglGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params)
iiitiVOIDglGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params)
iitiVOIDglGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params)
iitiVOIDglGetTexParameteriv(GLenum target, GLenum pname, GLint *params)
iiiVOIDglHint(GLenum target, GLenum mode)
diVOIDglIndexd(GLdouble c)
tiVOIDglIndexdv(const GLdouble *c)
fiVOIDglIndexf(GLfloat c)
tiVOIDglIndexfv(const GLfloat *c)
iiVOIDglIndexi(GLint c)
tiVOIDglIndexiv(const GLint *c)
uiiVOIDglIndexMask(GLuint mask)
iitiVOIDglIndexPointer(GLenum type, GLsizei stride, const GLvoid *pointer)
hiVOIDglIndexs(GLshort c)
tiVOIDglIndexsv(const GLshort *c)
iVOIDglInitNames(void)
iitiVOIDglInterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer)
iiGLbooleanglIsEnabled(GLenum cap)
uiiGLbooleanglIsList(GLuint list)
uiiGLbooleanglIsTexture(GLuint texture)
iifiVOIDglLightf(GLenum light, GLenum pname, GLfloat param)
iitiVOIDglLightfv(GLenum light, GLenum pname, const GLfloat *params)
iiiiVOIDglLighti(GLenum light, GLenum pname, GLint param)
iitiVOIDglLightiv(GLenum light, GLenum pname, const GLint *params)
itiVOIDglLightModelf(GLenum pname, GLfloat *param)
itiVOIDglLightModelfv(GLenum pname, const GLfloat *params)
iiiVOIDglLightModeli(GLenum pname, GLint param)
itiVOIDglLightModeliv(GLenum pname, const GLint *params)
ihiVOIDglLineStipple(GLint factor, GLushort pattern)
fiVOIDglLineWidth(GLfloat width)
uiiVOIDglListBase(GLuint base)
iVOIDglLoadIdentity(void)
tiVOIDglLoadMatrixd(const GLdouble *m)
tiVOIDglLoadMatrixf(const GLfloat *m)
uiiVOIDglLoadName(GLuint name)
iiVOIDglLogicOp(GLenum opcode)
iddiitiVOIDglMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points)
iffiitiVOIDglMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points)
iddiiddiitiVOIDglMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points)
iffiiffiitiVOIDglMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points)
iddiVOIDglMapGrid1d(GLint un, GLdouble u1, GLdouble u2)
iffiVOIDglMapGrid1f(GLint un, GLfloat u1, GLfloat u2)
iddiddiVOIDglMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2)
iffiffiVOIDglMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2)
iifiVOIDglMaterialf(GLenum face, GLenum pname, GLfloat param)
iitiVOIDglMaterialfv(GLenum face, GLenum pname, const GLfloat *params)
iiiiVOIDglMateriali(GLenum face, GLenum pname, GLint param)
iitiVOIDglMaterialiv(GLenum face, GLenum pname, const GLint *params)
iiVOIDglMatrixMode(GLenum mode)
tiVOIDglMultMatrixd(const GLdouble *m)
tiVOIDglMultMatrixf(const GLdouble *m)
uiiiVOIDglNewList(GLuint list, GLenum mode)
ccciVOIDglNormal3b(GLbyte nx, GLbyte ny, GLbyte nz)
tiVOIDglNormal3bv(const GLbyte *v)
dddiVOIDglNormal3d(GLdouble nx, GLdouble ny, GLdouble nz)
tiVOIDglNormal3dv(const GLdouble *v)
fffiVOIDglNormal3f(GLfloat nx, GLfloat ny, GLfloat nz)
tiVOIDglNormal3fv(const GLfloat *v)
iiiiVOIDglNormal3i(GLint nx, GLint ny, GLint nz)
tiVOIDglNormal3iv(const GLint *v)
hhhiVOIDglNormal3s(GLshort nx, GLshort ny, GLshort nz)
tiVOIDglNormal3sv(const GLshort *v)
iitiVOIDglNormalPointer(GLenum type, GLsizei stride, const GLvoid *pointer)
ddddddiVOIDglOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
fiVOIDglPassThrough(GLfloat token)
iitiVOIDglPixelMapfv(GLenum map, GLsizei mapsize, const GLfloat *values)
iitiVOIDglPixelMapuiv(GLenum map, GLsizei mapsize, const GLuint *values)
iitiVOIDglPixelMapusv(GLenum map, GLsizei mapsize, const GLushort *values)
ifiVOIDglPixelStoref(GLenum pname, GLfloat param)
iiiVOIDglPixelStorei(GLenum pname, GLint param)
ifiVOIDglPixelTransferf(GLenum pname, GLfloat param)
iiiVOIDglPixelTransferi(GLenum pname, GLint param)
ffiVOIDglPixelZoom(GLfloat xfactor, GLfloat yfactor)
fiVOIDglPointSize(GLfloat size)
iiiVOIDglPolygonMode(GLenum face, GLenum mode)
ffiVOIDglPolygonOffset(GLfloat factor, GLfloat units)
tiVOIDglPolygonStipple(const GLubyte *mask)
iVOIDglPopAttrib(void)
iVOIDglPopClientAttrib(void)
iVOIDglPopMatrix(void)
iVOIDglPopName(void)
ittiVOIDglPrioritizeTextures(GLsizei n, const GLuint *textures, const GLclampf *priorities)
uiiVOIDglPushAttrib(GLbitfield mask)
uiiVOIDglPushClientAttrib(GLbitfield mask)
iVOIDglPushMatrix(void)
uiiVOIDglPushName(GLuint name)
ddiVOIDglRasterPos2d(GLdouble x, GLdouble y)
tiVOIDglRasterPos2dv(const GLdouble *v)
ffiVOIDglRasterPos2f(GLfloat x, GLfloat y)
tiVOIDglRasterPos2fv(const GLfloat *v)
iiiVOIDglRasterPos2i(GLint x, GLint y)
tiVOIDglRasterPos2iv(const GLint *v)
hhiVOIDglRasterPos2s(GLshort x, GLshort y)
tiVOIDglRasterPos2sv(const GLshort *v)
dddiVOIDglRasterPos3d(GLdouble x, GLdouble y, GLdouble z)
tiVOIDglRasterPos3dv(const GLdouble *v)
fffiVOIDglRasterPos3f(GLfloat x, GLfloat y, GLfloat z)
tiVOIDglRasterPos3fv(const GLfloat *v)
iiiiVOIDglRasterPos3i(GLint x, GLint y, GLint z)
tiVOIDglRasterPos3iv(const GLint *v)
hhhiVOIDglRasterPos3s(GLshort x, GLshort y, GLshort z)
tiVOIDglRasterPos3sv(const GLshort *v)
ddddiVOIDglRasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w)
tiVOIDglRasterPos4dv(const GLdouble *v)
ffffiVOIDglRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w)
tiVOIDglRasterPos4fv(const GLfloat *v)
iiiiiVOIDglRasterPos4i(GLint x, GLint y, GLint z, GLint w)
tiVOIDglRasterPos4iv(const GLint *v)
hhhhiVOIDglRasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w)
tiVOIDglRasterPos4sv(const GLshort *v)
iiVOIDglReadBuffer(GLenum mode)
iiiiiitiVOIDglReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels)
ddddiVOIDglRectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2)
ttiVOIDglRectdv(const GLdouble *v1, const GLdouble *v2)
ffffiVOIDglRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2)
ttiVOIDglRectfv(const GLfloat *v1, const GLfloat *v2)
iiiiiVOIDglRecti(GLint x1, GLint y1, GLint x2, GLint y2)
ttiVOIDglRectiv(const GLint *v1, const GLint *v2)
hhhhiVOIDglRects(GLshort x1, GLshort y1, GLshort x2, GLshort y2)
ttiVOIDglRectsv(const GLshort *v1, const GLshort *v2)
iiGLintglRenderMode(GLenum mode)
ddddiVOIDglRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z)
ffffiVOIDglRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z)
dddiVOIDglScaled(GLdouble x, GLdouble y, GLdouble z)
fffiVOIDglScalef(GLfloat x, GLfloat y, GLfloat z)
iiiiiVOIDglScissor(GLint x, GLint y, GLsizei width, GLsizei height)
itiVOIDglSelectBuffer(GLsizei size, GLuint *buffer)
iiVOIDglShadeModel(GLenum mode)
iiuiiVOIDglStencilFunc(GLenum func, GLint ref, GLuint mask)
uiiVOIDglStencilMask(GLuint mask)
iiiiVOIDglStencilOp(GLenum fail, GLenum zfail, GLenum zpass)
diVOIDglTexCoord1d(GLdouble s)
tiVOIDglTexCoord1dv(const GLdouble *v)
fiVOIDglTexCoord1f(GLfloat s)
tiVOIDglTexCoord1fv(const GLfloat *v)
iiVOIDglTexCoord1i(GLint s)
tiVOIDglTexCoord1iv(const GLint *v)
hiVOIDglTexCoord1s(GLshort s)
tiVOIDglTexCoord1sv(const GLshort *v)
ddiVOIDglTexCoord2d(GLdouble s, GLdouble t)
tiVOIDglTexCoord2dv(const GLdouble *v)
tiVOIDglTexCoord2fv(const GLfloat *v)
iiiVOIDglTexCoord2i(GLint s, GLint t)
tiVOIDglTexCoord2iv(const GLint *v)
hhiVOIDglTexCoord2s(GLshort s, GLshort t)
tiVOIDglTexCoord2sv(const GLshort *v)
dddiVOIDglTexCoord3d(GLdouble s, GLdouble t, GLdouble r)
tiVOIDglTexCoord3dv(const GLdouble *v)
fffiVOIDglTexCoord3f(GLfloat s, GLfloat t, GLfloat r)
tiVOIDglTexCoord3fv(const GLfloat *v)
iiiiVOIDglTexCoord3i(GLint s, GLint t, GLint r)
tiVOIDglTexCoord3iv(const GLint *v)
hhhiVOIDglTexCoord3s(GLshort s, GLshort t, GLshort r)
tiVOIDglTexCoord3sv(const GLshort *v)
ddddiVOIDglTexCoord4d(GLdouble s, GLdouble t, GLdouble r, GLdouble q)
tiVOIDglTexCoord4dv(const GLdouble *v)
ffffiVOIDglTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q)
tiVOIDglTexCoord4fv(const GLfloat *v)
iiiiiVOIDglTexCoord4i(GLint s, GLint t, GLint r, GLint q)
tiVOIDglTexCoord4iv(const GLint *v)
hhhhiVOIDglTexCoord4s(GLshort s, GLshort t, GLshort r, GLshort q)
tiVOIDglTexCoord4sv(const GLshort *v)
iiitiVOIDglTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
iifiVOIDglTexEnvf(GLenum target, GLenum pname, GLfloat param)
iitiVOIDglTexEnvfv(GLenum target, GLenum pname, const GLfloat *params)
iiiiVOIDglTexEnvi(GLenum target, GLenum pname, GLint param)
iitiVOIDglTexEnviv(GLenum target, GLenum pname, const GLint *params)
iidiVOIDglTexGend(GLenum coord, GLenum pname, GLdouble param)
iitiVOIDglTexGendv(GLenum coord, GLenum pname, const GLdouble *params)
iifiVOIDglTexGenf(GLenum coord, GLenum pname, GLfloat param)
iitiVOIDglTexGenfv(GLenum coord, GLenum pname, const GLfloat *params)
iiiiVOIDglTexGeni(GLenum coord, GLenum pname, GLint param)
iitiVOIDglTexGeniv(GLenum coord, GLenum pname, const GLint *params)
iiiiiiitiVOIDglTexImage1D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLint format, GLenum type, const GLvoid *pixels)
iiiiiiiitiVOIDglTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLint format, GLenum type, const GLvoid *pixels)
iifiVOIDglTexParameterf(GLenum target, GLenum pname, GLfloat param)
iitiVOIDglTexParameterfv(GLenum target, GLenum pname, const GLfloat *params)
iiiiVOIDglTexParameteri(GLenum target, GLenum pname, GLint param)
iitiVOIDglTexParameteriv(GLenum target, GLenum pname, const GLint *params)
iiiiiitiVOIDglTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels)
iiiiiiiitiVOIDglTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
dddiVOIDglTranslated(GLdouble x, GLdouble y, GLdouble z)
fffiVOIDglTranslatef(GLfloat x, GLfloat y, GLfloat z)
ddiVOIDglVertex2d(GLdouble x, GLdouble y)
tiVOIDglVertex2dv(const GLdouble *v)
ffiVOIDglVertex2f(GLfloat x, GLfloat y)
tiVOIDglVertex2fv(const GLfloat *v)
iiiVOIDglVertex2i(GLint x, GLint y)
tiVOIDglVertex2iv(const GLint *v)
hhiVOIDglVertex2s(GLshort x, GLshort y)
tiVOIDglVertex2sv(const GLshort *v)
dddiVOIDglVertex3d(GLdouble x, GLdouble y, GLdouble z)
tiVOIDglVertex3dv(const GLdouble *v)
fffiVOIDglVertex3f(GLfloat x, GLfloat y, GLfloat z)
tiVOIDglVertex3fv(const GLfloat *v)
iiiiVOIDglVertex3i(GLint x, GLint y, GLint z)
tiVOIDglVertex3iv(const GLint *v)
hhhiVOIDglVertex3s(GLshort x, GLshort y, GLshort z)
tiVOIDglVertex3sv(const GLshort *v)
ddddiVOIDglVertex4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w)
tiVOIDglVertex4dv(const GLdouble *v)
ffffiVOIDglVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w)
tiVOIDglVertex4fv(const GLfloat *v)
iiiiiVOIDglVertex4i(GLint x, GLint y, GLint z, GLint w)
tiVOIDglVertex4iv(const GLint *v)
hhhhiVOIDglVertex4s(GLshort x, GLshort y, GLshort z, GLshort w)
tiVOIDglVertex4sv(const GLshort *v)
iiitiVOIDglVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
iiiiiVOIDglViewport(GLint x, GLint y, GLsizei width, GLsizei height)
ttuiiBOOLwglCopyContext(HGLRC hglrcSrc, HGLRC hglrcDst, UINT mask)
ttHGLRCwglCreateContext(HDC hDC)
titHGLRCwglCreateLayerContext(HDC hdc, int iLayerPlane)
tiBOOLwglDeleteContext(HGLRC hglrc)
tiiuitiBOOLwglDescribeLayerPlane(HDC hdc, int iPixelFormat, int iLayerPlane, UINT nBytes, LPLAYERPLANEDESCRIPTOR plpd)
tHGLRCwglGetCurrentContext(void)
tHDCwglGetCurrentDC(void)
tiiitiintwglGetLayerPaletteEntries(HDC hdc, int iLayerPlane, int iStart, int cEntries, COLORREF *pcr)
atPROCwglGetProcAddress(LPCSTR lpszProc)
ttiBOOLwglMakeCurrent(HDC hdc, HGLRC hglrc)
tiiiBOOLwglRealizeLayerPalette(HDC hdc, int iLayerPlane, BOOL bRealize)
tiiitiintwglSetLayerPaletteEntries(HDC hdc, int iLayerPlane, int iStart, int cEntries, const COLORREF *pcr)
ttiBOOLwglShareLists(HGLRC hglrc1, HGLRC hglrc2)
tuiiBOOLwglSwapLayerBuffers(HDC hdc, UINT fuPlanes)
tuiuiuiiBOOLwglUseFontBitmaps(HDC hdc, DWORD first, DWORD count, DWORD listBase)
tuiuiuiiBOOLwglUseFontBitmapsA(HDC hdc, DWORD first, DWORD count, DWORD listBase)
tuiuiuiiBOOLwglUseFontBitmapsW(HDC hdc, DWORD first, DWORD count, DWORD listBase)
tuiuiuiffitiBOOLwglUseFontOutlines(HDC hdc, DWORD first, DWORD count, DWORD listBase, FLOAT deviation, FLOAT extrusion, int format, LPGLYPHMETRICSFLOAT lpgmf)
tuiuiuiffitiBOOLwglUseFontOutlinesA(HDC hdc, DWORD first, DWORD count, DWORD listBase, FLOAT deviation, FLOAT extrusion, int format, LPGLYPHMETRICSFLOAT lpgmf)
tuiuiuiffitiBOOLwglUseFontOutlinesW(HDC hdc, DWORD first, DWORD count, DWORD listBase, FLOAT deviation, FLOAT extrusion, int format, LPGLYPHMETRICSFLOAT lpgmf)

Rasapi32.dll

tuiDWORDRasClearConnectionStatistics(_In_ HRASCONN hRasConn)
tuiuiDWORDRasClearLinkStatistics(_In_ HRASCONN hRasConn, _In_ DWORD dwSubEntry)
ttuiuiDWORDRasConnectionNotification(_In_ HRASCONN hrasconn, _In_ HANDLE hEvent, _In_ DWORD dwFlags)
ttuiuiDWORDRasConnectionNotificationA(_In_ HRASCONN hrasconn, _In_ HANDLE hEvent, _In_ DWORD dwFlags)
ttuiuiDWORDRasConnectionNotificationW(_In_ HRASCONN hrasconn, _In_ HANDLE hEvent, _In_ DWORD dwFlags)
tsuiDWORDRasCreatePhonebookEntry(_In_ HWND hwnd, _In_ LPCTSTR lpszPhonebook)
tauiDWORDRasCreatePhonebookEntryA(_In_ HWND hwnd, _In_ LPCSTR lpszPhonebook)
twuiDWORDRasCreatePhonebookEntryW(_In_ HWND hwnd, _In_ LPCWSTR lpszPhonebook)
ssuiDWORDRasDeleteEntry(_In_ LPCTSTR lpszPhonebook, _In_ LPCTSTR lpszEntry)
aauiDWORDRasDeleteEntryA(_In_ LPCSTR lpszPhonebook, _In_ LPCSTR lpszEntry)
wwuiDWORDRasDeleteEntryW(_In_ LPCWSTR lpszPhonebook, _In_ LPCWSTR lpszEntry)
ssuiuiDWORDRasDeleteSubEntry(_In_ LPCTSTR lpszPhonebook, _In_ LPCTSTR lpszEntry, _In_ DWORD dwSubEntryId)
aauiuiDWORDRasDeleteSubEntryA(_In_ LPCSTR lpszPhonebook, _In_ LPCSTR lpszEntry, _In_ DWORD dwSubEntryId)
wwuiuiDWORDRasDeleteSubEntryW(_In_ LPCWSTR lpszPhonebook, _In_ LPCWSTR lpszEntry, _In_ DWORD dwSubEntryId)
tstuittuiDWORDRasDial(_In_ LPRASDIALEXTENSIONS lpRasDialExtensions, _In_ LPCTSTR lpszPhonebook, _In_ LPRASDIALPARAMS lpRasDialParams, _In_ DWORD dwNotifierType, _In_ LPVOID lpvNotifier, _Out_ LPHRASCONN lphRasConn)
tatuittuiDWORDRasDialA(_In_ LPRASDIALEXTENSIONS lpRasDialExtensions, _In_ LPCSTR lpszPhonebook, _In_ LPRASDIALPARAMS lpRasDialParams, _In_ DWORD dwNotifierType, _In_ LPVOID lpvNotifier, _Out_ LPHRASCONN lphRasConn)
twtuittuiDWORDRasDialW(_In_ LPRASDIALEXTENSIONS lpRasDialExtensions, _In_ LPCWSTR lpszPhonebook, _In_ LPRASDIALPARAMS lpRasDialParams, _In_ DWORD dwNotifierType, _In_ LPVOID lpvNotifier, _Out_ LPHRASCONN lphRasConn)
tssuiDWORDRasEditPhonebookEntry(_In_ HWND hwnd, _In_ LPCTSTR lpszPhonebook, _In_ LPCTSTR lpszEntryName)
taauiDWORDRasEditPhonebookEntryA(_In_ HWND hwnd, _In_ LPCSTR lpszPhonebook, _In_ LPCSTR lpszEntryName)
twwuiDWORDRasEditPhonebookEntryW(_In_ HWND hwnd, _In_ LPCWSTR lpszPhonebook, _In_ LPCWSTR lpszEntryName)
tttuiDWORDRasEnumAutodialAddresses(_Inout_ LPTSTR *lppAddresses, _Inout_ LPDWORD lpdwcbAddresses, _Out_ LPDWORD lpdwcAddresses)
tttuiDWORDRasEnumAutodialAddressesA(_Inout_ LPSTR *lppAddresses, _Inout_ LPDWORD lpdwcbAddresses, _Out_ LPDWORD lpdwcAddresses)
tttuiDWORDRasEnumAutodialAddressesW(_Inout_ LPWSTR *lppAddresses, _Inout_ LPDWORD lpdwcbAddresses, _Out_ LPDWORD lpdwcAddresses)
tttuiDWORDRasEnumConnections(_Inout_ LPRASCONN lprasconn, _Inout_ LPDWORD lpcb, _Out_ LPDWORD lpcConnections)
tttuiDWORDRasEnumConnectionsA(_Inout_ LPRASCONN lprasconn, _Inout_ LPDWORD lpcb, _Out_ LPDWORD lpcConnections)
tttuiDWORDRasEnumConnectionsW(_Inout_ LPRASCONN lprasconn, _Inout_ LPDWORD lpcb, _Out_ LPDWORD lpcConnections)
tttuiDWORDRasEnumDevices(_In_ LPRASDEVINFO lpRasDevInfo, _Inout_ LPDWORD lpcb, _Out_ LPDWORD lpcDevices)
tttuiDWORDRasEnumDevicesA(_In_ LPRASDEVINFO lpRasDevInfo, _Inout_ LPDWORD lpcb, _Out_ LPDWORD lpcDevices)
tttuiDWORDRasEnumDevicesW(_In_ LPRASDEVINFO lpRasDevInfo, _Inout_ LPDWORD lpcb, _Out_ LPDWORD lpcDevices)
sstttuiDWORDRasEnumEntries(_In_ LPCTSTR reserved, _In_ LPCTSTR lpszPhonebook, _Inout_ LPRASENTRYNAME lprasentryname, _Inout_ LPDWORD lpcb, _Out_ LPDWORD lpcEntries)
aatttuiDWORDRasEnumEntriesA(_In_ LPCSTR reserved, _In_ LPCSTR lpszPhonebook, _Inout_ LPRASENTRYNAME lprasentryname, _Inout_ LPDWORD lpcb, _Out_ LPDWORD lpcEntries)
wwtttuiDWORDRasEnumEntriesW(_In_ LPCWSTR reserved, _In_ LPCWSTR lpszPhonebook, _Inout_ LPRASENTRYNAME lprasentryname, _Inout_ LPDWORD lpcb, _Out_ LPDWORD lpcEntries)
tiVOIDRasFreeEapUserIdentity(_In_ LPRASEAPUSERIDENTITY pRasEapUserIdentity)
tiVOIDRasFreeEapUserIdentityA(_In_ LPRASEAPUSERIDENTITY pRasEapUserIdentity)
tiVOIDRasFreeEapUserIdentityW(_In_ LPRASEAPUSERIDENTITY pRasEapUserIdentity)
sttttuiDWORDRasGetAutodialAddress(_In_ LPCTSTR lpszAddress, _In_ LPDWORD lpdwReserved, _Inout_ LPRASAUTODIALENTRY lpAutoDialEntries, _Inout_ LPDWORD lpdwcbAutoDialEntries, _Out_ LPDWORD lpdwcAutoDialEntries)
attttuiDWORDRasGetAutodialAddressA(_In_ LPCSTR lpszAddress, _In_ LPDWORD lpdwReserved, _Inout_ LPRASAUTODIALENTRY lpAutoDialEntries, _Inout_ LPDWORD lpdwcbAutoDialEntries, _Out_ LPDWORD lpdwcAutoDialEntries)
wttttuiDWORDRasGetAutodialAddressW(_In_ LPCWSTR lpszAddress, _In_ LPDWORD lpdwReserved, _Inout_ LPRASAUTODIALENTRY lpAutoDialEntries, _Inout_ LPDWORD lpdwcbAutoDialEntries, _Out_ LPDWORD lpdwcAutoDialEntries)
uituiDWORDRasGetAutodialEnable(_In_ DWORD dwDialingLocation, _Out_ LPBOOL lpfEnabled)
uituiDWORDRasGetAutodialEnableA(_In_ DWORD dwDialingLocation, _Out_ LPBOOL lpfEnabled)
uituiDWORDRasGetAutodialEnableW(_In_ DWORD dwDialingLocation, _Out_ LPBOOL lpfEnabled)
uittuiDWORDRasGetAutodialParam(_In_ DWORD dwKey, _Out_ LPVOID lpvValue, _Inout_ LPDWORD lpdwcbValue)
uittuiDWORDRasGetAutodialParamA(_In_ DWORD dwKey, _Out_ LPVOID lpvValue, _Inout_ LPDWORD lpdwcbValue)
uittuiDWORDRasGetAutodialParamW(_In_ DWORD dwKey, _Out_ LPVOID lpvValue, _Inout_ LPDWORD lpdwcbValue)
ttuiDWORDRasGetConnectionStatistics(_In_ HRASCONN hRasConn, _Inout_ RAS_STATS *lpStatistics)
ttuiDWORDRasGetConnectStatus(_In_ HRASCONN hrasconn, _Inout_ LPRASCONNSTATUS lprasconnstatus)
ttuiDWORDRasGetConnectStatusA(_In_ HRASCONN hrasconn, _Inout_ LPRASCONNSTATUS lprasconnstatus)
ttuiDWORDRasGetConnectStatusW(_In_ HRASCONN hrasconn, _Inout_ LPRASCONNSTATUS lprasconnstatus)
ttuiDWORDRasGetCountryInfo(_Inout_ LPRASCTRYINFO lpRasCtryInfo, _Inout_ LPDWORD lpdwSize)
ttuiDWORDRasGetCountryInfoA(_Inout_ LPRASCTRYINFO lpRasCtryInfo, _Inout_ LPDWORD lpdwSize)
ttuiDWORDRasGetCountryInfoW(_Inout_ LPRASCTRYINFO lpRasCtryInfo, _Inout_ LPDWORD lpdwSize)
sstuiDWORDRasGetCredentials(_In_ LPCTSTR lpszPhonebook, _In_ LPCTSTR lpszEntry, _Inout_ LPRASCREDENTIALS lpCredentials)
aatuiDWORDRasGetCredentialsA(_In_ LPCSTR lpszPhonebook, _In_ LPCSTR lpszEntry, _Inout_ LPRASCREDENTIALS lpCredentials)
wwtuiDWORDRasGetCredentialsW(_In_ LPCWSTR lpszPhonebook, _In_ LPCWSTR lpszEntry, _Inout_ LPRASCREDENTIALS lpCredentials)
wwttuiDWORDRasGetCustomAuthData(_In_ LPCWSTR pszPhonebook, _In_ LPCWSTR pszEntry, _Out_ BYTE *pbCustomAuthData, _Inout_ DWORD *pdwSizeofCustomAuthData)
aattuiDWORDRasGetCustomAuthDataA(_In_ LPCWSTR pszPhonebook, _In_ LPCWSTR pszEntry, _Out_ BYTE *pbCustomAuthData, _Inout_ DWORD *pdwSizeofCustomAuthData)
wwttuiDWORDRasGetCustomAuthDataW(_In_ LPCWSTR pszPhonebook, _In_ LPCWSTR pszEntry, _Out_ BYTE *pbCustomAuthData, _Inout_ DWORD *pdwSizeofCustomAuthData)
tssttuiDWORDRasGetEapUserData(_In_ HANDLE hToken, _In_ LPCTSTR pszPhonebook, _In_ LPCTSTR pszEntry, _Out_ BYTE *pbEapData, _Inout_ DWORD *pdwSizeofEapData)
taattuiDWORDRasGetEapUserDataA(_In_ HANDLE hToken, _In_ LPCSTR pszPhonebook, _In_ LPCSTR pszEntry, _Out_ BYTE *pbEapData, _Inout_ DWORD *pdwSizeofEapData)
twwttuiDWORDRasGetEapUserDataW(_In_ HANDLE hToken, _In_ LPCWSTR pszPhonebook, _In_ LPCWSTR pszEntry, _Out_ BYTE *pbEapData, _Inout_ DWORD *pdwSizeofEapData)
aauittuiDWORDRasGetEapUserIdentity(_In_ LPCSTR pszPhonebook, _In_ LPCSTR pszEntry, _In_ DWORD dwFlags, _In_ HWND hwnd, _Out_ LPRASEAPUSERIDENTITY *ppRasEapUserIdentity)
aauittuiDWORDRasGetEapUserIdentityA(_In_ LPCSTR pszPhonebook, _In_ LPCSTR pszEntry, _In_ DWORD dwFlags, _In_ HWND hwnd, _Out_ LPRASEAPUSERIDENTITY *ppRasEapUserIdentity)
aauittuiDWORDRasGetEapUserIdentityW(_In_ LPCSTR pszPhonebook, _In_ LPCSTR pszEntry, _In_ DWORD dwFlags, _In_ HWND hwnd, _Out_ LPRASEAPUSERIDENTITY *ppRasEapUserIdentity)
sttuiDWORDRasGetEntryDialParams(_In_ LPCTSTR lpszPhonebook, _Inout_ LPRASDIALPARAMS lprasdialparams, _Out_ LPBOOL lpfPassword)
attuiDWORDRasGetEntryDialParamsA(_In_ LPCSTR lpszPhonebook, _Inout_ LPRASDIALPARAMS lprasdialparams, _Out_ LPBOOL lpfPassword)
wttuiDWORDRasGetEntryDialParamsW(_In_ LPCWSTR lpszPhonebook, _Inout_ LPRASDIALPARAMS lprasdialparams, _Out_ LPBOOL lpfPassword)
ssttttuiDWORDRasGetEntryProperties(_In_ LPCTSTR lpszPhonebook, _In_ LPCTSTR lpszEntry, _Inout_ LPRASENTRY lpRasEntry, _Inout_ LPDWORD lpdwEntryInfoSize, _Out_ LPBYTE lpbDeviceInfo, _Inout_ LPDWORD lpdwDeviceInfoSize)
aattttuiDWORDRasGetEntryPropertiesA(_In_ LPCSTR lpszPhonebook, _In_ LPCSTR lpszEntry, _Inout_ LPRASENTRY lpRasEntry, _Inout_ LPDWORD lpdwEntryInfoSize, _Out_ LPBYTE lpbDeviceInfo, _Inout_ LPDWORD lpdwDeviceInfoSize)
wwttttuiDWORDRasGetEntryPropertiesW(_In_ LPCWSTR lpszPhonebook, _In_ LPCWSTR lpszEntry, _Inout_ LPRASENTRY lpRasEntry, _Inout_ LPDWORD lpdwEntryInfoSize, _Out_ LPBYTE lpbDeviceInfo, _Inout_ LPDWORD lpdwDeviceInfoSize)
uisuiuiDWORDRasGetErrorString(_In_ UINT uErrorValue, _Out_ LPTSTR lpszErrorString, _In_ DWORD cBufSize)
uiauiuiDWORDRasGetErrorStringA(_In_ UINT uErrorValue, _Out_ LPSTR lpszErrorString, _In_ DWORD cBufSize)
uiwuiuiDWORDRasGetErrorStringW(_In_ UINT uErrorValue, _Out_ LPWSTR lpszErrorString, _In_ DWORD cBufSize)
tuituiDWORDRasGetLinkStatistics(_In_ HRASCONN hRasConn, _In_ DWORD dwSubEntry, _Inout_ RAS_STATS *lpStatistics)
ttuiDWORDrasgetnapstatus(_In_ HRASCONN hRasConn, _Inout_ LPRASNAPSTATE pNapState)
tittuiDWORDRasGetProjectionInfo(_In_ HRASCONN hrasconn, _In_ RASPROJECTION rasprojection, _Out_ LPVOID lpprojection, _Inout_ LPDWORD lpcb)
tittuiDWORDRasGetProjectionInfoA(_In_ HRASCONN hrasconn, _In_ RASPROJECTION rasprojection, _Out_ LPVOID lpprojection, _Inout_ LPDWORD lpcb)
tttuiDWORDRasGetProjectionInfoEx(_In_ HRASCONN Hrasconn, _Inout_ PRAS_PROJECTION_INFO pRasProjection, _Inout_ LPDWORD lpdwSize)
tittuiDWORDRasGetProjectionInfoW(_In_ HRASCONN hrasconn, _In_ RASPROJECTION rasprojection, _Out_ LPVOID lpprojection, _Inout_ LPDWORD lpcb)
tuituiDWORDRasGetSubEntryHandle(_In_ HRASCONN hRasConn, _In_ DWORD dwSubEntry, _Out_ LPHRASCONN lphRasConn)
tuituiDWORDRasGetSubEntryHandleA(_In_ HRASCONN hRasConn, _In_ DWORD dwSubEntry, _Out_ LPHRASCONN lphRasConn)
tuituiDWORDRasGetSubEntryHandleW(_In_ HRASCONN hRasConn, _In_ DWORD dwSubEntry, _Out_ LPHRASCONN lphRasConn)
ssuittttuiDWORDRasGetSubEntryProperties(_In_ LPCTSTR lpszPhonebook, _In_ LPCTSTR lpszEntry, _In_ DWORD dwSubEntry, _Inout_ LPRASSUBENTRY lpRasSubEntry, _Inout_ LPDWORD lpdwcb, _In_ LPBYTE lpbDeviceConfig, _In_ LPDWORD lpcbDeviceConfig)
aauittttuiDWORDRasGetSubEntryPropertiesA(_In_ LPCSTR lpszPhonebook, _In_ LPCSTR lpszEntry, _In_ DWORD dwSubEntry, _Inout_ LPRASSUBENTRY lpRasSubEntry, _Inout_ LPDWORD lpdwcb, _In_ LPBYTE lpbDeviceConfig, _In_ LPDWORD lpcbDeviceConfig)
wwuittttuiDWORDRasGetSubEntryPropertiesW(_In_ LPCWSTR lpszPhonebook, _In_ LPCWSTR lpszEntry, _In_ DWORD dwSubEntry, _Inout_ LPRASSUBENTRY lpRasSubEntry, _Inout_ LPDWORD lpdwcb, _In_ LPBYTE lpbDeviceConfig, _In_ LPDWORD lpcbDeviceConfig)
tuiDWORDRasHangUp(_In_ HRASCONN hRasConn)
tuiDWORDRasHangUpA(_In_ HRASCONN hRasConn)
tuiDWORDRasHangUpW(_In_ HRASCONN hRasConn)
tuittuiDWORDRasInvokeEapUI(_In_ HRASCONN hRasConn, _In_ DWORD dwSubEntry, _In_ LPRASDIALEXTENSIONS lpExtensions, _In_ HWND hwnd)
sssuiDWORDRasRenameEntry(_In_ LPCTSTR lpszPhonebook, _In_ LPCTSTR lpszOldEntry, _In_ LPCTSTR lpszNewEntry)
aaauiDWORDRasRenameEntryA(_In_ LPCSTR lpszPhonebook, _In_ LPCSTR lpszOldEntry, _In_ LPCSTR lpszNewEntry)
wwwuiDWORDRasRenameEntryW(_In_ LPCWSTR lpszPhonebook, _In_ LPCWSTR lpszOldEntry, _In_ LPCWSTR lpszNewEntry)
suituiuiuiDWORDRasSetAutodialAddress(_In_ LPCTSTR lpszAddress, _In_ DWORD dwReserved, _In_ LPRASAUTODIALENTRY lpAutoDialEntries, _In_ DWORD dwcbAutoDialEntries, _In_ DWORD dwcAutoDialEntries)
auituiuiuiDWORDRasSetAutodialAddressA(_In_ LPCSTR lpszAddress, _In_ DWORD dwReserved, _In_ LPRASAUTODIALENTRY lpAutoDialEntries, _In_ DWORD dwcbAutoDialEntries, _In_ DWORD dwcAutoDialEntries)
wuituiuiuiDWORDRasSetAutodialAddressW(_In_ LPCWSTR lpszAddress, _In_ DWORD dwReserved, _In_ LPRASAUTODIALENTRY lpAutoDialEntries, _In_ DWORD dwcbAutoDialEntries, _In_ DWORD dwcAutoDialEntries)
uiiuiDWORDRasSetAutodialEnable(_In_ DWORD dwDialingLocation, _In_ BOOL fEnabled)
uiiuiDWORDRasSetAutodialEnableA(_In_ DWORD dwDialingLocation, _In_ BOOL fEnabled)
uiiuiDWORDRasSetAutodialEnableW(_In_ DWORD dwDialingLocation, _In_ BOOL fEnabled)
uituiuiDWORDRasSetAutodialParam(_In_ DWORD dwKey, _Out_ LPVOID lpvValue, _In_ DWORD dwcbValue)
uituiuiDWORDRasSetAutodialParamA(_In_ DWORD dwKey, _Out_ LPVOID lpvValue, _In_ DWORD dwcbValue)
uituiuiDWORDRasSetAutodialParamW(_In_ DWORD dwKey, _Out_ LPVOID lpvValue, _In_ DWORD dwcbValue)
sstiuiDWORDRasSetCredentials(_In_ LPCTSTR lpszPhonebook, _In_ LPCTSTR lpszEntry, _In_ LPRASCREDENTIALS lpCredentials, _In_ BOOL fClearCredentials)
aatiuiDWORDRasSetCredentialsA(_In_ LPCSTR lpszPhonebook, _In_ LPCSTR lpszEntry, _In_ LPRASCREDENTIALS lpCredentials, _In_ BOOL fClearCredentials)
wwtiuiDWORDRasSetCredentialsW(_In_ LPCWSTR lpszPhonebook, _In_ LPCWSTR lpszEntry, _In_ LPRASCREDENTIALS lpCredentials, _In_ BOOL fClearCredentials)
wwtuiuiDWORDRasSetCustomAuthData(_In_ LPCWSTR pszPhonebook, _In_ LPCWSTR pszEntry, _In_ BYTE *pbCustomAuthData, _In_ DWORD dwSizeofCustomAuthData)
aatuiuiDWORDRasSetCustomAuthDataA(_In_ LPCWSTR pszPhonebook, _In_ LPCWSTR pszEntry, _In_ BYTE *pbCustomAuthData, _In_ DWORD dwSizeofCustomAuthData)
wwtuiuiDWORDRasSetCustomAuthDataW(_In_ LPCWSTR pszPhonebook, _In_ LPCWSTR pszEntry, _In_ BYTE *pbCustomAuthData, _In_ DWORD dwSizeofCustomAuthData)
tsstuiuiDWORDRasSetEapUserData(_In_ HANDLE hToken, _In_ LPCTSTR pszPhonebook, _In_ LPCTSTR pszEntry, _In_ BYTE *pbEapData, _In_ DWORD dwSizeofEapData)
taatuiuiDWORDRasSetEapUserDataA(_In_ HANDLE hToken, _In_ LPCSTR pszPhonebook, _In_ LPCSTR pszEntry, _In_ BYTE *pbEapData, _In_ DWORD dwSizeofEapData)
twwtuiuiDWORDRasSetEapUserDataW(_In_ HANDLE hToken, _In_ LPCWSTR pszPhonebook, _In_ LPCWSTR pszEntry, _In_ BYTE *pbEapData, _In_ DWORD dwSizeofEapData)
stiuiDWORDRasSetEntryDialParams(_In_ LPCTSTR lpszPhonebook, _In_ LPRASDIALPARAMS lprasdialparams, _In_ BOOL fRemovePassword)
atiuiDWORDRasSetEntryDialParamsA(_In_ LPCSTR lpszPhonebook, _In_ LPRASDIALPARAMS lprasdialparams, _In_ BOOL fRemovePassword)
wtiuiDWORDRasSetEntryDialParamsW(_In_ LPCWSTR lpszPhonebook, _In_ LPRASDIALPARAMS lprasdialparams, _In_ BOOL fRemovePassword)
sstuituiuiDWORDRasSetEntryProperties(_In_ LPCTSTR lpszPhonebook, _In_ LPCTSTR lpszEntry, _In_ LPRASENTRY lpRasEntry, _In_ DWORD dwEntryInfoSize, _In_ LPBYTE lpbDeviceInfo, _In_ DWORD dwDeviceInfoSize)
aatuituiuiDWORDRasSetEntryPropertiesA(_In_ LPCSTR lpszPhonebook, _In_ LPCSTR lpszEntry, _In_ LPRASENTRY lpRasEntry, _In_ DWORD dwEntryInfoSize, _In_ LPBYTE lpbDeviceInfo, _In_ DWORD dwDeviceInfoSize)
wwtuituiuiDWORDRasSetEntryPropertiesW(_In_ LPCWSTR lpszPhonebook, _In_ LPCWSTR lpszEntry, _In_ LPRASENTRY lpRasEntry, _In_ DWORD dwEntryInfoSize, _In_ LPBYTE lpbDeviceInfo, _In_ DWORD dwDeviceInfoSize)
ssuituituiuiDWORDRasSetSubEntryProperties(_In_ LPCTSTR lpszPhonebook, _In_ LPCTSTR lpszEntry, _In_ DWORD dwSubEntry, _In_ LPRASSUBENTRY lpRasSubEntry, _In_ DWORD dwcbRasSubEntry, _In_ LPBYTE lpbDeviceConfig, _In_ DWORD dwcbDeviceConfig)
aauituituiuiDWORDRasSetSubEntryPropertiesA(_In_ LPCSTR lpszPhonebook, _In_ LPCSTR lpszEntry, _In_ DWORD dwSubEntry, _In_ LPRASSUBENTRY lpRasSubEntry, _In_ DWORD dwcbRasSubEntry, _In_ LPBYTE lpbDeviceConfig, _In_ DWORD dwcbDeviceConfig)
wwuituituiuiDWORDRasSetSubEntryPropertiesW(_In_ LPCWSTR lpszPhonebook, _In_ LPCWSTR lpszEntry, _In_ DWORD dwSubEntry, _In_ LPRASSUBENTRY lpRasSubEntry, _In_ DWORD dwcbRasSubEntry, _In_ LPBYTE lpbDeviceConfig, _In_ DWORD dwcbDeviceConfig)
ttuiDWORDRasUpdateConnection(_In_ HRASCONN hrasconn, _In_ LPRASUPDATECONN lprasupdateconn)
ssuiDWORDRasValidateEntryName(_In_ LPCTSTR lpszPhonebook, _In_ LPCTSTR lpszEntry)
aauiDWORDRasValidateEntryNameA(_In_ LPCSTR lpszPhonebook, _In_ LPCSTR lpszEntry)
wwuiDWORDRasValidateEntryNameW(_In_ LPCWSTR lpszPhonebook, _In_ LPCWSTR lpszEntry)

Rasdlg.dll

ssstiBOOLRasDialDlg(_In_ LPTSTR lpszPhonebook, _In_ LPTSTR lpszEntry, _In_ LPTSTR lpszPhoneNumber, _In_ LPRASDIALDLG lpInfo)
aaatiBOOLRasDialDlgA(_In_ LPSTR lpszPhonebook, _In_ LPSTR lpszEntry, _In_ LPSTR lpszPhoneNumber, _In_ LPRASDIALDLG lpInfo)
wwwtiBOOLRasDialDlgW(_In_ LPWSTR lpszPhonebook, _In_ LPWSTR lpszEntry, _In_ LPWSTR lpszPhoneNumber, _In_ LPRASDIALDLG lpInfo)
sstiBOOLRasEntryDlg(_In_ LPTSTR lpszPhonebook, _In_ LPTSTR lpszEntry, _In_ LPRASENTRYDLG lpInfo)
aatiBOOLRasEntryDlgA(_In_ LPSTR lpszPhonebook, _In_ LPSTR lpszEntry, _In_ LPRASENTRYDLG lpInfo)
wwtiBOOLRasEntryDlgW(_In_ LPWSTR lpszPhonebook, _In_ LPWSTR lpszEntry, _In_ LPRASENTRYDLG lpInfo)
sstiBOOLRasPhonebookDlg(_In_ LPTSTR lpszPhonebook, _In_ LPTSTR lpszEntry, _Inout_ LPRASPBDLG lpInfo)
aatiBOOLRasPhonebookDlgA(_In_ LPSTR lpszPhonebook, _In_ LPSTR lpszEntry, _Inout_ LPRASPBDLG lpInfo)
wwtiBOOLRasPhonebookDlgW(_In_ LPWSTR lpszPhonebook, _In_ LPWSTR lpszEntry, _Inout_ LPRASPBDLG lpInfo)

Rasman.dll

ttuiDWORDRasSecurityDialogGetInfo(_In_ HPORT hPort, _In_ RAS_SECURITY_INFO *pBuffer)
tttuituiDWORDRasSecurityDialogReceive(_In_ HPORT hPort, _In_ PBYTE pBuffer, _In_ PWORD pBufferLength, _In_ DWORD Timeout, _In_ HANDLE hEvent)
ttuhuiDWORDRasSecurityDialogSend(_In_ HPORT hPort, _In_ PBYTE pBuffer, _In_ WORD BufferLength)

Shell32.dll

tuittiHRESULTAssocCreateForClasses(_In_ const ASSOCIATIONELEMENT *rgClasses, _In_ ULONG cClasses, _In_ REFIID riid, _Out_ void **ppv)
tttttiHRESULTAssocGetDetailsOfPropKey(_In_ IShellFolder *psf, _In_ PCUITEMID_CHILD pidl, _In_ PROPERTYKEY *pkey, _Out_ VARIANT *pv, _Out_ BOOL *pfFoundPropKey)
ttuitttuittiHRESULTCDefFolderMenu_Create2(_In_opt_ PCIDLIST_ABSOLUTE pidlFolder, _In_opt_ HWND hwnd, UINT cidl, _In_opt_ PCUITEMID_CHILD_ARRAY *apidl, _In_opt_ IShellFolder *psf, _In_opt_ LPFNDFMCALLBACK lpfn, UINT nKeys, _In_opt_ const HKEY *ahkeys, _Out_ IContextMenu **ppcm)
tuittiHRESULTCIDLData_CreateFromIDArray(_In_ PCIDLIST_ABSOLUTE pidlFolder, _In_ UINT cidl, _In_ PCUIDLIST_RELATIVE_ARRAY apidl, _Out_ IDataObject **ppdtobj)
wttLPWSTR*CommandLineToArgvW(_In_ LPCWSTR lpCmdLine, _Out_ int *pNumArgs)
tttiBOOLDAD_AutoScroll(_In_ HWND hwnd, _In_ AUTO_SCROLL_DATA *pad, _In_ const POINT *pptNow)
tui6iBOOLDAD_DragEnterEx(HWND hwndTarget, const POINT ptStart)
tui6tiBOOLDAD_DragEnterEx2(_In_ HWND hwndTarget, const POINT ptStart, _In_opt_ IDataObject *pdtObject)
iBOOLDAD_DragLeave(void)
ui6iBOOLDAD_DragMove(POINT pt)
ttiBOOLDAD_SetDragImage(HIMAGELIST him, POINT *pptOffset)
iiBOOLDAD_ShowDragImage(BOOL fShow)
tiHRESULTDllGetVersion(DLLVERSIONINFO *pdvi)
suiuiDWORDDoEnvironmentSubst(_Inout_ LPTSTR pszSrc, UINT cchSrc)
auiuiDWORDDoEnvironmentSubstA(_Inout_ LPSTR pszSrc, UINT cchSrc)
wuiuiDWORDDoEnvironmentSubstW(_Inout_ LPWSTR pszSrc, UINT cchSrc)
tiiVOIDDragAcceptFiles(HWND hWnd, BOOL fAccept)
tiVOIDDragFinish(HDROP hDrop)
tuisuiuiUINTDragQueryFile(_In_ HDROP hDrop, _In_ UINT iFile, _Out_ LPTSTR lpszFile, UINT cch)
tuiauiuiUINTDragQueryFileA(_In_ HDROP hDrop, _In_ UINT iFile, _Out_ LPSTR lpszFile, UINT cch)
tuiwuiuiUINTDragQueryFileW(_In_ HDROP hDrop, _In_ UINT iFile, _Out_ LPWSTR lpszFile, UINT cch)
ttiBOOLDragQueryPoint(_In_ HDROP hDrop, _Out_ POINT *lppt)
iiintDriveType(_In_ int iDrive)
tttHICONDuplicateIcon(_Reserved_ HINSTANCE hInst, _In_ HICON hIcon)
tsttHICONExtractAssociatedIcon(_Reserved_ HINSTANCE hInst, _Inout_ LPTSTR lpIconPath, _Inout_ WORD *lpiIcon)
tattHICONExtractAssociatedIconA(_Reserved_ HINSTANCE hInst, _Inout_ LPSTR lpIconPath, _Inout_ WORD *lpiIcon)
tstttHICONExtractAssociatedIconEx(_Reserved_ HINSTANCE hInst, _Inout_ LPTSTR lpIconPath, _Inout_ LPWORD lpiIconIndex, _Inout_ LPWORD lpiIconId)
tatttHICONExtractAssociatedIconExA(_Reserved_ HINSTANCE hInst, _Inout_ LPSTR lpIconPath, _Inout_ LPWORD lpiIconIndex, _Inout_ LPWORD lpiIconId)
twtttHICONExtractAssociatedIconExW(_Reserved_ HINSTANCE hInst, _Inout_ LPWSTR lpIconPath, _Inout_ LPWORD lpiIconIndex, _Inout_ LPWORD lpiIconId)
twttHICONExtractAssociatedIconW(_Reserved_ HINSTANCE hInst, _Inout_ LPWSTR lpIconPath, _Inout_ WORD *lpiIcon)
tsuitHICONExtractIcon(_Reserved_ HINSTANCE hInst, _In_ LPCTSTR lpszExeFileName, _In_ UINT nIconIndex)
tauitHICONExtractIconA(_Reserved_ HINSTANCE hInst, _In_ LPCSTR lpszExeFileName, _In_ UINT nIconIndex)
sittuiuiUINTExtractIconEx(_In_ LPCTSTR lpszFile, _In_ int nIconIndex, _Out_opt_ HICON *phiconLarge, _Out_opt_ HICON *phiconSmall, _In_ UINT nIcons)
aittuiuiUINTExtractIconExA(_In_ LPCSTR lpszFile, _In_ int nIconIndex, _Out_opt_ HICON *phiconLarge, _Out_opt_ HICON *phiconSmall, _In_ UINT nIcons)
wittuiuiUINTExtractIconExW(_In_ LPCWSTR lpszFile, _In_ int nIconIndex, _Out_opt_ HICON *phiconLarge, _Out_opt_ HICON *phiconSmall, _In_ UINT nIcons)
twuitHICONExtractIconW(_Reserved_ HINSTANCE hInst, _In_ LPCWSTR lpszExeFileName, _In_ UINT nIconIndex)
ssstHINSTANCEFindExecutable(_In_ LPCTSTR lpFile, _In_opt_ LPCTSTR lpDirectory, _Out_ LPTSTR lpResult)
aaatHINSTANCEFindExecutableA(_In_ LPCSTR lpFile, _In_opt_ LPCSTR lpDirectory, _Out_ LPSTR lpResult)
wwwtHINSTANCEFindExecutableW(_In_ LPCWSTR lpFile, _In_opt_ LPCWSTR lpDirectory, _Out_ LPWSTR lpResult)
wiHRESULTGetCurrentProcessExplicitAppUserModelID(_Out_ PWSTR *AppID)
ttuiwwwwiBOOLGetFileNameFromBrowse(_In_opt_ HWND hwnd, _Inout_ PWSTR pszFilePath, UINT cchFilePath, _In_opt_ PCWSTR pszWorkingDir, _In_ PCWSTR pszDefExt, _In_opt_ PCWSTR pszFilters, _In_opt_ PCWSTR szTitle)
ttitPIDLIST_RELATIVEILAppendID(_In_opt_ PIDLIST_RELATIVE pidl, _In_ LPSHITEMID pmkid, BOOL fAppend)
ttPIDLIST_RELATIVEILClone(_In_ PCUIDLIST_RELATIVE pidl)
ttPITEMID_CHILDILCloneFirst(_In_ PCUIDLIST_RELATIVE pidl)
tttPIDLIST_ABSOLUTEILCombine(_In_ PCIDLIST_ABSOLUTE pidl1, _In_ PCUIDLIST_RELATIVE pidl2)
stPIDLIST_ABSOLUTEILCreateFromPath(_In_ PCTSTR pszPath)
atPIDLIST_ABSOLUTEILCreateFromPathA(_In_ PCTSTR pszPath)
wtPIDLIST_ABSOLUTEILCreateFromPathW(_In_ PCTSTR pszPath)
tttPUIDLIST_RELATIVEILFindChild(_In_ PCIDLIST_ABSOLUTE pidlParent, _In_ PCIDLIST_ABSOLUTE pidlChild)
ttPUITEMID_CHILDILFindLastID(_In_ PCUIDLIST_RELATIVE pidl)
tiVOIDILFree(_In_ PIDLIST_RELATIVE pidl)
ttPUIDLIST_RELATIVEILGetNext(_In_opt_ PCUIDLIST_RELATIVE pidl)
tuiUINTILGetSize(_In_opt_ PCUIDLIST_RELATIVE pidl)
ttiBOOLILIsEqual(_In_ PCIDLIST_ABSOLUTE pidl1, _In_ PCIDLIST_ABSOLUTE pidl2)
ttiiBOOLILIsParent(_In_ PCIDLIST_ABSOLUTE pidl1, _In_ PCIDLIST_ABSOLUTE pidl2, _In_ BOOL fImmediate)
ttiHRESULTILLoadFromStreamEx(_In_ IStream *pstm, _Out_ PIDLIST_RELATIVE *pidl)
tiBOOLILRemoveLastID(_Inout_opt_ PUIDLIST_RELATIVE pidl)
ttiHRESULTILSaveToStream(_In_ IStream * pstm, _In_ PCUIDLIST_RELATIVE pidl)
iBOOLInitNetworkAddressControl(void)
iiintIsNetDrive(_In_ int iDrive)
iBOOLIsUserAnAdmin(void)
twwuitIStream*OpenRegStream(_In_ HKEY hkey, _In_opt_ PCWSTR pszSubkey, _In_opt_ PCWSTR pszValue, DWORD grfMode)
wtiintPathCleanupSpec(_In_opt_ PCWSTR pszDir, _Inout_ PWSTR pszSpec)
tiVOIDPathGetShortPath(_Inout_ PWSTR pszLongPath)
wiBOOLPathIsExe(_In_ PCWSTR szfile)
suiiBOOLPathIsSlow(_In_ LPCTSTR pszFile, DWORD dwFileAttr)
auiiBOOLPathIsSlowA(_In_ LPCSTR pszFile, DWORD dwFileAttr)
wuiiBOOLPathIsSlowW(_In_ LPCWSTR pszFile, DWORD dwFileAttr)
tuiwwwiBOOLPathMakeUniqueName(_Out_ PWSTR pszUniqueName, UINT cchMax, _In_ PCWSTR pszTemplate, _In_opt_ PCWSTR pszLongPlate, _In_opt_ PCWSTR pszDir)
twuiiintPathResolve(_Inout_ PWSTR pszPath, _In_opt_ PZPCWSTR dirs, UINT fFlags)
twwwiBOOLPathYetAnotherMakeUniqueName(_Out_ PWSTR pszUniqueName, _In_ PCWSTR pszPath, _In_opt_ PCWSTR pszShort, _In_opt_ PCWSTR pszFileSpec)
ttuitiintPickIconDlg(_In_opt_ HWND hwnd, _Inout_ PWSTR pszIconPath, UINT cchIconPath, _Inout_opt_ int *piIconIndex)
tuiiintPifMgr_CloseProperties(_In_ HANDLE hProps, _In_ UINT flOpt)
tatiuiiintPifMgr_GetProperties(_In_opt_ HANDLE hProps, _In_opt_ PCSTR pszGroup, _Out_opt_ void *lpProps, int cbProps, UINT flOpt)
wwuiuitHANDLEPifMgr_OpenProperties(_In_ PCWSTR pszApp, _In_opt_ PCWSTR lpszPIF, UINT hInf, UINT flOpt)
tatiuiiintPifMgr_SetProperties(_In_opt_ HANDLE hProps, _In_opt_ PCSTR pszGroup, _In_ const void *lpProps, int cbProps, UINT flOpt)
tiiBOOLReadCabinetState(_Out_ CABINETSTATE *pcs, _In_ int cLength)
iiiintRealDriveType(_In_ int iDrive, _Reserved_ BOOL fOKToHitNet)
twuiiintRestartDialog(_In_opt_ HWND hParent, _In_opt_ PCWSTR pszPrompt, DWORD dwFlags)
twuiuiiintRestartDialogEx(_In_opt_ HWND hParent, _In_opt_ PCWSTR pszPrompt, DWORD dwFlags, DWORD dwReasonCode)
wiHRESULTSetCurrentProcessExplicitAppUserModelID(_In_ PCWSTR AppID)
wtiHRESULTSHAddDefaultPropertiesByExt(_In_ PCWSTR pszExt, _In_ IPropertyStore *pPropStore)
ttutuiUINTSHAddFromPropSheetExtArray(_In_ HPSXA hpsxa, _In_ LPFNADDPROPSHEETPAGE lpfnAddPage, LPARAM lParam)
uitiVOIDSHAddToRecentDocs(UINT uFlags, _In_opt_ LPCVOID pv)
uttLPVOIDSHAlloc(_In_ SIZE_T cb)
uitutUINT_PTRSHAppBarMessage(_In_ DWORD dwMessage, _Inout_ PAPPBARDATA pData)
witiHRESULTSHAssocEnumHandlers(_In_ PCWSTR pszExtra, _In_ ASSOC_FILTER afFilter, _Out_ IEnumAssocHandlers **ppEnumHandler)
wttiHRESULTSHAssocEnumHandlersForProtocolByApplication(_In_ PCWSTR protocol, _In_ REFIID riid, _Out_ void **enumHandlers)
tttttiHRESULTSHBindToFolderIDListParent(_In_opt_ IShellFolder *psfRoot, _In_ PCUIDLIST_RELATIVE pidl, _In_ REFIID riid, _Out_ void **ppv, _Out_opt_ PCUITEMID_CHILD *ppidlLast)
ttttttiHRESULTSHBindToFolderIDListParentEx(_In_opt_ IShellFolder *psfRoot, _In_ PCUIDLIST_RELATIVE pidl, _In_opt_ IBindCtx *ppbc, _In_ REFIID riid, _Out_ void **ppv, _Out_opt_ PCUITEMID_CHILD *ppidlLast)
tttttiHRESULTSHBindToObject(IShellFolder *psf, PCUIDLIST_RELATIVE pidl, _In_ IBindCtx *pbc, REFIID riid, _Out_ void **ppv)
ttttiHRESULTSHBindToParent(_In_ PCIDLIST_ABSOLUTE pidl, _In_ REFIID riid, _Out_ VOID **ppv, _Out_ PCUITEMID_CHILD *ppidlLast)
ttPIDLIST_ABSOLUTESHBrowseForFolder(_In_ LPBROWSEINFO lpbi)
ttPIDLIST_ABSOLUTESHBrowseForFolderA(_In_ LPBROWSEINFO lpbi)
ttPIDLIST_ABSOLUTESHBrowseForFolderW(_In_ LPBROWSEINFO lpbi)
tuitttHANDLESHChangeNotification_Lock(_In_ HANDLE hChange, DWORD dwProcId, _Out_opt_ PIDLIST_ABSOLUTE **pppidl, _Out_opt_ LONG *plEvent)
tiBOOLSHChangeNotification_Unlock(_In_ HANDLE hLock)
iuittiVOIDSHChangeNotify(LONG wEventId, UINT uFlags, _In_opt_ LPCVOID dwItem1, _In_opt_ LPCVOID dwItem2)
uiiBOOLSHChangeNotifyDeregister(ULONG ulID)
tiiuiituiULONGSHChangeNotifyRegister(_In_ HWND hwnd, int fSources, LONG fEvents, UINT wMsg, int cEntries, _In_ const SHChangeNotifyEntry *pshcne)
uiiVOIDSHChangeNotifyRegisterThread(SCNRT_STATUS status)
tiitPIDLIST_ABSOLUTESHCloneSpecialIDList(HWND hwndOwner, _In_ int csidl, _In_ BOOL fCreate)
wtiHRESULTSHCLSIDFromString(_In_ PCWSTR psz, _Out_ CLSID *pcClsid)
wttttiHRESULTSHCoCreateInstance(_In_opt_ PCWSTR pszCLSID, _In_opt_ const CLSID *pclsid, _In_opt_ IUnknown *pUnkOuter, _In_ REFIID riid, _Out_ void **ppv)
ttiHRESULTSHCreateAssociationRegistration(_In_ REFIID riid, _Out_ void **ppv)
tuittttiHRESULTSHCreateDataObject(_In_opt_ PCIDLIST_ABSOLUTE pidlFolder, _In_ UINT cidl, _In_opt_ PCUITEMID_CHILD_ARRAY apidl, _In_opt_ IDataObject *pdtInner, _In_ REFIID riid, _Out_ void **ppv)
tttiHRESULTSHCreateDefaultContextMenu(_In_ const DEFCONTEXTMENU *pdcm, REFIID riid, _Out_ void **ppv)
ttiHRESULTSHCreateDefaultExtractIcon(REFIID riid, _Out_ void **ppv)
ttiHRESULTSHCreateDefaultPropertiesOp(_In_ IShellItem *psi, _Out_ IFileOperation **ppFileOp)
twiintSHCreateDirectory(_In_opt_ HWND hwnd, _In_ PCWSTR pszPath)
tstiintSHCreateDirectoryEx(_In_opt_ HWND hwnd, _In_ LPCTSTR pszPath, _In_opt_ const SECURITY_ATTRIBUTES *psa)
tatiintSHCreateDirectoryExA(_In_opt_ HWND hwnd, _In_ LPCSTR pszPath, _In_opt_ const SECURITY_ATTRIBUTES *psa)
twtiintSHCreateDirectoryExW(_In_opt_ HWND hwnd, _In_ LPCWSTR pszPath, _In_opt_ const SECURITY_ATTRIBUTES *psa)
suittiHRESULTSHCreateFileExtractIcon(_In_ LPCTSTR pszFile, _In_ DWORD dwFileAttributes, _In_ REFIID riid, void **ppv)
wuittiHRESULTSHCreateFileExtractIconW(_In_ LPCWSTR pszFile, _In_ DWORD dwFileAttributes, _In_ REFIID riid, void **ppv)
tttiHRESULTSHCreateItemFromIDList(_In_ PCIDLIST_ABSOLUTE pidl, _In_ REFIID riid, _Out_ void **ppv)
wtttiHRESULTSHCreateItemFromParsingName(_In_ PCWSTR pszPath, _In_ IBindCtx *pbc, _In_ REFIID riid, _Out_ void **ppv)
twtttiHRESULTSHCreateItemFromRelativeName(_In_ IShellItem *psiParent, _In_ PCWSTR pszName, _In_ IBindCtx *pbc, _In_ REFIID riid, _Out_ void **ppv)
tuiwttiHRESULTSHCreateItemInKnownFolder(_In_ REFKNOWNFOLDERID kfid, DWORD dwKFFlags, _In_opt_ PCWSTR pszItem, _In_ REFIID riid, _Out_ void **ppv)
tttttiHRESULTSHCreateItemWithParent(_In_ PCIDLIST_ABSOLUTE pidlParent, _In_ IShellFolder *psfParent, _In_ PCUITEMID_CHILD pidl, _In_ REFIID riid, _Out_ void **ppvItem)
tiBOOLSHCreateProcessAsUserW(_Inout_ PSHCREATEPROCESSINFOW pscpi)
twuitHPSXASHCreatePropSheetExtArray(_In_ HKEY hkey, _In_opt_ PCWSTR pszSubkey, UINT max_iface)
tiHRESULTSHCreateQueryCancelAutoPlayMoniker(_Out_ IMoniker **ppmoniker)
ttiHRESULTSHCreateShellFolderView(_In_ const SFV_CREATE *pcsfv, _Out_ IShellView **ppsv)
ttiHRESULTSHCreateShellFolderViewEx(_In_ CSFV *pcsfv, _Out_ IShellView **ppsv)
ttttiHRESULTSHCreateShellItem(_In_opt_ PCIDLIST_ABSOLUTE pidlParent, _In_opt_ IShellFolder *psfParent, _In_ PCUITEMID_CHILD pidl, _Out_ IShellItem **ppsi)
ttuittiHRESULTSHCreateShellItemArray(_In_ PCIDLIST_ABSOLUTE pidlParent, _In_ IShellFolder *psf, _In_ UINT cidl, _In_ PCUITEMID_CHILD_ARRAY ppidl, _Out_ IShellItemArray **ppsiItemArray)
tttiHRESULTSHCreateShellItemArrayFromDataObject(_In_ IDataObject *pdo, _In_ REFIID riid, _Out_ void **ppv)
uittiHRESULTSHCreateShellItemArrayFromIDLists(_In_ UINT cidl, _In_ PCIDLIST_ABSOLUTE_ARRAY rgpidl, _Out_ IShellItemArray **ppsiItemArray)
tttiHRESULTSHCreateShellItemArrayFromShellItem(_In_ IShellItem *psi, _In_ REFIID riid, _Out_ void **ppv)
uiuitiHRESULTSHCreateStdEnumFmtEtc(_In_ UINT cfmt, const FORMATETC afmt[], _Out_ IEnumFORMATETC **ppenumFormatEtc)
siuittuiiHRESULTSHDefExtractIcon(_In_ LPCTSTR pszIconFile, int iIndex, _In_ UINT uFlags, _Out_opt_ HICON *phiconLarge, _Out_opt_ HICON *phiconSmall, UINT nIconSize)
aiuittuiiHRESULTSHDefExtractIconA(_In_ LPCSTR pszIconFile, int iIndex, _In_ UINT uFlags, _Out_opt_ HICON *phiconLarge, _Out_opt_ HICON *phiconSmall, UINT nIconSize)
wiuittuiiHRESULTSHDefExtractIconW(_In_ LPCWSTR pszIconFile, int iIndex, _In_ UINT uFlags, _Out_opt_ HICON *phiconLarge, _Out_opt_ HICON *phiconSmall, UINT nIconSize)
tiVOIDSHDestroyPropSheetExtArray(_In_ HPSXA hpsxa)
tttuitiHRESULTSHDoDragDrop(_In_ HWND hwnd, _In_ IDataObject *pdtobj, _In_ IDropSource *pdsrc, _In_ DWORD dwEffect, _Out_ DWORD *pdwEffect)
wiuiiintShell_GetCachedImageIndex(_In_ PCWSTR pwszIconPath, int iIconIndex, UINT uIconFlags)
aiuiiintShell_GetCachedImageIndexA(_In_ PCWSTR pwszIconPath, int iIconIndex, UINT uIconFlags)
wiuiiintShell_GetCachedImageIndexW(_In_ PCWSTR pwszIconPath, int iIconIndex, UINT uIconFlags)
ttiBOOLShell_GetImageLists(_In_ HIMAGELIST *phiml, _In_ HIMAGELIST *phimlSmall)
ttuiuiuiuiuiUINTShell_MergeMenus(_In_ HMENU hmDst, _In_ HMENU hmSrc, UINT uInsert, UINT uIDAdjust, UINT uIDAdjustMax, ULONG uFlags)
uitiBOOLShell_NotifyIcon(_In_ DWORD dwMessage, _In_ PNOTIFYICONDATA lpdata)
uitiBOOLShell_NotifyIconA(_In_ DWORD dwMessage, _In_ PNOTIFYICONDATA lpdata)
ttiHRESULTShell_NotifyIconGetRect(_In_ const NOTIFYICONIDENTIFIER *identifier, _Out_ RECT *iconLocation)
uitiBOOLShell_NotifyIconW(_In_ DWORD dwMessage, _In_ PNOTIFYICONDATA lpdata)
tsstiintShellAbout(_In_opt_ HWND hWnd, _In_ LPCTSTR szApp, _In_opt_ LPCTSTR szOtherStuff, _In_opt_ HICON hIcon)
taatiintShellAboutA(_In_opt_ HWND hWnd, _In_ LPCSTR szApp, _In_opt_ LPCSTR szOtherStuff, _In_opt_ HICON hIcon)
twwtiintShellAboutW(_In_opt_ HWND hWnd, _In_ LPCWSTR szApp, _In_opt_ LPCWSTR szOtherStuff, _In_opt_ HICON hIcon)
tssssitHINSTANCEShellExecute(_In_opt_ HWND hwnd, _In_opt_ LPCTSTR lpOperation, _In_ LPCTSTR lpFile, _In_opt_ LPCTSTR lpParameters, _In_opt_ LPCTSTR lpDirectory, _In_ INT nShowCmd)
taaaaitHINSTANCEShellExecuteA(_In_opt_ HWND hwnd, _In_opt_ LPCSTR lpOperation, _In_ LPCSTR lpFile, _In_opt_ LPCSTR lpParameters, _In_opt_ LPCSTR lpDirectory, _In_ INT nShowCmd)
tiBOOLShellExecuteEx(_Inout_ SHELLEXECUTEINFO *pExecInfo)
tiBOOLShellExecuteExA(_Inout_ SHELLEXECUTEINFO *pExecInfo)
tiBOOLShellExecuteExW(_Inout_ SHELLEXECUTEINFO *pExecInfo)
twwwwitHINSTANCEShellExecuteW(_In_opt_ HWND hwnd, _In_opt_ LPCWSTR lpOperation, _In_ LPCWSTR lpFile, _In_opt_ LPCWSTR lpParameters, _In_opt_ LPCWSTR lpDirectory, _In_ INT nShowCmd)
tsuiiHRESULTSHEmptyRecycleBin(_In_opt_ HWND hwnd, _In_opt_ LPCTSTR pszRootPath, DWORD dwFlags)
tauiiHRESULTSHEmptyRecycleBinA(_In_opt_ HWND hwnd, _In_opt_ LPCSTR pszRootPath, DWORD dwFlags)
twuiiHRESULTSHEmptyRecycleBinW(_In_opt_ HWND hwnd, _In_opt_ LPCWSTR pszRootPath, DWORD dwFlags)
tuisiiHRESULTSHEnumerateUnreadMailAccounts(_In_opt_ HKEY hKeyUser, DWORD dwIndex, _Out_ LPTSTR pszMailAddress, int cchMailAddress)
tuiwiiHRESULTSHEnumerateUnreadMailAccountsW(_In_opt_ HKEY hKeyUser, DWORD dwIndex, _Out_ LPWSTR pszMailAddress, int cchMailAddress)
wwwwiHRESULTSHEvaluateSystemCommandTemplate(_In_ PCWSTR pszCmdTemplate, _Out_ PWSTR *ppszApplication, _Out_opt_ PWSTR *ppszCommandLine, _Out_opt_ PWSTR *ppszParameters)
wiiittuiuiuiUINTSHExtractIconsW(_In_ LPCWSTR pszFileName, _In_ int nIconIndex, _In_ int cxIcon, _In_ int cyIcon, _Out_ HICON *phIcon, _Out_ UINT *pIconId, _In_ UINT nIcons, _In_ UINT flags)
tiintSHFileOperation(_Inout_ LPSHFILEOPSTRUCT lpFileOp)
tiintSHFileOperationA(_Inout_ LPSHFILEOPSTRUCT lpFileOp)
tiintSHFileOperationW(_Inout_ LPSHFILEOPSTRUCT lpFileOp)
ttuiuitIContextMenu*SHFind_InitMenuPopup(_In_ HMENU hmenu, _In_opt_ HWND hwnd, UINT idCmdFirst, UINT idCmdLast)
ttiBOOLSHFindFiles(_In_opt_ PCIDLIST_ABSOLUTE pidlFolder, _In_opt_ PCIDLIST_ABSOLUTE pidlSaveFile)
iVOIDSHFlushSFCache(void)
tuiuiuiuiDWORDSHFormatDrive(_In_ HWND hwnd, UINT drive, UINT fmtID, UINT options)
tiVOIDSHFree(_In_ VOID *pv)
tiVOIDSHFreeNameMappings(_In_opt_ HANDLE hNameMappings)
tuittiHRESULTSHGetAttributesFromDataObject(_In_opt_ IDataObject *pdo, DWORD dwAttributeMask, _Out_opt_ DWORD *pdwAttributes, _Out_opt_ UINT *pcItems)
ttitiiHRESULTSHGetDataFromIDList(_In_ IShellFolder *psf, _In_ PCUITEMID_CHILD pidl, int nFormat, _Out_ void *pv, int cb)
ttitiiHRESULTSHGetDataFromIDListA(_In_ IShellFolder *psf, _In_ PCUITEMID_CHILD pidl, int nFormat, _Out_ void *pv, int cb)
ttitiiHRESULTSHGetDataFromIDListW(_In_ IShellFolder *psf, _In_ PCUITEMID_CHILD pidl, int nFormat, _Out_ void *pv, int cb)
tiHRESULTSHGetDesktopFolder(_Out_ IShellFolder **ppshf)
stttiBOOLSHGetDiskFreeSpace(LPCTSTR pszVolume, ULARGE_INTEGER *pqwFreeCaller, ULARGE_INTEGER *pqwTot, ULARGE_INTEGER *pqwFree)
atttiBOOLSHGetDiskFreeSpaceA(LPCSTR pszVolume, ULARGE_INTEGER *pqwFreeCaller, ULARGE_INTEGER *pqwTot, ULARGE_INTEGER *pqwFree)
stttiBOOLSHGetDiskFreeSpaceEx(_In_ LPCTSTR pszDirectoryName, _Out_opt_ ULARGE_INTEGER *pulFreeBytesAvailableToCaller, _Out_opt_ ULARGE_INTEGER *pulTotalNumberOfBytes, _Out_opt_ ULARGE_INTEGER *pulTotalNumberOfFreeBytes)
atttiBOOLSHGetDiskFreeSpaceExA(_In_ LPCSTR pszDirectoryName, _Out_opt_ ULARGE_INTEGER *pulFreeBytesAvailableToCaller, _Out_opt_ ULARGE_INTEGER *pulTotalNumberOfBytes, _Out_opt_ ULARGE_INTEGER *pulTotalNumberOfFreeBytes)
wtttiBOOLSHGetDiskFreeSpaceExW(_In_ LPCWSTR pszDirectoryName, _Out_opt_ ULARGE_INTEGER *pulFreeBytesAvailableToCaller, _Out_opt_ ULARGE_INTEGER *pulTotalNumberOfBytes, _Out_opt_ ULARGE_INTEGER *pulTotalNumberOfFreeBytes)
wtiHRESULTSHGetDriveMedia(_In_ PCWSTR pszDrive, _Out_ DWORD *pdwMediaContent)
suituiuiutDWORD_PTRSHGetFileInfo(_In_ LPCTSTR pszPath, DWORD dwFileAttributes, _Inout_ SHFILEINFO *psfi, UINT cbFileInfo, UINT uFlags)
auituiuiutDWORD_PTRSHGetFileInfoA(_In_ LPCSTR pszPath, DWORD dwFileAttributes, _Inout_ SHFILEINFO *psfi, UINT cbFileInfo, UINT uFlags)
wuituiuiutDWORD_PTRSHGetFileInfoW(_In_ LPCWSTR pszPath, DWORD dwFileAttributes, _Inout_ SHFILEINFO *psfi, UINT cbFileInfo, UINT uFlags)
tituitiHRESULTSHGetFolderLocation(_In_ HWND hwndOwner, _In_ int nFolder, _In_ HANDLE hToken, _Reserved_ DWORD dwReserved, _Out_ PIDLIST_ABSOLUTE *ppidl)
tituisiHRESULTSHGetFolderPath(_In_ HWND hwndOwner, _In_ int nFolder, _In_ HANDLE hToken, _In_ DWORD dwFlags, _Out_ LPTSTR pszPath)
tituiaiHRESULTSHGetFolderPathA(_In_ HWND hwndOwner, _In_ int nFolder, _In_ HANDLE hToken, _In_ DWORD dwFlags, _Out_ LPSTR pszPath)
tituissiHRESULTSHGetFolderPathAndSubDir(_In_ HWND hwnd, _In_ int csidl, _In_ HANDLE hToken, _In_ DWORD dwFlags, _In_ LPCTSTR pszSubDir, _Out_ LPTSTR pszPath)
tituiaaiHRESULTSHGetFolderPathAndSubDirA(_In_ HWND hwnd, _In_ int csidl, _In_ HANDLE hToken, _In_ DWORD dwFlags, _In_ LPCSTR pszSubDir, _Out_ LPSTR pszPath)
tituiwwiHRESULTSHGetFolderPathAndSubDirW(_In_ HWND hwnd, _In_ int csidl, _In_ HANDLE hToken, _In_ DWORD dwFlags, _In_ LPCWSTR pszSubDir, _Out_ LPWSTR pszPath)
tituiwiHRESULTSHGetFolderPathW(_In_ HWND hwndOwner, _In_ int nFolder, _In_ HANDLE hToken, _In_ DWORD dwFlags, _Out_ LPWSTR pszPath)
siiintSHGetIconOverlayIndex(_In_opt_ LPCTSTR pszIconPath, int iIconIndex)
aiiintSHGetIconOverlayIndexA(_In_opt_ LPCSTR pszIconPath, int iIconIndex)
wiiintSHGetIconOverlayIndexW(_In_opt_ LPCWSTR pszIconPath, int iIconIndex)
ttiHRESULTSHGetIDListFromObject(_In_ IUnknown *punk, _Out_ PIDLIST_ABSOLUTE *ppidl)
ittiHRESULTSHGetImageList(_In_ int iImageList, _In_ REFIID riid, _Out_ void **ppv)
tiHRESULTSHGetInstanceExplorer(_Out_ IUnknown **ppunk)
tuittiHRESULTSHGetItemFromDataObject(_In_ IDataObject *pdtobj, _In_ DATAOBJ_GET_ITEM_FLAGS dwFlags, _In_ REFIID riid, _Out_ void **ppv)
tttiHRESULTSHGetItemFromObject(_In_ IUnknown *punk, _In_ REFIID riid, _Out_ void **ppv)
tuittiHRESULTSHGetKnownFolderIDList(_In_ REFKNOWNFOLDERID rfid, _In_ DWORD dwFlags, _In_ HANDLE hToken, _Out_ PIDLIST_ABSOLUTE *ppidl)
tuitttiHRESULTSHGetKnownFolderItem(_In_ REFKNOWNFOLDERID rfid, _In_ KNOWN_FOLDER_FLAG dwFlags, _In_ HANDLE hToken, _In_ REFIID riid, _Out_ void **ppv)
tuitwiHRESULTSHGetKnownFolderPath(_In_ REFKNOWNFOLDERID rfid, _In_ DWORD dwFlags, _In_opt_ HANDLE hToken, _Out_ PWSTR *ppszPath)
wtuitiHRESULTSHGetLocalizedName(_In_ PCWSTR pszPath, _Out_ PWSTR pszResModule, UINT cch, _Out_ int *pidsRes)
tiHRESULTSHGetMalloc(LPMALLOC *ppMalloc)
tuiwiHRESULTSHGetNameFromIDList(_In_ PCIDLIST_ABSOLUTE pidl, _In_ SIGDN sigdnName, _Out_ PWSTR *ppszName)
ssstuiiBOOLSHGetNewLinkInfo(_In_ LPCTSTR pszLinkTo, _In_ LPCTSTR pszDir, _Out_ LPTSTR pszName, _Out_ BOOL *pfMustCopy, _In_ UINT uFlags)
aaatuiiBOOLSHGetNewLinkInfoA(_In_ LPCSTR pszLinkTo, _In_ LPCSTR pszDir, _Out_ LPSTR pszName, _Out_ BOOL *pfMustCopy, _In_ UINT uFlags)
wwwtuiiBOOLSHGetNewLinkInfoW(_In_ LPCWSTR pszLinkTo, _In_ LPCWSTR pszDir, _Out_ LPWSTR pszName, _Out_ BOOL *pfMustCopy, _In_ UINT uFlags)
tsiBOOLSHGetPathFromIDList(_In_ PCIDLIST_ABSOLUTE pidl, _Out_ LPTSTR pszPath)
taiBOOLSHGetPathFromIDListA(_In_ PCIDLIST_ABSOLUTE pidl, _Out_ LPSTR pszPath)
ttuiiiBOOLSHGetPathFromIDListEx(_In_ PCIDLIST_ABSOLUTE pidl, _Out_ PWSTR pszPath, DWORD cchPath, GPFIDL_FLAGS uOpts)
twiBOOLSHGetPathFromIDListW(_In_ PCIDLIST_ABSOLUTE pidl, _Out_ LPWSTR pszPath)
tttiHRESULTSHGetPropertyStoreForWindow(_In_ HWND hwnd, _In_ REFIID riid, _Out_ void **ppv)
tuittiHRESULTSHGetPropertyStoreFromIDList(_In_ PCIDLIST_ABSOLUTE pidl, _In_ GETPROPERTYSTOREFLAGS flags, _In_ REFIID riid, _Out_ void **ppv)
wtuittiHRESULTSHGetPropertyStoreFromParsingName(_In_ PCWSTR pszPath, _In_opt_ IBindCtx *pbc, _In_ GETPROPERTYSTOREFLAGS flags, _In_ REFIID riid, _Out_ void **ppv)
tttiHRESULTSHGetRealIDL(_In_ IShellFolder *psf, _In_ PCUITEMID_CHILD pidlSimple, _Out_ PITEMID_CHILD *ppidlReal)
tsuiiHRESULTSHGetSetFolderCustomSettings(_Inout_ LPSHFOLDERCUSTOMSETTINGS pfcs, _In_ PCTSTR pszPath, DWORD dwReadWrite)
tuiiiVOIDSHGetSetSettings(_Inout_ LPSHELLSTATE lpss, _In_ DWORD dwMask, _In_ BOOL bSet)
tuiiVOIDSHGetSettings(LPSHELLFLAGSTATE lpsfs, DWORD dwMask)
titiHRESULTSHGetSpecialFolderLocation(_In_ HWND hwndOwner, _In_ int nFolder, _Out_ PIDLIST_ABSOLUTE *ppidl)
tsiiiBOOLSHGetSpecialFolderPath(HWND hwndOwner, _Out_ LPTSTR lpszPath, _In_ int csidl, _In_ BOOL fCreate)
taiiiBOOLSHGetSpecialFolderPathA(HWND hwndOwner, _Out_ LPSTR lpszPath, _In_ int csidl, _In_ BOOL fCreate)
twiiiBOOLSHGetSpecialFolderPathW(HWND hwndOwner, _Out_ LPWSTR lpszPath, _In_ int csidl, _In_ BOOL fCreate)
uiuitiHRESULTSHGetStockIconInfo(SHSTOCKICONID siid, UINT uFlags, _Inout_ SHSTOCKICONINFO *psii)
tttiHRESULTSHGetTemporaryPropertyForItem(_In_ IShellItem *psi, REFPROPERTYKEY pk, _Out_ PROPVARIANT *ppropvarInk)
tsttsiiHRESULTSHGetUnreadMailCount(_In_opt_ HKEY hKeyUser, _In_opt_ LPCTSTR pszMailAddress, _Out_opt_ DWORD *pdwCount, _Out_opt_ FILETIME *pFileTime, _Out_opt_ LPCTSTR pszShellExecuteCommand, int cchShellExecuteCommand)
twttwiiHRESULTSHGetUnreadMailCountW(_In_opt_ HKEY hKeyUser, _In_opt_ LPCWSTR pszMailAddress, _Out_opt_ DWORD *pdwCount, _Out_opt_ FILETIME *pFileTime, _Out_opt_ LPCWSTR pszShellExecuteCommand, int cchShellExecuteCommand)
tiintSHHandleUpdateImage(_In_ PCIDLIST_ABSOLUTE pidlExtra)
wttiHRESULTSHILCreateFromPath(_In_ PCWSTR pszPath, _Out_ PIDLIST_ABSOLUTE *ppidl, _Inout_opt_ DWORD *rgflnOut)
tuissiiBOOLSHInvokePrinterCommand(_In_opt_ HWND hwnd, UINT uAction, _In_ LPCTSTR lpBuf1, _In_opt_ LPCTSTR lpBuf2, BOOL fModal)
tuiaaiiBOOLSHInvokePrinterCommandA(_In_opt_ HWND hwnd, UINT uAction, _In_ LPCSTR lpBuf1, _In_opt_ LPCSTR lpBuf2, BOOL fModal)
tuiwwiiBOOLSHInvokePrinterCommandW(_In_opt_ HWND hwnd, UINT uAction, _In_ LPCWSTR lpBuf1, _In_opt_ LPCWSTR lpBuf2, BOOL fModal)
wtiHRESULTSHIsFileAvailableOffline(_In_ PCWSTR pszPath, _Out_opt_ LPDWORD pdwStatus)
ttiHRESULTSHLimitInputEdit(_In_opt_ HWND hwndEdit, _In_ IShellFolder *psf)
tiHRESULTSHLoadInProc(_In_ REFCLSID rclsid)
iHRESULTSHLoadNonloadedIconOverlayIdentifiers(void)
tttiintSHMapPIDLToSystemImageListIndex(_In_ IShellFolder *psf, _In_ PCUITEMID_CHILD pidl, _Out_opt_ int *piIndex)
tuiiHRESULTSHMultiFileProperties(_In_ IDataObject *pdtobj, DWORD dwFlags)
tuiwwiBOOLSHObjectProperties(_In_ HWND hwnd, _In_ DWORD shopObjectType, _In_ PCWSTR pszObjectName, _In_ PCWSTR pszPropertyPage)
tuituiiHRESULTSHOpenFolderAndSelectItems(_In_ PCIDLIST_ABSOLUTE pidlFolder, UINT cidl, _In_opt_ PCUITEMID_CHILD_ARRAY apidl, DWORD dwFlags)
stuitttsiBOOLSHOpenPropSheet(_In_opt_ LPCTSTR pszCaption, _In_opt_ HKEY ahkeys[], UINT ckeys, _In_opt_ const CLSID *pclsidDef, _In_ IDataObject *pdtobj, _In_opt_ IShellBrowser *psb, _In_opt_ LPCTSTR pStartPage)
wtuitttwiBOOLSHOpenPropSheetW(_In_opt_ LPCWSTR pszCaption, _In_opt_ HKEY ahkeys[], UINT ckeys, _In_opt_ const CLSID *pclsidDef, _In_ IDataObject *pdtobj, _In_opt_ IShellBrowser *psb, _In_opt_ LPCWSTR pStartPage)
ttiHRESULTSHOpenWithDialog(_In_opt_ HWND hwndParent, _In_ const OPENASINFO *poainfo)
wttuitiHRESULTSHParseDisplayName(_In_ LPCWSTR pszName, _In_opt_ IBindCtx *pbc, _Out_ PIDLIST_ABSOLUTE *ppidl, _In_ SFGAOF sfgaoIn, _Out_opt_ SFGAOF *psfgaoOut)
ttsuiiHRESULTSHPathPrepareForWrite(_In_opt_ HWND hwnd, _In_opt_ IUnknown *punkEnableModless, _In_ LPCTSTR pszPath, DWORD dwFlags = SHPPFW_DEFAULT)
ttauiiHRESULTSHPathPrepareForWriteA(_In_opt_ HWND hwnd, _In_opt_ IUnknown *punkEnableModless, _In_ LPCSTR pszPath, DWORD dwFlags = SHPPFW_DEFAULT)
ttwuiiHRESULTSHPathPrepareForWriteW(_In_opt_ HWND hwnd, _In_opt_ IUnknown *punkEnableModless, _In_ LPCWSTR pszPath, DWORD dwFlags = SHPPFW_DEFAULT)
tttuiuiuittiHRESULTSHPropStgCreate(_In_ IPropertySetStorage *psstg, _In_ REFFMTID fmtid, _In_opt_ const CLSID *pclsid, DWORD grfFlags, DWORD grfMode, DWORD dwDisposition, _Out_ IPropertyStorage **ppstg, _Out_opt_ UINT *puCodePage)
tuiuittiHRESULTSHPropStgReadMultiple(_In_ IPropertyStorage *pps, UINT uCodePage, ULONG cpspec, _In_ PROPSPEC const rgpspec[], _Out_ PROPVARIANT rgvar[])
ttuittuiiHRESULTSHPropStgWriteMultiple(_In_ IPropertyStorage *pps, _Inout_opt_ UINT *uCodePage, ULONG cpspec, _In_ PROPSPEC const rgpspec[], _Inout_ PROPVARIANT rgvar[], PROPID propidNameFirst)
stiHRESULTSHQueryRecycleBin(_In_opt_ LPCTSTR pszRootPath, _Inout_ LPSHQUERYRBINFO pSHQueryRBInfo)
atiHRESULTSHQueryRecycleBinA(_In_opt_ LPCSTR pszRootPath, _Inout_ LPSHQUERYRBINFO pSHQueryRBInfo)
wtiHRESULTSHQueryRecycleBinW(_In_opt_ LPCWSTR pszRootPath, _Inout_ LPSHQUERYRBINFO pSHQueryRBInfo)
tiHRESULTSHQueryUserNotificationState(_Out_ QUERY_USER_NOTIFICATION_STATE *pquns)
wiHRESULTSHRemoveLocalizedName(_In_ PCWSTR pszPath)
tuitutuiUINTSHReplaceFromPropSheetExtArray(_In_ HPSXA hpsxa, UINT uPageID, _In_ LPFNADDPROPSHEETPAGE lpfnReplaceWith, LPARAM lParam)
tiHRESULTSHResolveLibrary(_In_ IShellItem *psiLibrary)
uiuiDWORDSHRestricted(RESTRICTIONS rest)
ttuitiHRESULTSHSetDefaultProperties(_In_opt_ HWND hwnd, _In_ IShellItem *psi, DWORD dwFileOpFlags, _In_opt_ IFileOperationProgressSink *pfops)
ituisiHRESULTSHSetFolderPath(_In_ int csidl, _In_ HANDLE hToken, _Reserved_ DWORD dwFlags, _In_ LPCTSTR pszPath)
ituiaiHRESULTSHSetFolderPathA(_In_ int csidl, _In_ HANDLE hToken, _Reserved_ DWORD dwFlags, _In_ LPCSTR pszPath)
ituiwiHRESULTSHSetFolderPathW(_In_ int csidl, _In_ HANDLE hToken, _Reserved_ DWORD dwFlags, _In_ LPCWSTR pszPath)
tiVOIDSHSetInstanceExplorer(_In_opt_ IUnknown *pUnk)
tuitwiHRESULTSHSetKnownFolderPath(_In_ REFKNOWNFOLDERID rfid, _In_ DWORD dwFlags, _In_ HANDLE hToken, _In_ PCWSTR pszPath)
wwiiHRESULTSHSetLocalizedName(_In_ PCWSTR pszPath, _In_ PCWSTR pszResModule, int idsRes)
tttiHRESULTSHSetTemporaryPropertyForItem(_In_ IShellItem *psi, _In_ REFPROPERTYKEY propkey, _In_ REFPROPVARIANT propvar)
suisiHRESULTSHSetUnreadMailCount(_In_ LPCTSTR pszMailAddress, DWORD dwCount, _In_ LPCTSTR pszShellExecuteCommand)
wuiwiHRESULTSHSetUnreadMailCountW(_In_ LPCWSTR pszMailAddress, DWORD dwCount, _In_ LPCWSTR pszShellExecuteCommand)
tuiuttLRESULTSHShellFolderView_Message(_In_ HWND hwndMain, UINT uMsg, LPARAM lParam)
ttwwuiiHRESULTSHShowManageLibraryUI(_In_ IShellItem *psiLibrary, _In_opt_ HWND hwndOwner, _In_opt_ LPCWSTR pszTitle, _In_opt_ LPCWSTR pszInstruction, _In_ LIBRARYMANAGEDIALOGOPTIONS lmdOptions)
wtPIDLIST_ABSOLUTESHSimpleIDListFromPath(_In_ PCWSTR pszPath)
tsuiiHRESULTSHStartNetConnectionDialog(_In_opt_ HWND hwnd, _In_opt_ LPCTSTR pszRemoteName, DWORD dwType)
twuiiHRESULTSHStartNetConnectionDialogW(_In_opt_ HWND hwnd, _In_opt_ LPCWSTR pszRemoteName, DWORD dwType)
tuiiBOOLSHTestTokenMembership(_In_opt_ HANDLE hToken, ULONG ulRID)
siuiiiVOIDSHUpdateImage(_In_ LPCTSTR pszHashItem, _In_ int iIndex, _In_ UINT uFlags, _In_ int iImageIndex)
aiuiiiVOIDSHUpdateImageA(_In_ LPCSTR pszHashItem, _In_ int iIndex, _In_ UINT uFlags, _In_ int iImageIndex)
wiuiiiVOIDSHUpdateImageW(_In_ LPCWSTR pszHashItem, _In_ int iIndex, _In_ UINT uFlags, _In_ int iImageIndex)
ttuiiBOOLSHValidateUNC(_In_opt_ HWND hwndOwner, _Inout_ PWSTR pszFile, UINT fConnect)
tiBOOLSignalFileOpen(_In_ PCIDLIST_ABSOLUTE pidl)
twuittiHRESULTStgMakeUniqueName(_In_ IStorage *pstgParent, _In_ PCWSTR pszFileSpec, _In_ DWORD grfMode, _In_ REFIID riid, _Out_ void **ppv)
wiBOOLWin32DeleteFile(_In_ PCWSTR pszFileName)
tssssittHINSTANCEWOWShellExecute(_In_ HWND hwnd, _In_ LPCTSTR lpOperation, _In_ LPCTSTR lpFile, _In_ LPCTSTR lpParameters, _In_ LPCTSTR lpDirectory, _In_ INT nShowCmd, void *lpfnCBWinExec)
tiBOOLWriteCabinetState(_In_ CABINETSTATE *pcs)

Shlwapi.dll

tttiHRESULTAssocCreate(_In_ CLSID clsid, _In_ REFIID riid, _Out_ void *ppv)
wttwiHRESULTAssocGetPerceivedType(_In_ PCWSTR pszExt, _Out_ PERCEIVED *ptype, _Out_ PERCEIVEDFLAG *pflag, _Out_opt_ PWSTR *ppszType)
wiBOOLAssocIsDangerous(_In_ PCWSTR pszAssoc)
iisstiHRESULTAssocQueryKey(_In_ ASSOCF flags, _In_ ASSOCKEY key, _In_ LPCTSTR pszAssoc, _In_ LPCTSTR pszExtra, _Out_ HKEY *phkeyOut)
iiaatiHRESULTAssocQueryKeyA(_In_ ASSOCF flags, _In_ ASSOCKEY key, _In_ LPCSTR pszAssoc, _In_ LPCSTR pszExtra, _Out_ HKEY *phkeyOut)
iiwwtiHRESULTAssocQueryKeyW(_In_ ASSOCF flags, _In_ ASSOCKEY key, _In_ LPCWSTR pszAssoc, _In_ LPCWSTR pszExtra, _Out_ HKEY *phkeyOut)
iissstiHRESULTAssocQueryString(_In_ ASSOCF flags, _In_ ASSOCSTR str, _In_ LPCTSTR pszAssoc, _In_opt_ LPCTSTR pszExtra, _Out_opt_ LPTSTR pszOut, _Inout_ DWORD *pcchOut)
iiaaatiHRESULTAssocQueryStringA(_In_ ASSOCF flags, _In_ ASSOCSTR str, _In_ LPCSTR pszAssoc, _In_opt_ LPCSTR pszExtra, _Out_opt_ LPSTR pszOut, _Inout_ DWORD *pcchOut)
iitsstiHRESULTAssocQueryStringByKey(_In_ ASSOCF flags, _In_ ASSOCSTR str, _In_ HKEY hkAssoc, _In_opt_ LPCTSTR pszExtra, _Out_opt_ LPTSTR pszOut, _Inout_ DWORD *pcchOut)
iitaatiHRESULTAssocQueryStringByKeyA(_In_ ASSOCF flags, _In_ ASSOCSTR str, _In_ HKEY hkAssoc, _In_opt_ LPCSTR pszExtra, _Out_opt_ LPSTR pszOut, _Inout_ DWORD *pcchOut)
iitwwtiHRESULTAssocQueryStringByKeyW(_In_ ASSOCF flags, _In_ ASSOCSTR str, _In_ HKEY hkAssoc, _In_opt_ LPCWSTR pszExtra, _Out_opt_ LPWSTR pszOut, _Inout_ DWORD *pcchOut)
iiwwwtiHRESULTAssocQueryStringW(_In_ ASSOCF flags, _In_ ASSOCSTR str, _In_ LPCWSTR pszAssoc, _In_opt_ LPCWSTR pszExtra, _Out_opt_ LPWSTR pszOut, _Inout_ DWORD *pcchOut)
yyiBOOLChrCmpI(_In_ TCHAR w1, _In_ TCHAR w2)
yyiBOOLChrCmpIA(_In_ TCHAR w1, _In_ TCHAR w2)
yyiBOOLChrCmpIW(_In_ TCHAR w1, _In_ TCHAR w2)
uiiiuiCOLORREFColorAdjustLuma(COLORREF clrRGB, int n, BOOL fScale)
uhuhuhuiCOLORREFColorHLSToRGB(WORD wHue, WORD wLuminance, WORD wSaturation)
uitttiVOIDColorRGBToHLS(COLORREF clrRGB, _Out_ WORD *pwHue, _Out_ WORD *pwLuminance, _Out_ WORD *pwSaturation)
ttitttiHRESULTConnectToConnectionPoint(_In_opt_ IUnknown *punk, _In_ REFIID riidEvent, BOOL fConnect, _In_ IUnknown *punkTarget, _Out_ DWORD *pdwCookie, _Out_opt_ IConnectionPoint **ppcpOut)
iwiHRESULTDllInstall(BOOL bInstall, _In_opt_ PCWSTR pszCmdLine)
stiHRESULTGetAcceptLanguages(_Out_ LPTSTR pszLanguages, _Inout_ DWORD *pcchLanguages)
atiHRESULTGetAcceptLanguagesA(_Out_ LPSTR pszLanguages, _Inout_ DWORD *pcchLanguages)
wtiHRESULTGetAcceptLanguagesW(_Out_ LPWSTR pszLanguages, _Inout_ DWORD *pcchLanguages)
tuiiintGetMenuPosFromID(_In_ HMENU hmenu, UINT id)
tuituiiHRESULTHashData(_In_ BYTE *pbData, DWORD cbData, _Out_ BYTE *pbHash, DWORD cbHash)
issiiBOOLIntlStrEqWorker(_In_ BOOL fCaseSens, _In_ LPCTSTR pszStr1, _In_ LPCTSTR pszStr2, _In_ int nChar)
iaaiiBOOLIntlStrEqWorkerA(_In_ BOOL fCaseSens, _In_ LPCSTR pszStr1, _In_ LPCSTR pszStr2, _In_ int nChar)
iwwiiBOOLIntlStrEqWorkerW(_In_ BOOL fCaseSens, _In_ LPCWSTR pszStr1, _In_ LPCWSTR pszStr2, _In_ int nChar)
yiBOOLIsCharSpace(_In_ TCHAR wch)
yiBOOLIsCharSpaceA(_In_ TCHAR wch)
yiBOOLIsCharSpaceW(_In_ TCHAR wch)
iBOOLIsInternetESCEnabled(void)
uiiBOOLIsOS(_In_ DWORD dwOS)
ttuiiHRESULTIStream_Copy(_In_ IStream *pstmFrom, _In_ IStream *pstmTo, _In_ DWORD cb)
ttuiiHRESULTIStream_Read(_In_ IStream *pstm, _Out_ VOID *pv, _In_ ULONG cb)
ttiHRESULTIStream_ReadPidl(_In_ IStream* pstm, _Out_ PIDLIST_RELATIVE* ppidlOut)
twiHRESULTIStream_ReadStr(_In_ IStream *pstm, _Out_ PWSTR *ppsz)
tiHRESULTIStream_Reset(_In_ IStream *pstm)
ttiHRESULTIStream_Size(_In_ IStream *pstm, _Out_ ULARGE_INTEGER *pui)
ttuiiHRESULTIStream_Write(_In_ IStream *pstm, _In_ const void *pv, _In_ ULONG cb)
ttiHRESULTIStream_WritePidl(_In_ IStream* pstm, _In_ PCUIDLIST_RELATIVE pidlWrite)
twiHRESULTIStream_WriteStr(_In_ IStream *pstm, _In_ PCWSTR psz)
tiVOIDIUnknown_AtomicRelease(_Inout_opt_ void **ppunk)
tttiHRESULTIUnknown_GetSite(_In_ IUnknown *punk, _In_ REFIID riid, _Out_ VOID **ppvSite)
ttiHRESULTIUnknown_GetWindow(_In_ IUnknown *punk, _Out_ HWND *phwnd)
ttttiHRESULTIUnknown_QueryService(_In_ IUnknown *punk, _In_ REFGUID guidService, _In_ REFIID riid, _Out_ void **ppvOut)
ttiVOIDIUnknown_Set(_Inout_ IUnknown **ppunk, _In_opt_ IUnknown *punk)
ttiHRESULTIUnknown_SetSite(_In_ IUnknown *punk, _In_ IUnknown *punkSite)
tiBOOLMLFreeLibrary(_In_ HMODULE hModule)
stuitHINSTANCEMLLoadLibrary(_In_ LPCTSTR lpszLibFileName, _In_ HMODULE hModule, _In_ DWORD dwCrossCodePage)
atuitHINSTANCEMLLoadLibraryA(_In_ LPCSTR lpszLibFileName, _In_ HMODULE hModule, _In_ DWORD dwCrossCodePage)
wtuitHINSTANCEMLLoadLibraryW(_In_ LPCWSTR lpszLibFileName, _In_ HMODULE hModule, _In_ DWORD dwCrossCodePage)
stiHRESULTParseURL(_In_ LPCTSTR pcszUrl, _Inout_ PARSEDURL *ppu)
atiHRESULTParseURLA(_In_ LPCSTR pcszUrl, _Inout_ PARSEDURL *ppu)
wtiHRESULTParseURLW(_In_ LPCWSTR pcszUrl, _Inout_ PARSEDURL *ppu)
ssLPTSTRPathAddBackslash(_Inout_ LPTSTR lpszPath)
aaLPSTRPathAddBackslashA(_Inout_ LPSTR lpszPath)
wwLPWSTRPathAddBackslashW(_Inout_ LPWSTR lpszPath)
ssiBOOLPathAddExtension(_Inout_ LPTSTR pszPath, _In_opt_ LPCTSTR pszExtension)
aaiBOOLPathAddExtensionA(_Inout_ LPSTR pszPath, _In_opt_ LPCSTR pszExtension)
wwiBOOLPathAddExtensionW(_Inout_ LPWSTR pszPath, _In_opt_ LPCWSTR pszExtension)
ssiBOOLPathAppend(_Inout_ LPTSTR pszPath, _In_ LPCTSTR pszMore)
aaiBOOLPathAppendA(_Inout_ LPSTR pszPath, _In_ LPCSTR pszMore)
wwiBOOLPathAppendW(_Inout_ LPWSTR pszPath, _In_ LPCWSTR pszMore)
sisLPTSTRPathBuildRoot(_Out_ LPTSTR szRoot, _In_ int iDrive)
aiaLPSTRPathBuildRootA(_Out_ LPSTR szRoot, _In_ int iDrive)
wiwLPWSTRPathBuildRootW(_Out_ LPWSTR szRoot, _In_ int iDrive)
ssiBOOLPathCanonicalize(_Out_ LPTSTR lpszDst, _In_ LPCTSTR lpszSrc)
aaiBOOLPathCanonicalizeA(_Out_ LPSTR lpszDst, _In_ LPCSTR lpszSrc)
wwiBOOLPathCanonicalizeW(_Out_ LPWSTR lpszDst, _In_ LPCWSTR lpszSrc)
ssssLPTSTRPathCombine(_Out_ LPTSTR pszPathOut, _In_opt_ LPCTSTR pszPathIn, _In_ LPCTSTR pszMore)
aaaaLPSTRPathCombineA(_Out_ LPSTR pszPathOut, _In_opt_ LPCSTR pszPathIn, _In_ LPCSTR pszMore)
wwwwLPWSTRPathCombineW(_Out_ LPWSTR pszPathOut, _In_opt_ LPCWSTR pszPathIn, _In_ LPCWSTR pszMore)
sssiintPathCommonPrefix(_In_ LPCTSTR pszFile1, _In_ LPCTSTR pszFile2, _Out_opt_ LPTSTR pszPath)
aaaiintPathCommonPrefixA(_In_ LPCSTR pszFile1, _In_ LPCSTR pszFile2, _Out_opt_ LPSTR pszPath)
wwwiintPathCommonPrefixW(_In_ LPCWSTR pszFile1, _In_ LPCWSTR pszFile2, _Out_opt_ LPWSTR pszPath)
tsuiiBOOLPathCompactPath(_In_ HDC hDC, _Inout_ LPTSTR lpszPath, _In_ UINT dx)
tauiiBOOLPathCompactPathA(_In_ HDC hDC, _Inout_ LPSTR lpszPath, _In_ UINT dx)
ssuiuiiBOOLPathCompactPathEx(_Out_ LPTSTR pszOut, _In_ LPCTSTR pszSrc, _In_ UINT cchMax, _Reserved_ DWORD dwFlags)
aauiuiiBOOLPathCompactPathExA(_Out_ LPSTR pszOut, _In_ LPCSTR pszSrc, _In_ UINT cchMax, _Reserved_ DWORD dwFlags)
wwuiuiiBOOLPathCompactPathExW(_Out_ LPWSTR pszOut, _In_ LPCWSTR pszSrc, _In_ UINT cchMax, _Reserved_ DWORD dwFlags)
twuiiBOOLPathCompactPathW(_In_ HDC hDC, _Inout_ LPWSTR lpszPath, _In_ UINT dx)
sstuiiHRESULTPathCreateFromUrl(_In_ PCTSTR pszUrl, _Out_ PTSTR pszPath, _Inout_ DWORD *pcchPath, DWORD dwFlags)
aatuiiHRESULTPathCreateFromUrlA(_In_ PCTSTR pszUrl, _Out_ PTSTR pszPath, _Inout_ DWORD *pcchPath, DWORD dwFlags)
wwuiiHRESULTPathCreateFromUrlAlloc(_In_ PCWSTR pszIn, _Out_ PWSTR *ppszOut, DWORD dwFlags)
wwtuiiHRESULTPathCreateFromUrlW(_In_ PCTSTR pszUrl, _Out_ PTSTR pszPath, _Inout_ DWORD *pcchPath, DWORD dwFlags)
siBOOLPathFileExists(_In_ LPCTSTR pszPath)
aiBOOLPathFileExistsA(_In_ LPCSTR pszPath)
wiBOOLPathFileExistsW(_In_ LPCWSTR pszPath)
ssPTSTRPathFindExtension(_In_ PTSTR pszPath)
aaPTSTRPathFindExtensionA(_In_ PTSTR pszPath)
wwPTSTRPathFindExtensionW(_In_ PTSTR pszPath)
ssPTSTRPathFindFileName(_In_ PTSTR pPath)
aaPTSTRPathFindFileNameA(_In_ PTSTR pPath)
wwPTSTRPathFindFileNameW(_In_ PTSTR pPath)
ssPTSTRPathFindNextComponent(_In_ PTSTR pszPath)
aaPTSTRPathFindNextComponentA(_In_ PTSTR pszPath)
wwPTSTRPathFindNextComponentW(_In_ PTSTR pszPath)
ssiBOOLPathFindOnPath(_Inout_ LPTSTR pszFile, _In_opt_ LPCTSTR *ppszOtherDirs)
aaiBOOLPathFindOnPathA(_Inout_ LPSTR pszFile, _In_opt_ LPCSTR *ppszOtherDirs)
wwiBOOLPathFindOnPathW(_Inout_ LPWSTR pszFile, _In_opt_ LPCWSTR *ppszOtherDirs)
ssisLPCTSTRPathFindSuffixArray(_In_ LPCTSTR pszPath, _In_ const LPCTSTR *apszSuffix, _In_ int iArraySize)
aaiaLPCSTRPathFindSuffixArrayA(_In_ LPCSTR pszPath, _In_ const LPCSTR *apszSuffix, _In_ int iArraySize)
wwiwLPCWSTRPathFindSuffixArrayW(_In_ LPCWSTR pszPath, _In_ const LPCWSTR *apszSuffix, _In_ int iArraySize)
ssPTSTRPathGetArgs(_In_ PTSTR pszPath)
aaPTSTRPathGetArgsA(_In_ PTSTR pszPath)
wwPTSTRPathGetArgsW(_In_ PTSTR pszPath)
zuiUINTPathGetCharType(_In_ TUCHAR ch)
zuiUINTPathGetCharTypeA(_In_ TUCHAR ch)
zuiUINTPathGetCharTypeW(_In_ TUCHAR ch)
siintPathGetDriveNumber(_In_ LPCTSTR lpsz)
aiintPathGetDriveNumberA(_In_ LPCSTR lpsz)
wiintPathGetDriveNumberW(_In_ LPCWSTR lpsz)
ssiBOOLPathIsContentType(_In_ LPCTSTR pszPath, _In_ LPCTSTR pszContentType)
aaiBOOLPathIsContentTypeA(_In_ LPCSTR pszPath, _In_ LPCSTR pszContentType)
wwiBOOLPathIsContentTypeW(_In_ LPCWSTR pszPath, _In_ LPCWSTR pszContentType)
siBOOLPathIsDirectory(_In_ LPCTSTR pszPath)
aiBOOLPathIsDirectoryA(_In_ LPCSTR pszPath)
siBOOLPathIsDirectoryEmpty(_In_ LPCTSTR pszPath)
aiBOOLPathIsDirectoryEmptyA(_In_ LPCSTR pszPath)
wiBOOLPathIsDirectoryEmptyW(_In_ LPCWSTR pszPath)
wiBOOLPathIsDirectoryW(_In_ LPCWSTR pszPath)
siBOOLPathIsFileSpec(_In_ LPCTSTR lpszPath)
aiBOOLPathIsFileSpecA(_In_ LPCSTR lpszPath)
wiBOOLPathIsFileSpecW(_In_ LPCWSTR lpszPath)
siBOOLPathIsLFNFileSpec(_In_ LPCTSTR pszName)
aiBOOLPathIsLFNFileSpecA(_In_ LPCSTR pszName)
wiBOOLPathIsLFNFileSpecW(_In_ LPCWSTR pszName)
siBOOLPathIsNetworkPath(_In_ LPCTSTR pszPath)
aiBOOLPathIsNetworkPathA(_In_ LPCSTR pszPath)
wiBOOLPathIsNetworkPathW(_In_ LPCWSTR pszPath)
ssiBOOLPathIsPrefix(_In_ IN LPCTSTR pszPrefix, _In_ IN LPCTSTR pszPath)
aaiBOOLPathIsPrefixA(_In_ IN LPCSTR pszPrefix, _In_ IN LPCSTR pszPath)
wwiBOOLPathIsPrefixW(_In_ IN LPCWSTR pszPrefix, _In_ IN LPCWSTR pszPath)
siBOOLPathIsRelative(_In_ LPCTSTR lpszPath)
aiBOOLPathIsRelativeA(_In_ LPCSTR lpszPath)
wiBOOLPathIsRelativeW(_In_ LPCWSTR lpszPath)
siBOOLPathIsRoot(_In_ LPCTSTR pPath)
aiBOOLPathIsRootA(_In_ LPCSTR pPath)
wiBOOLPathIsRootW(_In_ LPCWSTR pPath)
ssiBOOLPathIsSameRoot(_In_ LPCTSTR pszPath1, _In_ LPCTSTR pszPath2)
aaiBOOLPathIsSameRootA(_In_ LPCSTR pszPath1, _In_ LPCSTR pszPath2)
wwiBOOLPathIsSameRootW(_In_ LPCWSTR pszPath1, _In_ LPCWSTR pszPath2)
suiiBOOLPathIsSystemFolder(_In_opt_ LPCTSTR pszPath, _In_ DWORD dwAttrb)
auiiBOOLPathIsSystemFolderA(_In_opt_ LPCSTR pszPath, _In_ DWORD dwAttrb)
wuiiBOOLPathIsSystemFolderW(_In_opt_ LPCWSTR pszPath, _In_ DWORD dwAttrb)
siBOOLPathIsUNC(_In_ LPCTSTR pszPath)
aiBOOLPathIsUNCA(_In_ LPCSTR pszPath)
siBOOLPathIsUNCServer(_In_ LPCTSTR pszPath)
aiBOOLPathIsUNCServerA(_In_ LPCSTR pszPath)
siBOOLPathIsUNCServerShare(_In_ LPCTSTR pszPath)
aiBOOLPathIsUNCServerShareA(_In_ LPCSTR pszPath)
wiBOOLPathIsUNCServerShareW(_In_ LPCWSTR pszPath)
wiBOOLPathIsUNCServerW(_In_ LPCWSTR pszPath)
wiBOOLPathIsUNCW(_In_ LPCWSTR pszPath)
siBOOLPathIsURL(_In_ LPCTSTR pszPath)
aiBOOLPathIsURLA(_In_ LPCSTR pszPath)
wiBOOLPathIsURLW(_In_ LPCWSTR pszPath)
siBOOLPathMakePretty(_Inout_ LPTSTR lpPath)
aiBOOLPathMakePrettyA(_Inout_ LPSTR lpPath)
wiBOOLPathMakePrettyW(_Inout_ LPWSTR lpPath)
siBOOLPathMakeSystemFolder(_In_ LPTSTR pszPath)
aiBOOLPathMakeSystemFolderA(_In_ LPSTR pszPath)
wiBOOLPathMakeSystemFolderW(_In_ LPWSTR pszPath)
aaiBOOLPathMatchSpec(_In_ LPCSTR pszFile, _In_ LPCSTR pszSpec)
aaiBOOLPathMatchSpecA(_In_ LPCSTR pszFile, _In_ LPCSTR pszSpec)
ssuiiHRESULTPathMatchSpecEx(_In_ LPCTSTR pszFile, _In_ LPCTSTR pszSpec, _In_ DWORD dwFlags)
aauiiHRESULTPathMatchSpecExA(_In_ LPCSTR pszFile, _In_ LPCSTR pszSpec, _In_ DWORD dwFlags)
wwuiiHRESULTPathMatchSpecExW(_In_ LPCWSTR pszFile, _In_ LPCWSTR pszSpec, _In_ DWORD dwFlags)
aaiBOOLPathMatchSpecW(_In_ LPCSTR pszFile, _In_ LPCSTR pszSpec)
siintPathParseIconLocation(_Inout_ LPTSTR pszIconFile)
aiintPathParseIconLocationA(_Inout_ LPSTR pszIconFile)
wiintPathParseIconLocationW(_Inout_ LPWSTR pszIconFile)
siBOOLPathQuoteSpaces(_Inout_ LPTSTR lpsz)
aiBOOLPathQuoteSpacesA(_Inout_ LPSTR lpsz)
wiBOOLPathQuoteSpacesW(_Inout_ LPWSTR lpsz)
ssuisuiiBOOLPathRelativePathTo(_Out_ LPTSTR pszPath, _In_ LPCTSTR pszFrom, _In_ DWORD dwAttrFrom, _In_ LPCTSTR pszTo, _In_ DWORD dwAttrTo)
aauiauiiBOOLPathRelativePathToA(_Out_ LPSTR pszPath, _In_ LPCSTR pszFrom, _In_ DWORD dwAttrFrom, _In_ LPCSTR pszTo, _In_ DWORD dwAttrTo)
wwuiwuiiBOOLPathRelativePathToW(_Out_ LPWSTR pszPath, _In_ LPCWSTR pszFrom, _In_ DWORD dwAttrFrom, _In_ LPCWSTR pszTo, _In_ DWORD dwAttrTo)
siVOIDPathRemoveArgs(_Inout_ LPTSTR pszPath)
aiVOIDPathRemoveArgsA(_Inout_ LPSTR pszPath)
wiVOIDPathRemoveArgsW(_Inout_ LPWSTR pszPath)
ssLPTSTRPathRemoveBackslash(_Inout_ LPTSTR lpszPath)
aaLPSTRPathRemoveBackslashA(_Inout_ LPSTR lpszPath)
wwLPWSTRPathRemoveBackslashW(_Inout_ LPWSTR lpszPath)
siVOIDPathRemoveBlanks(_Inout_ LPTSTR lpszString)
aiVOIDPathRemoveBlanksA(_Inout_ LPSTR lpszString)
wiVOIDPathRemoveBlanksW(_Inout_ LPWSTR lpszString)
siVOIDPathRemoveExtension(_Inout_ LPTSTR pszPath)
aiVOIDPathRemoveExtensionA(_Inout_ LPSTR pszPath)
wiVOIDPathRemoveExtensionW(_Inout_ LPWSTR pszPath)
siBOOLPathRemoveFileSpec(_Inout_ LPTSTR pszPath)
aiBOOLPathRemoveFileSpecA(_Inout_ LPSTR pszPath)
wiBOOLPathRemoveFileSpecW(_Inout_ LPWSTR pszPath)
ssiBOOLPathRenameExtension(_Inout_ LPTSTR pszPath, _In_ LPCTSTR pszExt)
aaiBOOLPathRenameExtensionA(_Inout_ LPSTR pszPath, _In_ LPCSTR pszExt)
wwiBOOLPathRenameExtensionW(_Inout_ LPWSTR pszPath, _In_ LPCWSTR pszExt)
ssuiiBOOLPathSearchAndQualify(_In_ LPCTSTR pcszPath, _Out_ LPTSTR pszFullyQualifiedPath, _In_ UINT cchFullyQualifiedPath)
aauiiBOOLPathSearchAndQualifyA(_In_ LPCSTR pcszPath, _Out_ LPSTR pszFullyQualifiedPath, _In_ UINT cchFullyQualifiedPath)
wwuiiBOOLPathSearchAndQualifyW(_In_ LPCWSTR pcszPath, _Out_ LPWSTR pszFullyQualifiedPath, _In_ UINT cchFullyQualifiedPath)
tiaiVOIDPathSetDlgItemPath(_In_ HWND hDlg, _In_ int id, _In_ LPCSTR pszPath)
tiaiVOIDPathSetDlgItemPathA(_In_ HWND hDlg, _In_ int id, _In_ LPCSTR pszPath)
tiaiVOIDPathSetDlgItemPathW(_In_ HWND hDlg, _In_ int id, _In_ LPCSTR pszPath)
ssPTSTRPathSkipRoot(_In_ PTSTR pszPath)
aaPTSTRPathSkipRootA(_In_ PTSTR pszPath)
wwPTSTRPathSkipRootW(_In_ PTSTR pszPath)
siVOIDPathStripPath(_Inout_ LPTSTR pszPath)
aiVOIDPathStripPathA(_Inout_ LPSTR pszPath)
wiVOIDPathStripPathW(_Inout_ LPWSTR pszPath)
siBOOLPathStripToRoot(_Inout_ LPTSTR szRoot)
aiBOOLPathStripToRootA(_Inout_ LPSTR szRoot)
wiBOOLPathStripToRootW(_Inout_ LPWSTR szRoot)
siVOIDPathUndecorate(_Inout_ LPTSTR pszPath)
aiVOIDPathUndecorateA(_Inout_ LPSTR pszPath)
wiVOIDPathUndecorateW(_Inout_ LPWSTR pszPath)
ssuiiBOOLPathUnExpandEnvStrings(_In_ LPCTSTR pszPath, _Out_ LPTSTR pszBuf, _In_ UINT cchBuf)
aauiiBOOLPathUnExpandEnvStringsA(_In_ LPCSTR pszPath, _Out_ LPSTR pszBuf, _In_ UINT cchBuf)
wwuiiBOOLPathUnExpandEnvStringsW(_In_ LPCWSTR pszPath, _Out_ LPWSTR pszBuf, _In_ UINT cchBuf)
siBOOLPathUnmakeSystemFolder(_In_ LPTSTR pszPath)
aiBOOLPathUnmakeSystemFolderA(_In_ LPSTR pszPath)
wiBOOLPathUnmakeSystemFolderW(_In_ LPWSTR pszPath)
siVOIDPathUnquoteSpaces(_Inout_ LPTSTR lpsz)
aiVOIDPathUnquoteSpacesA(_Inout_ LPSTR lpsz)
wiVOIDPathUnquoteSpacesW(_Inout_ LPWSTR lpsz)
ttttiHRESULTQISearch(_In_ void *that, _In_ LPCQITAB pqit, _In_ REFIID riid, _Out_ void **ppv)
tuiuitHANDLESHAllocShared(_In_opt_ const void *pvData, _In_ DWORD dwSize, _In_ DWORD dwDestinationProcessId)
awiiintSHAnsiToAnsi(_In_ LPCSTR pszSrc, _Out_ LPWSTR pszDst, int cchBuf)
atiiintSHAnsiToUnicode(_In_ PCSTR pszSrc, _Out_ PWSTR pwszDst, int cwchBuf)
tuiiHRESULTSHAutoComplete(_In_ HWND hwndEdit, DWORD dwFlags)
tstuiiLSTATUSSHCopyKey(_In_ HKEY hkeySrc, _In_opt_ LPCTSTR pszSrcSubKey, _In_ HKEY hkeyDest, _Reserved_ DWORD fReserved)
tatuiiLSTATUSSHCopyKeyA(_In_ HKEY hkeySrc, _In_opt_ LPCSTR pszSrcSubKey, _In_ HKEY hkeyDest, _Reserved_ DWORD fReserved)
twtuiiLSTATUSSHCopyKeyW(_In_ HKEY hkeySrc, _In_opt_ LPCWSTR pszSrcSubKey, _In_ HKEY hkeyDest, _Reserved_ DWORD fReserved)
tuitIStream*SHCreateMemStream(_In_opt_ const BYTE *pInit, _In_ UINT cbInit)
ttHPALETTESHCreateShellPalette(_In_opt_ HDC hdc)
suitiHRESULTSHCreateStreamOnFile(_In_ LPCTSTR pszFile, _In_ DWORD grfMode, _Out_ IStream **ppstm)
auitiHRESULTSHCreateStreamOnFileA(_In_ LPCSTR pszFile, _In_ DWORD grfMode, _Out_ IStream **ppstm)
wuiuiittiHRESULTSHCreateStreamOnFileEx(_In_ LPCWSTR pszFile, _In_ DWORD grfMode, _In_ DWORD dwAttributes, _In_ BOOL fCreate, _Reserved_ IStream *pstmTemplate, _Out_ IStream **ppstm)
wuitiHRESULTSHCreateStreamOnFileW(_In_ LPCWSTR pszFile, _In_ DWORD grfMode, _Out_ IStream **ppstm)
ttuitiBOOLSHCreateThread(_In_ LPTHREAD_START_ROUTINE pfnThreadProc, _In_opt_ void *pData, _In_ SHCT_FLAGS dwFlags, _In_opt_ LPTHREAD_START_ROUTINE pfnCallback)
ttiHRESULTSHCreateThreadRef(_In_ LONG *pcRef, _Out_ IUnknown **ppunk)
ttuittiBOOLSHCreateThreadWithHandle(_In_ LPTHREAD_START_ROUTINE pfnThreadProc, _In_opt_ void *pData, _In_ SHCT_FLAGS flags, _In_opt_ LPTHREAD_START_ROUTINE pfnCallback, _Out_opt_ HANDLE *pHandle)
tsiLSTATUSSHDeleteEmptyKey(_In_ HKEY hkey, _In_opt_ LPCTSTR pszSubKey)
taiLSTATUSSHDeleteEmptyKeyA(_In_ HKEY hkey, _In_opt_ LPCSTR pszSubKey)
twiLSTATUSSHDeleteEmptyKeyW(_In_ HKEY hkey, _In_opt_ LPCWSTR pszSubKey)
tsiLSTATUSSHDeleteKey(_In_ HKEY hkey, _In_opt_ LPCTSTR pszSubKey)
taiLSTATUSSHDeleteKeyA(_In_ HKEY hkey, _In_opt_ LPCSTR pszSubKey)
twiLSTATUSSHDeleteKeyW(_In_ HKEY hkey, _In_opt_ LPCWSTR pszSubKey)
tssiLSTATUSSHDeleteValue(HKEY hkey, LPCTSTR pszSubKey, LPCTSTR pszValue)
taaiLSTATUSSHDeleteValueA(HKEY hkey, LPCSTR pszSubKey, LPCSTR pszValue)
twwiLSTATUSSHDeleteValueW(HKEY hkey, LPCWSTR pszSubKey, LPCWSTR pszValue)
ttssuitiintShellMessageBox(_In_ HINSTANCE hInst, _In_ HWND hWnd, _In_ LPCTSTR pszMsg, _In_ LPCTSTR pszTitle, _In_ UINT fuStyle, _In_ ...)
ttaauitiintShellMessageBoxA(_In_ HINSTANCE hInst, _In_ HWND hWnd, _In_ LPCSTR pszMsg, _In_ LPCSTR pszTitle, _In_ UINT fuStyle, _In_ ...)
ttwwuitiintShellMessageBoxW(_In_ HINSTANCE hInst, _In_ HWND hWnd, _In_ LPCWSTR pszMsg, _In_ LPCWSTR pszTitle, _In_ UINT fuStyle, _In_ ...)
tuistiLSTATUSSHEnumKeyEx(_In_ HKEY hkey, DWORD dwIndex, LPTSTR pszName, _In_ LPDWORD pcchName)
tuiatiLSTATUSSHEnumKeyExA(_In_ HKEY hkey, DWORD dwIndex, LPSTR pszName, _In_ LPDWORD pcchName)
tuiwtiLSTATUSSHEnumKeyExW(_In_ HKEY hkey, DWORD dwIndex, LPWSTR pszName, _In_ LPDWORD pcchName)
tuisttttiLSTATUSSHEnumValue(_In_ HKEY hkey, _In_ DWORD dwIndex, LPTSTR pszValueName, _Inout_opt_ LPDWORD pcchValueName, _Out_opt_ LPDWORD pdwType, LPVOID pvData, _Inout_opt_ LPDWORD pcbData)
tuiattttiLSTATUSSHEnumValueA(_In_ HKEY hkey, _In_ DWORD dwIndex, LPSTR pszValueName, _Inout_opt_ LPDWORD pcchValueName, _Out_opt_ LPDWORD pdwType, LPVOID pvData, _Inout_opt_ LPDWORD pcbData)
tuiwttttiLSTATUSSHEnumValueW(_In_ HKEY hkey, _In_ DWORD dwIndex, LPWSTR pszValueName, _Inout_opt_ LPDWORD pcchValueName, _Out_opt_ LPDWORD pdwType, LPVOID pvData, _Inout_opt_ LPDWORD pcbData)
ttsuiiintSHFormatDateTime(_In_ const FILETIME UNALIGNED *pft, _Inout_opt_ DWORD *pdwFlags, _Out_ LPTSTR pszBuf, UINT cchBuf)
ttauiiintSHFormatDateTimeA(_In_ const FILETIME UNALIGNED *pft, _Inout_opt_ DWORD *pdwFlags, _Out_ LPSTR pszBuf, UINT cchBuf)
ttwuiiintSHFormatDateTimeW(_In_ const FILETIME UNALIGNED *pft, _Inout_opt_ DWORD *pdwFlags, _Out_ LPWSTR pszBuf, UINT cchBuf)
tuiiBOOLSHFreeShared(_In_ HANDLE hData, _In_ DWORD dwProcessId)
tuiiHRESULTSHGetInverseCMAP(_Out_ BYTE *pbMap, _In_ ULONG cbMap)
tiHRESULTSHGetThreadRef(_In_ IUnknown **ppunk)
tsstttiLSTATUSSHGetValue(_In_ HKEY hkey, _In_opt_ LPCTSTR pszSubKey, _In_opt_ LPCTSTR pszValue, _Out_opt_ LPDWORD pdwType, _Out_opt_ LPVOID pvData, _Inout_opt_ LPDWORD pcbData)
taatttiLSTATUSSHGetValueA(_In_ HKEY hkey, _In_opt_ LPCSTR pszSubKey, _In_opt_ LPCSTR pszValue, _Out_opt_ LPDWORD pdwType, _Out_opt_ LPVOID pvData, _Inout_opt_ LPDWORD pcbData)
twwtttiLSTATUSSHGetValueW(_In_ HKEY hkey, _In_opt_ LPCWSTR pszSubKey, _In_opt_ LPCWSTR pszValue, _Out_opt_ LPDWORD pdwType, _Out_opt_ LPVOID pvData, _Inout_opt_ LPDWORD pcbData)
twuittiHRESULTSHGetViewStatePropertyBag(_In_opt_ PCIDLIST_ABSOLUTE pidl, _In_opt_ PCWSTR pszBagName, DWORD dwFlags, _In_ REFIID riid, _Out_ void **ppv)
ttiHRESULTSHIsChildOrSelf(_In_ HWND hWndParent, _In_ HWND hWnd)
wtuitiHRESULTSHLoadIndirectString(_In_ PCWSTR pszSource, _Out_ PWSTR pszOutBuf, _In_ UINT cchOutBuf, _Reserved_ void **ppvReserved)
tuitvoid*SHLockShared(_In_ HANDLE hData, _In_ DWORD dwProcessId)
tssuiisiintSHMessageBoxCheck(_In_opt_ HWND hwnd, _In_ LPCTSTR pszText, _In_ LPCTSTR pszCaption, UINT uType, int iDefault, _In_ LPCTSTR pszRegVal)
taauiiaiintSHMessageBoxCheckA(_In_opt_ HWND hwnd, _In_ LPCSTR pszText, _In_ LPCSTR pszCaption, UINT uType, int iDefault, _In_ LPCSTR pszRegVal)
twwuiiwiintSHMessageBoxCheckW(_In_opt_ HWND hwnd, _In_ LPCWSTR pszText, _In_ LPCWSTR pszCaption, UINT uType, int iDefault, _In_ LPCWSTR pszRegVal)
tssuitIStream*SHOpenRegStream(_In_ HKEY hkey, _In_opt_ LPCTSTR pszSubkey, _In_opt_ LPCTSTR pszValue, _In_ DWORD grfMode)
tssuitIStream*SHOpenRegStream2(_In_ HKEY hkey, _In_opt_ LPCTSTR pszSubkey, _In_opt_ LPCTSTR pszValue, _In_ DWORD grfMode)
taauitIStream*SHOpenRegStream2A(_In_ HKEY hkey, _In_opt_ LPCSTR pszSubkey, _In_opt_ LPCSTR pszValue, _In_ DWORD grfMode)
twwuitIStream*SHOpenRegStream2W(_In_ HKEY hkey, _In_opt_ LPCWSTR pszSubkey, _In_opt_ LPCWSTR pszValue, _In_ DWORD grfMode)
taauitIStream*SHOpenRegStreamA(_In_ HKEY hkey, _In_opt_ LPCSTR pszSubkey, _In_opt_ LPCSTR pszValue, _In_ DWORD grfMode)
twwuitIStream*SHOpenRegStreamW(_In_ HKEY hkey, _In_opt_ LPCWSTR pszSubkey, _In_opt_ LPCWSTR pszValue, _In_ DWORD grfMode)
tttttiLSTATUSSHQueryInfoKey(_In_ HKEY hkey, _Out_opt_ LPDWORD pcSubKeys, _Out_opt_ LPDWORD pcchMaxSubKeyLen, _Out_opt_ LPDWORD pcValues, _Out_opt_ LPDWORD pcchMaxValueNameLen)
tttttiLSTATUSSHQueryInfoKeyA(_In_ HKEY hkey, _Out_opt_ LPDWORD pcSubKeys, _Out_opt_ LPDWORD pcchMaxSubKeyLen, _Out_opt_ LPDWORD pcValues, _Out_opt_ LPDWORD pcchMaxValueNameLen)
tttttiLSTATUSSHQueryInfoKeyW(_In_ HKEY hkey, _Out_opt_ LPDWORD pcSubKeys, _Out_opt_ LPDWORD pcchMaxSubKeyLen, _Out_opt_ LPDWORD pcValues, _Out_opt_ LPDWORD pcchMaxValueNameLen)
tsttttuiDWORDSHQueryValueEx(_In_ HKEY hkey, _In_opt_ LPCTSTR pszValue, LPDWORD pdwReserved, _Out_opt_ LPDWORD pdwType, _Out_opt_ LPVOID pvData, _Inout_opt_ LPDWORD pcbData)
tattttuiDWORDSHQueryValueExA(_In_ HKEY hkey, _In_opt_ LPCSTR pszValue, LPDWORD pdwReserved, _Out_opt_ LPDWORD pdwType, _Out_opt_ LPVOID pvData, _Inout_opt_ LPDWORD pcbData)
twttttuiDWORDSHQueryValueExW(_In_ HKEY hkey, _In_opt_ LPCWSTR pszValue, LPDWORD pdwReserved, _Out_opt_ LPDWORD pdwType, _Out_opt_ LPVOID pvData, _Inout_opt_ LPDWORD pcbData)
tiLSTATUSSHRegCloseUSKey(_In_ HUSKEY hUSKey)
suittuiiLSTATUSSHRegCreateUSKey(_In_ LPCTSTR pszPath, _In_ REGSAM samDesired, _In_opt_ HUSKEY hRelativeUSKey, _Out_ PHUSKEY phNewUSKey, _In_ DWORD dwFlags)
auittuiiLSTATUSSHRegCreateUSKeyA(_In_ LPCSTR pszPath, _In_ REGSAM samDesired, _In_opt_ HUSKEY hRelativeUSKey, _Out_ PHUSKEY phNewUSKey, _In_ DWORD dwFlags)
wuittuiiLSTATUSSHRegCreateUSKeyW(_In_ LPCWSTR pszPath, _In_ REGSAM samDesired, _In_opt_ HUSKEY hRelativeUSKey, _Out_ PHUSKEY phNewUSKey, _In_ DWORD dwFlags)
tauiiLSTATUSSHRegDeleteEmptyUSKey(_In_ HUSKEY hUSKey, _In_ LPCSTR pszValue, _In_ SHREGDEL_FLAGS delRegFlags)
tauiiLSTATUSSHRegDeleteEmptyUSKeyA(_In_ HUSKEY hUSKey, _In_ LPCSTR pszValue, _In_ SHREGDEL_FLAGS delRegFlags)
tauiiLSTATUSSHRegDeleteEmptyUSKeyW(_In_ HUSKEY hUSKey, _In_ LPCSTR pszValue, _In_ SHREGDEL_FLAGS delRegFlags)
tsuiiLSTATUSSHRegDeleteUSValue(_In_ HUSKEY hUSKey, _In_ LPCTSTR pszValue, _In_ SHREGDEL_FLAGS delRegFlags)
tauiiLSTATUSSHRegDeleteUSValueA(_In_ HUSKEY hUSKey, _In_ LPCSTR pszValue, _In_ SHREGDEL_FLAGS delRegFlags)
twuiiLSTATUSSHRegDeleteUSValueW(_In_ HUSKEY hUSKey, _In_ LPCWSTR pszValue, _In_ SHREGDEL_FLAGS delRegFlags)
ttHKEYSHRegDuplicateHKey(_In_ HKEY hKey)
tuistuiiLSTATUSSHRegEnumUSKey(_In_ HUSKEY hUSKey, _In_ DWORD dwIndex, _Out_ LPTSTR pszName, _Inout_ LPDWORD pcchName, _In_ SHREGENUM_FLAGS enumRegFlags)
tuiatuiiLSTATUSSHRegEnumUSKeyA(_In_ HUSKEY hUSKey, _In_ DWORD dwIndex, _Out_ LPSTR pszName, _Inout_ LPDWORD pcchName, _In_ SHREGENUM_FLAGS enumRegFlags)
tuiwtuiiLSTATUSSHRegEnumUSKeyW(_In_ HUSKEY hUSKey, _In_ DWORD dwIndex, _Out_ LPWSTR pszName, _Inout_ LPDWORD pcchName, _In_ SHREGENUM_FLAGS enumRegFlags)
tuisttttuiiLSTATUSSHRegEnumUSValue(_In_ HUSKEY hUSKey, _In_ DWORD dwIndex, _Out_ LPTSTR pszValueName, _Inout_ LPDWORD pcchValueNameLen, _Out_opt_ LPDWORD pdwType, _Out_opt_ void *pvData, _Inout_opt_ LPDWORD pcbData, _In_ SHREGENUM_FLAGS enumRegFlags)
tuiattttuiiLSTATUSSHRegEnumUSValueA(_In_ HUSKEY hUSKey, _In_ DWORD dwIndex, _Out_ LPSTR pszValueName, _Inout_ LPDWORD pcchValueNameLen, _Out_opt_ LPDWORD pdwType, _Out_opt_ void *pvData, _Inout_opt_ LPDWORD pcbData, _In_ SHREGENUM_FLAGS enumRegFlags)
tuiwttttuiiLSTATUSSHRegEnumUSValueW(_In_ HUSKEY hUSKey, _In_ DWORD dwIndex, _Out_ LPWSTR pszValueName, _Inout_ LPDWORD pcchValueNameLen, _Out_opt_ LPDWORD pdwType, _Out_opt_ void *pvData, _Inout_opt_ LPDWORD pcbData, _In_ SHREGENUM_FLAGS enumRegFlags)
ssiiiBOOLSHRegGetBoolUSValue(_In_ LPCTSTR pszSubKey, _In_opt_ LPCTSTR pszValue, _In_ BOOL fIgnoreHKCU, _In_ BOOL fDefault)
aaiiiBOOLSHRegGetBoolUSValueA(_In_ LPCSTR pszSubKey, _In_opt_ LPCSTR pszValue, _In_ BOOL fIgnoreHKCU, _In_ BOOL fDefault)
wwiiiBOOLSHRegGetBoolUSValueW(_In_ LPCWSTR pszSubKey, _In_opt_ LPCWSTR pszValue, _In_ BOOL fIgnoreHKCU, _In_ BOOL fDefault)
twiiintSHRegGetIntW(_In_ HKEY hk, _In_ LPCWSTR szKey, _In_ int nDefault)
tsssuiiLSTATUSSHRegGetPath(_In_ HKEY hkey, _In_ LPCTSTR pszSubkey, _In_ LPCTSTR pszValue, _Out_ LPTSTR pszPath, DWORD dwFlags)
taaauiiLSTATUSSHRegGetPathA(_In_ HKEY hkey, _In_ LPCSTR pszSubkey, _In_ LPCSTR pszValue, _Out_ LPSTR pszPath, DWORD dwFlags)
twwwuiiLSTATUSSHRegGetPathW(_In_ HKEY hkey, _In_ LPCWSTR pszSubkey, _In_ LPCWSTR pszValue, _Out_ LPWSTR pszPath, DWORD dwFlags)
sstttituiiLSTATUSSHRegGetUSValue(_In_ LPCTSTR pszSubKey, _In_opt_ LPCTSTR pszValue, _Inout_opt_ DWORD *pdwType, _Out_opt_ void *pvData, _Inout_opt_ DWORD *pcbData, _In_ BOOL fIgnoreHKCU, _In_opt_ void *pvDefaultData, _In_ DWORD dwDefaultDataSize)
aatttituiiLSTATUSSHRegGetUSValueA(_In_ LPCSTR pszSubKey, _In_opt_ LPCSTR pszValue, _Inout_opt_ DWORD *pdwType, _Out_opt_ void *pvData, _Inout_opt_ DWORD *pcbData, _In_ BOOL fIgnoreHKCU, _In_opt_ void *pvDefaultData, _In_ DWORD dwDefaultDataSize)
wwtttituiiLSTATUSSHRegGetUSValueW(_In_ LPCWSTR pszSubKey, _In_opt_ LPCWSTR pszValue, _Inout_opt_ DWORD *pdwType, _Out_opt_ void *pvData, _Inout_opt_ DWORD *pcbData, _In_ BOOL fIgnoreHKCU, _In_opt_ void *pvDefaultData, _In_ DWORD dwDefaultDataSize)
tssitttiLSTATUSSHRegGetValue(_In_ HKEY hkey, _In_ LPCTSTR pszSubKey, _In_ LPCTSTR pszValue, _In_ SRRF srrfFlags, _Inout_ LPDWORD pdwType, _Out_ LPVOID pvData, _Inout_ LPDWORD pcbData)
taaitttiLSTATUSSHRegGetValueA(_In_ HKEY hkey, _In_ LPCSTR pszSubKey, _In_ LPCSTR pszValue, _In_ SRRF srrfFlags, _Inout_ LPDWORD pdwType, _Out_ LPVOID pvData, _Inout_ LPDWORD pcbData)
twwitttiLSTATUSSHRegGetValueW(_In_ HKEY hkey, _In_ LPCWSTR pszSubKey, _In_ LPCWSTR pszValue, _In_ SRRF srrfFlags, _Inout_ LPDWORD pdwType, _Out_ LPVOID pvData, _Inout_ LPDWORD pcbData)
suittiiLSTATUSSHRegOpenUSKey(_In_ LPCTSTR pszPath, _In_ REGSAM samDesired, _In_opt_ HUSKEY hRelativeUSKey, _Out_ PHUSKEY phNewUSKey, _In_ BOOL fIgnoreHKCU)
auittiiLSTATUSSHRegOpenUSKeyA(_In_ LPCSTR pszPath, _In_ REGSAM samDesired, _In_opt_ HUSKEY hRelativeUSKey, _Out_ PHUSKEY phNewUSKey, _In_ BOOL fIgnoreHKCU)
wuittiiLSTATUSSHRegOpenUSKeyW(_In_ LPCWSTR pszPath, _In_ REGSAM samDesired, _In_opt_ HUSKEY hRelativeUSKey, _Out_ PHUSKEY phNewUSKey, _In_ BOOL fIgnoreHKCU)
tttttuiiLSTATUSSHRegQueryInfoUSKey(_In_ HUSKEY hUSKey, _Out_opt_ LPDWORD pcSubKeys, _Out_opt_ LPDWORD pcchMaxSubKeyLen, _Out_opt_ LPDWORD pcValues, _Out_opt_ LPDWORD pcchMaxValueNameLen, _In_ SHREGENUM_FLAGS enumRegFlags)
tttttuiiLSTATUSSHRegQueryInfoUSKeyA(_In_ HUSKEY hUSKey, _Out_opt_ LPDWORD pcSubKeys, _Out_opt_ LPDWORD pcchMaxSubKeyLen, _Out_opt_ LPDWORD pcValues, _Out_opt_ LPDWORD pcchMaxValueNameLen, _In_ SHREGENUM_FLAGS enumRegFlags)
tttttuiiLSTATUSSHRegQueryInfoUSKeyW(_In_ HUSKEY hUSKey, _Out_opt_ LPDWORD pcSubKeys, _Out_opt_ LPDWORD pcchMaxSubKeyLen, _Out_opt_ LPDWORD pcValues, _Out_opt_ LPDWORD pcchMaxValueNameLen, _In_ SHREGENUM_FLAGS enumRegFlags)
tstttituiiLSTATUSSHRegQueryUSValue(_In_ HUSKEY hUSKey, _In_opt_ LPCTSTR pszValue, _Inout_opt_ LPDWORD *pdwType, _Out_opt_ LPVOID *pvData, _Inout_ LPDWORD *pcbData, _In_ BOOL fIgnoreHKCU, _In_opt_ LPVOID *pvDefaultData, _In_opt_ DWORD dwDefaultDataSize)
tatttituiiLSTATUSSHRegQueryUSValueA(_In_ HUSKEY hUSKey, _In_opt_ LPCSTR pszValue, _Inout_opt_ LPDWORD *pdwType, _Out_opt_ LPVOID *pvData, _Inout_ LPDWORD *pcbData, _In_ BOOL fIgnoreHKCU, _In_opt_ LPVOID *pvDefaultData, _In_opt_ DWORD dwDefaultDataSize)
twtttituiiLSTATUSSHRegQueryUSValueW(_In_ HUSKEY hUSKey, _In_opt_ LPCWSTR pszValue, _Inout_opt_ LPDWORD *pdwType, _Out_opt_ LPVOID *pvData, _Inout_ LPDWORD *pcbData, _In_ BOOL fIgnoreHKCU, _In_opt_ LPVOID *pvDefaultData, _In_opt_ DWORD dwDefaultDataSize)
tsssuiiLSTATUSSHRegSetPath(_In_ HKEY hkey, _In_ LPCTSTR pszSubkey, _In_ LPCTSTR pszValue, _In_ LPCTSTR pszPath, DWORD dwFlags)
taaauiiLSTATUSSHRegSetPathA(_In_ HKEY hkey, _In_ LPCSTR pszSubkey, _In_ LPCSTR pszValue, _In_ LPCSTR pszPath, DWORD dwFlags)
twwwuiiLSTATUSSHRegSetPathW(_In_ HKEY hkey, _In_ LPCWSTR pszSubkey, _In_ LPCWSTR pszValue, _In_ LPCWSTR pszPath, DWORD dwFlags)
ssuituiuiiLSTATUSSHRegSetUSValue(_In_ LPCTSTR pszSubKey, _In_ LPCTSTR pszValue, _In_ DWORD dwType, _In_opt_ LPVOID *pvData, _In_opt_ DWORD cbData, _In_opt_ DWORD dwFlags)
aauituiuiiLSTATUSSHRegSetUSValueA(_In_ LPCSTR pszSubKey, _In_ LPCSTR pszValue, _In_ DWORD dwType, _In_opt_ LPVOID *pvData, _In_opt_ DWORD cbData, _In_opt_ DWORD dwFlags)
wwuituiuiiLSTATUSSHRegSetUSValueW(_In_ LPCWSTR pszSubKey, _In_ LPCWSTR pszValue, _In_ DWORD dwType, _In_opt_ LPVOID *pvData, _In_opt_ DWORD cbData, _In_opt_ DWORD dwFlags)
tsuituiuiiLSTATUSSHRegWriteUSValue(_In_ HUSKEY hUSKey, _In_ LPCTSTR pszValue, _In_ DWORD dwType, _In_ const void *pvData, _In_ DWORD cbData, _In_ DWORD dwFlags)
tauituiuiiLSTATUSSHRegWriteUSValueA(_In_ HUSKEY hUSKey, _In_ LPCSTR pszValue, _In_ DWORD dwType, _In_ const void *pvData, _In_ DWORD cbData, _In_ DWORD dwFlags)
twuituiuiiLSTATUSSHRegWriteUSValueW(_In_ HUSKEY hUSKey, _In_ LPCWSTR pszValue, _In_ DWORD dwType, _In_ const void *pvData, _In_ DWORD cbData, _In_ DWORD dwFlags)
iHRESULTSHReleaseThreadRef(void)
uiututtLRESULTSHSendMessageBroadcast(_In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
uiututtLRESULTSHSendMessageBroadcastA(_In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
uiututtLRESULTSHSendMessageBroadcastW(_In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tiHRESULTSHSetThreadRef(_In_opt_ IUnknown *pUnk)
tssuituiiLSTATUSSHSetValue(_In_ HKEY hkey, _In_opt_ LPCTSTR pszSubKey, _In_opt_ LPCTSTR pszValue, _In_ DWORD dwType, _In_opt_ LPCVOID pvData, _In_ DWORD cbData)
taauituiiLSTATUSSHSetValueA(_In_ HKEY hkey, _In_opt_ LPCSTR pszSubKey, _In_opt_ LPCSTR pszValue, _In_ DWORD dwType, _In_opt_ LPCVOID pvData, _In_ DWORD cbData)
twwuituiiLSTATUSSHSetValueW(_In_ HKEY hkey, _In_opt_ LPCWSTR pszSubKey, _In_opt_ LPCWSTR pszValue, _In_ DWORD dwType, _In_opt_ LPCVOID pvData, _In_ DWORD cbData)
ttiBOOLSHSkipJunction(_In_opt_ IBindCtx *pbc, _In_ const CLSID *pclsid)
stiHRESULTSHStrDup(_In_ LPCTSTR pszSource, _Out_ LPTSTR *ppwsz)
atiHRESULTSHStrDupA(_In_ LPCSTR pszSource, _Out_ LPSTR *ppwsz)
wtiHRESULTSHStrDupW(_In_ LPCWSTR pszSource, _Out_ LPWSTR *ppwsz)
tyTCHARSHStripMneumonic(_Inout_ LPTSTR *pszMenu)
tyTCHARSHStripMneumonicA(_Inout_ LPSTR *pszMenu)
tyTCHARSHStripMneumonicW(_Inout_ LPWSTR *pszMenu)
waiiintSHUnicodeToAnsi(_In_ PCWSTR pwszSrc, _Out_ PSTR pszDst, int cchBuf)
wtiiintSHUnicodeToUnicode(_In_ PCWSTR pwzSrc, _Out_ PWSTR pwzDst, int cwchBuf)
tiBOOLSHUnlockShared(_In_ void *pvData)
sssPTSTRStrCat(_Inout_ PTSTR psz1, _In_ PCTSTR psz2)
ssisPTSTRStrCatBuff(_Inout_ PTSTR pszDest, _In_ PCTSTR pszSrc, int cchDestBuffSize)
aaiaPTSTRStrCatBuffA(_Inout_ PTSTR pszDest, _In_ PCTSTR pszSrc, int cchDestBuffSize)
wwiwPTSTRStrCatBuffW(_Inout_ PTSTR pszDest, _In_ PCTSTR pszSrc, int cchDestBuffSize)
tuiuiwuiDWORDStrCatChainW(_Out_ PWSTR pszDst, DWORD cchDst, DWORD ichAt, _In_ PCWSTR pszSrc)
wwwPTSTRStrCatW(_Inout_ PTSTR psz1, _In_ PCTSTR psz2)
sysPTSTRStrChr(_In_ PTSTR pszStart, TCHAR wMatch)
ayaPTSTRStrChrA(_In_ PTSTR pszStart, TCHAR wMatch)
sysPTSTRStrChrI(_In_ PTSTR pszStart, TCHAR wMatch)
ayaPTSTRStrChrIA(_In_ PTSTR pszStart, TCHAR wMatch)
wywPTSTRStrChrIW(_In_ PTSTR pszStart, TCHAR wMatch)
wuhuitPWSTRStrChrNIW(_In_ PCWSTR pszStart, WCHAR wMatch, UINT cchMax)
tuhuitPWSTRStrChrNW(_In_ PWSTR pszStart, WCHAR wMatch, UINT cchMax)
wywPTSTRStrChrW(_In_ PTSTR pszStart, TCHAR wMatch)
ssiintStrCmp(_In_ PCTSTR psz1, _In_ PCTSTR psz2)
ssiintStrCmpC(_Out_ LPCTSTR lpStr1, _Out_ LPCTSTR lpStr2)
aaiintStrCmpCA(_Out_ LPCSTR lpStr1, _Out_ LPCSTR lpStr2)
wwiintStrCmpCW(_Out_ LPCWSTR lpStr1, _Out_ LPCWSTR lpStr2)
ssiintStrCmpI(_In_ PCTSTR psz1, _In_ PCTSTR psz2)
ssiintStrCmpIC(_In_ LPCTSTR lpStr1, _In_ LPCTSTR lpStr2)
aaiintStrCmpICA(_In_ LPCSTR lpStr1, _In_ LPCSTR lpStr2)
wwiintStrCmpICW(_In_ LPCWSTR lpStr1, _In_ LPCWSTR lpStr2)
wwiintStrCmpIW(_In_ PCTSTR psz1, _In_ PCTSTR psz2)
wwiintStrCmpLogicalW(_In_ PCWSTR psz1, _In_ PCWSTR psz2)
ssiiintStrCmpN(_In_ PCTSTR psz1, _In_ PCTSTR psz2, _In_ int nChar)
aaiiintStrCmpNA(_In_ PCTSTR psz1, _In_ PCTSTR psz2, _In_ int nChar)
ssiiintStrCmpNC(_In_ LPCTSTR pszStr1, _In_ LPCTSTR pszStr2, int nChar)
aaiiintStrCmpNCA(_In_ LPCSTR pszStr1, _In_ LPCSTR pszStr2, int nChar)
wwiiintStrCmpNCW(_In_ LPCWSTR pszStr1, _In_ LPCWSTR pszStr2, int nChar)
ssiiintStrCmpNI(_In_ PCTSTR psz1, _In_ PCTSTR psz2, _In_ int nChar)
aaiiintStrCmpNIA(_In_ PCTSTR psz1, _In_ PCTSTR psz2, _In_ int nChar)
ssiiintStrCmpNIC(_In_ LPCTSTR pszStr1, _In_ LPCTSTR pszStr2, int nChar)
aaiiintStrCmpNICA(_In_ LPCSTR pszStr1, _In_ LPCSTR pszStr2, int nChar)
wwiiintStrCmpNICW(_In_ LPCWSTR pszStr1, _In_ LPCWSTR pszStr2, int nChar)
wwiiintStrCmpNIW(_In_ PCTSTR psz1, _In_ PCTSTR psz2, _In_ int nChar)
wwiiintStrCmpNW(_In_ PCTSTR psz1, _In_ PCTSTR psz2, _In_ int nChar)
wwiintStrCmpW(_In_ PCTSTR psz1, _In_ PCTSTR psz2)
sssPTSTRStrCpy(_Out_ PTSTR psz1, _In_ PCTSTR psz2)
ssisPTSTRStrCpyN(_Out_ PTSTR pszDst, _In_ PCTSTR pszSrc, int cchMax)
wwiwPTSTRStrCpyNW(_Out_ PTSTR pszDst, _In_ PCTSTR pszSrc, int cchMax)
wwwPTSTRStrCpyW(_Out_ PTSTR psz1, _In_ PCTSTR psz2)
ssiintStrCSpn(_In_ PCTSTR pszStr, _In_ PCTSTR pszSet)
aaiintStrCSpnA(_In_ PCTSTR pszStr, _In_ PCTSTR pszSet)
ssiintStrCSpnI(_In_ PCTSTR pszStr, _In_ PCTSTR pszSet)
aaiintStrCSpnIA(_In_ PCTSTR pszStr, _In_ PCTSTR pszSet)
wwiintStrCSpnIW(_In_ PCTSTR pszStr, _In_ PCTSTR pszSet)
wwiintStrCSpnW(_In_ PCTSTR pszStr, _In_ PCTSTR pszSet)
ssPTSTRStrDup(PCTSTR pszSrch)
aaPTSTRStrDupA(PCTSTR pszSrch)
wwPTSTRStrDupW(PCTSTR pszSrch)
i6auiaPSTRStrFormatByteSize64(LONGLONG qdw, _Out_ PSTR pszBuf, UINT cchBuf)
i6auiaPSTRStrFormatByteSize64A(LONGLONG qdw, _Out_ PSTR pszBuf, UINT cchBuf)
uiauiaPSTRStrFormatByteSizeA(DWORD dw, _Out_ PSTR pszBuf, UINT cchBuf)
ui6uituiiHRESULTStrFormatByteSizeEx(ULONGLONG ull, SFBS_FLAGS flags, _Out_ PWSTR pszBuf, UINT cchBuf)
i6tuitPWSTRStrFormatByteSizeW(LONGLONG qdw, _Out_ PWSTR pszBuf, UINT cchBuf)
i6suisPTSTRStrFormatKBSize(LONGLONG qdw, _Out_ PTSTR pszBuf, UINT cchBuf)
i6auiaPTSTRStrFormatKBSizeA(LONGLONG qdw, _Out_ PTSTR pszBuf, UINT cchBuf)
i6wuiwPTSTRStrFormatKBSizeW(LONGLONG qdw, _Out_ PTSTR pszBuf, UINT cchBuf)
suiuiiiintStrFromTimeInterval(_Out_ PTSTR pszOut, UINT cchMax, DWORD dwTimeMS, int digits)
auiuiiiintStrFromTimeIntervalA(_Out_ PTSTR pszOut, UINT cchMax, DWORD dwTimeMS, int digits)
wuiuiiiintStrFromTimeIntervalW(_Out_ PTSTR pszOut, UINT cchMax, DWORD dwTimeMS, int digits)
issiiBOOLStrIsIntlEqual(BOOL fCaseSens, _In_ PCTSTR pszString1, _In_ PCTSTR pszString2, int nChar)
iaaiiBOOLStrIsIntlEqualA(BOOL fCaseSens, _In_ PCTSTR pszString1, _In_ PCTSTR pszString2, int nChar)
iwwiiBOOLStrIsIntlEqualW(BOOL fCaseSens, _In_ PCTSTR pszString1, _In_ PCTSTR pszString2, int nChar)
ssisPTSTRStrNCat(_Inout_ PTSTR psz1, PCTSTR psz2, int cchMax)
aaiaPTSTRStrNCatA(_Inout_ PTSTR psz1, PCTSTR psz2, int cchMax)
wwiwPTSTRStrNCatW(_Inout_ PTSTR psz1, PCTSTR psz2, int cchMax)
sssPTSTRStrPBrk(_In_ PTSTR psz, _In_ PCTSTR pszSet)
aaaPTSTRStrPBrkA(_In_ PTSTR psz, _In_ PCTSTR pszSet)
wwwPTSTRStrPBrkW(_In_ PTSTR psz, _In_ PCTSTR pszSet)
ssysPTSTRStrRChr(_In_ PTSTR pszStart, _In_opt_ PCTSTR pszEnd, TCHAR wMatch)
aayaPTSTRStrRChrA(_In_ PTSTR pszStart, _In_opt_ PCTSTR pszEnd, TCHAR wMatch)
ssysPTSTRStrRChrI(_In_ PTSTR pszStart, _In_opt_ PCTSTR pszEnd, TCHAR wMatch)
aayaPTSTRStrRChrIA(_In_ PTSTR pszStart, _In_opt_ PCTSTR pszEnd, TCHAR wMatch)
wwywPTSTRStrRChrIW(_In_ PTSTR pszStart, _In_opt_ PCTSTR pszEnd, TCHAR wMatch)
wwywPTSTRStrRChrW(_In_ PTSTR pszStart, _In_opt_ PCTSTR pszEnd, TCHAR wMatch)
tttiHRESULTStrRetToBSTR(_Inout_ STRRET *pstr, _In_ PCUITEMID_CHILD pidl, _Out_ BSTR *pbstr)
ttsuiiHRESULTStrRetToBuf(_Inout_ STRRET *pstr, _In_ PCUITEMID_CHILD pidl, _Out_ LPTSTR pszBuf, _In_ UINT cchBuf)
ttauiiHRESULTStrRetToBufA(_Inout_ STRRET *pstr, _In_ PCUITEMID_CHILD pidl, _Out_ LPSTR pszBuf, _In_ UINT cchBuf)
ttwuiiHRESULTStrRetToBufW(_Inout_ STRRET *pstr, _In_ PCUITEMID_CHILD pidl, _Out_ LPWSTR pszBuf, _In_ UINT cchBuf)
tttiHRESULTStrRetToStr(_Inout_ STRRET *pstr, _In_opt_ PCUITEMID_CHILD pidl, _Out_ LPTSTR *ppszName)
tttiHRESULTStrRetToStrA(_Inout_ STRRET *pstr, _In_opt_ PCUITEMID_CHILD pidl, _Out_ LPSTR *ppszName)
tttiHRESULTStrRetToStrW(_Inout_ STRRET *pstr, _In_opt_ PCUITEMID_CHILD pidl, _Out_ LPWSTR *ppszName)
ssssPTSTRStrRStrI(_In_ PTSTR pszSource, _In_opt_ PCTSTR pszLast, _In_ PCTSTR pszSrch)
aaaaPTSTRStrRStrIA(_In_ PTSTR pszSource, _In_opt_ PCTSTR pszLast, _In_ PCTSTR pszSrch)
wwwwPTSTRStrRStrIW(_In_ PTSTR pszSource, _In_opt_ PCTSTR pszLast, _In_ PCTSTR pszSrch)
ssiintStrSpn(_In_ PCTSTR psz, _In_ PCTSTR pszSet)
aaiintStrSpnA(_In_ PCTSTR psz, _In_ PCTSTR pszSet)
wwiintStrSpnW(_In_ PCTSTR psz, _In_ PCTSTR pszSet)
sssPTSTRStrStr(_In_ PTSTR pszFirst, _In_ PCTSTR pszSrch)
aaaPTSTRStrStrA(_In_ PTSTR pszFirst, _In_ PCTSTR pszSrch)
sssPTSTRStrStrI(_In_ PTSTR pszFirst, _In_ PCTSTR pszSrch)
aaaPTSTRStrStrIA(_In_ PTSTR pszFirst, _In_ PCTSTR pszSrch)
wwwPTSTRStrStrIW(_In_ PTSTR pszFirst, _In_ PCTSTR pszSrch)
twuitPWSTRStrStrNIW(_In_ PWSTR pszFirst, _In_ PCWSTR pszSrch, UINT cchMax)
twuitPWSTRStrStrNW(_In_ PWSTR pszFirst, _In_ PCWSTR pszSrch, UINT cchMax)
wwwPTSTRStrStrW(_In_ PTSTR pszFirst, _In_ PCTSTR pszSrch)
siintStrToInt(_In_ PCTSTR pszSrc)
sitiBOOLStrToInt64Ex(_In_ PCTSTR pszString, STIF_FLAGS dwFlags, _Out_ LONGLONG *pllRet)
aitiBOOLStrToInt64ExA(_In_ PCTSTR pszString, STIF_FLAGS dwFlags, _Out_ LONGLONG *pllRet)
witiBOOLStrToInt64ExW(_In_ PCTSTR pszString, STIF_FLAGS dwFlags, _Out_ LONGLONG *pllRet)
aiintStrToIntA(_In_ PCTSTR pszSrc)
sitiBOOLStrToIntEx(_In_ PCTSTR pszString, STIF_FLAGS dwFlags, _Out_ int *piRet)
aitiBOOLStrToIntExA(_In_ PCTSTR pszString, STIF_FLAGS dwFlags, _Out_ int *piRet)
witiBOOLStrToIntExW(_In_ PCTSTR pszString, STIF_FLAGS dwFlags, _Out_ int *piRet)
wiintStrToIntW(_In_ PCTSTR pszSrc)
ssiBOOLStrTrim(_Inout_ PTSTR psz, _In_ PCTSTR pszTrimChars)
aaiBOOLStrTrimA(_Inout_ PTSTR psz, _In_ PCTSTR pszTrimChars)
wwiBOOLStrTrimW(_Inout_ PTSTR psz, _In_ PCTSTR pszTrimChars)
sstuiiHRESULTUrlApplyScheme(_In_ PCTSTR pszIn, _Out_ PTSTR pszOut, _Inout_ DWORD *pcchOut, DWORD dwFlags)
aatuiiHRESULTUrlApplySchemeA(_In_ PCTSTR pszIn, _Out_ PTSTR pszOut, _Inout_ DWORD *pcchOut, DWORD dwFlags)
wwtuiiHRESULTUrlApplySchemeW(_In_ PCTSTR pszIn, _Out_ PTSTR pszOut, _Inout_ DWORD *pcchOut, DWORD dwFlags)
sstuiiHRESULTUrlCanonicalize(_In_ PCTSTR pszUrl, _Out_ PTSTR pszCanonicalized, _Inout_ DWORD *pcchCanonicalized, DWORD dwFlags)
aatuiiHRESULTUrlCanonicalizeA(_In_ PCTSTR pszUrl, _Out_ PTSTR pszCanonicalized, _Inout_ DWORD *pcchCanonicalized, DWORD dwFlags)
wwtuiiHRESULTUrlCanonicalizeW(_In_ PCTSTR pszUrl, _Out_ PTSTR pszCanonicalized, _Inout_ DWORD *pcchCanonicalized, DWORD dwFlags)
ssstuiiHRESULTUrlCombine(_In_ PCTSTR pszBase, _In_ PCTSTR pszRelative, _Out_opt_ PTSTR pszCombined, _Inout_ DWORD *pcchCombined, DWORD dwFlags)
aaatuiiHRESULTUrlCombineA(_In_ PCTSTR pszBase, _In_ PCTSTR pszRelative, _Out_opt_ PTSTR pszCombined, _Inout_ DWORD *pcchCombined, DWORD dwFlags)
wwwtuiiHRESULTUrlCombineW(_In_ PCTSTR pszBase, _In_ PCTSTR pszRelative, _Out_opt_ PTSTR pszCombined, _Inout_ DWORD *pcchCombined, DWORD dwFlags)
ssiiintUrlCompare(_In_ PCTSTR psz1, _In_ PCTSTR psz2, BOOL fIgnoreSlash)
aaiiintUrlCompareA(_In_ PCTSTR psz1, _In_ PCTSTR psz2, BOOL fIgnoreSlash)
wwiiintUrlCompareW(_In_ PCTSTR psz1, _In_ PCTSTR psz2, BOOL fIgnoreSlash)
sstuiiHRESULTUrlCreateFromPath(_In_ PCTSTR pszPath, _Out_ PTSTR pszUrl, _Inout_ DWORD *pcchUrl, DWORD dwFlags)
aatuiiHRESULTUrlCreateFromPathA(_In_ PCTSTR pszPath, _Out_ PTSTR pszUrl, _Inout_ DWORD *pcchUrl, DWORD dwFlags)
wwtuiiHRESULTUrlCreateFromPathW(_In_ PCTSTR pszPath, _Out_ PTSTR pszUrl, _Inout_ DWORD *pcchUrl, DWORD dwFlags)
sstuiiHRESULTUrlEscape(_In_ PCTSTR pszURL, _Out_ PTSTR pszEscaped, _Inout_ DWORD *pcchEscaped, DWORD dwFlags)
aatuiiHRESULTUrlEscapeA(_In_ PCTSTR pszURL, _Out_ PTSTR pszEscaped, _Inout_ DWORD *pcchEscaped, DWORD dwFlags)
wwtuiiHRESULTUrlEscapeW(_In_ PCTSTR pszURL, _Out_ PTSTR pszEscaped, _Inout_ DWORD *pcchEscaped, DWORD dwFlags)
wtuiiHRESULTUrlFixupW(_In_ PCWSTR pcszUrl, _Out_ PWSTR pszTranslatedUrl, DWORD cchMax)
ssLPCTSTRUrlGetLocation(_In_ PCTSTR pszURL)
aaLPCSTRUrlGetLocationA(_In_ PCTSTR pszURL)
wwLPCWSTRUrlGetLocationW(_In_ PCTSTR pszURL)
sstuiuiiHRESULTUrlGetPart(_In_ PCTSTR pszIn, _Out_ PTSTR pszOut, _Inout_ DWORD *pcchOut, DWORD dwPart, DWORD dwFlags)
aatuiuiiHRESULTUrlGetPartA(_In_ PCTSTR pszIn, _Out_ PTSTR pszOut, _Inout_ DWORD *pcchOut, DWORD dwPart, DWORD dwFlags)
wwtuiuiiHRESULTUrlGetPartW(_In_ PCTSTR pszIn, _Out_ PTSTR pszOut, _Inout_ DWORD *pcchOut, DWORD dwPart, DWORD dwFlags)
stuiiHRESULTUrlHash(_In_ PCTSTR pszURL, _Out_ BYTE *pbHash, DWORD cbHash)
atuiiHRESULTUrlHashA(_In_ PCTSTR pszURL, _Out_ BYTE *pbHash, DWORD cbHash)
wtuiiHRESULTUrlHashW(_In_ PCTSTR pszURL, _Out_ BYTE *pbHash, DWORD cbHash)
suiiBOOLUrlIs(_In_ PCTSTR pszUrl, URLIS UrlIs)
auiiBOOLUrlIsA(_In_ PCTSTR pszUrl, URLIS UrlIs)
siBOOLUrlIsNoHistory(_In_ PCTSTR pszURL)
aiBOOLUrlIsNoHistoryA(_In_ PCTSTR pszURL)
wiBOOLUrlIsNoHistoryW(_In_ PCTSTR pszURL)
siBOOLUrlIsOpaque(_In_ PCTSTR pszURL)
aiBOOLUrlIsOpaqueA(_In_ PCTSTR pszURL)
wiBOOLUrlIsOpaqueW(_In_ PCTSTR pszURL)
wuiiBOOLUrlIsW(_In_ PCTSTR pszUrl, URLIS UrlIs)
sstuiiHRESULTUrlUnescape(_Inout_ PTSTR pszURL, _Out_opt_ PTSTR pszUnescaped, _Inout_opt_ DWORD *pcchUnescaped, DWORD dwFlags)
aatuiiHRESULTUrlUnescapeA(_Inout_ PTSTR pszURL, _Out_opt_ PTSTR pszUnescaped, _Inout_opt_ DWORD *pcchUnescaped, DWORD dwFlags)
wwtuiiHRESULTUrlUnescapeW(_Inout_ PTSTR pszURL, _Out_opt_ PTSTR pszUnescaped, _Inout_opt_ DWORD *pcchUnescaped, DWORD dwFlags)
uiUINTWhichPlatform(void)
sistiintwnsprintf(_Out_ PTSTR pszDest, _In_ int cchDest, _In_ PCTSTR pszFmt, _In_ ...)
aiatiintwnsprintfA(_Out_ PTSTR pszDest, _In_ int cchDest, _In_ PCTSTR pszFmt, _In_ ...)
wiwtiintwnsprintfW(_Out_ PTSTR pszDest, _In_ int cchDest, _In_ PCTSTR pszFmt, _In_ ...)
sistiintwvnsprintf(_Out_ PTSTR pszDest, _In_ int cchDest, _In_ PCTSTR pszFmt, _In_ va_list arglist)
aiatiintwvnsprintfA(_Out_ PTSTR pszDest, _In_ int cchDest, _In_ PCTSTR pszFmt, _In_ va_list arglist)
wiwtiintwvnsprintfW(_Out_ PTSTR pszDest, _In_ int cchDest, _In_ PCTSTR pszFmt, _In_ va_list arglist)

Tapi32.dll

uiauiiLONGlineAccept(HCALL hCall, LPCSTR lpsUserUserInfo, DWORD dwSize)
attiLONGlineAddProvider(LPCSTR lpszProviderFilename, HWND hwndOwner, LPDWORD lpdwPermanentProviderID)
attiLONGlineAddProviderA(LPCSTR lpszProviderFilename, HWND hwndOwner, LPDWORD lpdwPermanentProviderID)
attiLONGlineAddProviderW(LPCSTR lpszProviderFilename, HWND hwndOwner, LPDWORD lpdwPermanentProviderID)
uiuiiLONGlineAddToConference(HCALL hConfCall, HCALL hConsultCall)
uiuiuituiiLONGlineAgentSpecific(HLINE hLine, DWORD dwAddressID, DWORD dwAgentExtensionIDIndex, LPVOID lpParams, DWORD dwSize)
uiauiiLONGlineAnswer(HCALL hCall, LPCSTR lpsUserUserInfo, DWORD dwSize)
uiauiiLONGlineBlindTransfer(HCALL hCall, LPCSTR lpszDestAddress, DWORD dwCountryCode)
uiauiiLONGlineBlindTransferA(HCALL hCall, LPCSTR lpszDestAddress, DWORD dwCountryCode)
uiauiiLONGlineBlindTransferW(HCALL hCall, LPCSTR lpszDestAddress, DWORD dwCountryCode)
uiiLONGlineClose(HLINE hLine)
uituiuiiLONGlineCompleteCall(HCALL hCall, LPDWORD lpdwCompletionID, DWORD dwCompletionMode, DWORD dwMessageID)
uiuituiiLONGlineCompleteTransfer(HCALL hCall, HCALL hConsultCall, LPHCALL lphConfCall, DWORD dwTransferMode)
uitaiLONGlineConfigDialog(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDeviceClass)
uitaiLONGlineConfigDialogA(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDeviceClass)
uitatuisiLONGlineConfigDialogEdit(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDeviceClass, LPVOID const lpDeviceConfigIn, DWORD dwSize, LPVARSTRING lpDeviceConfigOut)
uitatuiaiLONGlineConfigDialogEditA(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDeviceClass, LPVOID const lpDeviceConfigIn, DWORD dwSize, LPVARSTRING lpDeviceConfigOut)
uitatuiwiLONGlineConfigDialogEditW(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDeviceClass, LPVOID const lpDeviceConfigIn, DWORD dwSize, LPVARSTRING lpDeviceConfigOut)
uitaiLONGlineConfigDialogW(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDeviceClass)
tuiiLONGlineConfigProvider(HWND hwndOwner, DWORD dwPermanentProviderID)
uiwwtiLONGlineCreateAgent(HLINE hLine, LPWSTR lpszAgentID, LPWSTR lpszAgentPIN, LPHAGENT lphAgent)
uiaatiLONGlineCreateAgentA(HLINE hLine, LPWSTR lpszAgentID, LPWSTR lpszAgentPIN, LPHAGENT lphAgent)
uiuiwuittiLONGlineCreateAgentSession(HLINE hLine, HAGENT hAgent, LPWSTR lpszAgentPIN, DWORD dwWorkingAddressID, LPGUID lpGroupID, LPHAGENTSESSION lphAgentSession)
uiuiauittiLONGlineCreateAgentSessionA(HLINE hLine, HAGENT hAgent, LPWSTR lpszAgentPIN, DWORD dwWorkingAddressID, LPGUID lpGroupID, LPHAGENTSESSION lphAgentSession)
uiuiwuittiLONGlineCreateAgentSessionW(HLINE hLine, HAGENT hAgent, LPWSTR lpszAgentPIN, DWORD dwWorkingAddressID, LPGUID lpGroupID, LPHAGENTSESSION lphAgentSession)
uiwwtiLONGlineCreateAgentW(HLINE hLine, LPWSTR lpszAgentID, LPWSTR lpszAgentPIN, LPHAGENT lphAgent)
uiiLONGlineDeallocateCall(HCALL hCall)
uiuiuituiiLONGlineDevSpecific(HLINE hLine, DWORD dwAddressID, HCALL hCall, LPVOID lpParams, DWORD dwSize)
uiuituiiLONGlineDevSpecificFeature(HLINE hLine, DWORD dwFeature, LPVOID lpParams, DWORD dwSize)
uiauiiLONGlineDial(HCALL hCall, LPCSTR lpszDestAddress, DWORD dwCountryCode)
uiauiiLONGlineDialA(HCALL hCall, LPCSTR lpszDestAddress, DWORD dwCountryCode)
uiauiiLONGlineDialW(HCALL hCall, LPCSTR lpszDestAddress, DWORD dwCountryCode)
uiauiiLONGlineDrop(HCALL hCall, LPCSTR lpsUserUserInfo, DWORD dwSize)
uiuiuituittiLONGlineForward(HLINE hLine, DWORD bAllAddresses, DWORD dwAddressID, LPLINEFORWARDLIST const lpForwardList, DWORD dwNumRingsNoAnswer, LPHCALL lphConsultCall, LPLINECALLPARAMS const lpCallParams)
uiuiuituittiLONGlineForwardA(HLINE hLine, DWORD bAllAddresses, DWORD dwAddressID, LPLINEFORWARDLIST const lpForwardList, DWORD dwNumRingsNoAnswer, LPHCALL lphConsultCall, LPLINECALLPARAMS const lpCallParams)
uiuiuituittiLONGlineForwardW(HLINE hLine, DWORD bAllAddresses, DWORD dwAddressID, LPLINEFORWARDLIST const lpForwardList, DWORD dwNumRingsNoAnswer, LPHCALL lphConsultCall, LPLINECALLPARAMS const lpCallParams)
uiuiauiauiuiiLONGlineGatherDigits(HCALL hCall, DWORD dwDigitModes, LPSTR lpsDigits, DWORD dwNumDigits, LPCSTR lpszTerminationDigits, DWORD dwFirstDigitTimeout, DWORD dwInterDigitTimeout)
uiuiauiauiuiiLONGlineGatherDigitsA(HCALL hCall, DWORD dwDigitModes, LPSTR lpsDigits, DWORD dwNumDigits, LPCSTR lpszTerminationDigits, DWORD dwFirstDigitTimeout, DWORD dwInterDigitTimeout)
uiuiauiauiuiiLONGlineGatherDigitsW(HCALL hCall, DWORD dwDigitModes, LPSTR lpsDigits, DWORD dwNumDigits, LPCSTR lpszTerminationDigits, DWORD dwFirstDigitTimeout, DWORD dwInterDigitTimeout)
uiuiauiiLONGlineGenerateDigits(HCALL hCall, DWORD dwDigitMode, LPCSTR lpszDigits, DWORD dwDuration)
uiuiauiiLONGlineGenerateDigitsA(HCALL hCall, DWORD dwDigitMode, LPCSTR lpszDigits, DWORD dwDuration)
uiuiauiiLONGlineGenerateDigitsW(HCALL hCall, DWORD dwDigitMode, LPCSTR lpszDigits, DWORD dwDuration)
uiuiuiuitiLONGlineGenerateTone(HCALL hCall, DWORD dwToneMode, DWORD dwDuration, DWORD dwNumTones, LPLINEGENERATETONE const lpTones)
uiuiuiuiuitiLONGlineGetAddressCaps(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAddressID, DWORD dwAPIVersion, DWORD dwExtVersion, LPLINEADDRESSCAPS lpAddressCaps)
uiuiuiuiuitiLONGlineGetAddressCapsA(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAddressID, DWORD dwAPIVersion, DWORD dwExtVersion, LPLINEADDRESSCAPS lpAddressCaps)
uiuiuiuiuitiLONGlineGetAddressCapsW(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAddressID, DWORD dwAPIVersion, DWORD dwExtVersion, LPLINEADDRESSCAPS lpAddressCaps)
uituiauiiLONGlineGetAddressID(HLINE hLine, LPDWORD lpdwAddressID, DWORD dwAddressMode, LPCSTR lpsAddress, DWORD dwSize)
uituiauiiLONGlineGetAddressIDA(HLINE hLine, LPDWORD lpdwAddressID, DWORD dwAddressMode, LPCSTR lpsAddress, DWORD dwSize)
uituiauiiLONGlineGetAddressIDW(HLINE hLine, LPDWORD lpdwAddressID, DWORD dwAddressMode, LPCSTR lpsAddress, DWORD dwSize)
uiuitiLONGlineGetAddressStatus(HLINE hLine, DWORD dwAddressID, LPLINEADDRESSSTATUS lpAddressStatus)
uiuitiLONGlineGetAddressStatusA(HLINE hLine, DWORD dwAddressID, LPLINEADDRESSSTATUS lpAddressStatus)
uiuitiLONGlineGetAddressStatusW(HLINE hLine, DWORD dwAddressID, LPLINEADDRESSSTATUS lpAddressStatus)
uiuitiLONGlineGetAgentActivityList(HLINE hLine, DWORD dwAddressID, LPLINEAGENTACTIVITYLIST lpAgentActivityList)
uiuitiLONGlineGetAgentActivityListA(HLINE hLine, DWORD dwAddressID, LPLINEAGENTACTIVITYLIST lpAgentActivityList)
uiuitiLONGlineGetAgentActivityListW(HLINE hLine, DWORD dwAddressID, LPLINEAGENTACTIVITYLIST lpAgentActivityList)
uiuiuiuitiLONGlineGetAgentCaps(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAddressID, DWORD dwAppAPIVersion, LPLINEAGENTCAPS lpAgentCaps)
uiuiuiuitiLONGlineGetAgentCapsA(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAddressID, DWORD dwAppAPIVersion, LPLINEAGENTCAPS lpAgentCaps)
uiuiuiuitiLONGlineGetAgentCapsW(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAddressID, DWORD dwAppAPIVersion, LPLINEAGENTCAPS lpAgentCaps)
uiuitiLONGlineGetAgentGroupList(HLINE hLine, DWORD dwAddressID, LPLINEAGENTGROUPLIST lpAgentGroupList)
uiuitiLONGlineGetAgentGroupListA(HLINE hLine, DWORD dwAddressID, LPLINEAGENTGROUPLIST lpAgentGroupList)
uiuitiLONGlineGetAgentGroupListW(HLINE hLine, DWORD dwAddressID, LPLINEAGENTGROUPLIST lpAgentGroupList)
uiuitiLONGlineGetAgentInfo(HLINE hLine, HAGENT hAgent, LPLINEAGENTINFO lpAgentInfo)
uiuitiLONGlineGetAgentSessionInfo(HLINE hLine, HAGENTSESSION hAgentSession, LPLINEAGENTSESSIONINFO lpAgentSessionInfo)
uiuitiLONGlineGetAgentSessionList(HLINE hLine, HAGENT hAgent, LPLINEAGENTSESSIONLIST lpAgentSessionList)
uiuitiLONGlineGetAgentStatus(HLINE hLine, DWORD dwAddressID, LPLINEAGENTSTATUS lpAgentStatus)
uiuitiLONGlineGetAgentStatusA(HLINE hLine, DWORD dwAddressID, LPLINEAGENTSTATUS lpAgentStatus)
uiuitiLONGlineGetAgentStatusW(HLINE hLine, DWORD dwAddressID, LPLINEAGENTSTATUS lpAgentStatus)
auituistiLONGlineGetAppPriority(LPCSTR lpszAppFilename, DWORD dwMediaMode, LPLINEEXTENSIONID lpExtensionID, DWORD dwRequestMode, LPVARSTRING lpExtensionName, LPDWORD lpdwPriority)
auituiatiLONGlineGetAppPriorityA(LPCSTR lpszAppFilename, DWORD dwMediaMode, LPLINEEXTENSIONID lpExtensionID, DWORD dwRequestMode, LPVARSTRING lpExtensionName, LPDWORD lpdwPriority)
auituiwtiLONGlineGetAppPriorityW(LPCSTR lpszAppFilename, DWORD dwMediaMode, LPLINEEXTENSIONID lpExtensionID, DWORD dwRequestMode, LPVARSTRING lpExtensionName, LPDWORD lpdwPriority)
uitiLONGlineGetCallInfo(HCALL hCall, LPLINECALLINFO lpCallInfo)
uitiLONGlineGetCallInfoA(HCALL hCall, LPLINECALLINFO lpCallInfo)
uitiLONGlineGetCallInfoW(HCALL hCall, LPLINECALLINFO lpCallInfo)
uitiLONGlineGetCallStatus(HCALL hCall, LPLINECALLSTATUS lpCallStatus)
uitiLONGlineGetConfRelatedCalls(HCALL hCall, LPLINECALLLIST lpCallList)
uiuitiLONGlineGetCountry(DWORD dwCountryID, DWORD dwAPIVersion, LPLINECOUNTRYLIST lpLineCountryList)
uiuitiLONGlineGetCountryA(DWORD dwCountryID, DWORD dwAPIVersion, LPLINECOUNTRYLIST lpLineCountryList)
uiuitiLONGlineGetCountryW(DWORD dwCountryID, DWORD dwAPIVersion, LPLINECOUNTRYLIST lpLineCountryList)
uiuiuiuitiLONGlineGetDevCaps(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPIVersion, DWORD dwExtVersion, LPLINEDEVCAPS lpLineDevCaps)
uiuiuiuitiLONGlineGetDevCapsA(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPIVersion, DWORD dwExtVersion, LPLINEDEVCAPS lpLineDevCaps)
uiuiuiuitiLONGlineGetDevCapsW(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPIVersion, DWORD dwExtVersion, LPLINEDEVCAPS lpLineDevCaps)
uisaiLONGlineGetDevConfig(DWORD dwDeviceID, LPVARSTRING lpDeviceConfig, LPCSTR lpszDeviceClass)
uiaaiLONGlineGetDevConfigA(DWORD dwDeviceID, LPVARSTRING lpDeviceConfig, LPCSTR lpszDeviceClass)
uiwaiLONGlineGetDevConfigW(DWORD dwDeviceID, LPVARSTRING lpDeviceConfig, LPCSTR lpszDeviceClass)
uitiLONGlineGetGroupList(HLINE hLine, LPLINEAGENTGROUPLIST lpGroupList)
uitiLONGlineGetGroupListA(HLINE hLine, LPLINEAGENTGROUPLIST lpGroupList)
uitiLONGlineGetGroupListW(HLINE hLine, LPLINEAGENTGROUPLIST lpGroupList)
uiatiLONGlineGetIcon(DWORD dwDeviceID, LPCSTR lpszDeviceClass, LPHICON lphIcon)
uiatiLONGlineGetIconA(DWORD dwDeviceID, LPCSTR lpszDeviceClass, LPHICON lphIcon)
uiatiLONGlineGetIconW(DWORD dwDeviceID, LPCSTR lpszDeviceClass, LPHICON lphIcon)
uiuiuiuisaiLONGlineGetID(HLINE hLine, DWORD dwAddressID, HCALL hCall, DWORD dwSelect, LPVARSTRING lpDeviceID, LPCSTR lpszDeviceClass)
uiuiuiuiaaiLONGlineGetIDA(HLINE hLine, DWORD dwAddressID, HCALL hCall, DWORD dwSelect, LPVARSTRING lpDeviceID, LPCSTR lpszDeviceClass)
uiuiuiuiwaiLONGlineGetIDW(HLINE hLine, DWORD dwAddressID, HCALL hCall, DWORD dwSelect, LPVARSTRING lpDeviceID, LPCSTR lpszDeviceClass)
uitiLONGlineGetLineDevStatus(HLINE hLine, LPLINEDEVSTATUS lpLineDevStatus)
uitiLONGlineGetLineDevStatusA(HLINE hLine, LPLINEDEVSTATUS lpLineDevStatus)
uitiLONGlineGetLineDevStatusW(HLINE hLine, LPLINEDEVSTATUS lpLineDevStatus)
uituiiLONGlineGetMessage(HLINEAPP hLineApp, LPLINEMESSAGE lpMessage, DWORD dwTimeout)
uiuiuitiLONGlineGetNewCalls(HLINE hLine, DWORD dwAddressID, DWORD dwSelect, LPLINECALLLIST lpCallList)
uiuitiLONGlineGetNumRings(HLINE hLine, DWORD dwAddressID, LPDWORD lpdwNumRings)
uitiLONGlineGetProviderList(DWORD dwAPIVersion, LPLINEPROVIDERLIST lpProviderList)
uitiLONGlineGetProviderListA(DWORD dwAPIVersion, LPLINEPROVIDERLIST lpProviderList)
uitiLONGlineGetProviderListW(DWORD dwAPIVersion, LPLINEPROVIDERLIST lpProviderList)
uiuiuitiLONGlineGetProxyStatus(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAppAPIVersion, LPLINEPROXYREQUESTLIST lpLineProxyRequestList)
uiuitiLONGlineGetQueueInfo(HLINE hLine, DWORD dwQueueID, LPLINEQUEUEINFO lpLineQueueInfo)
uittiLONGlineGetQueueList(HLINE hLine, LPGUID lpGroupID, LPLINEQUEUELIST lpQueueList)
uittiLONGlineGetQueueListA(HLINE hLine, LPGUID lpGroupID, LPLINEQUEUELIST lpQueueList)
uittiLONGlineGetQueueListW(HLINE hLine, LPGUID lpGroupID, LPLINEQUEUELIST lpQueueList)
uiuitiLONGlineGetRequest(HLINEAPP hLineApp, DWORD dwRequestMode, LPVOID lpRequestBuffer)
uiuitiLONGlineGetRequestA(HLINEAPP hLineApp, DWORD dwRequestMode, LPVOID lpRequestBuffer)
uiuitiLONGlineGetRequestW(HLINEAPP hLineApp, DWORD dwRequestMode, LPVOID lpRequestBuffer)
uittiLONGlineGetStatusMessages(HLINE hLine, LPDWORD lpdwLineStates, LPDWORD lpdwAddressStates)
uiuitiLONGlineGetTranslateCaps(HLINEAPP hLineApp, DWORD dwAPIVersion, LPLINETRANSLATECAPS lpTranslateCaps)
uiuitiLONGlineGetTranslateCapsA(HLINEAPP hLineApp, DWORD dwAPIVersion, LPLINETRANSLATECAPS lpTranslateCaps)
uiuitiLONGlineGetTranslateCapsW(HLINEAPP hLineApp, DWORD dwAPIVersion, LPLINETRANSLATECAPS lpTranslateCaps)
uiauiiLONGlineHandoff(HCALL hCall, LPCSTR lpszFileName, DWORD dwMediaMode)
uiauiiLONGlineHandoffA(HCALL hCall, LPCSTR lpszFileName, DWORD dwMediaMode)
uiauiiLONGlineHandoffW(HCALL hCall, LPCSTR lpszFileName, DWORD dwMediaMode)
uiiLONGlineHold(HCALL hCall)
tttatiLONGlineInitialize(LPHLINEAPP lphLineApp, HINSTANCE hInstance, LINECALLBACK lpfnCallback, LPCSTR lpszAppName, LPDWORD lpdwNumDevs)
tttatttiLONGlineInitializeEx(LPHLINEAPP lphLineApp, HINSTANCE hInstance, LINECALLBACK lpfnCallback, LPCSTR lpszFriendlyAppName, LPDWORD lpdwNumDevs, LPDWORD lpdwAPIVersion, LPLINEINITIALIZEEXPARAMS lpLineInitializeExParams)
tttatttiLONGlineInitializeExA(LPHLINEAPP lphLineApp, HINSTANCE hInstance, LINECALLBACK lpfnCallback, LPCSTR lpszFriendlyAppName, LPDWORD lpdwNumDevs, LPDWORD lpdwAPIVersion, LPLINEINITIALIZEEXPARAMS lpLineInitializeExParams)
tttatttiLONGlineInitializeExW(LPHLINEAPP lphLineApp, HINSTANCE hInstance, LINECALLBACK lpfnCallback, LPCSTR lpszFriendlyAppName, LPDWORD lpdwNumDevs, LPDWORD lpdwAPIVersion, LPLINEINITIALIZEEXPARAMS lpLineInitializeExParams)
uitauitiLONGlineMakeCall(HLINE hLine, LPHCALL lphCall, LPCSTR lpszDestAddress, DWORD dwCountryCode, LPLINECALLPARAMS const lpCallParams)
uitauitiLONGlineMakeCallA(HLINE hLine, LPHCALL lphCall, LPCSTR lpszDestAddress, DWORD dwCountryCode, LPLINECALLPARAMS const lpCallParams)
uitauitiLONGlineMakeCallW(HLINE hLine, LPHCALL lphCall, LPCSTR lpszDestAddress, DWORD dwCountryCode, LPLINECALLPARAMS const lpCallParams)
uiuiiLONGlineMonitorDigits(HCALL hCall, DWORD dwDigitModes)
uiuiiLONGlineMonitorMedia(HCALL hCall, DWORD dwMediaModes)
uituiiLONGlineMonitorTones(HCALL hCall, LPLINEMONITORTONE const lpToneList, DWORD dwNumEntries)
uiuiuiuittiLONGlineNegotiateAPIVersion(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPILowVersion, DWORD dwAPIHighVersion, LPDWORD lpdwAPIVersion, LPLINEEXTENSIONID lpExtensionID)
uiuiuiuiuitiLONGlineNegotiateExtVersion(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPIVersion, DWORD dwExtLowVersion, DWORD dwExtHighVersion, LPDWORD lpdwExtVersion)
uiuituiuiutuiuitiLONGlineOpen(HLINEAPP hLineApp, DWORD dwDeviceID, LPHLINE lphLine, DWORD dwAPIVersion, DWORD dwExtVersion, DWORD_PTR dwCallbackInstance, DWORD dwPrivileges, DWORD dwMediaModes, LPLINECALLPARAMS const lpCallParams)
uiuituiuiutuiuitiLONGlineOpenA(HLINEAPP hLineApp, DWORD dwDeviceID, LPHLINE lphLine, DWORD dwAPIVersion, DWORD dwExtVersion, DWORD_PTR dwCallbackInstance, DWORD dwPrivileges, DWORD dwMediaModes, LPLINECALLPARAMS const lpCallParams)
uiuituiuiutuiuitiLONGlineOpenW(HLINEAPP hLineApp, DWORD dwDeviceID, LPHLINE lphLine, DWORD dwAPIVersion, DWORD dwExtVersion, DWORD_PTR dwCallbackInstance, DWORD dwPrivileges, DWORD dwMediaModes, LPLINECALLPARAMS const lpCallParams)
uiuiasiLONGlinePark(HCALL hCall, DWORD dwParkMode, LPCSTR lpszDirAddress, LPVARSTRING lpNonDirAddress)
uiuiaaiLONGlineParkA(HCALL hCall, DWORD dwParkMode, LPCSTR lpszDirAddress, LPVARSTRING lpNonDirAddress)
uiuiawiLONGlineParkW(HCALL hCall, DWORD dwParkMode, LPCSTR lpszDirAddress, LPVARSTRING lpNonDirAddress)
uiuitaaiLONGlinePickup(HLINE hLine, DWORD dwAddressID, LPHCALL lphCall, LPCSTR lpszDestAddress, LPCSTR lpszGroupID)
uiuitaaiLONGlinePickupA(HLINE hLine, DWORD dwAddressID, LPHCALL lphCall, LPCSTR lpszDestAddress, LPCSTR lpszGroupID)
uiuitaaiLONGlinePickupW(HLINE hLine, DWORD dwAddressID, LPHCALL lphCall, LPCSTR lpszDestAddress, LPCSTR lpszGroupID)
uittiLONGlinePrepareAddToConference(HCALL hConfCall, LPHCALL lphConsultCall, LPLINECALLPARAMS const lpCallParams)
uittiLONGlinePrepareAddToConferenceA(HCALL hConfCall, LPHCALL lphConsultCall, LPLINECALLPARAMS const lpCallParams)
uittiLONGlinePrepareAddToConferenceW(HCALL hConfCall, LPHCALL lphConsultCall, LPLINECALLPARAMS const lpCallParams)
uiuiuiuiuiuiiLONGlineProxyMessage(HLINE hLine, HCALL hCall, DWORD dwMsg, DWORD dwParam1, DWORD dwParam2, DWORD dwParam3)
uituiiLONGlineProxyResponse(HLINE hLine, LPLINEPROXYREQUEST lpProxyRequest, DWORD dwResult)
uiauiiLONGlineRedirect(HCALL hCall, LPCSTR lpszDestAddress, DWORD dwCountryCode)
uiauiiLONGlineRedirectA(HCALL hCall, LPCSTR lpszDestAddress, DWORD dwCountryCode)
uiauiiLONGlineRedirectW(HCALL hCall, LPCSTR lpszDestAddress, DWORD dwCountryCode)
uiuiuiuiiLONGlineRegisterRequestRecipient(HLINEAPP hLineApp, DWORD dwRegistrationInstance, DWORD dwRequestMode, DWORD bEnable)
uiiLONGlineReleaseUserUserInfo(HCALL hCall)
uiiLONGlineRemoveFromConference(HCALL hCall)
uitiLONGlineRemoveProvider(DWORD dwPermanentProviderID, HWND hwndOwner)
uiiLONGlineSecureCall(HCALL hCall)
uiauiiLONGlineSendUserUserInfo(HCALL hCall, LPCSTR lpsUserUserInfo, DWORD dwSize)
uiuiuiiLONGlineSetAgentActivity(HLINE hLine, DWORD dwAddressID, DWORD dwActivityID)
uiuitiLONGlineSetAgentGroup(HLINE hLine, DWORD dwAddressID, LPLINEAGENTGROUPLIST lpAgentGroupList)
uiuiuiiLONGlineSetAgentMeasurementPeriod(HLINE hLine, HAGENT hAgent, DWORD dwMeasurementPeriod)
uiuiuiuiiLONGlineSetAgentSessionState(HLINE hLine, HAGENTSESSION hAgentSession, DWORD dwAgentSessionState, DWORD dwNextAgentSessionState)
uiuiuiuiiLONGlineSetAgentState(HLINE hLine, DWORD dwAddressID, DWORD dwAgentState, DWORD dwNextAgentState)
uiuiuiuiiLONGlineSetAgentStateEx(HLINE hLine, HAGENT hAgent, DWORD dwAgentState, DWORD dwNextAgentState)
auituiauiiLONGlineSetAppPriority(LPCSTR lpszAppFilename, DWORD dwMediaMode, LPLINEEXTENSIONID lpExtensionID, DWORD dwRequestMode, LPCSTR lpszExtensionName, DWORD dwPriority)
auituiauiiLONGlineSetAppPriorityA(LPCSTR lpszAppFilename, DWORD dwMediaMode, LPLINEEXTENSIONID lpExtensionID, DWORD dwRequestMode, LPCSTR lpszExtensionName, DWORD dwPriority)
auituiauiiLONGlineSetAppPriorityW(LPCSTR lpszAppFilename, DWORD dwMediaMode, LPLINEEXTENSIONID lpExtensionID, DWORD dwRequestMode, LPCSTR lpszExtensionName, DWORD dwPriority)
uiuiiLONGlineSetAppSpecific(HCALL hCall, DWORD dwAppSpecific)
uituiiLONGlineSetCallData(HCALL hCall, LPVOID lpCallData, DWORD dwSize)
uiuiuiuitiLONGlineSetCallParams(HCALL hCall, DWORD dwBearerMode, DWORD dwMinRate, DWORD dwMaxRate, LPLINEDIALPARAMS const lpDialParams)
uiuiiLONGlineSetCallPrivilege(HCALL hCall, DWORD dwCallPrivilege)
uituituiiLONGlineSetCallQualityOfService(HCALL hCall, LPVOID lpSendingFlowspec, DWORD dwSendingFlowspecSize, LPVOID lpReceivingFlowspec, DWORD dwReceivingFlowspecSize)
uiuiiLONGlineSetCallTreatment(HCALL hCall, DWORD dwTreatment)
uiuiiLONGlineSetCurrentLocation(HLINEAPP hLineApp, DWORD dwLocation)
uituiaiLONGlineSetDevConfig(DWORD dwDeviceID, LPVOID const lpDeviceConfig, DWORD dwSize, LPCSTR lpszDeviceClass)
uituiaiLONGlineSetDevConfigA(DWORD dwDeviceID, LPVOID const lpDeviceConfig, DWORD dwSize, LPCSTR lpszDeviceClass)
uituiaiLONGlineSetDevConfigW(DWORD dwDeviceID, LPVOID const lpDeviceConfig, DWORD dwSize, LPCSTR lpszDeviceClass)
uiuiuiiLONGlineSetLineDevStatus(HLINE hLine, DWORD dwStatusToChange, DWORD fStatus)
uiuiuiuituituituituiiLONGlineSetMediaControl(HLINE hLine, DWORD dwAddressID, HCALL hCall, DWORD dwSelect, LPLINEMEDIACONTROLDIGIT const lpDigitList, DWORD dwDigitNumEntries, LPLINEMEDIACONTROLMEDIA const lpMediaList, DWORD dwMediaNumEntries, LPLINEMEDIACONTROLTONE const lpToneList, DWORD dwToneNumEntries, LPLINEMEDIACONTROLCALLSTATE const lpCallStateList, DWORD dwCallStateNumEntries)
uiuiiLONGlineSetMediaMode(HCALL hCall, DWORD dwMediaModes)
uiuiuiiLONGlineSetNumRings(HLINE hLine, DWORD dwAddressID, DWORD dwNumRings)
uiuiuiiLONGlineSetQueueMeasurementPeriod(HLINE hLine, DWORD dwQueueID, DWORD dwMeasurementPeriod)
uiuiuiiLONGlineSetStatusMessages(HLINE hLine, DWORD dwLineStates, DWORD dwAddressStates)
uiuiuiuiuiuiuiiLONGlineSetTerminal(HLINE hLine, DWORD dwAddressID, HCALL hCall, DWORD dwSelect, DWORD dwTerminalModes, DWORD dwTerminalID, DWORD bEnable)
uiuiauiiLONGlineSetTollList(HLINEAPP hLineApp, DWORD dwDeviceID, LPCSTR lpszAddressIn, DWORD dwTollListOption)
uiuiauiiLONGlineSetTollListA(HLINEAPP hLineApp, DWORD dwDeviceID, LPCSTR lpszAddressIn, DWORD dwTollListOption)
uiuiauiiLONGlineSetTollListW(HLINEAPP hLineApp, DWORD dwDeviceID, LPCSTR lpszAddressIn, DWORD dwTollListOption)
uiuittuitiLONGlineSetupConference(HCALL hCall, HLINE hLine, LPHCALL lphConfCall, LPHCALL lphConsultCall, DWORD dwNumParties, LPLINECALLPARAMS const lpCallParams)
uiuittuitiLONGlineSetupConferenceA(HCALL hCall, HLINE hLine, LPHCALL lphConfCall, LPHCALL lphConsultCall, DWORD dwNumParties, LPLINECALLPARAMS const lpCallParams)
uiuittuitiLONGlineSetupConferenceW(HCALL hCall, HLINE hLine, LPHCALL lphConfCall, LPHCALL lphConsultCall, DWORD dwNumParties, LPLINECALLPARAMS const lpCallParams)
uittiLONGlineSetupTransfer(HCALL hCall, LPHCALL lphConsultCall, LPLINECALLPARAMS const lpCallParams)
uittiLONGlineSetupTransferA(HCALL hCall, LPHCALL lphConsultCall, LPLINECALLPARAMS const lpCallParams)
uittiLONGlineSetupTransferW(HCALL hCall, LPHCALL lphConsultCall, LPLINECALLPARAMS const lpCallParams)
uiiLONGlineShutdown(HLINEAPP hLineApp)
uiuiiLONGlineSwapHold(HCALL hActiveCall, HCALL hHeldCall)
uiuiuiauiuitiLONGlineTranslateAddress(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPIVersion, LPCSTR lpszAddressIn, DWORD dwCard, DWORD dwTranslateOptions, LPLINETRANSLATEOUTPUT lpTranslateOutput)
uiuiuiauiuitiLONGlineTranslateAddressA(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPIVersion, LPCSTR lpszAddressIn, DWORD dwCard, DWORD dwTranslateOptions, LPLINETRANSLATEOUTPUT lpTranslateOutput)
uiuiuiauiuitiLONGlineTranslateAddressW(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPIVersion, LPCSTR lpszAddressIn, DWORD dwCard, DWORD dwTranslateOptions, LPLINETRANSLATEOUTPUT lpTranslateOutput)
uiuiuitaiLONGlineTranslateDialog(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPIVersion, HWND hwndOwner, LPCSTR lpszAddressIn)
uiuiuitaiLONGlineTranslateDialogA(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPIVersion, HWND hwndOwner, LPCSTR lpszAddressIn)
uiuiuitaiLONGlineTranslateDialogW(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPIVersion, HWND hwndOwner, LPCSTR lpszAddressIn)
uiuiiLONGlineUncompleteCall(HLINE hLine, DWORD dwCompletionID)
uiiLONGlineUnhold(HCALL hCall)
uiuitaiLONGlineUnpark(HLINE hLine, DWORD dwAddressID, LPHCALL lphCall, LPCSTR lpszDestAddress)
uiuitaiLONGlineUnparkA(HLINE hLine, DWORD dwAddressID, LPHCALL lphCall, LPCSTR lpszDestAddress)
uiuitaiLONGlineUnparkW(HLINE hLine, DWORD dwAddressID, LPHCALL lphCall, LPCSTR lpszDestAddress)
uiiLONGphoneClose(HPHONE hPhone)
uitaiLONGphoneConfigDialog(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDeviceClass)
uitaiLONGphoneConfigDialogA(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDeviceClass)
uitaiLONGphoneConfigDialogW(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDeviceClass)
uituiiLONGphoneDevSpecific(HPHONE hPhone, LPVOID lpParams, DWORD dwSize)
uiuitiLONGphoneGetButtonInfo(HPHONE hPhone, DWORD dwButtonLampID, LPPHONEBUTTONINFO lpButtonInfo)
uiuitiLONGphoneGetButtonInfoA(HPHONE hPhone, DWORD dwButtonLampID, LPPHONEBUTTONINFO lpButtonInfo)
uiuitiLONGphoneGetButtonInfoW(HPHONE hPhone, DWORD dwButtonLampID, LPPHONEBUTTONINFO lpButtonInfo)
uiuituiiLONGphoneGetData(HPHONE hPhone, DWORD dwDataID, LPVOID lpData, DWORD dwSize)
uiuiuiuitiLONGphoneGetDevCaps(HPHONEAPP hPhoneApp, DWORD dwDeviceID, DWORD dwAPIVersion, DWORD dwExtVersion, LPPHONECAPS lpPhoneCaps)
uiuiuiuitiLONGphoneGetDevCapsA(HPHONEAPP hPhoneApp, DWORD dwDeviceID, DWORD dwAPIVersion, DWORD dwExtVersion, LPPHONECAPS lpPhoneCaps)
uiuiuiuitiLONGphoneGetDevCapsW(HPHONEAPP hPhoneApp, DWORD dwDeviceID, DWORD dwAPIVersion, DWORD dwExtVersion, LPPHONECAPS lpPhoneCaps)
uisiLONGphoneGetDisplay(HPHONE hPhone, LPVARSTRING lpDisplay)
uiuitiLONGphoneGetGain(HPHONE hPhone, DWORD dwHookSwitchDev, LPDWORD lpdwGain)
uitiLONGphoneGetHookSwitch(HPHONE hPhone, LPDWORD lpdwHookSwitchDevs)
uiatiLONGphoneGetIcon(DWORD dwDeviceID, LPCSTR lpszDeviceClass, LPHICON lphIcon)
uiatiLONGphoneGetIconA(DWORD dwDeviceID, LPCSTR lpszDeviceClass, LPHICON lphIcon)
uiatiLONGphoneGetIconW(DWORD dwDeviceID, LPCSTR lpszDeviceClass, LPHICON lphIcon)
uisaiLONGphoneGetID(HPHONE hPhone, LPVARSTRING lpDeviceID, LPCSTR lpszDeviceClass)
uiaaiLONGphoneGetIDA(HPHONE hPhone, LPVARSTRING lpDeviceID, LPCSTR lpszDeviceClass)
uiwaiLONGphoneGetIDW(HPHONE hPhone, LPVARSTRING lpDeviceID, LPCSTR lpszDeviceClass)
uiuitiLONGphoneGetLamp(HPHONE hPhone, DWORD dwButtonLampID, LPDWORD lpdwLampMode)
uituiiLONGphoneGetMessage(HPHONEAPP hPhoneApp, LPPHONEMESSAGE lpMessage, DWORD dwTimeout)
uittiLONGphoneGetRing(HPHONE hPhone, LPDWORD lpdwRingMode, LPDWORD lpdwVolume)
uitiLONGphoneGetStatus(HPHONE hPhone, LPPHONESTATUS lpPhoneStatus)
uitiLONGphoneGetStatusA(HPHONE hPhone, LPPHONESTATUS lpPhoneStatus)
uitttiLONGphoneGetStatusMessages(HPHONE hPhone, LPDWORD lpdwPhoneStates, LPDWORD lpdwButtonModes, LPDWORD lpdwButtonStates)
uitiLONGphoneGetStatusW(HPHONE hPhone, LPPHONESTATUS lpPhoneStatus)
uiuitiLONGphoneGetVolume(HPHONE hPhone, DWORD dwHookSwitchDev, LPDWORD lpdwVolume)
tttatiLONGphoneInitialize(LPHPHONEAPP lphPhoneApp, HINSTANCE hInstance, PHONECALLBACK lpfnCallback, LPCSTR lpszAppName, LPDWORD lpdwNumDevs)
tttatttiLONGphoneInitializeEx(LPHPHONEAPP lphPhoneApp, HINSTANCE hInstance, PHONECALLBACK lpfnCallback, LPCSTR lpszFriendlyAppName, LPDWORD lpdwNumDevs, LPDWORD lpdwAPIVersion, LPPHONEINITIALIZEEXPARAMS lpPhoneInitializeExParams)
tttatttiLONGphoneInitializeExA(LPHPHONEAPP lphPhoneApp, HINSTANCE hInstance, PHONECALLBACK lpfnCallback, LPCSTR lpszFriendlyAppName, LPDWORD lpdwNumDevs, LPDWORD lpdwAPIVersion, LPPHONEINITIALIZEEXPARAMS lpPhoneInitializeExParams)
tttatttiLONGphoneInitializeExW(LPHPHONEAPP lphPhoneApp, HINSTANCE hInstance, PHONECALLBACK lpfnCallback, LPCSTR lpszFriendlyAppName, LPDWORD lpdwNumDevs, LPDWORD lpdwAPIVersion, LPPHONEINITIALIZEEXPARAMS lpPhoneInitializeExParams)
uiuiuiuittiLONGphoneNegotiateAPIVersion(HPHONEAPP hPhoneApp, DWORD dwDeviceID, DWORD dwAPILowVersion, DWORD dwAPIHighVersion, LPDWORD lpdwAPIVersion, LPPHONEEXTENSIONID lpExtensionID)
uiuiuiuiuitiLONGphoneNegotiateExtVersion(HPHONEAPP hPhoneApp, DWORD dwDeviceID, DWORD dwAPIVersion, DWORD dwExtLowVersion, DWORD dwExtHighVersion, LPDWORD lpdwExtVersion)
uiuituiuiutuiiLONGphoneOpen(HPHONEAPP hPhoneApp, DWORD dwDeviceID, LPHPHONE lphPhone, DWORD dwAPIVersion, DWORD dwExtVersion, DWORD_PTR dwCallbackInstance, DWORD dwPrivilege)
uiuitiLONGphoneSetButtonInfo(HPHONE hPhone, DWORD dwButtonLampID, LPPHONEBUTTONINFO const lpButtonInfo)
uiuitiLONGphoneSetButtonInfoA(HPHONE hPhone, DWORD dwButtonLampID, LPPHONEBUTTONINFO const lpButtonInfo)
uiuitiLONGphoneSetButtonInfoW(HPHONE hPhone, DWORD dwButtonLampID, LPPHONEBUTTONINFO const lpButtonInfo)
uiuituiiLONGphoneSetData(HPHONE hPhone, DWORD dwDataID, LPVOID const lpData, DWORD dwSize)
uiuiuiauiiLONGphoneSetDisplay(HPHONE hPhone, DWORD dwRow, DWORD dwColumn, LPCSTR lpsDisplay, DWORD dwSize)
uiuiuiiLONGphoneSetGain(HPHONE hPhone, DWORD dwHookSwitchDev, DWORD dwGain)
uiuiuiiLONGphoneSetHookSwitch(HPHONE hPhone, DWORD dwHookSwitchDevs, DWORD dwHookSwitchMode)
uiuiuiiLONGphoneSetLamp(HPHONE hPhone, DWORD dwButtonLampID, DWORD dwLampMode)
uiuiuiiLONGphoneSetRing(HPHONE hPhone, DWORD dwRingMode, DWORD dwVolume)
uiuiuiuiiLONGphoneSetStatusMessages(HPHONE hPhone, DWORD dwPhoneStates, DWORD dwButtonModes, DWORD dwButtonStates)
uiuiuiiLONGphoneSetVolume(HPHONE hPhone, DWORD dwHookSwitchDev, DWORD dwVolume)
uiiLONGphoneShutdown(HPHONEAPP hPhoneApp)
aaiLONGtapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
aaiLONGtapiGetLocationInfoA(LPSTR lpszCountryCode, LPSTR lpszCityCode)
aaiLONGtapiGetLocationInfoW(LPSTR lpszCountryCode, LPSTR lpszCityCode)
tutiLONGtapiRequestDrop(HWND hWnd, WPARAM wRequestID)
aaaaiLONGtapiRequestMakeCall(LPCSTR lpszDestAddress, LPCSTR lpszAppName, LPCSTR lpszCalledParty, LPCSTR lpszComment)
aaaaiLONGtapiRequestMakeCallA(LPCSTR lpszDestAddress, LPCSTR lpszAppName, LPCSTR lpszCalledParty, LPCSTR lpszComment)
aaaaiLONGtapiRequestMakeCallW(LPCSTR lpszDestAddress, LPCSTR lpszAppName, LPCSTR lpszCalledParty, LPCSTR lpszComment)

User32.dll

tuitHKLActivateKeyboardLayout(_In_ HKL hkl, _In_ UINT Flags)
tiBOOLAddClipboardFormatListener(_In_ HWND hwnd)
tuiiiBOOLAdjustWindowRect(_Inout_ LPRECT lpRect, _In_ DWORD dwStyle, _In_ BOOL bMenu)
tuiiuiiBOOLAdjustWindowRectEx(_Inout_ LPRECT lpRect, _In_ DWORD dwStyle, _In_ BOOL bMenu, _In_ DWORD dwExStyle)
uiiBOOLAllowSetForegroundWindow(_In_ DWORD dwProcessId)
tuiuiiBOOLAnimateWindow(_In_ HWND hwnd, _In_ DWORD dwTime, _In_ DWORD dwFlags)
iBOOLAnyPopup(void)
tuiutsiBOOLAppendMenu(_In_ HMENU hMenu, _In_ UINT uFlags, _In_ UINT_PTR uIDNewItem, _In_opt_ LPCTSTR lpNewItem)
tuiutaiBOOLAppendMenuA(_In_ HMENU hMenu, _In_ UINT uFlags, _In_ UINT_PTR uIDNewItem, _In_opt_ LPCSTR lpNewItem)
tuiutwiBOOLAppendMenuW(_In_ HMENU hMenu, _In_ UINT uFlags, _In_ UINT_PTR uIDNewItem, _In_opt_ LPCWSTR lpNewItem)
tuiUINTArrangeIconicWindows(_In_ HWND hwnd)
uiuiiiBOOLAttachThreadInput(_In_ DWORD idAttach, _In_ DWORD idAttachTo, _In_ BOOL fAttach)
itHDWPBeginDeferWindowPos(_In_ int nNumWindows)
tttHDCBeginPaint(_In_ HWND hwnd, _Out_ LPPAINTSTRUCT lpPaint)
iiBOOLBlockInput_(_In_ BOOL fBlockIt)
tiBOOLBringWindowToTop(_In_ HWND hwnd)
uituiututiLONGBroadcastSystemMessage(_In_ DWORD dwFlags, _Inout_opt_ LPDWORD lpdwRecipients, _In_ UINT uiMessage, _In_ WPARAM wParam, _In_ LPARAM lParam)
uituiututiLONGBroadcastSystemMessageA(_In_ DWORD dwFlags, _Inout_opt_ LPDWORD lpdwRecipients, _In_ UINT uiMessage, _In_ WPARAM wParam, _In_ LPARAM lParam)
uituiututtiLONGBroadcastSystemMessageEx(_In_ DWORD dwFlags, _Inout_opt_ LPDWORD lpdwRecipients, _In_ UINT uiMessage, _In_ WPARAM wParam, _In_ LPARAM lParam, _Out_opt_ PBSMINFO pBSMInfo)
uituiututtiLONGBroadcastSystemMessageExA(_In_ DWORD dwFlags, _Inout_opt_ LPDWORD lpdwRecipients, _In_ UINT uiMessage, _In_ WPARAM wParam, _In_ LPARAM lParam, _Out_opt_ PBSMINFO pBSMInfo)
uituiututtiLONGBroadcastSystemMessageExW(_In_ DWORD dwFlags, _Inout_opt_ LPDWORD lpdwRecipients, _In_ UINT uiMessage, _In_ WPARAM wParam, _In_ LPARAM lParam, _Out_opt_ PBSMINFO pBSMInfo)
uituiututiLONGBroadcastSystemMessageW(_In_ DWORD dwFlags, _Inout_opt_ LPDWORD lpdwRecipients, _In_ UINT uiMessage, _In_ WPARAM wParam, _In_ LPARAM lParam)
ttuittiBOOLCalculatePopupWindowPosition(_In_ const POINT *anchorPoint, _In_ const SIZE *windowSize, _In_ UINT flags, _In_opt_ RECT *excludeRect, _Out_ RECT *popupWindowPosition)
tiiBOOLCallMsgFilter(_In_ LPMSG lpMsg, _In_ int nCode)
tiiBOOLCallMsgFilterA(_In_ LPMSG lpMsg, _In_ int nCode)
tiiBOOLCallMsgFilterW(_In_ LPMSG lpMsg, _In_ int nCode)
tiututtLRESULTCallNextHookEx(_In_opt_ HHOOK hhk, _In_ int nCode, _In_ WPARAM wParam, _In_ LPARAM lParam)
ttuiututtLRESULTCallWindowProc(_In_ WNDPROC lpPrevWndFunc, _In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
ttuiututtLRESULTCallWindowProcA(_In_ WNDPROC lpPrevWndFunc, _In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
ttuiututtLRESULTCallWindowProcW(_In_ WNDPROC lpPrevWndFunc, _In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuituituhWORDCascadeWindows(_In_opt_ HWND hwndParent, _In_ UINT wHow, _In_opt_ const RECT *lpRect, _In_ UINT cKids, _In_opt_ const HWND *lpKids)
ttiBOOLChangeClipboardChain(_In_ HWND hWndRemove, _In_ HWND hWndNewNext)
tuiiLONGChangeDisplaySettings(_In_ DEVMODE *lpDevMode, _In_ DWORD dwflags)
tuiiLONGChangeDisplaySettingsA(_In_ DEVMODE *lpDevMode, _In_ DWORD dwflags)
sttuitiLONGChangeDisplaySettingsEx(_In_ LPCTSTR lpszDeviceName, _In_ DEVMODE *lpDevMode, HWND hwnd, _In_ DWORD dwflags, _In_ LPVOID lParam)
attuitiLONGChangeDisplaySettingsExA(_In_ LPCSTR lpszDeviceName, _In_ DEVMODE *lpDevMode, HWND hwnd, _In_ DWORD dwflags, _In_ LPVOID lParam)
wttuitiLONGChangeDisplaySettingsExW(_In_ LPCWSTR lpszDeviceName, _In_ DEVMODE *lpDevMode, HWND hwnd, _In_ DWORD dwflags, _In_ LPVOID lParam)
tuiiLONGChangeDisplaySettingsW(_In_ DEVMODE *lpDevMode, _In_ DWORD dwflags)
uiuiiBOOLChangeWindowMessageFilter(_In_ UINT message, _In_ DWORD dwFlag)
tuiuitiBOOLChangeWindowMessageFilterEx(_In_ HWND hWnd, _In_ UINT message, _In_ DWORD action, _Inout_opt_ PCHANGEFILTERSTRUCT pChangeFilterStruct)
ssLPTSTRCharLower(_Inout_ LPTSTR lpsz)
aaLPSTRCharLowerA(_Inout_ LPSTR lpsz)
suiuiDWORDCharLowerBuff(_Inout_ LPTSTR lpsz, _In_ DWORD cchLength)
auiuiDWORDCharLowerBuffA(_Inout_ LPSTR lpsz, _In_ DWORD cchLength)
wuiuiDWORDCharLowerBuffW(_Inout_ LPWSTR lpsz, _In_ DWORD cchLength)
wwLPWSTRCharLowerW(_Inout_ LPWSTR lpsz)
ssLPTSTRCharNext(_In_ LPCTSTR lpsz)
aaLPSTRCharNextA(_In_ LPCSTR lpsz)
uhauiaLPSTRCharNextExA(_In_ WORD CodePage, _In_ LPCSTR lpCurrentChar, _In_ DWORD dwFlags)
wwLPWSTRCharNextW(_In_ LPCWSTR lpsz)
sssLPTSTRCharPrev(_In_ LPCTSTR lpszStart, _In_ LPCTSTR lpszCurrent)
aaaLPSTRCharPrevA(_In_ LPCSTR lpszStart, _In_ LPCSTR lpszCurrent)
uhaauiaLPSTRCharPrevExA(_In_ WORD CodePage, _In_ LPCSTR lpStart, _In_ LPCSTR lpCurrentChar, _In_ DWORD dwFlags)
wwwLPWSTRCharPrevW(_In_ LPCWSTR lpszStart, _In_ LPCWSTR lpszCurrent)
saiBOOLCharToOem(_In_ LPCTSTR lpszSrc, _Out_ LPSTR lpszDst)
aaiBOOLCharToOemA(_In_ LPCSTR lpszSrc, _Out_ LPSTR lpszDst)
sauiiBOOLCharToOemBuff(_In_ LPCTSTR lpszSrc, _Out_ LPSTR lpszDst, _In_ DWORD cchDstLength)
aauiiBOOLCharToOemBuffA(_In_ LPCSTR lpszSrc, _Out_ LPSTR lpszDst, _In_ DWORD cchDstLength)
wauiiBOOLCharToOemBuffW(_In_ LPCWSTR lpszSrc, _Out_ LPSTR lpszDst, _In_ DWORD cchDstLength)
waiBOOLCharToOemW(_In_ LPCWSTR lpszSrc, _Out_ LPSTR lpszDst)
ssLPTSTRCharUpper(_Inout_ LPTSTR lpsz)
aaLPSTRCharUpperA(_Inout_ LPSTR lpsz)
suiuiDWORDCharUpperBuff(_Inout_ LPTSTR lpsz, _In_ DWORD cchLength)
auiuiDWORDCharUpperBuffA(_Inout_ LPSTR lpsz, _In_ DWORD cchLength)
wuiuiDWORDCharUpperBuffW(_Inout_ LPWSTR lpsz, _In_ DWORD cchLength)
wwLPWSTRCharUpperW(_Inout_ LPWSTR lpsz)
tiuiiBOOLCheckDlgButton(_In_ HWND hDlg, _In_ int nIDButton, _In_ UINT uCheck)
tuiuiuiDWORDCheckMenuItem(_In_ HMENU hmenu, _In_ UINT uIDCheckItem, _In_ UINT uCheck)
tuiuiuiuiiBOOLCheckMenuRadioItem(_In_ HMENU hmenu, _In_ UINT idFirst, _In_ UINT idLast, _In_ UINT idCheck, _In_ UINT uFlags)
tiiiiBOOLCheckRadioButton(_In_ HWND hDlg, _In_ int nIDFirstButton, _In_ int nIDLastButton, _In_ int nIDCheckButton)
tui6tHWNDChildWindowFromPoint(_In_ HWND hWndParent, _In_ POINT Point)
tui6uitHWNDChildWindowFromPointEx(_In_ HWND hwndParent, _In_ POINT pt, _In_ UINT uFlags)
ttiBOOLClientToScreen(_In_ HWND hWnd, _Inout_ LPPOINT lpPoint)
tiBOOLClipCursor(_In_opt_ const RECT *lpRect)
iBOOLCloseClipboard(void)
tiBOOLCloseDesktop(_In_ HDESK hDesktop)
tiBOOLCloseGestureInfoHandle(HGESTUREINFO hGestureInfo)
tiBOOLCloseTouchInputHandle(_In_ HTOUCHINPUT hTouchInput)
tiBOOLCloseWindow(_In_ HWND hwnd)
tiBOOLCloseWindowStation(_In_ HWINSTA hWinSta)
ttiiintCopyAcceleratorTable(_In_ HACCEL hAccelSrc, _Out_opt_ LPACCEL lpAccelDst, _In_ int cAccelEntries)
ttiiintCopyAcceleratorTableA(_In_ HACCEL hAccelSrc, _Out_opt_ LPACCEL lpAccelDst, _In_ int cAccelEntries)
ttiiintCopyAcceleratorTableW(_In_ HACCEL hAccelSrc, _Out_opt_ LPACCEL lpAccelDst, _In_ int cAccelEntries)
ttHICONCopyIcon(_In_ HICON hIcon)
tuiiiuitHANDLECopyImage(_In_ HANDLE hImage, _In_ UINT uType, _In_ int cxDesired, _In_ int cyDesired, _In_ UINT fuFlags)
ttiBOOLCopyRect(_Out_ LPRECT lprcDst, _In_ const RECT *lprcSrc)
iintCountClipboardFormats(void)
titHACCELCreateAcceleratorTable(_In_ LPACCEL lpaccl, _In_ int cEntries)
titHACCELCreateAcceleratorTableA(_In_ LPACCEL lpaccl, _In_ int cEntries)
titHACCELCreateAcceleratorTableW(_In_ LPACCEL lpaccl, _In_ int cEntries)
ttiiiBOOLCreateCaret(_In_ HWND hWnd, _In_opt_ HBITMAP hBitmap, _In_ int nWidth, _In_ int nHeight)
tiiiitttHCURSORCreateCursor(_In_opt_ HINSTANCE hInst, _In_ int xHotSpot, _In_ int yHotSpot, _In_ int nWidth, _In_ int nHeight, _In_ const VOID *pvANDPlane, _In_ const VOID *pvXORPlane)
sstuiuittHDESKCreateDesktop(_In_ LPCTSTR lpszDesktop, _Reserved_ LPCTSTR lpszDevice, _Reserved_ DEVMODE *pDevmode, _In_ DWORD dwFlags, _In_ ACCESS_MASK dwDesiredAccess, _In_opt_ LPSECURITY_ATTRIBUTES lpsa)
aatuiuittHDESKCreateDesktopA(_In_ LPCSTR lpszDesktop, _Reserved_ LPCSTR lpszDevice, _Reserved_ DEVMODE *pDevmode, _In_ DWORD dwFlags, _In_ ACCESS_MASK dwDesiredAccess, _In_opt_ LPSECURITY_ATTRIBUTES lpsa)
sstuiuituittHDESKCreateDesktopEx(_In_ LPCTSTR lpszDesktop, _Reserved_ LPCTSTR lpszDevice, _Reserved_ DEVMODE *pDevmode, _In_ DWORD dwFlags, _In_ ACCESS_MASK dwDesiredAccess, _In_opt_ LPSECURITY_ATTRIBUTES lpsa, _In_ ULONG ulHeapSize, _Reserved_ PVOID pvoid)
aatuiuituittHDESKCreateDesktopExA(_In_ LPCSTR lpszDesktop, _Reserved_ LPCSTR lpszDevice, _Reserved_ DEVMODE *pDevmode, _In_ DWORD dwFlags, _In_ ACCESS_MASK dwDesiredAccess, _In_opt_ LPSECURITY_ATTRIBUTES lpsa, _In_ ULONG ulHeapSize, _Reserved_ PVOID pvoid)
wwtuiuituittHDESKCreateDesktopExW(_In_ LPCWSTR lpszDesktop, _Reserved_ LPCWSTR lpszDevice, _Reserved_ DEVMODE *pDevmode, _In_ DWORD dwFlags, _In_ ACCESS_MASK dwDesiredAccess, _In_opt_ LPSECURITY_ATTRIBUTES lpsa, _In_ ULONG ulHeapSize, _Reserved_ PVOID pvoid)
wwtuiuittHDESKCreateDesktopW(_In_ LPCWSTR lpszDesktop, _Reserved_ LPCWSTR lpszDevice, _Reserved_ DEVMODE *pDevmode, _In_ DWORD dwFlags, _In_ ACCESS_MASK dwDesiredAccess, _In_opt_ LPSECURITY_ATTRIBUTES lpsa)
ttttuttHWNDCreateDialogIndirectParam(_In_opt_ HINSTANCE hInstance, _In_ LPCDLGTEMPLATE lpTemplate, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM lParamInit)
ttttuttHWNDCreateDialogIndirectParamA(_In_opt_ HINSTANCE hInstance, _In_ LPCDLGTEMPLATE lpTemplate, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM lParamInit)
ttttuttHWNDCreateDialogIndirectParamW(_In_opt_ HINSTANCE hInstance, _In_ LPCDLGTEMPLATE lpTemplate, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM lParamInit)
tsttuttHWNDCreateDialogParam(_In_opt_ HINSTANCE hInstance, _In_ LPCTSTR lpTemplateName, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM dwInitParam)
tattuttHWNDCreateDialogParamA(_In_opt_ HINSTANCE hInstance, _In_ LPCSTR lpTemplateName, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM dwInitParam)
twttuttHWNDCreateDialogParamW(_In_opt_ HINSTANCE hInstance, _In_ LPCWSTR lpTemplateName, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM dwInitParam)
tiiucuctttHICONCreateIcon(_In_opt_ HINSTANCE hInstance, _In_ int nWidth, _In_ int nHeight, _In_ BYTE cPlanes, _In_ BYTE cBitsPixel, _In_ const BYTE *lpbANDbits, _In_ const BYTE *lpbXORbits)
tuiiuitHICONCreateIconFromResource(_In_ PBYTE presbits, _In_ DWORD dwResSize, _In_ BOOL fIcon, _In_ DWORD dwVer)
tuiiuiiiuitHICONCreateIconFromResourceEx(_In_ PBYTE pbIconBits, _In_ DWORD cbIconBits, _In_ BOOL fIcon, _In_ DWORD dwVersion, _In_ int cxDesired, _In_ int cyDesired, _In_ UINT uFlags)
ttHICONCreateIconIndirect(_In_ PICONINFO piconinfo)
ssuiiiiittuttHWNDCreateMDIWindow(_In_ LPCTSTR lpClassName, _In_ LPCTSTR lpWindowName, _In_ DWORD dwStyle, _In_ int X, _In_ int Y, _In_ int nWidth, _In_ int nHeight, _In_opt_ HWND hWndParent, _In_opt_ HINSTANCE hInstance, _In_ LPARAM lParam)
aauiiiiittuttHWNDCreateMDIWindowA(_In_ LPCSTR lpClassName, _In_ LPCSTR lpWindowName, _In_ DWORD dwStyle, _In_ int X, _In_ int Y, _In_ int nWidth, _In_ int nHeight, _In_opt_ HWND hWndParent, _In_opt_ HINSTANCE hInstance, _In_ LPARAM lParam)
wwuiiiiittuttHWNDCreateMDIWindowW(_In_ LPCWSTR lpClassName, _In_ LPCWSTR lpWindowName, _In_ DWORD dwStyle, _In_ int X, _In_ int Y, _In_ int nWidth, _In_ int nHeight, _In_opt_ HWND hWndParent, _In_opt_ HINSTANCE hInstance, _In_ LPARAM lParam)
tHMENUCreateMenu(void)
tHMENUCreatePopupMenu(void)
uissuiiiiitttttHWNDCreateWindowEx(_In_ DWORD dwExStyle, _In_opt_ LPCTSTR lpClassName, _In_opt_ LPCTSTR lpWindowName, _In_ DWORD dwStyle, _In_ int x, _In_ int y, _In_ int nWidth, _In_ int nHeight, _In_opt_ HWND hWndParent, _In_opt_ HMENU hMenu, _In_opt_ HINSTANCE hInstance, _In_opt_ LPVOID lpParam)
uiaauiiiiitttttHWNDCreateWindowExA(_In_ DWORD dwExStyle, _In_opt_ LPCSTR lpClassName, _In_opt_ LPCSTR lpWindowName, _In_ DWORD dwStyle, _In_ int x, _In_ int y, _In_ int nWidth, _In_ int nHeight, _In_opt_ HWND hWndParent, _In_opt_ HMENU hMenu, _In_opt_ HINSTANCE hInstance, _In_opt_ LPVOID lpParam)
uiwwuiiiiitttttHWNDCreateWindowExW(_In_ DWORD dwExStyle, _In_opt_ LPCWSTR lpClassName, _In_opt_ LPCWSTR lpWindowName, _In_ DWORD dwStyle, _In_ int x, _In_ int y, _In_ int nWidth, _In_ int nHeight, _In_opt_ HWND hWndParent, _In_opt_ HMENU hMenu, _In_opt_ HINSTANCE hInstance, _In_opt_ LPVOID lpParam)
suiuittHWINSTACreateWindowStation(_In_opt_ LPCTSTR lpwinsta, DWORD dwFlags, _In_ ACCESS_MASK dwDesiredAccess, _In_opt_ LPSECURITY_ATTRIBUTES lpsa)
auiuittHWINSTACreateWindowStationA(_In_opt_ LPCSTR lpwinsta, DWORD dwFlags, _In_ ACCESS_MASK dwDesiredAccess, _In_opt_ LPSECURITY_ATTRIBUTES lpsa)
wuiuittHWINSTACreateWindowStationW(_In_opt_ LPCWSTR lpwinsta, DWORD dwFlags, _In_ ACCESS_MASK dwDesiredAccess, _In_opt_ LPSECURITY_ATTRIBUTES lpsa)
uituiiBOOLDdeAbandonTransaction(_In_ DWORD idInst, _In_ HCONV hConv, _In_ DWORD idTransaction)
tttLPBYTEDdeAccessData(_In_ HDDEDATA hData, _Out_opt_ LPDWORD pcbDataSize)
ttuiuitHDDEDATADdeAddData(_In_ HDDEDATA hData, _In_ LPBYTE pSrc, _In_ DWORD cb, _In_ DWORD cbOff)
tuittuiuiuittHDDEDATADdeClientTransaction(_In_opt_ LPBYTE pData, _In_ DWORD cbData, _In_ HCONV hConv, _In_opt_ HSZ hszItem, _In_ UINT wFmt, _In_ UINT wType, _In_ DWORD dwTimeout, _Out_opt_ LPDWORD pdwResult)
ttiintDdeCmpStringHandles(_In_ HSZ hsz1, _In_ HSZ hsz2)
uittttHCONVDdeConnect(_In_ DWORD idInst, _In_ HSZ hszService, _In_ HSZ hszTopic, _In_opt_ PCONVCONTEXT pCC)
uitttttHCONVLISTDdeConnectList(_In_ DWORD idInst, _In_ HSZ hszService, _In_ HSZ hszTopic, _In_ HCONVLIST hConvList, _In_opt_ PCONVCONTEXT pCC)
uituiuituiuitHDDEDATADdeCreateDataHandle(_In_ DWORD idInst, _In_opt_ LPBYTE pSrc, _In_ DWORD cb, _In_ DWORD cbOff, _In_opt_ HSZ hszItem, _In_ UINT wFmt, _In_ UINT afCmd)
uisitHSZDdeCreateStringHandle(_In_ DWORD idInst, _In_ LPTSTR psz, _In_ int iCodePage)
uiaitHSZDdeCreateStringHandleA(_In_ DWORD idInst, _In_ LPSTR psz, _In_ int iCodePage)
uiwitHSZDdeCreateStringHandleW(_In_ DWORD idInst, _In_ LPWSTR psz, _In_ int iCodePage)
tiBOOLDdeDisconnect(_In_ HCONV hConv)
tiBOOLDdeDisconnectList(_In_ HCONVLIST hConvList)
uituiiBOOLDdeEnableCallback(_In_ DWORD idInst, _In_ HCONV hConv, _In_ UINT wCmd)
tiBOOLDdeFreeDataHandle(_In_ HDDEDATA hData)
uitiBOOLDdeFreeStringHandle(_In_ DWORD idInst, _In_ HSZ hsz)
ttuiuiuiDWORDDdeGetData(_In_ HDDEDATA hData, _Out_opt_ LPBYTE pDst, _In_ DWORD cbMax, _In_ DWORD cbOff)
uiuiUINTDdeGetLastError(_In_ DWORD idInst)
tiBOOLDdeImpersonateClient(_In_ HCONV hConv)
ttuiuiuiUINTDdeInitialize(_Inout_ LPDWORD pidInst, _In_ PFNCALLBACK pfnCallback, _In_ DWORD afCmd, _Reserved_ DWORD ulRes)
ttuiuiuiUINTDdeInitializeA(_Inout_ LPDWORD pidInst, _In_ PFNCALLBACK pfnCallback, _In_ DWORD afCmd, _Reserved_ DWORD ulRes)
ttuiuiuiUINTDdeInitializeW(_Inout_ LPDWORD pidInst, _In_ PFNCALLBACK pfnCallback, _In_ DWORD afCmd, _Reserved_ DWORD ulRes)
uitiBOOLDdeKeepStringHandle(_In_ DWORD idInst, _In_ HSZ hsz)
uittuitHDDEDATADdeNameService(_In_ DWORD idInst, _In_opt_ HSZ hsz1, _In_opt_ HSZ hsz2, _In_ UINT afCmd)
uittiBOOLDdePostAdvise(_In_ DWORD idInst, _In_ HSZ hszTopic, _In_ HSZ hszItem)
tuituiUINTDdeQueryConvInfo(_In_ HCONV hConv, _In_ DWORD idTransaction, _Inout_ PCONVINFO pConvInfo)
tttHCONVDdeQueryNextServer(_In_ HCONVLIST hConvList, _In_ HCONV hConvPrev)
uitsuiiuiDWORDDdeQueryString(_In_ DWORD idInst, _In_ HSZ hsz, _Out_opt_ LPTSTR psz, _In_ DWORD cchMax, _In_ int iCodePage)
uitauiiuiDWORDDdeQueryStringA(_In_ DWORD idInst, _In_ HSZ hsz, _Out_opt_ LPSTR psz, _In_ DWORD cchMax, _In_ int iCodePage)
uitwuiiuiDWORDDdeQueryStringW(_In_ DWORD idInst, _In_ HSZ hsz, _Out_opt_ LPWSTR psz, _In_ DWORD cchMax, _In_ int iCodePage)
ttHCONVDdeReconnect(_In_ HCONV hConv)
tttiBOOLDdeSetQualityOfService(_In_ HWND hwndClient, _In_ const SECURITY_QUALITY_OF_SERVICE *pqosNew, _Out_ PSECURITY_QUALITY_OF_SERVICE pqosPrev)
tuiutiBOOLDdeSetUserHandle(_In_ HCONV hConv, _In_ DWORD id, _In_ DWORD_PTR hUser)
tiBOOLDdeUnaccessData(_In_ HDDEDATA hData)
uiiBOOLDdeUninitialize(_In_ DWORD idInst)
tuiututtLRESULTDefDlgProc(_In_ HWND hDlg, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututtLRESULTDefDlgProcA(_In_ HWND hDlg, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututtLRESULTDefDlgProcW(_In_ HWND hDlg, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tttiiiiuitHDWPDeferWindowPos(_In_ HDWP hWinPosInfo, _In_ HWND hWnd, _In_opt_ HWND hWndInsertAfter, _In_ int x, _In_ int y, _In_ int cx, _In_ int cy, _In_ UINT uFlags)
ttuiututtLRESULTDefFrameProc(_In_ HWND hWnd, _In_ HWND hWndMDIClient, _In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
ttuiututtLRESULTDefFrameProcA(_In_ HWND hWnd, _In_ HWND hWndMDIClient, _In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
ttuiututtLRESULTDefFrameProcW(_In_ HWND hWnd, _In_ HWND hWndMDIClient, _In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututtLRESULTDefMDIChildProc(_In_ HWND hWnd, _In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututtLRESULTDefMDIChildProcA(_In_ HWND hWnd, _In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututtLRESULTDefMDIChildProcW(_In_ HWND hWnd, _In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tiuitLRESULTDefRawInputProc(_In_ PRAWINPUT *paRawInput, _In_ INT nInput, _In_ UINT cbSizeHeader)
tuiututtLRESULTDefWindowProc(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututtLRESULTDefWindowProcA(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututtLRESULTDefWindowProcW(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiuiiBOOLDeleteMenu(_In_ HMENU hMenu, _In_ UINT uPosition, _In_ UINT uFlags)
tiBOOLDeregisterShellHookWindow(_In_ HWND hwnd)
tiBOOLDestroyAcceleratorTable(_In_ HACCEL hAccel)
iBOOLDestroyCaret(void)
tiBOOLDestroyCursor(_In_ HCURSOR hCursor)
tiBOOLDestroyIcon(_In_ HICON hIcon)
tiBOOLDestroyMenu(_In_ HMENU hMenu)
tiBOOLDestroyWindow(_In_ HWND hwnd)
ttttuttINT_PTRDialogBoxIndirectParam(_In_opt_ HINSTANCE hInstance, _In_ LPCDLGTEMPLATE hDialogTemplate, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM dwInitParam)
ttttuttINT_PTRDialogBoxIndirectParamA(_In_opt_ HINSTANCE hInstance, _In_ LPCDLGTEMPLATE hDialogTemplate, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM dwInitParam)
ttttuttINT_PTRDialogBoxIndirectParamW(_In_opt_ HINSTANCE hInstance, _In_ LPCDLGTEMPLATE hDialogTemplate, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM dwInitParam)
tsttuttINT_PTRDialogBoxParam(_In_opt_ HINSTANCE hInstance, _In_ LPCTSTR lpTemplateName, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM dwInitParam)
tattuttINT_PTRDialogBoxParamA(_In_opt_ HINSTANCE hInstance, _In_ LPCSTR lpTemplateName, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM dwInitParam)
twttuttINT_PTRDialogBoxParamW(_In_opt_ HINSTANCE hInstance, _In_ LPCWSTR lpTemplateName, _In_opt_ HWND hWndParent, _In_opt_ DLGPROC lpDialogFunc, _In_ LPARAM dwInitParam)
ttLRESULTDispatchMessage(_In_ const MSG *lpmsg)
ttLRESULTDispatchMessageA(_In_ const MSG *lpmsg)
ttLRESULTDispatchMessageW(_In_ const MSG *lpmsg)
tsiiuiiintDlgDirList(_In_ HWND hDlg, _Inout_ LPTSTR lpPathSpec, _In_ int nIDListBox, _In_ int nIDStaticPath, _In_ UINT uFileType)
taiiuiiintDlgDirListA(_In_ HWND hDlg, _Inout_ LPSTR lpPathSpec, _In_ int nIDListBox, _In_ int nIDStaticPath, _In_ UINT uFileType)
tsiiuiiintDlgDirListComboBox(_In_ HWND hDlg, _Inout_ LPTSTR lpPathSpec, _In_ int nIDComboBox, _In_ int nIDStaticPath, _In_ UINT uFiletype)
taiiuiiintDlgDirListComboBoxA(_In_ HWND hDlg, _Inout_ LPSTR lpPathSpec, _In_ int nIDComboBox, _In_ int nIDStaticPath, _In_ UINT uFiletype)
twiiuiiintDlgDirListComboBoxW(_In_ HWND hDlg, _Inout_ LPWSTR lpPathSpec, _In_ int nIDComboBox, _In_ int nIDStaticPath, _In_ UINT uFiletype)
twiiuiiintDlgDirListW(_In_ HWND hDlg, _Inout_ LPWSTR lpPathSpec, _In_ int nIDListBox, _In_ int nIDStaticPath, _In_ UINT uFileType)
tsiiiBOOLDlgDirSelectComboBoxEx(_In_ HWND hDlg, _Out_ LPTSTR lpString, _In_ int nCount, _In_ int nIDComboBox)
taiiiBOOLDlgDirSelectComboBoxExA(_In_ HWND hDlg, _Out_ LPSTR lpString, _In_ int nCount, _In_ int nIDComboBox)
twiiiBOOLDlgDirSelectComboBoxExW(_In_ HWND hDlg, _Out_ LPWSTR lpString, _In_ int nCount, _In_ int nIDComboBox)
tsiiiBOOLDlgDirSelectEx(_In_ HWND hDlg, _Out_ LPTSTR lpString, _In_ int nCount, _In_ int nIDListBox)
taiiiBOOLDlgDirSelectExA(_In_ HWND hDlg, _Out_ LPSTR lpString, _In_ int nCount, _In_ int nIDListBox)
twiiiBOOLDlgDirSelectExW(_In_ HWND hDlg, _Out_ LPWSTR lpString, _In_ int nCount, _In_ int nIDListBox)
tui6iBOOLDragDetect(_In_ HWND hwnd, _In_ POINT pt)
tittiBOOLDrawAnimatedRects(_In_ HWND hwnd, _In_ int idAni, const RECT *lprcFrom, const RECT *lprcTo)
tttuiiBOOLDrawCaption(_In_ HWND hwnd, _In_ HDC hdc, _In_ LPCRECT lprc, _In_ UINT uFlags)
ttuiuiiBOOLDrawEdge(_In_ HDC hdc, _Inout_ LPRECT qrc, _In_ UINT edge, _In_ UINT grfFlags)
ttiBOOLDrawFocusRect(_In_ HDC hDC, _In_ const RECT *lprc)
ttuiuiiBOOLDrawFrameControl(_In_ HDC hdc, _In_ LPRECT lprc, _In_ UINT uType, _In_ UINT uState)
tiitiBOOLDrawIcon(_In_ HDC hDC, _In_ int X, _In_ int Y, _In_ HICON hIcon)
tiitiiuituiiBOOLDrawIconEx(_In_ HDC hdc, _In_ int xLeft, _In_ int yTop, _In_ HICON hIcon, _In_ int cxWidth, _In_ int cyWidth, _In_ UINT istepIfAniCur, _In_opt_ HBRUSH hbrFlickerFreeDraw, _In_ UINT diFlags)
tiBOOLDrawMenuBar(_In_ HWND hwnd)
tttututiiiiuiiBOOLDrawState(_In_ HDC hdc, _In_ HBRUSH hbr, _In_ DRAWSTATEPROC lpOutputFunc, _In_ LPARAM lData, _In_ WPARAM wData, _In_ int x, _In_ int y, _In_ int cx, _In_ int cy, _In_ UINT fuFlags)
tttututiiiiuiiBOOLDrawStateA(_In_ HDC hdc, _In_ HBRUSH hbr, _In_ DRAWSTATEPROC lpOutputFunc, _In_ LPARAM lData, _In_ WPARAM wData, _In_ int x, _In_ int y, _In_ int cx, _In_ int cy, _In_ UINT fuFlags)
tttututiiiiuiiBOOLDrawStateW(_In_ HDC hdc, _In_ HBRUSH hbr, _In_ DRAWSTATEPROC lpOutputFunc, _In_ LPARAM lData, _In_ WPARAM wData, _In_ int x, _In_ int y, _In_ int cx, _In_ int cy, _In_ UINT fuFlags)
tsituiiintDrawText(_In_ HDC hDC, _Inout_ LPCTSTR lpchText, _In_ int nCount, _Inout_ LPRECT lpRect, _In_ UINT uFormat)
taituiiintDrawTextA(_In_ HDC hDC, _Inout_ LPCSTR lpchText, _In_ int nCount, _Inout_ LPRECT lpRect, _In_ UINT uFormat)
tsituitiintDrawTextEx(_In_ HDC hdc, _Inout_ LPTSTR lpchText, _In_ int cchText, _Inout_ LPRECT lprc, _In_ UINT dwDTFormat, _In_ LPDRAWTEXTPARAMS lpDTParams)
taituitiintDrawTextExA(_In_ HDC hdc, _Inout_ LPSTR lpchText, _In_ int cchText, _Inout_ LPRECT lprc, _In_ UINT dwDTFormat, _In_ LPDRAWTEXTPARAMS lpDTParams)
twituitiintDrawTextExW(_In_ HDC hdc, _Inout_ LPWSTR lpchText, _In_ int cchText, _Inout_ LPRECT lprc, _In_ UINT dwDTFormat, _In_ LPDRAWTEXTPARAMS lpDTParams)
twituiiintDrawTextW(_In_ HDC hDC, _Inout_ LPCWSTR lpchText, _In_ int nCount, _Inout_ LPRECT lpRect, _In_ UINT uFormat)
iBOOLEmptyClipboard(void)
tuiuiiBOOLEnableMenuItem(_In_ HMENU hMenu, _In_ UINT uIDEnableItem, _In_ UINT uEnable)
tuiuiiBOOLEnableScrollBar(_In_ HWND hWnd, _In_ UINT wSBflags, _In_ UINT wArrows)
tiiBOOLEnableWindow(_In_ HWND hWnd, _In_ BOOL bEnable)
tiBOOLEndDeferWindowPos(_In_ HDWP hWinPosInfo)
ttiBOOLEndDialog(_In_ HWND hDlg, _In_ INT_PTR nResult)
iBOOLEndMenu(void)
ttiBOOLEndPaint(_In_ HWND hWnd, _In_ const PAINTSTRUCT *lpPaint)
tiiiBOOLEndTask(_In_ HWND hWnd, _In_ BOOL fShutDown, _In_ BOOL fForce)
ttutiBOOLEnumChildWindows(_In_opt_ HWND hWndParent, _In_ WNDENUMPROC lpEnumFunc, _In_ LPARAM lParam)
uiuiUINTEnumClipboardFormats(_In_ UINT format)
ttutiBOOLEnumDesktops(_In_opt_ HWINSTA hwinsta, _In_ DESKTOPENUMPROC lpEnumFunc, _In_ LPARAM lParam)
ttutiBOOLEnumDesktopsA(_In_opt_ HWINSTA hwinsta, _In_ DESKTOPENUMPROC lpEnumFunc, _In_ LPARAM lParam)
ttutiBOOLEnumDesktopsW(_In_opt_ HWINSTA hwinsta, _In_ DESKTOPENUMPROC lpEnumFunc, _In_ LPARAM lParam)
ttutiBOOLEnumDesktopWindows(_In_opt_ HDESK hDesktop, _In_ WNDENUMPROC lpfn, _In_ LPARAM lParam)
suituiiBOOLEnumDisplayDevices(_In_ LPCTSTR lpDevice, _In_ DWORD iDevNum, _Out_ PDISPLAY_DEVICE lpDisplayDevice, _In_ DWORD dwFlags)
auituiiBOOLEnumDisplayDevicesA(_In_ LPCSTR lpDevice, _In_ DWORD iDevNum, _Out_ PDISPLAY_DEVICE lpDisplayDevice, _In_ DWORD dwFlags)
wuituiiBOOLEnumDisplayDevicesW(_In_ LPCWSTR lpDevice, _In_ DWORD iDevNum, _Out_ PDISPLAY_DEVICE lpDisplayDevice, _In_ DWORD dwFlags)
tttutiBOOLEnumDisplayMonitors(_In_ HDC hdc, _In_ LPCRECT lprcClip, _In_ MONITORENUMPROC lpfnEnum, _In_ LPARAM dwData)
suitiBOOLEnumDisplaySettings(_In_ LPCTSTR lpszDeviceName, _In_ DWORD iModeNum, _Out_ DEVMODE *lpDevMode)
auitiBOOLEnumDisplaySettingsA(_In_ LPCSTR lpszDeviceName, _In_ DWORD iModeNum, _Out_ DEVMODE *lpDevMode)
suituiiBOOLEnumDisplaySettingsEx(_In_ LPCTSTR lpszDeviceName, _In_ DWORD iModeNum, _Out_ DEVMODE *lpDevMode, _In_ DWORD dwFlags)
auituiiBOOLEnumDisplaySettingsExA(_In_ LPCSTR lpszDeviceName, _In_ DWORD iModeNum, _Out_ DEVMODE *lpDevMode, _In_ DWORD dwFlags)
wuituiiBOOLEnumDisplaySettingsExW(_In_ LPCWSTR lpszDeviceName, _In_ DWORD iModeNum, _Out_ DEVMODE *lpDevMode, _In_ DWORD dwFlags)
wuitiBOOLEnumDisplaySettingsW(_In_ LPCWSTR lpszDeviceName, _In_ DWORD iModeNum, _Out_ DEVMODE *lpDevMode)
ttiintEnumProps(_In_ HWND hWnd, _In_ PROPENUMPROC lpEnumFunc)
ttiintEnumPropsA(_In_ HWND hWnd, _In_ PROPENUMPROC lpEnumFunc)
ttutiintEnumPropsEx(_In_ HWND hWnd, _In_ PROPENUMPROCEX lpEnumFunc, _In_ LPARAM lParam)
ttutiintEnumPropsExA(_In_ HWND hWnd, _In_ PROPENUMPROCEX lpEnumFunc, _In_ LPARAM lParam)
ttutiintEnumPropsExW(_In_ HWND hWnd, _In_ PROPENUMPROCEX lpEnumFunc, _In_ LPARAM lParam)
ttiintEnumPropsW(_In_ HWND hWnd, _In_ PROPENUMPROC lpEnumFunc)
uitutiBOOLEnumThreadWindows(_In_ DWORD dwThreadId, _In_ WNDENUMPROC lpfn, _In_ LPARAM lParam)
tutiBOOLEnumWindows(_In_ WNDENUMPROC lpEnumFunc, _In_ LPARAM lParam)
tutiBOOLEnumWindowStations(_In_ WINSTAENUMPROC lpEnumFunc, _In_ LPARAM lParam)
tutiBOOLEnumWindowStationsA(_In_ WINSTAENUMPROC lpEnumFunc, _In_ LPARAM lParam)
tutiBOOLEnumWindowStationsW(_In_ WINSTAENUMPROC lpEnumFunc, _In_ LPARAM lParam)
ttiBOOLEqualRect(_In_ const RECT *lprc1, _In_ const RECT *lprc2)
ttiintExcludeUpdateRgn(_In_ HDC hDC, _In_ HWND hWnd)
uiuiiBOOLExitWindowsEx(_In_ UINT uFlags, _In_ DWORD dwReason)
tttiintFillRect(_In_ HDC hDC, _In_ const RECT *lprc, _In_ HBRUSH hbr)
sstHWNDFindWindow(_In_opt_ LPCTSTR lpClassName, _In_opt_ LPCTSTR lpWindowName)
aatHWNDFindWindowA(_In_opt_ LPCSTR lpClassName, _In_opt_ LPCSTR lpWindowName)
ttsstHWNDFindWindowEx(_In_opt_ HWND hwndParent, _In_opt_ HWND hwndChildAfter, _In_opt_ LPCTSTR lpszClass, _In_opt_ LPCTSTR lpszWindow)
ttaatHWNDFindWindowExA(_In_opt_ HWND hwndParent, _In_opt_ HWND hwndChildAfter, _In_opt_ LPCSTR lpszClass, _In_opt_ LPCSTR lpszWindow)
ttwwtHWNDFindWindowExW(_In_opt_ HWND hwndParent, _In_opt_ HWND hwndChildAfter, _In_opt_ LPCWSTR lpszClass, _In_opt_ LPCWSTR lpszWindow)
wwtHWNDFindWindowW(_In_opt_ LPCWSTR lpClassName, _In_opt_ LPCWSTR lpWindowName)
tiiBOOLFlashWindow(_In_ HWND hWnd, _In_ BOOL bInvert)
tiBOOLFlashWindowEx(_In_ PFLASHWINFO pfwi)
tttiintFrameRect(_In_ HDC hDC, _In_ const RECT *lprc, _In_ HBRUSH hbr)
uiutiBOOLFreeDDElParam(_In_ UINT msg, _In_ LPARAM lParam)
tHWNDGetActiveWindow(void)
titsuiiBOOLGetAltTabInfo(_In_opt_ HWND hwnd, _In_ int iItem, _Inout_ PALTTABINFO pati, _Out_opt_ LPTSTR pszItemText, _In_ UINT cchItemText)
titauiiBOOLGetAltTabInfoA(_In_opt_ HWND hwnd, _In_ int iItem, _Inout_ PALTTABINFO pati, _Out_opt_ LPSTR pszItemText, _In_ UINT cchItemText)
titwuiiBOOLGetAltTabInfoW(_In_opt_ HWND hwnd, _In_ int iItem, _Inout_ PALTTABINFO pati, _Out_opt_ LPWSTR pszItemText, _In_ UINT cchItemText)
tuitHWNDGetAncestor(_In_ HWND hwnd, _In_ UINT gaFlags)
ihSHORTGetAsyncKeyState(_In_ int vKey)
tHWNDGetCapture(void)
uiUINTGetCaretBlinkTime(void)
tiBOOLGetCaretPos(_Out_ LPPOINT lpPoint)
tstiBOOLGetClassInfo(_In_opt_ HINSTANCE hInstance, _In_ LPCTSTR lpClassName, _Out_ LPWNDCLASS lpWndClass)
tatiBOOLGetClassInfoA(_In_opt_ HINSTANCE hInstance, _In_ LPCSTR lpClassName, _Out_ LPWNDCLASS lpWndClass)
tstiBOOLGetClassInfoEx(_In_opt_ HINSTANCE hinst, _In_ LPCTSTR lpszClass, _Out_ LPWNDCLASSEX lpwcx)
tatiBOOLGetClassInfoExA(_In_opt_ HINSTANCE hinst, _In_ LPCSTR lpszClass, _Out_ LPWNDCLASSEX lpwcx)
twtiBOOLGetClassInfoExW(_In_opt_ HINSTANCE hinst, _In_ LPCWSTR lpszClass, _Out_ LPWNDCLASSEX lpwcx)
twtiBOOLGetClassInfoW(_In_opt_ HINSTANCE hInstance, _In_ LPCWSTR lpClassName, _Out_ LPWNDCLASS lpWndClass)
tiuiDWORDGetClassLong(_In_ HWND hWnd, _In_ int nIndex)
tiuiDWORDGetClassLongA(_In_ HWND hWnd, _In_ int nIndex)
tiuiDWORDGetClassLongW(_In_ HWND hWnd, _In_ int nIndex)
tsiiintGetClassName(_In_ HWND hWnd, _Out_ LPTSTR lpClassName, _In_ int nMaxCount)
taiiintGetClassNameA(_In_ HWND hWnd, _Out_ LPSTR lpClassName, _In_ int nMaxCount)
twiiintGetClassNameW(_In_ HWND hWnd, _Out_ LPWSTR lpClassName, _In_ int nMaxCount)
tiuhWORDGetClassWord(_In_ HWND hWnd, _In_ int nIndex)
ttiBOOLGetClientRect(_In_ HWND hWnd, _Out_ LPRECT lpRect)
uitHANDLEGetClipboardData(_In_ UINT uFormat)
uisiiintGetClipboardFormatName(_In_ UINT format, _Out_ LPTSTR lpszFormatName, _In_ int cchMaxCount)
uiaiiintGetClipboardFormatNameA(_In_ UINT format, _Out_ LPSTR lpszFormatName, _In_ int cchMaxCount)
uiwiiintGetClipboardFormatNameW(_In_ UINT format, _Out_ LPWSTR lpszFormatName, _In_ int cchMaxCount)
tHWNDGetClipboardOwner(void)
uiDWORDGetClipboardSequenceNumber(void)
tHWNDGetClipboardViewer(void)
tiBOOLGetClipCursor(_Out_ LPRECT lpRect)
ttiBOOLGetComboBoxInfo(_In_ HWND hwndCombo, _Out_ PCOMBOBOXINFO pcbi)
tHCURSORGetCursor(void)
tiBOOLGetCursorInfo(_Inout_ PCURSORINFO pci)
tiBOOLGetCursorPos(_Out_ LPPOINT lpPoint)
ttHDCGetDC(_In_ HWND hwnd)
ttuitHDCGetDCEx(_In_ HWND hWnd, _In_ HRGN hrgnClip, _In_ DWORD flags)
tHWNDGetDesktopWindow(void)
iLONGGetDialogBaseUnits(void)
tiintGetDlgCtrlID(_In_ HWND hwndCtl)
titHWNDGetDlgItem(_In_opt_ HWND hDlg, _In_ int nIDDlgItem)
titiuiUINTGetDlgItemInt(_In_ HWND hDlg, _In_ int nIDDlgItem, _Out_opt_ BOOL *lpTranslated, _In_ BOOL bSigned)
tisiuiUINTGetDlgItemText(_In_ HWND hDlg, _In_ int nIDDlgItem, _Out_ LPTSTR lpString, _In_ int nMaxCount)
tiaiuiUINTGetDlgItemTextA(_In_ HWND hDlg, _In_ int nIDDlgItem, _Out_ LPSTR lpString, _In_ int nMaxCount)
tiwiuiUINTGetDlgItemTextW(_In_ HWND hDlg, _In_ int nIDDlgItem, _Out_ LPWSTR lpString, _In_ int nMaxCount)
uiUINTGetDoubleClickTime(void)
tHWNDGetFocus(void)
tHWNDGetForegroundWindow(void)
tuiuittuiiBOOLGetGestureConfig(_In_ HWND hwnd, _In_ DWORD dwReserved, _In_ DWORD dwFlags, _In_ PUINT pcIDs, _Inout_ PGESTURECONFIG pGestureConfig, _In_ UINT cbSize)
tuitiBOOLGetGestureExtraArgs(_In_ HGESTUREINFO hGestureInfo, _In_ UINT cbExtraArgs, _Out_ PBYTE pExtraArgs)
ttiBOOLGetGestureInfo(_In_ HGESTUREINFO hGestureInfo, _Out_ PGESTUREINFO pGestureInfo)
tuiuiDWORDGetGuiResources(_In_ HANDLE hProcess, _In_ DWORD uiFlags)
uitiBOOLGetGUIThreadInfo(_In_ DWORD idThread, _Inout_ LPGUITHREADINFO lpgui)
ttiBOOLGetIconInfo(_In_ HICON hIcon, _Out_ PICONINFO piconinfo)
ttiBOOLGetIconInfoEx(_In_ HICON hIcon, _Inout_ PICONINFOEX piconinfoex)
ttiBOOLGetIconInfoExA(_In_ HICON hIcon, _Inout_ PICONINFOEX piconinfoex)
ttiBOOLGetIconInfoExW(_In_ HICON hIcon, _Inout_ PICONINFOEX piconinfoex)
iBOOLGetInputState(void)
uiUINTGetKBCodePage(void)
uitHKLGetKeyboardLayout(_In_ DWORD idThread)
itiintGetKeyboardLayoutList(_In_ int nBuff, _Out_ HKL *lpList)
siBOOLGetKeyboardLayoutName(_Out_ LPTSTR pwszKLID)
aiBOOLGetKeyboardLayoutNameA(_Out_ LPSTR pwszKLID)
wiBOOLGetKeyboardLayoutNameW(_Out_ LPWSTR pwszKLID)
tiBOOLGetKeyboardState(_Out_ PBYTE lpKeyState)
iiintGetKeyboardType(_In_ int nTypeFlag)
isiiintGetKeyNameText(_In_ LONG lParam, _Out_ LPTSTR lpString, _In_ int cchSize)
iaiiintGetKeyNameTextA(_In_ LONG lParam, _Out_ LPSTR lpString, _In_ int cchSize)
iwiiintGetKeyNameTextW(_In_ LONG lParam, _Out_ LPWSTR lpString, _In_ int cchSize)
ihSHORTGetKeyState_(_In_ int nVirtKey)
ttHWNDGetLastActivePopup(_In_ HWND hwnd)
tiBOOLGetLastInputInfo(_Out_ PLASTINPUTINFO plii)
ttttiBOOLGetLayeredWindowAttributes(_In_ HWND hwnd, _Out_opt_ COLORREF *pcrKey, _Out_opt_ BYTE *pbAlpha, _Out_opt_ DWORD *pdwFlags)
tuiDWORDGetListBoxInfo(_In_ HWND hwnd)
ttHMENUGetMenu(_In_ HWND hwnd)
tiitiBOOLGetMenuBarInfo(_In_ HWND hwnd, _In_ LONG idObject, _In_ LONG idItem, _Inout_ PMENUBARINFO pmbi)
iLONGGetMenuCheckMarkDimensions(void)
tuiDWORDGetMenuContextHelpId(HMENU hmenu)
tuiuiuiUINTGetMenuDefaultItem(_In_ HMENU hMenu, _In_ UINT fByPos, _In_ UINT gmdiFlags)
ttiBOOLGetMenuInfo(_In_ HMENU hmenu, _Inout_ LPMENUINFO lpcmi)
tiintGetMenuItemCount(_In_opt_ HMENU hMenu)
tiuiUINTGetMenuItemID(_In_ HMENU hMenu, _In_ int nPos)
tuiitiBOOLGetMenuItemInfo(_In_ HMENU hMenu, _In_ UINT uItem, _In_ BOOL fByPosition, _Inout_ LPMENUITEMINFO lpmii)
tuiitiBOOLGetMenuItemInfoA(_In_ HMENU hMenu, _In_ UINT uItem, _In_ BOOL fByPosition, _Inout_ LPMENUITEMINFO lpmii)
tuiitiBOOLGetMenuItemInfoW(_In_ HMENU hMenu, _In_ UINT uItem, _In_ BOOL fByPosition, _Inout_ LPMENUITEMINFO lpmii)
ttuitiBOOLGetMenuItemRect(_In_opt_ HWND hWnd, _In_ HMENU hMenu, _In_ UINT uItem, _Out_ LPRECT lprcItem)
tuiuiuiUINTGetMenuState(_In_ HMENU hMenu, _In_ UINT uId, _In_ UINT uFlags)
tuisiuiiintGetMenuString(_In_ HMENU hMenu, _In_ UINT uIDItem, _Out_opt_ LPTSTR lpString, _In_ int nMaxCount, _In_ UINT uFlag)
tuiaiuiiintGetMenuStringA(_In_ HMENU hMenu, _In_ UINT uIDItem, _Out_opt_ LPSTR lpString, _In_ int nMaxCount, _In_ UINT uFlag)
tuiwiuiiintGetMenuStringW(_In_ HMENU hMenu, _In_ UINT uIDItem, _Out_opt_ LPWSTR lpString, _In_ int nMaxCount, _In_ UINT uFlag)
ttuiuiiBOOLGetMessage(_Out_ LPMSG lpMsg, _In_opt_ HWND hWnd, _In_ UINT wMsgFilterMin, _In_ UINT wMsgFilterMax)
ttuiuiiBOOLGetMessageA(_Out_ LPMSG lpMsg, _In_opt_ HWND hWnd, _In_ UINT wMsgFilterMin, _In_ UINT wMsgFilterMax)
utLPARAMGetMessageExtraInfo(void)
uiDWORDGetMessagePos(void)
iLONGGetMessageTime(void)
ttuiuiiBOOLGetMessageW(_Out_ LPMSG lpMsg, _In_opt_ HWND hWnd, _In_ UINT wMsgFilterMin, _In_ UINT wMsgFilterMax)
ttiBOOLGetMonitorInfo(_In_ HMONITOR hMonitor, _Out_ LPMONITORINFO lpmi)
ttiBOOLGetMonitorInfoA(_In_ HMONITOR hMonitor, _Out_ LPMONITORINFO lpmi)
ttiBOOLGetMonitorInfoW(_In_ HMONITOR hMonitor, _Out_ LPMONITORINFO lpmi)
uittiuiiintGetMouseMovePointsEx(_In_ UINT cbSize, _In_ LPMOUSEMOVEPOINT lppt, _Out_ LPMOUSEMOVEPOINT lpptBuf, _In_ int nBufPoints, _In_ DWORD resolution)
ttitHWNDGetNextDlgGroupItem(_In_ HWND hDlg, _In_opt_ HWND hCtl, _In_ BOOL bPrevious)
ttitHWNDGetNextDlgTabItem(_In_ HWND hDlg, _In_opt_ HWND hCtl, _In_ BOOL bPrevious)
tHWNDGetOpenClipboardWindow(void)
ttHWNDGetParent(_In_ HWND hwnd)
tiBOOLGetPhysicalCursorPos(_Out_ LPPOINT lpPoint)
tiiintGetPriorityClipboardFormat(_In_ UINT *paFormatPriorityList, _In_ int cFormats)
tiBOOLGetProcessDefaultLayout(_Out_ DWORD *pdwDefaultLayout)
tHWINSTAGetProcessWindowStation(void)
tstHANDLEGetProp(_In_ HWND hWnd, _In_ LPCTSTR lpString)
tatHANDLEGetPropA(_In_ HWND hWnd, _In_ LPCSTR lpString)
twtHANDLEGetPropW(_In_ HWND hWnd, _In_ LPCWSTR lpString)
uiuiDWORDGetQueueStatus(_In_ UINT flags)
ttuiuiUINTGetRawInputBuffer(_Out_opt_ PRAWINPUT pData, _Inout_ PUINT pcbSize, _In_ UINT cbSizeHeader)
tuittuiuiUINTGetRawInputData(_In_ HRAWINPUT hRawInput, _In_ UINT uiCommand, _Out_opt_ LPVOID pData, _Inout_ PUINT pcbSize, _In_ UINT cbSizeHeader)
tuittuiUINTGetRawInputDeviceInfo(_In_opt_ HANDLE hDevice, _In_ UINT uiCommand, _Inout_opt_ LPVOID pData, _Inout_ PUINT pcbSize)
tuittuiUINTGetRawInputDeviceInfoA(_In_opt_ HANDLE hDevice, _In_ UINT uiCommand, _Inout_opt_ LPVOID pData, _Inout_ PUINT pcbSize)
tuittuiUINTGetRawInputDeviceInfoW(_In_opt_ HANDLE hDevice, _In_ UINT uiCommand, _Inout_opt_ LPVOID pData, _Inout_ PUINT pcbSize)
ttuiuiUINTGetRawInputDeviceList(_Out_opt_ PRAWINPUTDEVICELIST pRawInputDeviceList, _Inout_ PUINT puiNumDevices, _In_ UINT cbSize)
ttuiuiUINTGetRegisteredRawInputDevices(_Out_opt_ PRAWINPUTDEVICE pRawInputDevices, _Inout_ PUINT puiNumDevices, _In_ UINT cbSize)
titiBOOLGetScrollBarInfo(_In_ HWND hwnd, _In_ LONG idObject, _Out_ PSCROLLBARINFO psbi)
titiBOOLGetScrollInfo(_In_ HWND hwnd, _In_ int fnBar, _Inout_ LPSCROLLINFO lpsi)
tiiintGetScrollPos(_In_ HWND hWnd, _In_ int nBar)
tittiBOOLGetScrollRange(_In_ HWND hWnd, _In_ int nBar, _Out_ LPINT lpMinPos, _Out_ LPINT lpMaxPos)
tHWNDGetShellWindow(void)
titHMENUGetSubMenu(_In_ HMENU hMenu, _In_ int nPos)
iuiDWORDGetSysColor(_In_ int nIndex)
itHBRUSHGetSysColorBrush(_In_ int nIndex)
titHMENUGetSystemMenu(_In_ HWND hWnd, _In_ BOOL bRevert)
iiintGetSystemMetrics(_In_ int nIndex)
tsiituiDWORDGetTabbedTextExtent(_In_ HDC hDC, _In_ LPCTSTR lpString, _In_ int nCount, _In_ int nTabPositions, _In_ const LPINT lpnTabStopPositions)
taiituiDWORDGetTabbedTextExtentA(_In_ HDC hDC, _In_ LPCSTR lpString, _In_ int nCount, _In_ int nTabPositions, _In_ const LPINT lpnTabStopPositions)
twiituiDWORDGetTabbedTextExtentW(_In_ HDC hDC, _In_ LPCWSTR lpString, _In_ int nCount, _In_ int nTabPositions, _In_ const LPINT lpnTabStopPositions)
uitHDESKGetThreadDesktop(_In_ DWORD dwThreadId)
ttiBOOLGetTitleBarInfo(_In_ HWND hwnd, _Inout_ PTITLEBARINFO pti)
ttHWNDGetTopWindow(_In_opt_ HWND hWnd)
tuitiiBOOLGetTouchInputInfo(_In_ HTOUCHINPUT hTouchInput, _In_ UINT cInputs, _Out_ PTOUCHINPUT pInputs, _In_ int cbSize)
tuitiBOOLGetUpdatedClipboardFormats(_Out_ PUINT lpuiFormats, _In_ UINT cFormats, _Out_ PUINT pcFormatsOut)
ttiiBOOLGetUpdateRect(_In_ HWND hWnd, _Out_ LPRECT lpRect, _In_ BOOL bErase)
ttiiintGetUpdateRgn(_In_ HWND hWnd, _In_ HRGN hRgn, _In_ BOOL bErase)
tituitiBOOLGetUserObjectInformation(_In_ HANDLE hObj, _In_ int nIndex, _Out_opt_ PVOID pvInfo, _In_ DWORD nLength, _Out_opt_ LPDWORD lpnLengthNeeded)
tituitiBOOLGetUserObjectInformationA(_In_ HANDLE hObj, _In_ int nIndex, _Out_opt_ PVOID pvInfo, _In_ DWORD nLength, _Out_opt_ LPDWORD lpnLengthNeeded)
tituitiBOOLGetUserObjectInformationW(_In_ HANDLE hObj, _In_ int nIndex, _Out_opt_ PVOID pvInfo, _In_ DWORD nLength, _Out_opt_ LPDWORD lpnLengthNeeded)
tttuitiBOOLGetUserObjectSecurity(_In_ HANDLE hObj, _In_ PSECURITY_INFORMATION pSIRequested, _Inout_opt_ PSECURITY_DESCRIPTOR pSD, _In_ DWORD nLength, _Out_ LPDWORD lpnLengthNeeded)
tuitHWNDGetWindow(_In_ HWND hWnd, _In_ UINT uCmd)
tuiDWORDGetWindowContextHelpId(HWND hwnd)
ttHDCGetWindowDC(_In_ HWND hwnd)
ttiBOOLGetWindowDisplayAffinity(_In_ HWND hWnd, _Out_ DWORD *dwAffinity)
ttiBOOLGetWindowInfo(_In_ HWND hwnd, _Inout_ PWINDOWINFO pwi)
tiiLONGGetWindowLong(_In_ HWND hWnd, _In_ int nIndex)
tiiLONGGetWindowLongA(_In_ HWND hWnd, _In_ int nIndex)
tiiLONGGetWindowLongW(_In_ HWND hWnd, _In_ int nIndex)
tsuiuiUINTGetWindowModuleFileName(_In_ HWND hwnd, _Out_ LPTSTR lpszFileName, _In_ UINT cchFileNameMax)
tauiuiUINTGetWindowModuleFileNameA(_In_ HWND hwnd, _Out_ LPSTR lpszFileName, _In_ UINT cchFileNameMax)
twuiuiUINTGetWindowModuleFileNameW(_In_ HWND hwnd, _Out_ LPWSTR lpszFileName, _In_ UINT cchFileNameMax)
ttiBOOLGetWindowPlacement(_In_ HWND hWnd, _Inout_ WINDOWPLACEMENT *lpwndpl)
ttiBOOLGetWindowRect(_In_ HWND hWnd, _Out_ LPRECT lpRect)
ttiintGetWindowRgn(_In_ HWND hWnd, _In_ HRGN hRgn)
ttiintGetWindowRgnBox(_In_ HWND hWnd, _Out_ LPRECT lprc)
tsiiintGetWindowText(_In_ HWND hWnd, _Out_ LPTSTR lpString, _In_ int nMaxCount)
taiiintGetWindowTextA(_In_ HWND hWnd, _Out_ LPSTR lpString, _In_ int nMaxCount)
tiintGetWindowTextLength(_In_ HWND hwnd)
tiintGetWindowTextLengthA(_In_ HWND hwnd)
tiintGetWindowTextLengthW(_In_ HWND hwnd)
twiiintGetWindowTextW(_In_ HWND hWnd, _Out_ LPWSTR lpString, _In_ int nMaxCount)
ttuiDWORDGetWindowThreadProcessId(_In_ HWND hWnd, _Out_opt_ LPDWORD lpdwProcessId)
tttutiiiiiiBOOLGrayString(_In_ HDC hDC, _In_ HBRUSH hBrush, _In_ GRAYSTRINGPROC lpOutputFunc, _In_ LPARAM lpData, _In_ int nCount, _In_ int X, _In_ int Y, _In_ int nWidth, _In_ int nHeight)
tttutiiiiiiBOOLGrayStringA(_In_ HDC hDC, _In_ HBRUSH hBrush, _In_ GRAYSTRINGPROC lpOutputFunc, _In_ LPARAM lpData, _In_ int nCount, _In_ int X, _In_ int Y, _In_ int nWidth, _In_ int nHeight)
tttutiiiiiiBOOLGrayStringW(_In_ HDC hDC, _In_ HBRUSH hBrush, _In_ GRAYSTRINGPROC lpOutputFunc, _In_ LPARAM lpData, _In_ int nCount, _In_ int X, _In_ int Y, _In_ int nWidth, _In_ int nHeight)
tiBOOLHideCaret(_In_opt_ HWND hWnd)
ttuiuiiBOOLHiliteMenuItem(_In_ HWND hwnd, _In_ HMENU hmenu, _In_ UINT uItemHilite, _In_ UINT uHilite)
ttiBOOLImpersonateDdeClientWindow(_In_ HWND hWndClient, _In_ HWND hWndServer)
tiiiBOOLInflateRect(_Inout_ LPRECT lprc, _In_ int dx, _In_ int dy)
iBOOLInSendMessage(void)
tuiDWORDInSendMessageEx(_Reserved_ LPVOID lpReserved)
tuiuiutsiBOOLInsertMenu(_In_ HMENU hMenu, _In_ UINT uPosition, _In_ UINT uFlags, _In_ UINT_PTR uIDNewItem, _In_opt_ LPCTSTR lpNewItem)
tuiuiutaiBOOLInsertMenuA(_In_ HMENU hMenu, _In_ UINT uPosition, _In_ UINT uFlags, _In_ UINT_PTR uIDNewItem, _In_opt_ LPCSTR lpNewItem)
tuiitiBOOLInsertMenuItem(_In_ HMENU hMenu, _In_ UINT uItem, _In_ BOOL fByPosition, _In_ LPCMENUITEMINFO lpmii)
tuiitiBOOLInsertMenuItemA(_In_ HMENU hMenu, _In_ UINT uItem, _In_ BOOL fByPosition, _In_ LPCMENUITEMINFO lpmii)
tuiitiBOOLInsertMenuItemW(_In_ HMENU hMenu, _In_ UINT uItem, _In_ BOOL fByPosition, _In_ LPCMENUITEMINFO lpmii)
tuiuiutwiBOOLInsertMenuW(_In_ HMENU hMenu, _In_ UINT uPosition, _In_ UINT uFlags, _In_ UINT_PTR uIDNewItem, _In_opt_ LPCWSTR lpNewItem)
twiiintInternalGetWindowText(_In_ HWND hWnd, _Out_ LPWSTR lpString, _In_ int nMaxCount)
tttiBOOLIntersectRect(_Out_ LPRECT lprcDst, _In_ const RECT *lprcSrc1, _In_ const RECT *lprcSrc2)
ttiiBOOLInvalidateRect(_In_ HWND hWnd, _In_ const RECT *lpRect, _In_ BOOL bErase)
ttiiBOOLInvalidateRgn(_In_ HWND hWnd, _In_ HRGN hRgn, _In_ BOOL bErase)
ttiBOOLInvertRect(_In_ HDC hDC, _In_ const RECT *lprc)
yiBOOLIsCharAlpha(_In_ TCHAR ch)
yiBOOLIsCharAlphaA(_In_ TCHAR ch)
yiBOOLIsCharAlphaNumeric(_In_ TCHAR ch)
yiBOOLIsCharAlphaNumericA(_In_ TCHAR ch)
yiBOOLIsCharAlphaNumericW(_In_ TCHAR ch)
yiBOOLIsCharAlphaW(_In_ TCHAR ch)
yiBOOLIsCharLower(_In_ TCHAR ch)
yiBOOLIsCharLowerA(_In_ TCHAR ch)
yiBOOLIsCharLowerW(_In_ TCHAR ch)
yiBOOLIsCharUpper(_In_ TCHAR ch)
yiBOOLIsCharUpperA(_In_ TCHAR ch)
yiBOOLIsCharUpperW(_In_ TCHAR ch)
ttiBOOLIsChild(_In_ HWND hWndParent, _In_ HWND hWnd)
uiiBOOLIsClipboardFormatAvailable(_In_ UINT format)
ttiBOOLIsDialogMessage(_In_ HWND hDlg, _In_ LPMSG lpMsg)
ttiBOOLIsDialogMessageA(_In_ HWND hDlg, _In_ LPMSG lpMsg)
ttiBOOLIsDialogMessageW(_In_ HWND hDlg, _In_ LPMSG lpMsg)
tiuiUINTIsDlgButtonChecked(_In_ HWND hDlg, _In_ int nIDButton)
iiBOOLIsGUIThread(_In_ BOOL bConvert)
tiBOOLIsHungAppWindow(_In_ HWND hwnd)
tiBOOLIsIconic(_In_ HWND hwnd)
tiBOOLIsMenu(_In_ HMENU hMenu)
iBOOLIsProcessDPIAware(void)
tiBOOLIsRectEmpty(_In_ const RECT *lprc)
ttiBOOLIsTouchWindow(_In_ HWND hWnd, _Out_opt_ PULONG pulFlags)
tiBOOLIsWindow(_In_opt_ HWND hWnd)
tiBOOLIsWindowEnabled(_In_ HWND hwnd)
tiBOOLIsWindowRedirectedForPrint(_In_ HWND hwnd)
tiBOOLIsWindowUnicode(_In_ HWND hwnd)
tiBOOLIsWindowVisible(_In_ HWND hwnd)
uiiBOOLIsWinEventHookInstalled(_In_ DWORD event)
iBOOLIsWow64Message(void)
tiBOOLIsZoomed(_In_ HWND hwnd)
ucucuiutiVOIDkeybd_event(_In_ BYTE bVk, _In_ BYTE bScan, _In_ DWORD dwFlags, _In_ ULONG_PTR dwExtraInfo)
tutiBOOLKillTimer(_In_opt_ HWND hWnd, _In_ UINT_PTR uIDEvent)
tstHACCELLoadAccelerators(_In_opt_ HINSTANCE hInstance, _In_ LPCTSTR lpTableName)
tatHACCELLoadAcceleratorsA(_In_opt_ HINSTANCE hInstance, _In_ LPCSTR lpTableName)
twtHACCELLoadAcceleratorsW(_In_opt_ HINSTANCE hInstance, _In_ LPCWSTR lpTableName)
tstHBITMAPLoadBitmap(_In_ HINSTANCE hInstance, _In_ LPCTSTR lpBitmapName)
tatHBITMAPLoadBitmapA(_In_ HINSTANCE hInstance, _In_ LPCSTR lpBitmapName)
twtHBITMAPLoadBitmapW(_In_ HINSTANCE hInstance, _In_ LPCWSTR lpBitmapName)
tstHCURSORLoadCursor(_In_opt_ HINSTANCE hInstance, _In_ LPCTSTR lpCursorName)
tatHCURSORLoadCursorA(_In_opt_ HINSTANCE hInstance, _In_ LPCSTR lpCursorName)
stHCURSORLoadCursorFromFile(_In_ LPCTSTR lpFileName)
atHCURSORLoadCursorFromFileA(_In_ LPCSTR lpFileName)
wtHCURSORLoadCursorFromFileW(_In_ LPCWSTR lpFileName)
twtHCURSORLoadCursorW(_In_opt_ HINSTANCE hInstance, _In_ LPCWSTR lpCursorName)
tstHICONLoadIcon(_In_opt_ HINSTANCE hInstance, _In_ LPCTSTR lpIconName)
tatHICONLoadIconA(_In_opt_ HINSTANCE hInstance, _In_ LPCSTR lpIconName)
twtHICONLoadIconW(_In_opt_ HINSTANCE hInstance, _In_ LPCWSTR lpIconName)
tsuiiiuitHANDLELoadImage(_In_opt_ HINSTANCE hinst, _In_ LPCTSTR lpszName, _In_ UINT uType, _In_ int cxDesired, _In_ int cyDesired, _In_ UINT fuLoad)
tauiiiuitHANDLELoadImageA(_In_opt_ HINSTANCE hinst, _In_ LPCSTR lpszName, _In_ UINT uType, _In_ int cxDesired, _In_ int cyDesired, _In_ UINT fuLoad)
twuiiiuitHANDLELoadImageW(_In_opt_ HINSTANCE hinst, _In_ LPCWSTR lpszName, _In_ UINT uType, _In_ int cxDesired, _In_ int cyDesired, _In_ UINT fuLoad)
suitHKLLoadKeyboardLayout(_In_ LPCTSTR pwszKLID, _In_ UINT Flags)
auitHKLLoadKeyboardLayoutA(_In_ LPCSTR pwszKLID, _In_ UINT Flags)
wuitHKLLoadKeyboardLayoutW(_In_ LPCWSTR pwszKLID, _In_ UINT Flags)
tstHMENULoadMenu(_In_opt_ HINSTANCE hInstance, _In_ LPCTSTR lpMenuName)
tatHMENULoadMenuA(_In_opt_ HINSTANCE hInstance, _In_ LPCSTR lpMenuName)
ttHMENULoadMenuIndirect(_In_ const MENUTEMPLATE *lpMenuTemplate)
ttHMENULoadMenuIndirectA(_In_ const MENUTEMPLATE *lpMenuTemplate)
ttHMENULoadMenuIndirectW(_In_ const MENUTEMPLATE *lpMenuTemplate)
twtHMENULoadMenuW(_In_opt_ HINSTANCE hInstance, _In_ LPCWSTR lpMenuName)
tuisiiintLoadString(_In_opt_ HINSTANCE hInstance, _In_ UINT uID, _Out_ LPTSTR lpBuffer, _In_ int nBufferMax)
tuiaiiintLoadStringA(_In_opt_ HINSTANCE hInstance, _In_ UINT uID, _Out_ LPSTR lpBuffer, _In_ int nBufferMax)
tuiwiiintLoadStringW(_In_opt_ HINSTANCE hInstance, _In_ UINT uID, _Out_ LPWSTR lpBuffer, _In_ int nBufferMax)
uiiBOOLLockSetForegroundWindow(_In_ UINT uLockCode)
tiBOOLLockWindowUpdate(_In_ HWND hWndLock)
iBOOLLockWorkStation(void)
ttiBOOLLogicalToPhysicalPoint(_In_ HWND hWnd, _Inout_ LPPOINT lpPoint)
tiiintLookupIconIdFromDirectory(_In_ PBYTE presbits, _In_ BOOL fIcon)
tiiiuiiintLookupIconIdFromDirectoryEx(_In_ PBYTE presbits, _In_ BOOL fIcon, _In_ int cxDesired, _In_ int cyDesired, _In_ UINT Flags)
ttiBOOLMapDialogRect(_In_ HWND hDlg, _Inout_ LPRECT lpRect)
uiuiuiUINTMapVirtualKey(_In_ UINT uCode, _In_ UINT uMapType)
uiuiuiUINTMapVirtualKeyA(_In_ UINT uCode, _In_ UINT uMapType)
uiuituiUINTMapVirtualKeyEx(_In_ UINT uCode, _In_ UINT uMapType, _Inout_opt_ HKL dwhkl)
uiuituiUINTMapVirtualKeyExA(_In_ UINT uCode, _In_ UINT uMapType, _Inout_opt_ HKL dwhkl)
uiuituiUINTMapVirtualKeyExW(_In_ UINT uCode, _In_ UINT uMapType, _Inout_opt_ HKL dwhkl)
uiuiuiUINTMapVirtualKeyW(_In_ UINT uCode, _In_ UINT uMapType)
tttuiiintMapWindowPoints(_In_ HWND hWndFrom, _In_ HWND hWndTo, _Inout_ LPPOINT lpPoints, _In_ UINT cPoints)
ttui6iintMenuItemFromPoint(_In_opt_ HWND hWnd, _In_ HMENU hMenu, _In_ POINT ptScreen)
uiiBOOLMessageBeep(_In_ UINT uType)
tssuiiintMessageBox(_In_opt_ HWND hWnd, _In_opt_ LPCTSTR lpText, _In_opt_ LPCTSTR lpCaption, _In_ UINT uType)
taauiiintMessageBoxA(_In_opt_ HWND hWnd, _In_opt_ LPCSTR lpText, _In_opt_ LPCSTR lpCaption, _In_ UINT uType)
tssuiuhiintMessageBoxEx(_In_opt_ HWND hWnd, _In_opt_ LPCTSTR lpText, _In_opt_ LPCTSTR lpCaption, _In_ UINT uType, _In_ WORD wLanguageId)
taauiuhiintMessageBoxExA(_In_opt_ HWND hWnd, _In_opt_ LPCSTR lpText, _In_opt_ LPCSTR lpCaption, _In_ UINT uType, _In_ WORD wLanguageId)
twwuiuhiintMessageBoxExW(_In_opt_ HWND hWnd, _In_opt_ LPCWSTR lpText, _In_opt_ LPCWSTR lpCaption, _In_ UINT uType, _In_ WORD wLanguageId)
tiintMessageBoxIndirect(_In_ const LPMSGBOXPARAMS lpMsgBoxParams)
tiintMessageBoxIndirectA(_In_ const LPMSGBOXPARAMS lpMsgBoxParams)
tiintMessageBoxIndirectW(_In_ const LPMSGBOXPARAMS lpMsgBoxParams)
twwuiiintMessageBoxW(_In_opt_ HWND hWnd, _In_opt_ LPCWSTR lpText, _In_opt_ LPCWSTR lpCaption, _In_ UINT uType)
tuiuiutsiBOOLModifyMenu(_In_ HMENU hMnu, _In_ UINT uPosition, _In_ UINT uFlags, _In_ UINT_PTR uIDNewItem, _In_opt_ LPCTSTR lpNewItem)
tuiuiutaiBOOLModifyMenuA(_In_ HMENU hMnu, _In_ UINT uPosition, _In_ UINT uFlags, _In_ UINT_PTR uIDNewItem, _In_opt_ LPCSTR lpNewItem)
tuiuiutwiBOOLModifyMenuW(_In_ HMENU hMnu, _In_ UINT uPosition, _In_ UINT uFlags, _In_ UINT_PTR uIDNewItem, _In_opt_ LPCWSTR lpNewItem)
ui6uitHMONITORMonitorFromPoint(_In_ POINT pt, _In_ DWORD dwFlags)
tuitHMONITORMonitorFromRect(_In_ LPCRECT lprc, _In_ DWORD dwFlags)
tuitHMONITORMonitorFromWindow(_In_ HWND hwnd, _In_ DWORD dwFlags)
uiuiuiuiutiVOIDmouse_event(_In_ DWORD dwFlags, _In_ DWORD dx, _In_ DWORD dy, _In_ DWORD dwData, _In_ ULONG_PTR dwExtraInfo)
tiiiiiiBOOLMoveWindow(_In_ HWND hWnd, _In_ int X, _In_ int Y, _In_ int nWidth, _In_ int nHeight, _In_ BOOL bRepaint)
uitiuiuiuiDWORDMsgWaitForMultipleObjects(_In_ DWORD nCount, _In_ const HANDLE *pHandles, _In_ BOOL bWaitAll, _In_ DWORD dwMilliseconds, _In_ DWORD dwWakeMask)
uituiuiuiuiDWORDMsgWaitForMultipleObjectsEx(_In_ DWORD nCount, _In_ const HANDLE *pHandles, _In_ DWORD dwMilliseconds, _In_ DWORD dwWakeMask, _In_ DWORD dwFlags)
uitiiiVOIDNotifyWinEvent(_In_ DWORD event, _In_ HWND hwnd, _In_ LONG idObject, _In_ LONG idChild)
uhuiDWORDOemKeyScan(_In_ WORD wOemChar)
asiBOOLOemToChar(_In_ LPCSTR lpszSrc, _Out_ LPTSTR lpszDst)
aaiBOOLOemToCharA(_In_ LPCSTR lpszSrc, _Out_ LPSTR lpszDst)
asuiiBOOLOemToCharBuff(_In_ LPCSTR lpszSrc, _Out_ LPTSTR lpszDst, _In_ DWORD cchDstLength)
aauiiBOOLOemToCharBuffA(_In_ LPCSTR lpszSrc, _Out_ LPSTR lpszDst, _In_ DWORD cchDstLength)
awuiiBOOLOemToCharBuffW(_In_ LPCSTR lpszSrc, _Out_ LPWSTR lpszDst, _In_ DWORD cchDstLength)
awiBOOLOemToCharW(_In_ LPCSTR lpszSrc, _Out_ LPWSTR lpszDst)
tiiiBOOLOffsetRect(_Inout_ LPRECT lprc, _In_ int dx, _In_ int dy)
tiBOOLOpenClipboard(_In_opt_ HWND hWndNewOwner)
suiiuitHDESKOpenDesktop(_In_ LPTSTR lpszDesktop, _In_ DWORD dwFlags, _In_ BOOL fInherit, _In_ ACCESS_MASK dwDesiredAccess)
auiiuitHDESKOpenDesktopA(_In_ LPSTR lpszDesktop, _In_ DWORD dwFlags, _In_ BOOL fInherit, _In_ ACCESS_MASK dwDesiredAccess)
wuiiuitHDESKOpenDesktopW(_In_ LPWSTR lpszDesktop, _In_ DWORD dwFlags, _In_ BOOL fInherit, _In_ ACCESS_MASK dwDesiredAccess)
tiBOOLOpenIcon(_In_ HWND hwnd)
uiiuitHDESKOpenInputDesktop(_In_ DWORD dwFlags, _In_ BOOL fInherit, _In_ ACCESS_MASK dwDesiredAccess)
siuitHWINSTAOpenWindowStation(_In_ LPTSTR lpszWinSta, _In_ BOOL fInherit, _In_ ACCESS_MASK dwDesiredAccess)
aiuitHWINSTAOpenWindowStationA(_In_ LPSTR lpszWinSta, _In_ BOOL fInherit, _In_ ACCESS_MASK dwDesiredAccess)
wiuitHWINSTAOpenWindowStationW(_In_ LPWSTR lpszWinSta, _In_ BOOL fInherit, _In_ ACCESS_MASK dwDesiredAccess)
uiutututLPARAMPackDDElParam(_In_ UINT msg, _In_ UINT_PTR uiLo, _In_ UINT_PTR uiHi)
tiBOOLPaintDesktop(_In_ HDC hdc)
ttuiuiuiiBOOLPeekMessage(_Out_ LPMSG lpMsg, _In_opt_ HWND hWnd, _In_ UINT wMsgFilterMin, _In_ UINT wMsgFilterMax, _In_ UINT wRemoveMsg)
ttuiuiuiiBOOLPeekMessageA(_Out_ LPMSG lpMsg, _In_opt_ HWND hWnd, _In_ UINT wMsgFilterMin, _In_ UINT wMsgFilterMax, _In_ UINT wRemoveMsg)
ttuiuiuiiBOOLPeekMessageW(_Out_ LPMSG lpMsg, _In_opt_ HWND hWnd, _In_ UINT wMsgFilterMin, _In_ UINT wMsgFilterMax, _In_ UINT wRemoveMsg)
ttiBOOLPhysicalToLogicalPoint(_In_ HWND hWnd, _Inout_ LPPOINT lpPoint)
tuiututiBOOLPostMessage_(_In_opt_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututiBOOLPostMessageA(_In_opt_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututiBOOLPostMessageW(_In_opt_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
iiVOIDPostQuitMessage(_In_ int nExitCode)
uiuiututiBOOLPostThreadMessage(_In_ DWORD idThread, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
uiuiututiBOOLPostThreadMessageA(_In_ DWORD idThread, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
uiuiututiBOOLPostThreadMessageW(_In_ DWORD idThread, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
ttuiiBOOLPrintWindow(HWND hwnd, HDC hdcBlt, UINT nFlags)
siiittuiuiuiUINTPrivateExtractIcons(_In_ LPCTSTR lpszFile, _In_ int nIconIndex, _In_ int cxIcon, _In_ int cyIcon, _Out_opt_ HICON *phicon, _Out_opt_ UINT *piconid, _In_ UINT nIcons, _In_ UINT flags)
aiiittuiuiuiUINTPrivateExtractIconsA(_In_ LPCSTR lpszFile, _In_ int nIconIndex, _In_ int cxIcon, _In_ int cyIcon, _Out_opt_ HICON *phicon, _Out_opt_ UINT *piconid, _In_ UINT nIcons, _In_ UINT flags)
wiiittuiuiuiUINTPrivateExtractIconsW(_In_ LPCWSTR lpszFile, _In_ int nIconIndex, _In_ int cxIcon, _In_ int cyIcon, _Out_opt_ HICON *phicon, _Out_opt_ UINT *piconid, _In_ UINT nIcons, _In_ UINT flags)
tui6iBOOLPtInRect(_In_ const RECT *lprc, _In_ POINT pt)
tui6tHWNDRealChildWindowFromPoint(_In_ HWND hwndParent, _In_ POINT ptParentClientCoords)
tsuiuiUINTRealGetWindowClass(_In_ HWND hwnd, _Out_ LPTSTR pszType, _In_ UINT cchType)
tauiuiUINTRealGetWindowClassA(_In_ HWND hwnd, _Out_ LPSTR pszType, _In_ UINT cchType)
twuiuiUINTRealGetWindowClassW(_In_ HWND hwnd, _Out_ LPWSTR pszType, _In_ UINT cchType)
tttuiiBOOLRedrawWindow(_In_ HWND hWnd, _In_ const RECT *lprcUpdate, _In_ HRGN hrgnUpdate, _In_ UINT flags)
tuhATOMRegisterClass(_In_ const WNDCLASS *lpWndClass)
tuhATOMRegisterClassA(_In_ const WNDCLASS *lpWndClass)
tuhATOMRegisterClassEx(_In_ const WNDCLASSEX *lpwcx)
tuhATOMRegisterClassExA(_In_ const WNDCLASSEX *lpwcx)
tuhATOMRegisterClassExW(_In_ const WNDCLASSEX *lpwcx)
tuhATOMRegisterClassW(_In_ const WNDCLASS *lpWndClass)
suiUINTRegisterClipboardFormat(_In_ LPCTSTR lpszFormat)
auiUINTRegisterClipboardFormatA(_In_ LPCSTR lpszFormat)
wuiUINTRegisterClipboardFormatW(_In_ LPCWSTR lpszFormat)
ttuitHDEVNOTIFYRegisterDeviceNotification(_In_ HANDLE hRecipient, _In_ LPVOID NotificationFilter, _In_ DWORD Flags)
ttuitHDEVNOTIFYRegisterDeviceNotificationA(_In_ HANDLE hRecipient, _In_ LPVOID NotificationFilter, _In_ DWORD Flags)
ttuitHDEVNOTIFYRegisterDeviceNotificationW(_In_ HANDLE hRecipient, _In_ LPVOID NotificationFilter, _In_ DWORD Flags)
tiuiuiiBOOLRegisterHotKey(_In_opt_ HWND hWnd, _In_ int id, _In_ UINT fsModifiers, _In_ UINT vk)
ttuitHPOWERNOTIFYRegisterPowerSettingNotification(_In_ HANDLE hRecipient, _In_ LPCGUID PowerSettingGuid, _In_ DWORD Flags)
tuiuiiBOOLRegisterRawInputDevices(_In_ PCRAWINPUTDEVICE pRawInputDevices, _In_ UINT uiNumDevices, _In_ UINT cbSize)
tiBOOLRegisterShellHookWindow(_In_ HWND hwnd)
tuiiBOOLRegisterTouchWindow(_In_ HWND hWnd, _In_ ULONG ulFlags)
suiUINTRegisterWindowMessage(_In_ LPCTSTR lpString)
auiUINTRegisterWindowMessageA(_In_ LPCSTR lpString)
wuiUINTRegisterWindowMessageW(_In_ LPCWSTR lpString)
iBOOLReleaseCapture(void)
ttiintReleaseDC(_In_ HWND hWnd, _In_ HDC hDC)
tiBOOLRemoveClipboardFormatListener(_In_ HWND hwnd)
tuiuiiBOOLRemoveMenu(_In_ HMENU hMenu, _In_ UINT uPosition, _In_ UINT uFlags)
tstHANDLERemoveProp(_In_ HWND hWnd, _In_ LPCTSTR lpString)
tatHANDLERemovePropA(_In_ HWND hWnd, _In_ LPCSTR lpString)
twtHANDLERemovePropW(_In_ HWND hWnd, _In_ LPCWSTR lpString)
tiBOOLReplyMessage(_In_ LRESULT lResult)
utuiuiutututLPARAMReuseDDElParam(_In_ LPARAM lParam, _In_ UINT msgIn, _In_ UINT msgOut, _In_ UINT_PTR uiLo, _In_ UINT_PTR uiHi)
ttiBOOLScreenToClient(_In_ HWND hWnd, LPPOINT lpPoint)
tiittttiBOOLScrollDC(_In_ HDC hDC, _In_ int dx, _In_ int dy, _In_ const RECT *lprcScroll, _In_ const RECT *lprcClip, _In_ HRGN hrgnUpdate, _Out_ LPRECT lprcUpdate)
tiittiBOOLScrollWindow(_In_ HWND hWnd, _In_ int XAmount, _In_ int YAmount, _In_ const RECT *lpRect, _In_ const RECT *lpClipRect)
tiittttuiiintScrollWindowEx(_In_ HWND hWnd, _In_ int dx, _In_ int dy, _In_ const RECT *prcScroll, _In_ const RECT *prcClip, _In_ HRGN hrgnUpdate, _Out_ LPRECT prcUpdate, _In_ UINT flags)
tiuiututtLRESULTSendDlgItemMessage(_In_ HWND hDlg, _In_ int nIDDlgItem, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tiuiututtLRESULTSendDlgItemMessageA(_In_ HWND hDlg, _In_ int nIDDlgItem, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tiuiututtLRESULTSendDlgItemMessageW(_In_ HWND hDlg, _In_ int nIDDlgItem, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
uitiuiUINTSendInput_(_In_ UINT nInputs, _In_ LPINPUT pInputs, _In_ int cbSize)
tuiututtLRESULTSendMessage_(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututtLRESULTSendMessageA(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututtutiBOOLSendMessageCallback(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam, _In_ SENDASYNCPROC lpCallBack, _In_ ULONG_PTR dwData)
tuiututtutiBOOLSendMessageCallbackA(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam, _In_ SENDASYNCPROC lpCallBack, _In_ ULONG_PTR dwData)
tuiututtutiBOOLSendMessageCallbackW(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam, _In_ SENDASYNCPROC lpCallBack, _In_ ULONG_PTR dwData)
tuiututuiuiuttLRESULTSendMessageTimeout(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam, _In_ UINT fuFlags, _In_ UINT uTimeout, _Out_opt_ PDWORD_PTR lpdwResult)
tuiututuiuiuttLRESULTSendMessageTimeoutA(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam, _In_ UINT fuFlags, _In_ UINT uTimeout, _Out_opt_ PDWORD_PTR lpdwResult)
tuiututuiuiuttLRESULTSendMessageTimeoutW(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam, _In_ UINT fuFlags, _In_ UINT uTimeout, _Out_opt_ PDWORD_PTR lpdwResult)
tuiututtLRESULTSendMessageW(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututiBOOLSendNotifyMessage(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututiBOOLSendNotifyMessageA(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
tuiututiBOOLSendNotifyMessageW(_In_ HWND hWnd, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam)
ttHWNDSetActiveWindow(_In_ HWND hwnd)
ttHWNDSetCapture(_In_ HWND hwnd)
uiiBOOLSetCaretBlinkTime(_In_ UINT uMSeconds)
iiiBOOLSetCaretPos(_In_ int X, _In_ int Y)
tiiuiDWORDSetClassLong(_In_ HWND hWnd, _In_ int nIndex, _In_ LONG dwNewLong)
tiiuiDWORDSetClassLongA(_In_ HWND hWnd, _In_ int nIndex, _In_ LONG dwNewLong)
tiiuiDWORDSetClassLongW(_In_ HWND hWnd, _In_ int nIndex, _In_ LONG dwNewLong)
tiuhuhWORDSetClassWord(_In_ HWND hWnd, _In_ int nIndex, _In_ WORD wNewWord)
uittHANDLESetClipboardData(_In_ UINT uFormat, _In_opt_ HANDLE hMem)
ttHWNDSetClipboardViewer(_In_ HWND hWndNewViewer)
ttHCURSORSetCursor(_In_opt_ HCURSOR hCursor)
iiiBOOLSetCursorPos(_In_ int X, _In_ int Y)
tiuiiiBOOLSetDlgItemInt(_In_ HWND hDlg, _In_ int nIDDlgItem, _In_ UINT uValue, _In_ BOOL bSigned)
tisiBOOLSetDlgItemText(_In_ HWND hDlg, _In_ int nIDDlgItem, _In_ LPCTSTR lpString)
tiaiBOOLSetDlgItemTextA(_In_ HWND hDlg, _In_ int nIDDlgItem, _In_ LPCSTR lpString)
tiwiBOOLSetDlgItemTextW(_In_ HWND hDlg, _In_ int nIDDlgItem, _In_ LPCWSTR lpString)
uiiBOOLSetDoubleClickTime(_In_ UINT uInterval)
ttHWNDSetFocus(_In_opt_ HWND hWnd)
tiBOOLSetForegroundWindow(_In_ HWND hwnd)
tuiuituiiBOOLSetGestureConfig(_In_ HWND hwnd, _In_ DWORD dwReserved, _In_ UINT cIDs, _In_ PGESTURECONFIG pGestureConfig, _In_ UINT cbSize)
tiBOOLSetKeyboardState(_In_ LPBYTE lpKeyState)
uiuiiVOIDSetLastErrorEx(_In_ DWORD dwErrCode, _In_ DWORD dwType)
tuiucuiiBOOLSetLayeredWindowAttributes(_In_ HWND hwnd, _In_ COLORREF crKey, _In_ BYTE bAlpha, _In_ DWORD dwFlags)
ttiBOOLSetMenu(_In_ HWND hWnd, _In_opt_ HMENU hMenu)
tuiiBOOLSetMenuContextHelpId(HMENU hmenu, DWORD dwContextHelpId)
tuiuiiBOOLSetMenuDefaultItem(_In_ HMENU hMenu, _In_ UINT uItem, _In_ UINT fByPos)
ttiBOOLSetMenuInfo(_In_ HMENU hmenu, _In_ LPCMENUINFO lpcmi)
tuiuittiBOOLSetMenuItemBitmaps(_In_ HMENU hMenu, _In_ UINT uPosition, _In_ UINT uFlags, _In_opt_ HBITMAP hBitmapUnchecked, _In_opt_ HBITMAP hBitmapChecked)
tuiitiBOOLSetMenuItemInfo(_In_ HMENU hMenu, _In_ UINT uItem, _In_ BOOL fByPosition, _In_ LPMENUITEMINFO lpmii)
tuiitiBOOLSetMenuItemInfoA(_In_ HMENU hMenu, _In_ UINT uItem, _In_ BOOL fByPosition, _In_ LPMENUITEMINFO lpmii)
tuiitiBOOLSetMenuItemInfoW(_In_ HMENU hMenu, _In_ UINT uItem, _In_ BOOL fByPosition, _In_ LPMENUITEMINFO lpmii)
ututLPARAMSetMessageExtraInfo(_In_ LPARAM lParam)
tttHWNDSetParent(_In_ HWND hWndChild, _In_opt_ HWND hWndNewParent)
iiiBOOLSetPhysicalCursorPos(_In_ int X, _In_ int Y)
uiiBOOLSetProcessDefaultLayout(_In_ DWORD dwDefaultLayout)
iBOOLSetProcessDPIAware(void)
tiBOOLSetProcessWindowStation(_In_ HWINSTA hWinSta)
tstiBOOLSetProp(_In_ HWND hWnd, _In_ LPCTSTR lpString, _In_opt_ HANDLE hData)
tatiBOOLSetPropA(_In_ HWND hWnd, _In_ LPCSTR lpString, _In_opt_ HANDLE hData)
twtiBOOLSetPropW(_In_ HWND hWnd, _In_ LPCWSTR lpString, _In_opt_ HANDLE hData)
tiiiiiBOOLSetRect(_Out_ LPRECT lprc, _In_ int xLeft, _In_ int yTop, _In_ int xRight, _In_ int yBottom)
tiBOOLSetRectEmpty(_Out_ LPRECT lprc)
titiiintSetScrollInfo(_In_ HWND hwnd, _In_ int fnBar, _In_ LPCSCROLLINFO lpsi, _In_ BOOL fRedraw)
tiiiiintSetScrollPos(_In_ HWND hWnd, _In_ int nBar, _In_ int nPos, _In_ BOOL bRedraw)
tiiiiiBOOLSetScrollRange(_In_ HWND hWnd, _In_ int nBar, _In_ int nMinPos, _In_ int nMaxPos, _In_ BOOL bRedraw)
ittiBOOLSetSysColors(_In_ int cElements, _In_ const INT *lpaElements, _In_ const COLORREF *lpaRgbValues)
tuiiBOOLSetSystemCursor(_In_ HCURSOR hcur, _In_ DWORD id)
tiBOOLSetThreadDesktop(_In_ HDESK hDesktop)
tutuitutUINT_PTRSetTimer_(_In_opt_ HWND hWnd, _In_ UINT_PTR nIDEvent, _In_ UINT uElapse, _In_opt_ TIMERPROC lpTimerFunc)
tituiiBOOLSetUserObjectInformation(_In_ HANDLE hObj, _In_ int nIndex, _In_ PVOID pvInfo, _In_ DWORD nLength)
tituiiBOOLSetUserObjectInformationA(_In_ HANDLE hObj, _In_ int nIndex, _In_ PVOID pvInfo, _In_ DWORD nLength)
tituiiBOOLSetUserObjectInformationW(_In_ HANDLE hObj, _In_ int nIndex, _In_ PVOID pvInfo, _In_ DWORD nLength)
tttiBOOLSetUserObjectSecurity(_In_ HANDLE hObj, _In_ PSECURITY_INFORMATION pSIRequested, _In_ PSECURITY_DESCRIPTOR pSID)
tuiiBOOLSetWindowContextHelpId(HWND hwnd, DWORD dwContextHelpId)
tuiiBOOLSetWindowDisplayAffinity(_In_ HWND hWnd, _In_ DWORD dwAffinity)
tiiiLONGSetWindowLong(_In_ HWND hWnd, _In_ int nIndex, _In_ LONG dwNewLong)
tiiiLONGSetWindowLongA(_In_ HWND hWnd, _In_ int nIndex, _In_ LONG dwNewLong)
tiiiLONGSetWindowLongW(_In_ HWND hWnd, _In_ int nIndex, _In_ LONG dwNewLong)
ttiBOOLSetWindowPlacement(_In_ HWND hWnd, _In_ const WINDOWPLACEMENT *lpwndpl)
ttiiiiuiiBOOLSetWindowPos(_In_ HWND hWnd, _In_opt_ HWND hWndInsertAfter, _In_ int X, _In_ int Y, _In_ int cx, _In_ int cy, _In_ UINT uFlags)
ttiiintSetWindowRgn(_In_ HWND hWnd, _In_ HRGN hRgn, _In_ BOOL bRedraw)
ittuitHHOOKSetWindowsHookEx(_In_ int idHook, _In_ HOOKPROC lpfn, _In_ HINSTANCE hMod, _In_ DWORD dwThreadId)
ittuitHHOOKSetWindowsHookExA(_In_ int idHook, _In_ HOOKPROC lpfn, _In_ HINSTANCE hMod, _In_ DWORD dwThreadId)
ittuitHHOOKSetWindowsHookExW(_In_ int idHook, _In_ HOOKPROC lpfn, _In_ HINSTANCE hMod, _In_ DWORD dwThreadId)
tsiBOOLSetWindowText(_In_ HWND hWnd, _In_opt_ LPCTSTR lpString)
taiBOOLSetWindowTextA(_In_ HWND hWnd, _In_opt_ LPCSTR lpString)
twiBOOLSetWindowTextW(_In_ HWND hWnd, _In_opt_ LPCWSTR lpString)
uiuittuiuiuitHWINEVENTHOOKSetWinEventHook(_In_ UINT eventMin, _In_ UINT eventMax, _In_ HMODULE hmodWinEventProc, _In_ WINEVENTPROC lpfnWinEventProc, _In_ DWORD idProcess, _In_ DWORD idThread, _In_ UINT dwflags)
tiBOOLShowCaret(_In_opt_ HWND hWnd)
iiintShowCursor(_In_ BOOL bShow)
tiiBOOLShowOwnedPopups(_In_ HWND hWnd, _In_ BOOL fShow)
tiiiBOOLShowScrollBar(_In_ HWND hWnd, _In_ int wBar, _In_ BOOL bShow)
tiiBOOLShowWindow(_In_ HWND hWnd, _In_ int nCmdShow)
tiiBOOLShowWindowAsync(_In_ HWND hWnd, _In_ int nCmdShow)
twiBOOLShutdownBlockReasonCreate(_In_ HWND hWnd, _In_ LPCWSTR pwszReason)
tiBOOLShutdownBlockReasonDestroy(_In_ HWND hwnd)
twtiBOOLShutdownBlockReasonQuery(_In_ HWND hWnd, _Out_opt_ LPWSTR pwszBuff, _Inout_ DWORD *pcchBuff)
iBOOLSoundSentry(void)
tttiBOOLSubtractRect(_Out_ LPRECT lprcDst, _In_ const RECT *lprcSrc1, _In_ const RECT *lprcSrc2)
iiBOOLSwapMouseButton(_In_ BOOL fSwap)
tiBOOLSwitchDesktop(_In_ HDESK hDesktop)
tiiVOIDSwitchToThisWindow(_In_ HWND hWnd, _In_ BOOL fAltTab)
uiuituiiBOOLSystemParametersInfo(_In_ UINT uiAction, _In_ UINT uiParam, _Inout_ PVOID pvParam, _In_ UINT fWinIni)
uiuituiiBOOLSystemParametersInfoA(_In_ UINT uiAction, _In_ UINT uiParam, _Inout_ PVOID pvParam, _In_ UINT fWinIni)
uiuituiiBOOLSystemParametersInfoW(_In_ UINT uiAction, _In_ UINT uiParam, _Inout_ PVOID pvParam, _In_ UINT fWinIni)
tiisiitiiLONGTabbedTextOut(_In_ HDC hDC, _In_ int X, _In_ int Y, _In_ LPCTSTR lpString, _In_ int nCount, _In_ int nTabPositions, _In_ const LPINT lpnTabStopPositions, _In_ int nTabOrigin)
tiiaiitiiLONGTabbedTextOutA(_In_ HDC hDC, _In_ int X, _In_ int Y, _In_ LPCSTR lpString, _In_ int nCount, _In_ int nTabPositions, _In_ const LPINT lpnTabStopPositions, _In_ int nTabOrigin)
tiiwiitiiLONGTabbedTextOutW(_In_ HDC hDC, _In_ int X, _In_ int Y, _In_ LPCWSTR lpString, _In_ int nCount, _In_ int nTabPositions, _In_ const LPINT lpnTabStopPositions, _In_ int nTabOrigin)
tuituituhWORDTileWindows(_In_opt_ HWND hwndParent, _In_ UINT wHow, _In_opt_ const RECT *lpRect, _In_ UINT cKids, _In_opt_ const HWND *lpKids)
uiuittuiiintToAscii(_In_ UINT uVirtKey, _In_ UINT uScanCode, _In_opt_ const BYTE *lpKeyState, _Out_ LPWORD lpChar, _In_ UINT uFlags)
uiuittuitiintToAsciiEx(_In_ UINT uVirtKey, _In_ UINT uScanCode, _In_opt_ const BYTE *lpKeyState, _Out_ LPWORD lpChar, _In_ UINT uFlags, _In_opt_ HKL dwhkl)
uiuitwiuiiintToUnicode(_In_ UINT wVirtKey, _In_ UINT wScanCode, _In_opt_ const BYTE *lpKeyState, _Out_ LPWSTR pwszBuff, _In_ int cchBuff, _In_ UINT wFlags)
uiuitwiuitiintToUnicodeEx(_In_ UINT wVirtKey, _In_ UINT wScanCode, _In_ const BYTE *lpKeyState, _Out_ LPWSTR pwszBuff, _In_ int cchBuff, _In_ UINT wFlags, _In_opt_ HKL dwhkl)
tiBOOLTrackMouseEvent(_Inout_ LPTRACKMOUSEEVENT lpEventTrack)
tuiiiittiBOOLTrackPopupMenu(_In_ HMENU hMenu, _In_ UINT uFlags, _In_ int x, _In_ int y, _In_ int nReserved, _In_ HWND hWnd, _In_opt_ const RECT *prcRect)
tuiiittiBOOLTrackPopupMenuEx(_In_ HMENU hmenu, _In_ UINT fuFlags, _In_ int x, _In_ int y, _In_ HWND hwnd, _In_opt_ LPTPMPARAMS lptpm)
tttiintTranslateAccelerator(_In_ HWND hWnd, _In_ HACCEL hAccTable, _In_ LPMSG lpMsg)
tttiintTranslateAcceleratorA(_In_ HWND hWnd, _In_ HACCEL hAccTable, _In_ LPMSG lpMsg)
tttiintTranslateAcceleratorW(_In_ HWND hWnd, _In_ HACCEL hAccTable, _In_ LPMSG lpMsg)
ttiBOOLTranslateMDISysAccel(_In_ HWND hWndClient, _In_ LPMSG lpMsg)
tiBOOLTranslateMessage(_In_ const MSG *lpmsg)
tiBOOLUnhookWindowsHookEx(_In_ HHOOK hhk)
tiBOOLUnhookWinEvent(_In_ HWINEVENTHOOK hWinEventHook)
tttiBOOLUnionRect(_Out_ LPRECT lprcDst, _In_ const RECT *lprcSrc1, _In_ const RECT *lprcSrc2)
tiBOOLUnloadKeyboardLayout(_In_ HKL hKL)
uiutututiBOOLUnpackDDElParam(_In_ UINT msg, _In_ LPARAM lParam, _Out_ PUINT_PTR puiLo, _Out_ PUINT_PTR puiHi)
stiBOOLUnregisterClass(_In_ LPCTSTR lpClassName, _In_opt_ HINSTANCE hInstance)
atiBOOLUnregisterClassA(_In_ LPCSTR lpClassName, _In_opt_ HINSTANCE hInstance)
wtiBOOLUnregisterClassW(_In_ LPCWSTR lpClassName, _In_opt_ HINSTANCE hInstance)
tiBOOLUnregisterDeviceNotification(_In_ HDEVNOTIFY Handle)
tiiBOOLUnregisterHotKey(_In_opt_ HWND hWnd, _In_ int id)
tiBOOLUnregisterPowerSettingNotification(_In_ HPOWERNOTIFY Handle)
tiBOOLUnregisterTouchWindow(_In_ HWND hwnd)
ttttttuituiiBOOLUpdateLayeredWindow(_In_ HWND hwnd, _In_opt_ HDC hdcDst, _In_opt_ POINT *pptDst, _In_opt_ SIZE *psize, _In_opt_ HDC hdcSrc, _In_opt_ POINT *pptSrc, _In_ COLORREF crKey, _In_opt_ BLENDFUNCTION *pblend, _In_ DWORD dwFlags)
ttiBOOLUpdateLayeredWindowIndirect(_In_ HWND hwnd, _In_ const UPDATELAYEREDWINDOWINFO *pULWInfo)
tiBOOLUpdateWindow(_In_ HWND hwnd)
ttiiBOOLUserHandleGrantAccess(_In_ HANDLE hUserHandle, _In_ HANDLE hJob, _In_ BOOL bGrant)
ttiBOOLValidateRect(_In_ HWND hWnd, _In_ const RECT *lpRect)
ttiBOOLValidateRgn(_In_ HWND hWnd, _In_ HRGN hRgn)
yhSHORTVkKeyScan(_In_ TCHAR ch)
yhSHORTVkKeyScanA(_In_ TCHAR ch)
ythSHORTVkKeyScanEx(_In_ TCHAR ch, _In_ HKL dwhkl)
ythSHORTVkKeyScanExA(_In_ TCHAR ch, _In_ HKL dwhkl)
ythSHORTVkKeyScanExW(_In_ TCHAR ch, _In_ HKL dwhkl)
yhSHORTVkKeyScanW(_In_ TCHAR ch)
tuiuiDWORDWaitForInputIdle(_In_ HANDLE hProcess, _In_ DWORD dwMilliseconds)
iBOOLWaitMessage(void)
ttHWNDWindowFromDC(_In_ HDC hdc)
ui6tHWNDWindowFromPhysicalPoint(_In_ POINT Point)
ui6tHWNDWindowFromPoint(_In_ POINT Point)
tsuiutiBOOLWinHelp(HWND hWndMain, LPCTSTR lpszHelp, UINT uCommand, ULONG_PTR dwData)
tauiutiBOOLWinHelpA(HWND hWndMain, LPCSTR lpszHelp, UINT uCommand, ULONG_PTR dwData)
twuiutiBOOLWinHelpW(HWND hWndMain, LPCWSTR lpszHelp, UINT uCommand, ULONG_PTR dwData)
sstiintwsprintf(_Out_ LPTSTR lpOut, _In_ LPCTSTR lpFmt, _In_ ...)
aatiintwsprintfA(_Out_ LPSTR lpOut, _In_ LPCSTR lpFmt, _In_ ...)
wwtiintwsprintfW(_Out_ LPWSTR lpOut, _In_ LPCWSTR lpFmt, _In_ ...)
sstiintwvsprintf(_Out_ LPTSTR lpOutput, _In_ LPCTSTR lpFmt, _In_ va_list arglist)
aatiintwvsprintfA(_Out_ LPSTR lpOutput, _In_ LPCSTR lpFmt, _In_ va_list arglist)
wwtiintwvsprintfW(_Out_ LPWSTR lpOutput, _In_ LPCWSTR lpFmt, _In_ va_list arglist)

Userenv.dll

ttiiBOOLCreateEnvironmentBlock(_Out_ LPVOID *lpEnvironment, _In_opt_ HANDLE hToken, _In_ BOOL bInherit)
wwwuiiHRESULTCreateProfile(_In_ LPCWSTR pszUserSid, _In_ LPCWSTR pszUserName, _Out_ LPWSTR pszProfilePath, _In_ DWORD cchProfilePath)
sssiBOOLDeleteProfile(_In_ LPCTSTR lpSidString, _In_opt_ LPCTSTR lpProfilePath, _In_opt_ LPCTSTR lpComputerName)
aaaiBOOLDeleteProfileA(_In_ LPCSTR lpSidString, _In_opt_ LPCSTR lpProfilePath, _In_opt_ LPCSTR lpComputerName)
wwwiBOOLDeleteProfileW(_In_ LPCWSTR lpSidString, _In_opt_ LPCWSTR lpProfilePath, _In_opt_ LPCWSTR lpComputerName)
tiBOOLDestroyEnvironmentBlock(_In_ LPVOID lpEnvironment)
itHANDLEEnterCriticalPolicySection(_In_ BOOL bMachine)
tssuiiBOOLExpandEnvironmentStringsForUser(_In_opt_ HANDLE hToken, _In_ LPCTSTR lpSrc, _Out_ LPTSTR lpDest, _In_ DWORD dwSize)
taauiiBOOLExpandEnvironmentStringsForUserA(_In_opt_ HANDLE hToken, _In_ LPCSTR lpSrc, _Out_ LPSTR lpDest, _In_ DWORD dwSize)
twwuiiBOOLExpandEnvironmentStringsForUserW(_In_opt_ HANDLE hToken, _In_ LPCWSTR lpSrc, _Out_ LPWSTR lpDest, _In_ DWORD dwSize)
tiBOOLFreeGPOList(_In_ PGROUP_POLICY_OBJECT pGPOList)
tiBOOLFreeGPOListA(_In_ PGROUP_POLICY_OBJECT pGPOList)
tiBOOLFreeGPOListW(_In_ PGROUP_POLICY_OBJECT pGPOList)
stiBOOLGetAllUsersProfileDirectory(_Out_opt_ LPTSTR lpProfileDir, _Inout_ LPDWORD lpcchSize)
atiBOOLGetAllUsersProfileDirectoryA(_Out_opt_ LPSTR lpProfileDir, _Inout_ LPDWORD lpcchSize)
wtiBOOLGetAllUsersProfileDirectoryW(_Out_opt_ LPWSTR lpProfileDir, _Inout_ LPDWORD lpcchSize)
uistttuiDWORDGetAppliedGPOList(_In_ DWORD dwFlags, _In_ LPCTSTR pMachineName, _In_ PSID pSidUser, _In_ GUID *pGuidExtension, _Out_ PGROUP_POLICY_OBJECT *ppGPOList)
uiatttuiDWORDGetAppliedGPOListA(_In_ DWORD dwFlags, _In_ LPCSTR pMachineName, _In_ PSID pSidUser, _In_ GUID *pGuidExtension, _Out_ PGROUP_POLICY_OBJECT *ppGPOList)
uiwtttuiDWORDGetAppliedGPOListW(_In_ DWORD dwFlags, _In_ LPCWSTR pMachineName, _In_ PSID pSidUser, _In_ GUID *pGuidExtension, _Out_ PGROUP_POLICY_OBJECT *ppGPOList)
stiBOOLGetDefaultUserProfileDirectory(_Out_opt_ LPTSTR lpProfileDir, _Inout_ LPDWORD lpcchSize)
atiBOOLGetDefaultUserProfileDirectoryA(_Out_opt_ LPSTR lpProfileDir, _Inout_ LPDWORD lpcchSize)
wtiBOOLGetDefaultUserProfileDirectoryW(_Out_opt_ LPWSTR lpProfileDir, _Inout_ LPDWORD lpcchSize)
tsssuitiBOOLGetGPOList(_In_ HANDLE hToken, _In_ LPCTSTR lpName, _In_ LPCTSTR lpHostName, _In_ LPCTSTR lpComputerName, _In_ DWORD dwFlags, _Out_ PGROUP_POLICY_OBJECT *pGPOList)
taaauitiBOOLGetGPOListA(_In_ HANDLE hToken, _In_ LPCSTR lpName, _In_ LPCSTR lpHostName, _In_ LPCSTR lpComputerName, _In_ DWORD dwFlags, _Out_ PGROUP_POLICY_OBJECT *pGPOList)
twwwuitiBOOLGetGPOListW(_In_ HANDLE hToken, _In_ LPCWSTR lpName, _In_ LPCWSTR lpHostName, _In_ LPCWSTR lpComputerName, _In_ DWORD dwFlags, _Out_ PGROUP_POLICY_OBJECT *pGPOList)
stiBOOLGetProfilesDirectory(_Out_ LPTSTR lpProfilesDir, _Inout_ LPDWORD lpcchSize)
atiBOOLGetProfilesDirectoryA(_Out_ LPSTR lpProfilesDir, _Inout_ LPDWORD lpcchSize)
wtiBOOLGetProfilesDirectoryW(_Out_ LPWSTR lpProfilesDir, _Inout_ LPDWORD lpcchSize)
tiBOOLGetProfileType(_Out_ DWORD *pdwFlags)
tstiBOOLGetUserProfileDirectory(_In_ HANDLE hToken, _Out_opt_ LPTSTR lpProfileDir, _Inout_ LPDWORD lpcchSize)
tatiBOOLGetUserProfileDirectoryA(_In_ HANDLE hToken, _Out_opt_ LPSTR lpProfileDir, _Inout_ LPDWORD lpcchSize)
twtiBOOLGetUserProfileDirectoryW(_In_ HANDLE hToken, _Out_opt_ LPWSTR lpProfileDir, _Inout_ LPDWORD lpcchSize)
tiBOOLLeaveCriticalPolicySection(_In_ HANDLE hSection)
ttiBOOLLoadUserProfile(_In_ HANDLE hToken, _Inout_ LPPROFILEINFO lpProfileInfo)
ttiBOOLLoadUserProfileA(_In_ HANDLE hToken, _Inout_ LPPROFILEINFO lpProfileInfo)
ttiBOOLLoadUserProfileW(_In_ HANDLE hToken, _Inout_ LPPROFILEINFO lpProfileInfo)
ttuiuiDWORDProcessGroupPolicyCompleted(_In_ REFGPEXTENSIONID extensionId, _In_ ASYNCCOMPLETIONHANDLE pAsyncHandle, _In_ DWORD dwStatus)
ttuiiuiDWORDProcessGroupPolicyCompletedEx(_In_ REFGPEXTENSIONID extensionId, _In_ ASYNCCOMPLETIONHANDLE pAsyncHandle, _In_ DWORD dwStatus, _In_ HRESULT RsopStatus)
iiBOOLRefreshPolicy(_In_ BOOL bMachine)
iuiiBOOLRefreshPolicyEx(_In_ BOOL bMachine, _In_ DWORD dwOptions)
tiiBOOLRegisterGPNotification(_In_ HANDLE hEvent, _In_ BOOL bMachine)
tttuituitttttiHRESULTRSoPAccessCheckByType(_In_ PSECURITY_DESCRIPTOR pSecurityDescriptor, _In_ PSID pPrincipalSelfSid, _In_ PRSOPTOKEN pRsopToken, _In_ DWORD dwDesiredAccessMask, _In_ POBJECT_TYPE_LIST pObjectTypeList, _In_ DWORD ObjectTypeListLength, _In_ PGENERIC_MAPPING pGenericMapping, _In_ PPRIVILEGE_SET pPrivilegeSet, _In_ LPDWORD pdwPrivilegeSetLength, _Out_ LPDWORD pdwGrantedAccessMask, _Out_ LPBOOL pbAccessStatus)
wtuittiHRESULTRSoPFileAccessCheck(_In_ LPWSTR pszFileName, _In_ PRSOPTOKEN pRsopToken, _In_ DWORD dwDesiredAccessMask, _Out_ LPDWORD pdwGrantedAccessMask, _Out_ LPBOOL pbAccessStatus)
uittiHRESULTRSoPResetPolicySettingStatus(_In_ DWORD dwFlags, _In_ IWbemServices *pServices, _In_ IWbemClassObject *pSettingInstance)
uittuitiHRESULTRSoPSetPolicySettingStatus(_In_ DWORD dwFlags, _In_ IWbemServices *pServices, _In_ IWbemClassObject *pSettingInstance, _In_ DWORD nInfo, _In_ POLICYSETTINGSTATUSINFO *pStatus)
ttiBOOLUnloadUserProfile(_In_ HANDLE hToken, _In_ HANDLE hProfile)
tiBOOLUnregisterGPNotification(_In_ HANDLE hEvent)

UxTheme.dll

tttuitttttHANIMATIONBUFFERBeginBufferedAnimation(HWND hwnd, HDC hdcTarget, const RECT *rcTarget, BP_BUFFERFORMAT dwFormat, _In_ BP_PAINTPARAMS *pPaintParams, _In_ BP_ANIMATIONPARAMS *pAnimationParams, _Out_ HDC *phdcFrom, _Out_ HDC *phdcTo)
ttuitttHPAINTBUFFERBeginBufferedPaint(HDC hdcTarget, const RECT *prcTarget, BP_BUFFERFORMAT dwFormat, _In_ BP_PAINTPARAMS *pPaintParams, _Out_ HDC *phdc)
tiBOOLBeginPanningFeedback(_In_ HWND hwnd)
ttiHRESULTBufferedPaintClear(HPAINTBUFFER hBufferedPaint, _In_ const RECT *prc)
iHRESULTBufferedPaintInit(void)
ttiBOOLBufferedPaintRenderAnimation(HWND hwnd, HDC hdcTarget)
ttuciHRESULTBufferedPaintSetAlpha(HPAINTBUFFER hBufferedPaint, _In_ const RECT *prc, BYTE alpha)
tiHRESULTBufferedPaintStopAllAnimations(HWND hwnd)
iHRESULTBufferedPaintUnInit(void)
tiHRESULTCloseThemeData(_In_ HTHEME hTheme)
ttiittiHRESULTDrawThemeBackground(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ const RECT *pRect, _In_ const RECT *pClipRect)
ttiittiHRESULTDrawThemeBackgroundEx(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ const RECT *pRect, _In_ const DTBGOPTS *pOptions)
ttiituiuitiHRESULTDrawThemeEdge(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ LPCRECT pDestRect, _In_ UINT uEdge, _In_ UINT uFlags, _Out_ LPRECT pContentRect)
ttiittiiHRESULTDrawThemeIcon(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ LPCRECT pRect, _In_ HIMAGELIST himl, _In_ int iImageIndex)
tttiHRESULTDrawThemeParentBackground(_In_ HWND hwnd, _In_ HDC hdc, _In_ const RECT *prc)
ttuitiHRESULTDrawThemeParentBackgroundEx(_In_ HWND hwnd, _In_ HDC hdc, _In_ DWORD dwFlags, _In_ const RECT *prc)
ttiiwiuiuitiHRESULTDrawThemeText(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ LPCWSTR pszText, _In_ int iCharCount, _In_ DWORD dwTextFlags, _In_ DWORD dwTextFlags2, _In_ LPCRECT pRect)
ttiiwiuittiHRESULTDrawThemeTextEx(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ LPCWSTR pszText, _In_ int iCharCount, _In_ DWORD dwFlags, _Inout_ LPRECT pRect, _In_ const DTTOPTS *pOptions)
tuiiHRESULTEnableThemeDialogTexture(_In_ HWND hwnd, _In_ DWORD dwFlags)
iiHRESULTEnableTheming(_In_ BOOL fEnable)
tiiHRESULTEndBufferedAnimation(HANIMATIONBUFFER hbpAnimation, BOOL fUpdateTarget)
tiiHRESULTEndBufferedPaint(HPAINTBUFFER hBufferedPaint, BOOL fUpdateTarget)
tiiBOOLEndPanningFeedback(_In_ HWND hwnd, BOOL fAnimateBack)
tttiHRESULTGetBufferedPaintBits(HPAINTBUFFER hBufferedPaint, _Out_ RGBQUAD **ppbBuffer, _Out_ int *pcxRow)
ttHDCGetBufferedPaintDC(HPAINTBUFFER hBufferedPaint)
ttHDCGetBufferedPaintTargetDC(HPAINTBUFFER hBufferedPaint)
ttiHRESULTGetBufferedPaintTargetRect(HPAINTBUFFER hBufferedPaint, _Out_ RECT *prc)
wiwiwiiHRESULTGetCurrentThemeName(_Out_ LPWSTR pszThemeFileName, _In_ int dwMaxNameChars, _Out_ LPWSTR pszColorBuff, _In_ int cchMaxColorChars, _Out_ LPWSTR pszSizeBuff, _In_ int cchMaxSizeChars)
uiDWORDGetThemeAppProperties(void)
ttiittiHRESULTGetThemeBackgroundContentRect(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ LPCRECT pBoundingRect, _Out_ LPRECT pContentRect)
ttiittiHRESULTGetThemeBackgroundExtent(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ LPCRECT pContentRect, _Out_ LPRECT pExtentRect)
ttiittiHRESULTGetThemeBackgroundRegion(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ LPCRECT pRect, _Out_ HRGN *pRegion)
tiiiuitiHRESULTGetThemeBitmap(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _In_ ULONG dwFlags, _Out_ HBITMAP *phBitmap)
tiiitiHRESULTGetThemeBool(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ BOOL *pfVal)
tiiitiHRESULTGetThemeColor(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ COLORREF *pColor)
wwwiiHRESULTGetThemeDocumentationProperty(_In_ LPCWSTR pszThemeName, _In_ LPCWSTR pszPropertyName, _Out_ LPWSTR pszValueBuff, _In_ int cchMaxValChars)
tiiitiHRESULTGetThemeEnumValue(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ int *piVal)
tiiiwiiHRESULTGetThemeFilename(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ LPWSTR pszThemeFilename, _In_ int cchMaxBuffChars)
ttiiitiHRESULTGetThemeFont(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ LOGFONTW *pFont)
tiiitiHRESULTGetThemeInt(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ int *piVal)
tiiitiHRESULTGetThemeIntList(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ INTLIST *pIntList)
ttiiittiHRESULTGetThemeMargins(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _In_ LPRECT prc, _Out_ MARGINS *pMargins)
ttiiitiHRESULTGetThemeMetric(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ int *piVal)
ttiituitiHRESULTGetThemePartSize(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ LPCRECT prc, _In_ THEMESIZE eSize, _Out_ SIZE *psz)
tiiitiHRESULTGetThemePosition(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ POINT *pPoint)
tiiitiHRESULTGetThemePropertyOrigin(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ PROPERTYORIGIN *pOrigin)
tiiitiHRESULTGetThemeRect(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ LPRECT pRect)
tiiitttiHRESULTGetThemeStream(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ VOID **ppvStream, _Out_ DWORD *pcbStream, _In_ HINSTANCE hInst)
tiiiwiiHRESULTGetThemeString(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId, _In_ int iPropId, _Out_ LPWSTR pszBuff, _In_ int cchMaxBuffChars)
tiiBOOLGetThemeSysBool(_In_ HTHEME hTheme, _In_ int iBoolID)
tiuiCOLORREFGetThemeSysColor(_In_ HTHEME hTheme, _In_ int iColorID)
titHBRUSHGetThemeSysColorBrush(_In_ HTHEME hTheme, _In_ int iColorID)
titiHRESULTGetThemeSysFont(_In_ HTHEME hTheme, _In_ int iFontID, _Out_ LOGFONTW *plf)
titiHRESULTGetThemeSysInt(_In_ HTHEME hTheme, _In_ int iIntID, _In_ int *piValue)
tiiintGetThemeSysSize(_In_ HTHEME hTheme, _In_ int iSizeID)
tiwiiHRESULTGetThemeSysString(_In_ HTHEME hTheme, _In_ int iStringID, _Out_ LPWSTR pszStringBuff, _In_ int cchMaxStringChars)
ttiiwiuittiHRESULTGetThemeTextExtent(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ LPCWSTR pszText, _In_ int iCharCount, _In_ DWORD dwTextFlags, _In_ LPCRECT pBoundingRect, _Out_ LPRECT pExtentRect)
ttiitiHRESULTGetThemeTextMetrics(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _Out_ TEXTMETRIC *ptm)
tiiiitiHRESULTGetThemeTransitionDuration(HTHEME hTheme, int iPartId, int iStateIdFrom, int iStateIdTo, int iPropId, _Out_ DWORD *pdwDuration)
ttHTHEMEGetWindowTheme(_In_ HWND hwnd)
ttiiuittui6tiHRESULTHitTestThemeBackground(_In_ HTHEME hTheme, _In_ HDC hdc, _In_ int iPartId, _In_ int iStateId, _In_ DWORD dwOptions, _In_ LPCRECT pRect, _In_ HRGN hrgn, _In_ POINT ptTest, _Out_ WORD *pwHitTestCode)
iBOOLIsAppThemed(void)
iBOOLIsCompositionActive(void)
iBOOLIsThemeActive(void)
tiiiBOOLIsThemeBackgroundPartiallyTransparent(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId)
tiBOOLIsThemeDialogTextureEnabled(_In_ HWND hwnd)
tiiiBOOLIsThemePartDefined(_In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId)
twtHTHEMEOpenThemeData(_In_ HWND hwnd, _In_ LPCWSTR pszClassList)
twuitHTHEMEOpenThemeDataEx(_In_ HWND hwnd, _In_ LPCWSTR pszClassIdList, _In_ DWORD dwFlags)
uiiVOIDSetThemeAppProperties(DWORD dwFlags)
twwiHRESULTSetWindowTheme(_In_ HWND hwnd, _In_ LPCWSTR pszSubAppName, _In_ LPCWSTR pszSubIdList)
tituiiHRESULTSetWindowThemeAttribute(_In_ HWND hwnd, _In_ enum WINDOWTHEMEATTRIBUTETYPE eAttribute, _In_ PVOID pvAttribute, _In_ DWORD cbAttribute)
tiiiiBOOLUpdatePanningFeedback(_In_ HWND hwnd, _In_ LONG lTotalOverpanOffsetX, _In_ LONG lTotalOverpanOffsetY, _In_ BOOL fInInertia)

Version.dll

suiuitiBOOLGetFileVersionInfo(_In_ LPCTSTR lptstrFilename, _Reserved_ DWORD dwHandle, _In_ DWORD dwLen, _Out_ LPVOID lpData)
auiuitiBOOLGetFileVersionInfoA(_In_ LPCSTR lptstrFilename, _Reserved_ DWORD dwHandle, _In_ DWORD dwLen, _Out_ LPVOID lpData)
uisuiuitiBOOLGetFileVersionInfoEx(_In_ DWORD dwFlags, _In_ LPCTSTR lptstrFilename, _Reserved_ DWORD dwHandle, _In_ DWORD dwLen, _Out_ LPVOID lpData)
uiwuiuitiBOOLGetFileVersionInfoExW(_In_ DWORD dwFlags, _In_ LPCWSTR lptstrFilename, _Reserved_ DWORD dwHandle, _In_ DWORD dwLen, _Out_ LPVOID lpData)
stuiDWORDGetFileVersionInfoSize(_In_ LPCTSTR lptstrFilename, _Out_opt_ LPDWORD lpdwHandle)
atuiDWORDGetFileVersionInfoSizeA(_In_ LPCSTR lptstrFilename, _Out_opt_ LPDWORD lpdwHandle)
uistuiDWORDGetFileVersionInfoSizeEx(_In_ DWORD dwFlags, _In_ LPCTSTR lptstrFilename, _Out_ LPDWORD lpdwHandle)
uiwtuiDWORDGetFileVersionInfoSizeExW(_In_ DWORD dwFlags, _In_ LPCWSTR lptstrFilename, _Out_ LPDWORD lpdwHandle)
wtuiDWORDGetFileVersionInfoSizeW(_In_ LPCWSTR lptstrFilename, _Out_opt_ LPDWORD lpdwHandle)
wuiuitiBOOLGetFileVersionInfoW(_In_ LPCWSTR lptstrFilename, _Reserved_ DWORD dwHandle, _In_ DWORD dwLen, _Out_ LPVOID lpData)
uissswtstuiDWORDVerFindFile(_In_ DWORD dwFlags, _In_ LPCTSTR szFileName, _In_opt_ LPCTSTR szWinDir, _In_ LPCTSTR szAppDir, _Out_ LPWSTR szCurDir, _Inout_ PUINT lpuCurDirLen, _Out_ LPTSTR szDestDir, _Inout_ PUINT lpuDestDirLen)
uiaaaatatuiDWORDVerFindFileA(_In_ DWORD dwFlags, _In_ LPCSTR szFileName, _In_opt_ LPCSTR szWinDir, _In_ LPCSTR szAppDir, _Out_ LPWSTR szCurDir, _Inout_ PUINT lpuCurDirLen, _Out_ LPSTR szDestDir, _Inout_ PUINT lpuDestDirLen)
uiwwwwtwtuiDWORDVerFindFileW(_In_ DWORD dwFlags, _In_ LPCWSTR szFileName, _In_opt_ LPCWSTR szWinDir, _In_ LPCWSTR szAppDir, _Out_ LPWSTR szCurDir, _Inout_ PUINT lpuCurDirLen, _Out_ LPWSTR szDestDir, _Inout_ PUINT lpuDestDirLen)
uisssssstuiDWORDVerInstallFile(_In_ DWORD uFlags, _In_ LPCTSTR szSrcFileName, _In_ LPCTSTR szDestFileName, _In_ LPCTSTR szSrcDir, _In_ LPCTSTR szDestDir, _In_ LPCTSTR szCurDir, _Out_ LPTSTR szTmpFile, _Inout_ PUINT lpuTmpFileLen)
uiaaaaaatuiDWORDVerInstallFileA(_In_ DWORD uFlags, _In_ LPCSTR szSrcFileName, _In_ LPCSTR szDestFileName, _In_ LPCSTR szSrcDir, _In_ LPCSTR szDestDir, _In_ LPCSTR szCurDir, _Out_ LPSTR szTmpFile, _Inout_ PUINT lpuTmpFileLen)
uiwwwwwwtuiDWORDVerInstallFileW(_In_ DWORD uFlags, _In_ LPCWSTR szSrcFileName, _In_ LPCWSTR szDestFileName, _In_ LPCWSTR szSrcDir, _In_ LPCWSTR szDestDir, _In_ LPCWSTR szCurDir, _Out_ LPWSTR szTmpFile, _Inout_ PUINT lpuTmpFileLen)
tsttiBOOLVerQueryValue(_In_ LPCVOID pBlock, _In_ LPCTSTR lpSubBlock, _Out_ LPVOID *lplpBuffer, _Out_ PUINT puLen)
tattiBOOLVerQueryValueA(_In_ LPCVOID pBlock, _In_ LPCSTR lpSubBlock, _Out_ LPVOID *lplpBuffer, _Out_ PUINT puLen)
twttiBOOLVerQueryValueW(_In_ LPCVOID pBlock, _In_ LPCWSTR lpSubBlock, _Out_ LPVOID *lplpBuffer, _Out_ PUINT puLen)

Winhttp.dll

twuiuiiBOOLWinHttpAddRequestHeaders(_In_ HINTERNET hRequest, _In_ LPCWSTR pwszHeaders, _In_ DWORD dwHeadersLength, _In_ DWORD dwModifiers)
iBOOLWinHttpCheckPlatform(void)
tiBOOLWinHttpCloseHandle(_In_ HINTERNET hInternet)
twuhuitHINTERNETWinHttpConnect(_In_ HINTERNET hSession, _In_ LPCWSTR pswzServerName, _In_ INTERNET_PORT nServerPort, _Reserved_ DWORD dwReserved)
wuiuitiBOOLWinHttpCrackUrl(_In_ LPCWSTR pwszUrl, _In_ DWORD dwUrlLength, _In_ DWORD dwFlags, _Inout_ LPURL_COMPONENTS lpUrlComponents)
tuiwtiBOOLWinHttpCreateUrl(_In_ LPURL_COMPONENTS lpUrlComponents, _In_ DWORD dwFlags, _Out_ LPWSTR pwszUrl, _Inout_ LPDWORD lpdwUrlLength)
uitiBOOLWinHttpDetectAutoProxyConfigUrl(_In_ DWORD dwAutoDetectFlags, _Out_ LPWSTR *ppwszAutoConfigUrl)
tiBOOLWinHttpGetDefaultProxyConfiguration(_Inout_ WINHTTP_PROXY_INFO *pProxyInfo)
tiBOOLWinHttpGetIEProxyConfigForCurrentUser(_Inout_ WINHTTP_CURRENT_USER_IE_PROXY_CONFIG *pProxyConfig)
twttiBOOLWinHttpGetProxyForUrl(_In_ HINTERNET hSession, _In_ LPCWSTR lpcwszUrl, _In_ WINHTTP_AUTOPROXY_OPTIONS *pAutoProxyOptions, _Out_ WINHTTP_PROXY_INFO *pProxyInfo)
wuiwwuitHINTERNETWinHttpOpen(_In_opt_ LPCWSTR pwszUserAgent, _In_ DWORD dwAccessType, _In_ LPCWSTR pwszProxyName, _In_ LPCWSTR pwszProxyBypass, _In_ DWORD dwFlags)
twwwwtuitHINTERNETWinHttpOpenRequest(_In_ HINTERNET hConnect, _In_ LPCWSTR pwszVerb, _In_ LPCWSTR pwszObjectName, _In_ LPCWSTR pwszVersion, _In_ LPCWSTR pwszReferrer, _In_ LPCWSTR *ppwszAcceptTypes, _In_ DWORD dwFlags)
ttttiBOOLWinHttpQueryAuthSchemes(_In_ HINTERNET hRequest, _Out_ LPDWORD lpdwSupportedSchemes, _Out_ LPDWORD lpdwFirstScheme, _Out_ LPDWORD pdwAuthTarget)
ttiBOOLWinHttpQueryDataAvailable(_In_ HINTERNET hRequest, _Out_ LPDWORD lpdwNumberOfBytesAvailable)
tuiwtttiBOOLWinHttpQueryHeaders(_In_ HINTERNET hRequest, _In_ DWORD dwInfoLevel, _In_opt_ LPCWSTR pwszName, _Out_ LPVOID lpBuffer, _Inout_ LPDWORD lpdwBufferLength, _Inout_ LPDWORD lpdwIndex)
tuittiBOOLWinHttpQueryOption(_In_ HINTERNET hInternet, _In_ DWORD dwOption, _Out_ LPVOID lpBuffer, _Inout_ LPDWORD lpdwBufferLength)
ttuitiBOOLWinHttpReadData(_In_ HINTERNET hRequest, _Out_ LPVOID lpBuffer, _In_ DWORD dwNumberOfBytesToRead, _Out_ LPDWORD lpdwNumberOfBytesRead)
ttiBOOLWinHttpReceiveResponse(_In_ HINTERNET hRequest, _Reserved_ LPVOID lpReserved)
twuituiuiutiBOOLWinHttpSendRequest(_In_ HINTERNET hRequest, _In_opt_ LPCWSTR pwszHeaders, _In_ DWORD dwHeadersLength, _In_opt_ LPVOID lpOptional, _In_ DWORD dwOptionalLength, _In_ DWORD dwTotalLength, _In_ DWORD_PTR dwContext)
tuiuiwwtiBOOLWinHttpSetCredentials(_In_ HINTERNET hRequest, _In_ DWORD AuthTargets, _In_ DWORD AuthScheme, _In_ LPCWSTR pwszUserName, _In_ LPCWSTR pwszPassword, _Reserved_ LPVOID pAuthParams)
tiBOOLWinHttpSetDefaultProxyConfiguration(_In_ WINHTTP_PROXY_INFO *pProxyInfo)
tuituiiBOOLWinHttpSetOption(_In_ HINTERNET hInternet, _In_ DWORD dwOption, _In_ LPVOID lpBuffer, _In_ DWORD dwBufferLength)
ttuiuttWINHTTP_STATUS_WinHttpSetStatusCallback(_In_ HINTERNET hInternet, _In_ WINHTTP_STATUS_CALLBACK lpfnInternetCallback, _In_ DWORD dwNotificationFlags, _Reserved_ DWORD_PTR dwReserved)
tiiiiiBOOLWinHttpSetTimeouts(_In_ HINTERNET hInternet, _In_ int dwResolveTimeout, _In_ int dwConnectTimeout, _In_ int dwSendTimeout, _In_ int dwReceiveTimeout)
twiBOOLWinHttpTimeFromSystemTime(_In_ const SYSTEMTIME *pst, _Out_ LPWSTR pwszTime)
wtiBOOLWinHttpTimeToSystemTime(_In_ LPCWSTR pwszTime, _Out_ SYSTEMTIME *pst)
ttuitiBOOLWinHttpWriteData(_In_ HINTERNET hRequest, _In_ LPCVOID lpBuffer, _In_ DWORD dwNumberOfBytesToWrite, _Out_ LPDWORD lpdwNumberOfBytesWritten)

Wininet.dll

aattuituiaaiBOOLCommitUrlCacheEntryA(_In_ LPCSTR lpszUrlName, _In_ LPCSTR lpszLocalFileName, _In_ FILETIME ExpireTime, _In_ FILETIME LastModifiedTime, _In_ DWORD CacheEntryType, _In_ LPBYTE lpHeaderInfo, _In_ DWORD cchHeaderInfo, _Reserved_ LPCSTR lpszFileExtension, _In_ LPCSTR lpszOriginalUrl)
wwttuiwuiwwiBOOLCommitUrlCacheEntryW(_In_ LPCWSTR lpszUrlName, _In_ LPCWSTR lpszLocalFileName, _In_ FILETIME ExpireTime, _In_ FILETIME LastModifiedTime, _In_ DWORD CacheEntryType, _In_ LPCWSTR lpHeaderInfo, _In_ DWORD cchHeaderInfo, _Reserved_ LPCWSTR lpszFileExtension, _In_ LPCWSTR lpszOriginalUrl)
ttttiBOOLCreateMD5SSOHash(_In_ PWSTR pszChallengeInfo, _In_ PWSTR pwszRealm, _In_ PWSTR pwszTarget, _Out_ PBYTE pbHexHash)
suissuiiBOOLCreateUrlCacheEntry(_In_ LPCTSTR lpszUrlName, _In_ DWORD dwExpectedFileSize, _In_ LPCTSTR lpszFileExtension, _Out_ LPTSTR lpszFileName, _Reserved_ DWORD dwReserved)
auiaauiiBOOLCreateUrlCacheEntryA(_In_ LPCSTR lpszUrlName, _In_ DWORD dwExpectedFileSize, _In_ LPCSTR lpszFileExtension, _Out_ LPSTR lpszFileName, _Reserved_ DWORD dwReserved)
wuiwwuiiBOOLCreateUrlCacheEntryW(_In_ LPCWSTR lpszUrlName, _In_ DWORD dwExpectedFileSize, _In_ LPCWSTR lpszFileExtension, _Out_ LPWSTR lpszFileName, _Reserved_ DWORD dwReserved)
uiti6GROUPIDCreateUrlCacheGroup(_In_ DWORD dwFlags, _Reserved_ LPVOID lpReserved)
siBOOLDeleteUrlCacheEntry(_In_ LPCTSTR lpszUrlName)
aiBOOLDeleteUrlCacheEntryA(_In_ LPCSTR lpszUrlName)
wiBOOLDeleteUrlCacheEntryW(_In_ LPCWSTR lpszUrlName)
i6uitiBOOLDeleteUrlCacheGroup(_In_ GROUPID GroupId, _In_ DWORD dwFlags, _Reserved_ LPVOID lpReserved)
auiuiiBOOLDetectAutoProxyUrl(_Inout_ LPSTR lpszAutoProxyUrl, _In_ DWORD dwAutoProxyUrlLength, _In_ DWORD dwDetectFlags)
tiBOOLFindCloseUrlCache(_In_ HANDLE hEnumHandle)
stttHANDLEFindFirstUrlCacheEntry(_In_ LPCTSTR lpszUrlSearchPattern, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpFirstCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo)
atttHANDLEFindFirstUrlCacheEntryA(_In_ LPCSTR lpszUrlSearchPattern, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpFirstCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo)
suiuii6ttttttHANDLEFindFirstUrlCacheEntryEx(_In_ LPCTSTR lpszUrlSearchPattern, _In_ DWORD dwFlags, _In_ DWORD dwFilter, _In_ GROUPID GroupId, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpFirstCacheEntryInfo, _Inout_ LPDWORD lpdwEntryInfo, _Reserved_ LPVOID lpGroupAttributes, _Reserved_ LPDWORD lpcbGroupAttributes, _Reserved_ LPVOID lpReserved)
auiuii6ttttttHANDLEFindFirstUrlCacheEntryExA(_In_ LPCSTR lpszUrlSearchPattern, _In_ DWORD dwFlags, _In_ DWORD dwFilter, _In_ GROUPID GroupId, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpFirstCacheEntryInfo, _Inout_ LPDWORD lpdwEntryInfo, _Reserved_ LPVOID lpGroupAttributes, _Reserved_ LPDWORD lpcbGroupAttributes, _Reserved_ LPVOID lpReserved)
wuiuii6ttttttHANDLEFindFirstUrlCacheEntryExW(_In_ LPCWSTR lpszUrlSearchPattern, _In_ DWORD dwFlags, _In_ DWORD dwFilter, _In_ GROUPID GroupId, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpFirstCacheEntryInfo, _Inout_ LPDWORD lpdwEntryInfo, _Reserved_ LPVOID lpGroupAttributes, _Reserved_ LPDWORD lpcbGroupAttributes, _Reserved_ LPVOID lpReserved)
wtttHANDLEFindFirstUrlCacheEntryW(_In_ LPCWSTR lpszUrlSearchPattern, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpFirstCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo)
uiuituitttHANDLEFindFirstUrlCacheGroup(_Reserved_ DWORD dwFlags, _In_ DWORD dwFilter, _Reserved_ LPVOID lpSearchCondition, _Reserved_ DWORD dwSearchCondition, _Out_ GROUPID *lpGroupId, _Reserved_ LPVOID lpReserved)
tttiBOOLFindNextUrlCacheEntry(_In_ HANDLE hEnumHandle, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpNextCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo)
tttiBOOLFindNextUrlCacheEntryA(_In_ HANDLE hEnumHandle, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpNextCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo)
ttttttiBOOLFindNextUrlCacheEntryEx(_In_ HANDLE hEnumHandle, _Inout_ LPINTERNET_CACHE_ENTRY_INFO lpNextCacheEntryInfo, _Inout_ LPDWORD lpcbEntryInfo, _Reserved_ LPVOID lpGroupAttributes, _Reserved_ LPDWORD lpcbGroupAttributes, _Reserved_ LPVOID lpReserved)
ttttttiBOOLFindNextUrlCacheEntryExA(_In_ HANDLE hEnumHandle, _Inout_ LPINTERNET_CACHE_ENTRY_INFO lpNextCacheEntryInfo, _Inout_ LPDWORD lpcbEntryInfo, _Reserved_ LPVOID lpGroupAttributes, _Reserved_ LPDWORD lpcbGroupAttributes, _Reserved_ LPVOID lpReserved)
ttttttiBOOLFindNextUrlCacheEntryExW(_In_ HANDLE hEnumHandle, _Inout_ LPINTERNET_CACHE_ENTRY_INFO lpNextCacheEntryInfo, _Inout_ LPDWORD lpcbEntryInfo, _Reserved_ LPVOID lpGroupAttributes, _Reserved_ LPDWORD lpcbGroupAttributes, _Reserved_ LPVOID lpReserved)
tttiBOOLFindNextUrlCacheEntryW(_In_ HANDLE hEnumHandle, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpNextCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo)
tttiBOOLFindNextUrlCacheGroup(_In_ HANDLE hFind, _Out_ GROUPID *lpGroupId, _Reserved_ LPVOID lpReserved)
tiuisuttiBOOLFtpCommand(_In_ HINTERNET hConnect, _In_ BOOL fExpectResponse, _In_ DWORD dwFlags, _In_ LPCTSTR lpszCommand, _In_ DWORD_PTR dwContext, _Out_ HINTERNET *phFtpCommand)
tiuiauttiBOOLFtpCommandA(_In_ HINTERNET hConnect, _In_ BOOL fExpectResponse, _In_ DWORD dwFlags, _In_ LPCSTR lpszCommand, _In_ DWORD_PTR dwContext, _Out_ HINTERNET *phFtpCommand)
tiuiwuttiBOOLFtpCommandW(_In_ HINTERNET hConnect, _In_ BOOL fExpectResponse, _In_ DWORD dwFlags, _In_ LPCWSTR lpszCommand, _In_ DWORD_PTR dwContext, _Out_ HINTERNET *phFtpCommand)
tsiBOOLFtpCreateDirectory(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszDirectory)
taiBOOLFtpCreateDirectoryA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszDirectory)
twiBOOLFtpCreateDirectoryW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszDirectory)
tsiBOOLFtpDeleteFile(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszFileName)
taiBOOLFtpDeleteFileA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszFileName)
twiBOOLFtpDeleteFileW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszFileName)
tstuiuttHINTERNETFtpFindFirstFile(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszSearchFile, _Out_ LPWIN32_FIND_DATA lpFindFileData, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tatuiuttHINTERNETFtpFindFirstFileA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszSearchFile, _Out_ LPWIN32_FIND_DATA lpFindFileData, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
twtuiuttHINTERNETFtpFindFirstFileW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszSearchFile, _Out_ LPWIN32_FIND_DATA lpFindFileData, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tstiBOOLFtpGetCurrentDirectory(_In_ HINTERNET hConnect, _Out_ LPTSTR lpszCurrentDirectory, _Inout_ LPDWORD lpdwCurrentDirectory)
tatiBOOLFtpGetCurrentDirectoryA(_In_ HINTERNET hConnect, _Out_ LPSTR lpszCurrentDirectory, _Inout_ LPDWORD lpdwCurrentDirectory)
twtiBOOLFtpGetCurrentDirectoryW(_In_ HINTERNET hConnect, _Out_ LPWSTR lpszCurrentDirectory, _Inout_ LPDWORD lpdwCurrentDirectory)
tssiuiuiutiBOOLFtpGetFile(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszRemoteFile, _In_ LPCTSTR lpszNewFile, _In_ BOOL fFailIfExists, _In_ DWORD dwFlagsAndAttributes, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
taaiuiuiutiBOOLFtpGetFileA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszRemoteFile, _In_ LPCSTR lpszNewFile, _In_ BOOL fFailIfExists, _In_ DWORD dwFlagsAndAttributes, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
ttuiDWORDFtpGetFileSize(_In_ HINTERNET hFile, _Out_ LPDWORD lpdwFileSizeHigh)
twwiuiuiutiBOOLFtpGetFileW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszRemoteFile, _In_ LPCWSTR lpszNewFile, _In_ BOOL fFailIfExists, _In_ DWORD dwFlagsAndAttributes, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tsuiuiuttHINTERNETFtpOpenFile(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszFileName, _In_ DWORD dwAccess, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tauiuiuttHINTERNETFtpOpenFileA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszFileName, _In_ DWORD dwAccess, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
twuiuiuttHINTERNETFtpOpenFileW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszFileName, _In_ DWORD dwAccess, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tssuiutiBOOLFtpPutFile(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszLocalFile, _In_ LPCTSTR lpszNewRemoteFile, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
taauiutiBOOLFtpPutFileA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszLocalFile, _In_ LPCSTR lpszNewRemoteFile, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
twwuiutiBOOLFtpPutFileW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszLocalFile, _In_ LPCWSTR lpszNewRemoteFile, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tsiBOOLFtpRemoveDirectory(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszDirectory)
taiBOOLFtpRemoveDirectoryA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszDirectory)
twiBOOLFtpRemoveDirectoryW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszDirectory)
tssiBOOLFtpRenameFile(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszExisting, _In_ LPCTSTR lpszNew)
taaiBOOLFtpRenameFileA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszExisting, _In_ LPCSTR lpszNew)
twwiBOOLFtpRenameFileW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszExisting, _In_ LPCWSTR lpszNew)
tsiBOOLFtpSetCurrentDirectory(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszDirectory)
taiBOOLFtpSetCurrentDirectoryA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszDirectory)
twiBOOLFtpSetCurrentDirectoryW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszDirectory)
ttuiiBOOLGetUrlCacheConfigInfo(_Inout_ LPINTERNET_CACHE_CONFIG_INFO lpCacheConfigInfo, _Reserved_ LPDWORD lpcbCacheConfigInfo, _In_ DWORD dwFieldControl)
ttuiiBOOLGetUrlCacheConfigInfoA(_Inout_ LPINTERNET_CACHE_CONFIG_INFO lpCacheConfigInfo, _Reserved_ LPDWORD lpcbCacheConfigInfo, _In_ DWORD dwFieldControl)
ttuiiBOOLGetUrlCacheConfigInfoW(_Inout_ LPINTERNET_CACHE_CONFIG_INFO lpCacheConfigInfo, _Reserved_ LPDWORD lpcbCacheConfigInfo, _In_ DWORD dwFieldControl)
sttiBOOLGetUrlCacheEntryInfo(_In_ LPCTSTR lpszUrlName, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo)
attiBOOLGetUrlCacheEntryInfoA(_In_ LPCSTR lpszUrlName, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo)
sttsttuiiBOOLGetUrlCacheEntryInfoEx(_In_ LPCTSTR lpszUrl, _Inout_opt_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_opt_ LPDWORD lpcbCacheEntryInfo, _Reserved_ LPTSTR lpszRedirectUrl, _Reserved_ LPDWORD lpcbRedirectUrl, _Reserved_ LPVOID lpReserved, _In_ DWORD dwFlags)
attattuiiBOOLGetUrlCacheEntryInfoExA(_In_ LPCSTR lpszUrl, _Inout_opt_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_opt_ LPDWORD lpcbCacheEntryInfo, _Reserved_ LPSTR lpszRedirectUrl, _Reserved_ LPDWORD lpcbRedirectUrl, _Reserved_ LPVOID lpReserved, _In_ DWORD dwFlags)
wttwttuiiBOOLGetUrlCacheEntryInfoExW(_In_ LPCWSTR lpszUrl, _Inout_opt_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_opt_ LPDWORD lpcbCacheEntryInfo, _Reserved_ LPWSTR lpszRedirectUrl, _Reserved_ LPDWORD lpcbRedirectUrl, _Reserved_ LPVOID lpReserved, _In_ DWORD dwFlags)
wttiBOOLGetUrlCacheEntryInfoW(_In_ LPCWSTR lpszUrlName, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo)
i6uiuitttiBOOLGetUrlCacheGroupAttribute(_In_ GROUPID gid, _Reserved_ DWORD dwFlags, _In_ DWORD dwAttributes, _Out_ LPINTERNET_CACHE_GROUP_INFO lpGroupInfo, _Inout_ LPDWORD lpdwGroupInfo, _Reserved_ LPVOID lpReserved)
i6uiuitttiBOOLGetUrlCacheGroupAttributeA(_In_ GROUPID gid, _Reserved_ DWORD dwFlags, _In_ DWORD dwAttributes, _Out_ LPINTERNET_CACHE_GROUP_INFO lpGroupInfo, _Inout_ LPDWORD lpdwGroupInfo, _Reserved_ LPVOID lpReserved)
i6uiuitttiBOOLGetUrlCacheGroupAttributeW(_In_ GROUPID gid, _Reserved_ DWORD dwFlags, _In_ DWORD dwAttributes, _Out_ LPINTERNET_CACHE_GROUP_INFO lpGroupInfo, _Inout_ LPDWORD lpdwGroupInfo, _Reserved_ LPVOID lpReserved)
suhssuistiBOOLGopherCreateLocator(_In_ LPCTSTR lpszHost, _In_ INTERNET_PORT nServerPort, _In_ LPCTSTR lpszDisplayString, _In_ LPCTSTR lpszSelectorString, _In_ DWORD dwGopherType, _Out_ LPTSTR lpszLocator, _Inout_ LPDWORD lpdwBufferLength)
auhaauiatiBOOLGopherCreateLocatorA(_In_ LPCSTR lpszHost, _In_ INTERNET_PORT nServerPort, _In_ LPCSTR lpszDisplayString, _In_ LPCSTR lpszSelectorString, _In_ DWORD dwGopherType, _Out_ LPSTR lpszLocator, _Inout_ LPDWORD lpdwBufferLength)
wuhwwuiwtiBOOLGopherCreateLocatorW(_In_ LPCWSTR lpszHost, _In_ INTERNET_PORT nServerPort, _In_ LPCWSTR lpszDisplayString, _In_ LPCWSTR lpszSelectorString, _In_ DWORD dwGopherType, _Out_ LPWSTR lpszLocator, _Inout_ LPDWORD lpdwBufferLength)
tsstuiuttHINTERNETGopherFindFirstFile(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszLocator, _In_ LPCTSTR lpszSearchString, _Out_ LPGOPHER_FIND_DATA lpFindData, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
taatuiuttHINTERNETGopherFindFirstFileA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszLocator, _In_ LPCSTR lpszSearchString, _Out_ LPGOPHER_FIND_DATA lpFindData, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
twwtuiuttHINTERNETGopherFindFirstFileW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszLocator, _In_ LPCWSTR lpszSearchString, _Out_ LPGOPHER_FIND_DATA lpFindData, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tsstuitiutiBOOLGopherGetAttribute(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszLocator, _In_ LPCTSTR lpszAttributeName, _Out_ LPBYTE lpBuffer, _In_ DWORD dwBufferLength, _Out_ LPDWORD lpdwCharactersReturned, _In_ GOPHER_ATTRIBUTE_ENUMERATOR lpfnEnumerator, _In_ DWORD_PTR dwContext)
taatuitiutiBOOLGopherGetAttributeA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszLocator, _In_ LPCSTR lpszAttributeName, _Out_ LPBYTE lpBuffer, _In_ DWORD dwBufferLength, _Out_ LPDWORD lpdwCharactersReturned, _In_ GOPHER_ATTRIBUTE_ENUMERATOR lpfnEnumerator, _In_ DWORD_PTR dwContext)
twwtuitiutiBOOLGopherGetAttributeW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszLocator, _In_ LPCWSTR lpszAttributeName, _Out_ LPBYTE lpBuffer, _In_ DWORD dwBufferLength, _Out_ LPDWORD lpdwCharactersReturned, _In_ GOPHER_ATTRIBUTE_ENUMERATOR lpfnEnumerator, _In_ DWORD_PTR dwContext)
stiBOOLGopherGetLocatorType(_In_ LPCTSTR lpszLocator, _Out_ LPDWORD lpdwGopherType)
atiBOOLGopherGetLocatorTypeA(_In_ LPCSTR lpszLocator, _Out_ LPDWORD lpdwGopherType)
wtiBOOLGopherGetLocatorTypeW(_In_ LPCWSTR lpszLocator, _Out_ LPDWORD lpdwGopherType)
tssuiuttHINTERNETGopherOpenFile(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszLocator, _In_ LPCTSTR lpszView, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
taauiuttHINTERNETGopherOpenFileA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszLocator, _In_ LPCSTR lpszView, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
twwuiuttHINTERNETGopherOpenFileW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszLocator, _In_ LPCWSTR lpszView, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tsuiuiiBOOLHttpAddRequestHeaders(_In_ HINTERNET hRequest, _In_ LPCTSTR lpszHeaders, _In_ DWORD dwHeadersLength, _In_ DWORD dwModifiers)
tauiuiiBOOLHttpAddRequestHeadersA(_In_ HINTERNET hRequest, _In_ LPCSTR lpszHeaders, _In_ DWORD dwHeadersLength, _In_ DWORD dwModifiers)
twuiuiiBOOLHttpAddRequestHeadersW(_In_ HINTERNET hRequest, _In_ LPCWSTR lpszHeaders, _In_ DWORD dwHeadersLength, _In_ DWORD dwModifiers)
ttuiutiBOOLHttpEndRequest(_In_ HINTERNET hRequest, _Out_opt_ LPINTERNET_BUFFERS lpBuffersOut, _In_ DWORD dwFlags, _In_opt_ DWORD_PTR dwContext)
ttuiutiBOOLHttpEndRequestA(_In_ HINTERNET hRequest, _Out_opt_ LPINTERNET_BUFFERS lpBuffersOut, _In_ DWORD dwFlags, _In_opt_ DWORD_PTR dwContext)
ttuiutiBOOLHttpEndRequestW(_In_ HINTERNET hRequest, _Out_opt_ LPINTERNET_BUFFERS lpBuffersOut, _In_ DWORD dwFlags, _In_opt_ DWORD_PTR dwContext)
tsssssuiuttHINTERNETHttpOpenRequest(_In_ HINTERNET hConnect, _In_ LPCTSTR lpszVerb, _In_ LPCTSTR lpszObjectName, _In_ LPCTSTR lpszVersion, _In_ LPCTSTR lpszReferer, _In_ LPCTSTR *lplpszAcceptTypes, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
taaaaauiuttHINTERNETHttpOpenRequestA(_In_ HINTERNET hConnect, _In_ LPCSTR lpszVerb, _In_ LPCSTR lpszObjectName, _In_ LPCSTR lpszVersion, _In_ LPCSTR lpszReferer, _In_ LPCSTR *lplpszAcceptTypes, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
twwwwwuiuttHINTERNETHttpOpenRequestW(_In_ HINTERNET hConnect, _In_ LPCWSTR lpszVerb, _In_ LPCWSTR lpszObjectName, _In_ LPCWSTR lpszVersion, _In_ LPCWSTR lpszReferer, _In_ LPCWSTR *lplpszAcceptTypes, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tuitttiBOOLHttpQueryInfo(_In_ HINTERNET hRequest, _In_ DWORD dwInfoLevel, _Inout_ LPVOID lpvBuffer, _Inout_ LPDWORD lpdwBufferLength, _Inout_ LPDWORD lpdwIndex)
tuitttiBOOLHttpQueryInfoA(_In_ HINTERNET hRequest, _In_ DWORD dwInfoLevel, _Inout_ LPVOID lpvBuffer, _Inout_ LPDWORD lpdwBufferLength, _Inout_ LPDWORD lpdwIndex)
tuitttiBOOLHttpQueryInfoW(_In_ HINTERNET hRequest, _In_ DWORD dwInfoLevel, _Inout_ LPVOID lpvBuffer, _Inout_ LPDWORD lpdwBufferLength, _Inout_ LPDWORD lpdwIndex)
tsuituiiBOOLHttpSendRequest(_In_ HINTERNET hRequest, _In_ LPCTSTR lpszHeaders, _In_ DWORD dwHeadersLength, _In_ LPVOID lpOptional, _In_ DWORD dwOptionalLength)
tauituiiBOOLHttpSendRequestA(_In_ HINTERNET hRequest, _In_ LPCSTR lpszHeaders, _In_ DWORD dwHeadersLength, _In_ LPVOID lpOptional, _In_ DWORD dwOptionalLength)
tttuiutiBOOLHttpSendRequestEx(_In_ HINTERNET hRequest, _In_ LPINTERNET_BUFFERS lpBuffersIn, _Out_ LPINTERNET_BUFFERS lpBuffersOut, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tttuiutiBOOLHttpSendRequestExA(_In_ HINTERNET hRequest, _In_ LPINTERNET_BUFFERS lpBuffersIn, _Out_ LPINTERNET_BUFFERS lpBuffersOut, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tttuiutiBOOLHttpSendRequestExW(_In_ HINTERNET hRequest, _In_ LPINTERNET_BUFFERS lpBuffersIn, _Out_ LPINTERNET_BUFFERS lpBuffersOut, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
twuituiiBOOLHttpSendRequestW(_In_ HINTERNET hRequest, _In_ LPCWSTR lpszHeaders, _In_ DWORD dwHeadersLength, _In_ LPVOID lpOptional, _In_ DWORD dwOptionalLength)
uiuiDWORDInternetAttemptConnect(_In_ DWORD dwReserved)
uitiBOOLInternetAutodial(_In_ DWORD dwFlags, _In_ HWND hwndParent)
uiiBOOLInternetAutodialHangup(_In_ DWORD dwReserved)
sstuiiBOOLInternetCanonicalizeUrl(_In_ LPCTSTR lpszUrl, _Out_ LPTSTR lpszBuffer, _Inout_ LPDWORD lpdwBufferLength, _In_ DWORD dwFlags)
aatuiiBOOLInternetCanonicalizeUrlA(_In_ LPCSTR lpszUrl, _Out_ LPSTR lpszBuffer, _Inout_ LPDWORD lpdwBufferLength, _In_ DWORD dwFlags)
wwtuiiBOOLInternetCanonicalizeUrlW(_In_ LPCWSTR lpszUrl, _Out_ LPWSTR lpszBuffer, _Inout_ LPDWORD lpdwBufferLength, _In_ DWORD dwFlags)
suiuiiBOOLInternetCheckConnection(_In_ LPCTSTR lpszUrl, _In_ DWORD dwFlags, _In_ DWORD dwReserved)
auiuiiBOOLInternetCheckConnectionA(_In_ LPCSTR lpszUrl, _In_ DWORD dwFlags, _In_ DWORD dwReserved)
wuiuiiBOOLInternetCheckConnectionW(_In_ LPCWSTR lpszUrl, _In_ DWORD dwFlags, _In_ DWORD dwReserved)
iBOOLInternetClearAllPerSiteCookieDecisions(void)
tiBOOLInternetCloseHandle(_In_ HINTERNET hInternet)
ssstuiiBOOLInternetCombineUrl(_In_ LPCTSTR lpszBaseUrl, _In_ LPCTSTR lpszRelativeUrl, _Out_ LPTSTR lpszBuffer, _Inout_ LPDWORD lpdwBufferLength, _In_ DWORD dwFlags)
aaatuiiBOOLInternetCombineUrlA(_In_ LPCSTR lpszBaseUrl, _In_ LPCSTR lpszRelativeUrl, _Out_ LPSTR lpszBuffer, _Inout_ LPDWORD lpdwBufferLength, _In_ DWORD dwFlags)
wwwtuiiBOOLInternetCombineUrlW(_In_ LPCWSTR lpszBaseUrl, _In_ LPCWSTR lpszRelativeUrl, _Out_ LPWSTR lpszBuffer, _Inout_ LPDWORD lpdwBufferLength, _In_ DWORD dwFlags)
tssiuiDWORDInternetConfirmZoneCrossing(_In_ HWND hWnd, _In_ LPTSTR szUrlPrev, _In_ LPTSTR szUrlNew, _In_ BOOL bPost)
taaiuiDWORDInternetConfirmZoneCrossingA(_In_ HWND hWnd, _In_ LPSTR szUrlPrev, _In_ LPSTR szUrlNew, _In_ BOOL bPost)
twwiuiDWORDInternetConfirmZoneCrossingW(_In_ HWND hWnd, _In_ LPWSTR szUrlPrev, _In_ LPWSTR szUrlNew, _In_ BOOL bPost)
tsuhssuiuiuttHINTERNETInternetConnect(_In_ HINTERNET hInternet, _In_ LPCTSTR lpszServerName, _In_ INTERNET_PORT nServerPort, _In_ LPCTSTR lpszUsername, _In_ LPCTSTR lpszPassword, _In_ DWORD dwService, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tauhaauiuiuttHINTERNETInternetConnectA(_In_ HINTERNET hInternet, _In_ LPCSTR lpszServerName, _In_ INTERNET_PORT nServerPort, _In_ LPCSTR lpszUsername, _In_ LPCSTR lpszPassword, _In_ DWORD dwService, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
twuhwwuiuiuttHINTERNETInternetConnectW(_In_ HINTERNET hInternet, _In_ LPCWSTR lpszServerName, _In_ INTERNET_PORT nServerPort, _In_ LPCWSTR lpszUsername, _In_ LPCWSTR lpszPassword, _In_ DWORD dwService, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
suiuitiBOOLInternetCrackUrl(_In_ LPCTSTR lpszUrl, _In_ DWORD dwUrlLength, _In_ DWORD dwFlags, _Inout_ LPURL_COMPONENTS lpUrlComponents)
auiuitiBOOLInternetCrackUrlA(_In_ LPCSTR lpszUrl, _In_ DWORD dwUrlLength, _In_ DWORD dwFlags, _Inout_ LPURL_COMPONENTS lpUrlComponents)
wuiuitiBOOLInternetCrackUrlW(_In_ LPCWSTR lpszUrl, _In_ DWORD dwUrlLength, _In_ DWORD dwFlags, _Inout_ LPURL_COMPONENTS lpUrlComponents)
tuistiBOOLInternetCreateUrl(_In_ LPURL_COMPONENTS lpUrlComponents, _In_ DWORD dwFlags, _Out_ LPTSTR lpszUrl, _Inout_ LPDWORD lpdwUrlLength)
tuiatiBOOLInternetCreateUrlA(_In_ LPURL_COMPONENTS lpUrlComponents, _In_ DWORD dwFlags, _Out_ LPSTR lpszUrl, _Inout_ LPDWORD lpdwUrlLength)
tuiwtiBOOLInternetCreateUrlW(_In_ LPURL_COMPONENTS lpUrlComponents, _In_ DWORD dwFlags, _Out_ LPWSTR lpszUrl, _Inout_ LPDWORD lpdwUrlLength)
tsuiutuiuiDWORDInternetDial(_In_ HWND hwndParent, _In_ LPTSTR pszEntryName, _In_ DWORD dwFlags, _Out_ DWORD_PTR *lpdwConnection, _In_ DWORD dwReserved)
tauiutuiuiDWORDInternetDialA(_In_ HWND hwndParent, _In_ LPSTR pszEntryName, _In_ DWORD dwFlags, _Out_ DWORD_PTR *lpdwConnection, _In_ DWORD dwReserved)
twuiutuiuiDWORDInternetDialW(_In_ HWND hwndParent, _In_ LPWSTR pszEntryName, _In_ DWORD dwFlags, _Out_ DWORD_PTR *lpdwConnection, _In_ DWORD dwReserved)
sttuiiBOOLInternetEnumPerSiteCookieDecision(_Out_ LPTSTR pszSiteName, _Inout_ unsigned long *pcSiteNameSize, _Out_ unsigned long *pdwDecision, _In_ unsigned long dwIndex)
attuiiBOOLInternetEnumPerSiteCookieDecisionA(_Out_ LPSTR pszSiteName, _Inout_ unsigned long *pcSiteNameSize, _Out_ unsigned long *pdwDecision, _In_ unsigned long dwIndex)
wttuiiBOOLInternetEnumPerSiteCookieDecisionW(_Out_ LPWSTR pszSiteName, _Inout_ unsigned long *pcSiteNameSize, _Out_ unsigned long *pdwDecision, _In_ unsigned long dwIndex)
ttuiuituiDWORDInternetErrorDlg(_In_ HWND hWnd, _Inout_ HINTERNET hRequest, _In_ DWORD dwError, _In_ DWORD dwFlags, _Inout_ LPVOID *lppvData)
ttiBOOLInternetFindNextFile(_In_ HINTERNET hFind, _Out_ LPVOID lpvFindData)
ttiBOOLInternetFindNextFileA(_In_ HINTERNET hFind, _Out_ LPVOID lpvFindData)
ttiBOOLInternetFindNextFileW(_In_ HINTERNET hFind, _Out_ LPVOID lpvFindData)
tuiiBOOLInternetGetConnectedState(_Out_ LPDWORD lpdwFlags, _In_ DWORD dwReserved)
tsuiuiiBOOLInternetGetConnectedStateEx(_Out_ LPDWORD lpdwFlags, _Out_ LPTSTR lpszConnectionName, _In_ DWORD dwNameLen, _In_ DWORD dwReserved)
tauiuiiBOOLInternetGetConnectedStateExA(_Out_ LPDWORD lpdwFlags, _Out_ LPSTR lpszConnectionName, _In_ DWORD dwNameLen, _In_ DWORD dwReserved)
twuiuiiBOOLInternetGetConnectedStateExW(_Out_ LPDWORD lpdwFlags, _Out_ LPWSTR lpszConnectionName, _In_ DWORD dwNameLen, _In_ DWORD dwReserved)
ssstiBOOLInternetGetCookie(_In_ LPCTSTR lpszUrl, _In_ LPCTSTR lpszCookieName, _Out_ LPTSTR lpszCookieData, _Inout_ LPDWORD lpdwSize)
aaatiBOOLInternetGetCookieA(_In_ LPCSTR lpszUrl, _In_ LPCSTR lpszCookieName, _Out_ LPSTR lpszCookieData, _Inout_ LPDWORD lpdwSize)
ssstuitiBOOLInternetGetCookieEx(_In_ LPCTSTR lpszURL, _In_ LPCTSTR lpszCookieName, _Inout_opt_ LPTSTR lpszCookieData, _Inout_ LPDWORD lpdwSize, _In_ DWORD dwFlags, _In_ LPVOID lpReserved)
aaatuitiBOOLInternetGetCookieExA(_In_ LPCSTR lpszURL, _In_ LPCSTR lpszCookieName, _Inout_opt_ LPSTR lpszCookieData, _Inout_ LPDWORD lpdwSize, _In_ DWORD dwFlags, _In_ LPVOID lpReserved)
wwwtuitiBOOLInternetGetCookieExW(_In_ LPCWSTR lpszURL, _In_ LPCWSTR lpszCookieName, _Inout_opt_ LPWSTR lpszCookieData, _Inout_ LPDWORD lpdwSize, _In_ DWORD dwFlags, _In_ LPVOID lpReserved)
wwwtiBOOLInternetGetCookieW(_In_ LPCWSTR lpszUrl, _In_ LPCWSTR lpszCookieName, _Out_ LPWSTR lpszCookieData, _Inout_ LPDWORD lpdwSize)
tstiBOOLInternetGetLastResponseInfo(_Out_ LPDWORD lpdwError, _Out_ LPTSTR lpszBuffer, _Inout_ LPDWORD lpdwBufferLength)
tatiBOOLInternetGetLastResponseInfoA(_Out_ LPDWORD lpdwError, _Out_ LPSTR lpszBuffer, _Inout_ LPDWORD lpdwBufferLength)
twtiBOOLInternetGetLastResponseInfoW(_Out_ LPDWORD lpdwError, _Out_ LPWSTR lpszBuffer, _Inout_ LPDWORD lpdwBufferLength)
stiBOOLInternetGetPerSiteCookieDecision(_In_ LPCTSTR pchHostName, _Out_ unsigned long *pResult)
atiBOOLInternetGetPerSiteCookieDecisionA(_In_ LPCSTR pchHostName, _Out_ unsigned long *pResult)
wtiBOOLInternetGetPerSiteCookieDecisionW(_In_ LPCWSTR pchHostName, _Out_ unsigned long *pResult)
stuiiBOOLInternetGoOnline(_In_ LPTSTR lpszURL, _In_ HWND hwndParent, _In_ DWORD dwFlags)
atuiiBOOLInternetGoOnlineA(_In_ LPSTR lpszURL, _In_ HWND hwndParent, _In_ DWORD dwFlags)
wtuiiBOOLInternetGoOnlineW(_In_ LPWSTR lpszURL, _In_ HWND hwndParent, _In_ DWORD dwFlags)
utuiuiDWORDInternetHangUp(_In_ DWORD_PTR dwConnection, _In_ DWORD dwReserved)
ttiBOOLInternetLockRequestFile(_In_ HINTERNET hInternet, _Out_ HANDLE *lphLockReqHandle)
suissuitHINTERNETInternetOpen(_In_ LPCTSTR lpszAgent, _In_ DWORD dwAccessType, _In_ LPCTSTR lpszProxyName, _In_ LPCTSTR lpszProxyBypass, _In_ DWORD dwFlags)
auiaauitHINTERNETInternetOpenA(_In_ LPCSTR lpszAgent, _In_ DWORD dwAccessType, _In_ LPCSTR lpszProxyName, _In_ LPCSTR lpszProxyBypass, _In_ DWORD dwFlags)
tssuiuiuttHINTERNETInternetOpenUrl(_In_ HINTERNET hInternet, _In_ LPCTSTR lpszUrl, _In_ LPCTSTR lpszHeaders, _In_ DWORD dwHeadersLength, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
taauiuiuttHINTERNETInternetOpenUrlA(_In_ HINTERNET hInternet, _In_ LPCSTR lpszUrl, _In_ LPCSTR lpszHeaders, _In_ DWORD dwHeadersLength, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
twwuiuiuttHINTERNETInternetOpenUrlW(_In_ HINTERNET hInternet, _In_ LPCWSTR lpszUrl, _In_ LPCWSTR lpszHeaders, _In_ DWORD dwHeadersLength, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
wuiwwuitHINTERNETInternetOpenW(_In_ LPCWSTR lpszAgent, _In_ DWORD dwAccessType, _In_ LPCWSTR lpszProxyName, _In_ LPCWSTR lpszProxyBypass, _In_ DWORD dwFlags)
ttuiutiBOOLInternetQueryDataAvailable(_In_ HINTERNET hFile, _Out_ LPDWORD lpdwNumberOfBytesAvailable, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
tuittiBOOLInternetQueryOption(_In_ HINTERNET hInternet, _In_ DWORD dwOption, _Out_ LPVOID lpBuffer, _Inout_ LPDWORD lpdwBufferLength)
tuittiBOOLInternetQueryOptionA(_In_ HINTERNET hInternet, _In_ DWORD dwOption, _Out_ LPVOID lpBuffer, _Inout_ LPDWORD lpdwBufferLength)
tuittiBOOLInternetQueryOptionW(_In_ HINTERNET hInternet, _In_ DWORD dwOption, _Out_ LPVOID lpBuffer, _Inout_ LPDWORD lpdwBufferLength)
ttuitiBOOLInternetReadFile(_In_ HINTERNET hFile, _Out_ LPVOID lpBuffer, _In_ DWORD dwNumberOfBytesToRead, _Out_ LPDWORD lpdwNumberOfBytesRead)
ttuiutiBOOLInternetReadFileEx(_In_ HINTERNET hFile, _Out_ LPINTERNET_BUFFERS lpBuffersOut, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
ttuiutiBOOLInternetReadFileExA(_In_ HINTERNET hFile, _Out_ LPINTERNET_BUFFERS lpBuffersOut, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
ttuiutiBOOLInternetReadFileExW(_In_ HINTERNET hFile, _Out_ LPINTERNET_BUFFERS lpBuffersOut, _In_ DWORD dwFlags, _In_ DWORD_PTR dwContext)
sssiBOOLInternetSetCookie(_In_ LPCTSTR lpszUrl, _In_ LPCTSTR lpszCookieName, _In_ LPCTSTR lpszCookieData)
aaaiBOOLInternetSetCookieA(_In_ LPCSTR lpszUrl, _In_ LPCSTR lpszCookieName, _In_ LPCSTR lpszCookieData)
sssuiutuiDWORDInternetSetCookieEx(_In_ LPCTSTR lpszURL, _In_ LPCTSTR lpszCookieName, _In_ LPCTSTR lpszCookieData, _In_ DWORD dwFlags, _In_ DWORD_PTR dwReserved)
aaauiutuiDWORDInternetSetCookieExA(_In_ LPCSTR lpszURL, _In_ LPCSTR lpszCookieName, _In_ LPCSTR lpszCookieData, _In_ DWORD dwFlags, _In_ DWORD_PTR dwReserved)
wwwuiutuiDWORDInternetSetCookieExW(_In_ LPCWSTR lpszURL, _In_ LPCWSTR lpszCookieName, _In_ LPCWSTR lpszCookieData, _In_ DWORD dwFlags, _In_ DWORD_PTR dwReserved)
wwwiBOOLInternetSetCookieW(_In_ LPCWSTR lpszUrl, _In_ LPCWSTR lpszCookieName, _In_ LPCWSTR lpszCookieData)
tituiutuiDWORDInternetSetFilePointer(_In_ HINTERNET hFile, _In_ LONG lDistanceToMove, _Inout_ PLONG lpDistanceToMoveHigh, _In_ DWORD dwMoveMethod, _In_ DWORD_PTR dwContext)
tuituiiBOOLInternetSetOption(_In_ HINTERNET hInternet, _In_ DWORD dwOption, _In_ LPVOID lpBuffer, _In_ DWORD dwBufferLength)
tuituiiBOOLInternetSetOptionA(_In_ HINTERNET hInternet, _In_ DWORD dwOption, _In_ LPVOID lpBuffer, _In_ DWORD dwBufferLength)
tuituiiBOOLInternetSetOptionW(_In_ HINTERNET hInternet, _In_ DWORD dwOption, _In_ LPVOID lpBuffer, _In_ DWORD dwBufferLength)
suiiBOOLInternetSetPerSiteCookieDecision(_In_ LPCTSTR pchHostName, _In_ DWORD dwDecision)
auiiBOOLInternetSetPerSiteCookieDecisionA(_In_ LPCSTR pchHostName, _In_ DWORD dwDecision)
wuiiBOOLInternetSetPerSiteCookieDecisionW(_In_ LPCWSTR pchHostName, _In_ DWORD dwDecision)
tttINTERNET_STATUS_InternetSetStatusCallback(_In_ HINTERNET hInternet, _In_ INTERNET_STATUS_CALLBACK lpfnInternetCallback)
tttINTERNET_STATUS_InternetSetStatusCallbackA(_In_ HINTERNET hInternet, _In_ INTERNET_STATUS_CALLBACK lpfnInternetCallback)
tttINTERNET_STATUS_InternetSetStatusCallbackW(_In_ HINTERNET hInternet, _In_ INTERNET_STATUS_CALLBACK lpfnInternetCallback)
tuisuiiBOOLInternetTimeFromSystemTime(_In_ const SYSTEMTIME *pst, _In_ DWORD dwRFC, _Out_ LPTSTR lpszTime, _In_ DWORD cbTime)
tuiauiiBOOLInternetTimeFromSystemTimeA(_In_ const SYSTEMTIME *pst, _In_ DWORD dwRFC, _Out_ LPSTR lpszTime, _In_ DWORD cbTime)
tuiwuiiBOOLInternetTimeFromSystemTimeW(_In_ const SYSTEMTIME *pst, _In_ DWORD dwRFC, _Out_ LPWSTR lpszTime, _In_ DWORD cbTime)
stuiiBOOLInternetTimeToSystemTime(_In_ LPCTSTR lpszTime, _Out_ SYSTEMTIME *pst, _In_ DWORD dwReserved)
atuiiBOOLInternetTimeToSystemTimeA(_In_ LPCSTR lpszTime, _Out_ SYSTEMTIME *pst, _In_ DWORD dwReserved)
wtuiiBOOLInternetTimeToSystemTimeW(_In_ LPCWSTR lpszTime, _Out_ SYSTEMTIME *pst, _In_ DWORD dwReserved)
tiBOOLInternetUnlockRequestFile(_In_ HANDLE hLockRequestInfo)
ttuitiBOOLInternetWriteFile(_In_ HINTERNET hFile, _In_ LPCVOID lpBuffer, _In_ DWORD dwNumberOfBytesToWrite, _Out_ LPDWORD lpdwNumberOfBytesWritten)
uiuitttuiDWORDPrivacyGetZonePreferenceW(_In_ DWORD dwZone, _In_ DWORD dwType, _Out_opt_ LPDWORD pdwTemplate, _Out_opt_ LPWSTR *pszBuffer, _Inout_opt_ LPDWORD pdwBufferLength)
uiuiuiwuiDWORDPrivacySetZonePreferenceW(_In_ DWORD dwZone, _In_ DWORD dwType, _In_ DWORD dwTemplate, _In_opt_ LPCWSTR pszPreference)
tuittuiiBOOLReadUrlCacheEntryStream(_In_ HANDLE hUrlCacheStream, _In_ DWORD dwLocation, _Inout_ LPVOID lpBuffer, _Inout_ LPDWORD lpdwLen, _In_ DWORD dwReserved)
tuiiBOOLResumeSuspendedDownload(_In_ HINTERNET hRequest, _In_ DWORD dwResultCode)
sttuiiBOOLRetrieveUrlCacheEntryFile(_In_ LPCTSTR lpszUrlName, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo, _In_ DWORD dwReserved)
attuiiBOOLRetrieveUrlCacheEntryFileA(_In_ LPCSTR lpszUrlName, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo, _In_ DWORD dwReserved)
wttuiiBOOLRetrieveUrlCacheEntryFileW(_In_ LPCWSTR lpszUrlName, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo, _In_ DWORD dwReserved)
sttiuitHANDLERetrieveUrlCacheEntryStream(_In_ LPCTSTR lpszUrlName, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo, _In_ BOOL fRandomRead, _In_ DWORD dwReserved)
attiuitHANDLERetrieveUrlCacheEntryStreamA(_In_ LPCSTR lpszUrlName, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo, _In_ BOOL fRandomRead, _In_ DWORD dwReserved)
wttiuitHANDLERetrieveUrlCacheEntryStreamW(_In_ LPCWSTR lpszUrlName, _Out_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _Inout_ LPDWORD lpcbCacheEntryInfo, _In_ BOOL fRandomRead, _In_ DWORD dwReserved)
suii6tuitiBOOLSetUrlCacheEntryGroup(_In_ LPCTSTR lpszUrlName, _In_ DWORD dwFlags, _In_ GROUPID GroupId, _In_ LPBYTE pbGroupAttributes, _In_ DWORD cbGroupAttributes, _In_ LPVOID lpReserved)
auii6tuitiBOOLSetUrlCacheEntryGroupA(_In_ LPCSTR lpszUrlName, _In_ DWORD dwFlags, _In_ GROUPID GroupId, _In_ LPBYTE pbGroupAttributes, _In_ DWORD cbGroupAttributes, _In_ LPVOID lpReserved)
wuii6tuitiBOOLSetUrlCacheEntryGroupW(_In_ LPCWSTR lpszUrlName, _In_ DWORD dwFlags, _In_ GROUPID GroupId, _In_ LPBYTE pbGroupAttributes, _In_ DWORD cbGroupAttributes, _In_ LPVOID lpReserved)
stuiiBOOLSetUrlCacheEntryInfo(_In_ LPCTSTR lpszUrlName, _In_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _In_ DWORD dwFieldControl)
atuiiBOOLSetUrlCacheEntryInfoA(_In_ LPCSTR lpszUrlName, _In_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _In_ DWORD dwFieldControl)
wtuiiBOOLSetUrlCacheEntryInfoW(_In_ LPCWSTR lpszUrlName, _In_ LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo, _In_ DWORD dwFieldControl)
i6uiuittiBOOLSetUrlCacheGroupAttribute(_In_ GROUPID gid, _In_ DWORD dwFlags, _In_ DWORD dwAttributes, _In_ LPINTERNET_CACHE_GROUP_INFO lpGroupInfo, _Inout_ LPVOID lpReserved)
i6uiuittiBOOLSetUrlCacheGroupAttributeA(_In_ GROUPID gid, _In_ DWORD dwFlags, _In_ DWORD dwAttributes, _In_ LPINTERNET_CACHE_GROUP_INFO lpGroupInfo, _Inout_ LPVOID lpReserved)
i6uiuittiBOOLSetUrlCacheGroupAttributeW(_In_ GROUPID gid, _In_ DWORD dwFlags, _In_ DWORD dwAttributes, _In_ LPINTERNET_CACHE_GROUP_INFO lpGroupInfo, _Inout_ LPVOID lpReserved)
suiiBOOLUnlockUrlCacheEntryFile(_In_ LPCTSTR lpszUrlName, _In_ DWORD dwReserved)
auiiBOOLUnlockUrlCacheEntryFileA(_In_ LPCSTR lpszUrlName, _In_ DWORD dwReserved)
wuiiBOOLUnlockUrlCacheEntryFileW(_In_ LPCWSTR lpszUrlName, _In_ DWORD dwReserved)
tuiiBOOLUnlockUrlCacheEntryStream(_In_ HANDLE hUrlCacheStream, _In_ DWORD dwReserved)

Winmm.dll

uttuiuiMMRESULTauxGetDevCaps(UINT_PTR uDeviceID, LPAUXCAPS lpCaps, UINT cbCaps)
uttuiuiMMRESULTauxGetDevCapsA(UINT_PTR uDeviceID, LPAUXCAPS lpCaps, UINT cbCaps)
uttuiuiMMRESULTauxGetDevCapsW(UINT_PTR uDeviceID, LPAUXCAPS lpCaps, UINT cbCaps)
uiUINTauxGetNumDevs(void)
uituiMMRESULTauxGetVolume(UINT uDeviceID, LPDWORD lpdwVolume)
uiuiututuiDWORDauxOutMessage(UINT uDeviceID, UINT uMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2)
uiuiuiMMRESULTauxSetVolume(UINT uDeviceID, DWORD dwVolume)
tututtLRESULTCloseDriver(_In_ HDRVR hdrvr, _In_ LPARAM lParam1, _In_ LPARAM lParam2)
uttuiiitLRESULTDefDriverProc(DWORD_PTR dwDriverId, HDRVR hdrvr, UINT msg, LONG lParam1, LONG lParam2)
uiuituiuiuiuiiBOOLDriverCallback(DWORD dwCallBack, DWORD dwFlags, HDRVR hdrvr, DWORD msg, DWORD dwUser, DWORD dwParam1, DWORD dwParam2)
ttHMODULEDrvGetModuleHandle(_In_ HDRVR hDriver)
ttHMODULEGetDriverModuleHandle(_In_ HDRVR hdrvr)
uiuiMMRESULTjoyConfigChanged(DWORD dwFlags)
uttuiuiMMRESULTjoyGetDevCaps(UINT_PTR uJoyID, LPJOYCAPS pjc, UINT cbjc)
uttuiuiMMRESULTjoyGetDevCapsA(UINT_PTR uJoyID, LPJOYCAPS pjc, UINT cbjc)
uttuiuiMMRESULTjoyGetDevCapsW(UINT_PTR uJoyID, LPJOYCAPS pjc, UINT cbjc)
uiUINTjoyGetNumDevs(void)
uituiMMRESULTjoyGetPos(UINT uJoyID, LPJOYINFO pji)
uituiMMRESULTjoyGetPosEx(UINT uJoyID, LPJOYINFOEX pji)
uituiMMRESULTjoyGetThreshold(UINT uJoyID, LPUINT puThreshold)
uiuiMMRESULTjoyReleaseCapture(UINT uJoyID)
tuiuiiuiMMRESULTjoySetCapture(HWND hwnd, UINT uJoyID, UINT uPeriod, BOOL fChanged)
uiuiuiMMRESULTjoySetThreshold(UINT uJoyID, UINT uThreshold)
aiBOOLmciExecute(LPCSTR pszCommand)
uitHANDLEmciGetCreatorTask(MCIDEVICEID IDDevice)
suiMCIDEVICEIDmciGetDeviceID(LPCTSTR lpszDevice)
auiMCIDEVICEIDmciGetDeviceIDA(LPCSTR lpszDevice)
uisuiMCIDEVICEIDmciGetDeviceIDFromElementID(DWORD dwElementID, LPCTSTR lpstrType)
uiauiMCIDEVICEIDmciGetDeviceIDFromElementIDA(DWORD dwElementID, LPCSTR lpstrType)
uiwuiMCIDEVICEIDmciGetDeviceIDFromElementIDW(DWORD dwElementID, LPCWSTR lpstrType)
wuiMCIDEVICEIDmciGetDeviceIDW(LPCWSTR lpszDevice)
uisuiiBOOLmciGetErrorString(DWORD fdwError, LPTSTR lpszErrorText, UINT cchErrorText)
uiauiiBOOLmciGetErrorStringA(DWORD fdwError, LPSTR lpszErrorText, UINT cchErrorText)
uiwuiiBOOLmciGetErrorStringW(DWORD fdwError, LPWSTR lpszErrorText, UINT cchErrorText)
uittYIELDPROCmciGetYieldProc(MCIDEVICEID IDDevice, LPDWORD lpdwYieldData)
uiuiututuiMCIERRORmciSendCommand(MCIDEVICEID IDDevice, UINT uMsg, DWORD_PTR fdwCommand, DWORD_PTR dwParam)
uiuiututuiMCIERRORmciSendCommandA(MCIDEVICEID IDDevice, UINT uMsg, DWORD_PTR fdwCommand, DWORD_PTR dwParam)
uiuiututuiMCIERRORmciSendCommandW(MCIDEVICEID IDDevice, UINT uMsg, DWORD_PTR fdwCommand, DWORD_PTR dwParam)
ssuituiMCIERRORmciSendString(LPCTSTR lpszCommand, LPTSTR lpszReturnString, UINT cchReturn, HANDLE hwndCallback)
aauituiMCIERRORmciSendStringA(LPCSTR lpszCommand, LPSTR lpszReturnString, UINT cchReturn, HANDLE hwndCallback)
wwuituiMCIERRORmciSendStringW(LPCWSTR lpszCommand, LPWSTR lpszReturnString, UINT cchReturn, HANDLE hwndCallback)
uituiuiUINTmciSetYieldProc(MCIDEVICEID IDDevice, YIELDPROC yp, DWORD dwYieldData)
tttuiMMRESULTmidiConnect(HMIDI hMidi, HMIDIOUT hmo, LPVOID pReserved)
tttuiMMRESULTmidiDisconnect(HMIDI hMidi, HMIDIOUT hmo, LPVOID pReserved)
ttuiuiMMRESULTmidiInAddBuffer(HMIDIIN hMidiIn, LPMIDIHDR lpMidiInHdr, UINT cbMidiInHdr)
tuiMMRESULTmidiInClose(HMIDIIN hMidiIn)
uttuiuiMMRESULTmidiInGetDevCaps(UINT_PTR uDeviceID, LPMIDIINCAPS lpMidiInCaps, UINT cbMidiInCaps)
uttuiuiMMRESULTmidiInGetDevCapsA(UINT_PTR uDeviceID, LPMIDIINCAPS lpMidiInCaps, UINT cbMidiInCaps)
uttuiuiMMRESULTmidiInGetDevCapsW(UINT_PTR uDeviceID, LPMIDIINCAPS lpMidiInCaps, UINT cbMidiInCaps)
uisuiuiMMRESULTmidiInGetErrorText(MMRESULT wError, LPTSTR lpText, UINT cchText)
uiauiuiMMRESULTmidiInGetErrorTextA(MMRESULT wError, LPSTR lpText, UINT cchText)
uiwuiuiMMRESULTmidiInGetErrorTextW(MMRESULT wError, LPWSTR lpText, UINT cchText)
ttuiMMRESULTmidiInGetID(HMIDIIN hmi, LPUINT puDeviceID)
uiUINTmidiInGetNumDevs(void)
tuiututuiDWORDmidiInMessage(HMIDIIN deviceID, UINT msg, DWORD_PTR dw1, DWORD_PTR dw2)
tuiututuiuiMMRESULTmidiInOpen(LPHMIDIIN lphMidiIn, UINT uDeviceID, DWORD_PTR dwCallback, DWORD_PTR dwCallbackInstance, DWORD dwFlags)
ttuiuiMMRESULTmidiInPrepareHeader(HMIDIIN hMidiIn, LPMIDIHDR lpMidiInHdr, UINT cbMidiInHdr)
tuiMMRESULTmidiInReset(HMIDIIN hMidiIn)
tuiMMRESULTmidiInStart(HMIDIIN hMidiIn)
tuiMMRESULTmidiInStop(HMIDIIN hMidiIn)
ttuiuiMMRESULTmidiInUnprepareHeader(HMIDIIN hMidiIn, LPMIDIHDR lpMidiInHdr, UINT cbMidiInHdr)
tuituiuiMMRESULTmidiOutCacheDrumPatches(HMIDIOUT hmo, UINT wPatch, WORD *lpKeyArray, UINT wFlags)
tuituiuiMMRESULTmidiOutCachePatches(HMIDIOUT hmo, UINT wBank, WORD *lpPatchArray, UINT wFlags)
tuiMMRESULTmidiOutClose(HMIDIOUT hmo)
uttuiuiMMRESULTmidiOutGetDevCaps(UINT_PTR uDeviceID, LPMIDIOUTCAPS lpMidiOutCaps, UINT cbMidiOutCaps)
uttuiuiMMRESULTmidiOutGetDevCapsA(UINT_PTR uDeviceID, LPMIDIOUTCAPS lpMidiOutCaps, UINT cbMidiOutCaps)
uttuiuiMMRESULTmidiOutGetDevCapsW(UINT_PTR uDeviceID, LPMIDIOUTCAPS lpMidiOutCaps, UINT cbMidiOutCaps)
uisuiuiUINTmidiOutGetErrorText(MMRESULT mmrError, LPTSTR lpText, UINT cchText)
uiauiuiUINTmidiOutGetErrorTextA(MMRESULT mmrError, LPSTR lpText, UINT cchText)
uiwuiuiUINTmidiOutGetErrorTextW(MMRESULT mmrError, LPWSTR lpText, UINT cchText)
ttuiMMRESULTmidiOutGetID(HMIDIOUT hmo, LPUINT puDeviceID)
uiUINTmidiOutGetNumDevs(void)
ttuiMMRESULTmidiOutGetVolume(HMIDIOUT hmo, LPDWORD lpdwVolume)
ttuiuiMMRESULTmidiOutLongMsg(HMIDIOUT hmo, LPMIDIHDR lpMidiOutHdr, UINT cbMidiOutHdr)
tuiututuiDWORDmidiOutMessage(HMIDIOUT deviceID, UINT msg, DWORD_PTR dw1, DWORD_PTR dw2)
tuiututuiuiMMRESULTmidiOutOpen(LPHMIDIOUT lphmo, UINT uDeviceID, DWORD_PTR dwCallback, DWORD_PTR dwCallbackInstance, DWORD dwFlags)
ttuiuiMMRESULTmidiOutPrepareHeader(HMIDIOUT hmo, LPMIDIHDR lpMidiOutHdr, UINT cbMidiOutHdr)
tuiMMRESULTmidiOutReset(HMIDIOUT hmo)
tuiuiMMRESULTmidiOutSetVolume(HMIDIOUT hmo, DWORD dwVolume)
tuiuiMMRESULTmidiOutShortMsg(HMIDIOUT hmo, DWORD dwMsg)
ttuiuiMMRESULTmidiOutUnprepareHeader(HMIDIOUT hmo, LPMIDIHDR lpMidiOutHdr, UINT cbMidiOutHdr)
tuiMMRESULTmidiStreamClose(HMIDISTRM hStream)
ttuiututuiuiMMRESULTmidiStreamOpen(LPHMIDISTRM lphStream, LPUINT puDeviceID, DWORD cMidi, DWORD_PTR dwCallback, DWORD_PTR dwInstance, DWORD fdwOpen)
ttuiuiMMRESULTmidiStreamOut(HMIDISTRM hMidiStream, LPMIDIHDR lpMidiHdr, UINT cbMidiHdr)
tuiMMRESULTmidiStreamPause(HMIDISTRM hms)
ttuiuiMMRESULTmidiStreamPosition(HMIDISTRM hms, LPMMTIME pmmt, UINT cbmmt)
ttuiuiMMRESULTmidiStreamProperty(HMIDISTRM hm, LPBYTE lppropdata, DWORD dwProperty)
tuiMMRESULTmidiStreamRestart(HMIDISTRM hms)
tuiMMRESULTmidiStreamStop(HMIDISTRM hms)
tuiMMRESULTmixerClose(HMIXER hmx)
ttuiuiMMRESULTmixerGetControlDetails(HMIXEROBJ hmxobj, LPMIXERCONTROLDETAILS pmxcd, DWORD fdwDetails)
ttuiuiMMRESULTmixerGetControlDetailsA(HMIXEROBJ hmxobj, LPMIXERCONTROLDETAILS pmxcd, DWORD fdwDetails)
ttuiuiMMRESULTmixerGetControlDetailsW(HMIXEROBJ hmxobj, LPMIXERCONTROLDETAILS pmxcd, DWORD fdwDetails)
uttuiuiMMRESULTmixerGetDevCaps(UINT_PTR uMxId, LPMIXERCAPS pmxcaps, UINT cbmxcaps)
uttuiuiMMRESULTmixerGetDevCapsA(UINT_PTR uMxId, LPMIXERCAPS pmxcaps, UINT cbmxcaps)
uttuiuiMMRESULTmixerGetDevCapsW(UINT_PTR uMxId, LPMIXERCAPS pmxcaps, UINT cbmxcaps)
ttuiuiMMRESULTmixerGetID(HMIXEROBJ hmxobj, UINT FAR *puMxId, DWORD fdwId)
ttuiuiMMRESULTmixerGetLineControls(HMIXEROBJ hmxobj, LPMIXERLINECONTROLS pmxlc, DWORD fdwControls)
ttuiuiMMRESULTmixerGetLineControlsA(HMIXEROBJ hmxobj, LPMIXERLINECONTROLS pmxlc, DWORD fdwControls)
ttuiuiMMRESULTmixerGetLineControlsW(HMIXEROBJ hmxobj, LPMIXERLINECONTROLS pmxlc, DWORD fdwControls)
ttuiuiMMRESULTmixerGetLineInfo(HMIXEROBJ hmxobj, LPMIXERLINE pmxl, DWORD fdwInfo)
ttuiuiMMRESULTmixerGetLineInfoA(HMIXEROBJ hmxobj, LPMIXERLINE pmxl, DWORD fdwInfo)
ttuiuiMMRESULTmixerGetLineInfoW(HMIXEROBJ hmxobj, LPMIXERLINE pmxl, DWORD fdwInfo)
uiUINTmixerGetNumDevs(void)
tuiututuiDWORDmixerMessage(HMIXER driverID, UINT uMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2)
tuiututuiuiMMRESULTmixerOpen(LPHMIXER phmx, UINT uMxId, DWORD_PTR dwCallback, DWORD_PTR dwInstance, DWORD fdwOpen)
ttuiuiMMRESULTmixerSetControlDetails(HMIXEROBJ hmxobj, LPMIXERCONTROLDETAILS pmxcd, DWORD fdwDetails)
uiDWORDmmGetCurrentTask(void)
ttuiuiMMRESULTmmioAdvance(HMMIO hmmio, LPMMIOINFO lpmmioinfo, UINT wFlags)
ttuiuiMMRESULTmmioAscend(HMMIO hmmio, LPMMCKINFO lpck, UINT wFlags)
tuiuiMMRESULTmmioClose(HMMIO hmmio, UINT wFlags)
ttuiuiMMRESULTmmioCreateChunk(HMMIO hmmio, LPMMCKINFO lpck, UINT wFlags)
tttuiuiMMRESULTmmioDescend(HMMIO hmmio, LPMMCKINFO lpck, LPMMCKINFO lpckParent, UINT wFlags)
tuiuiMMRESULTmmioFlush(HMMIO hmmio, UINT fuFlush)
ttuiuiMMRESULTmmioGetInfo(HMMIO hmmio, LPMMIOINFO lpmmioinfo, UINT wFlags)
uituitLPMMIOPROCmmioInstallIOProc(FOURCC fccIOProc, LPMMIOPROC pIOProc, DWORD dwFlags)
uituitLPMMIOPROCmmioInstallIOProcA(FOURCC fccIOProc, LPMMIOPROC pIOProc, DWORD dwFlags)
uituitLPMMIOPROCmmioInstallIOProcW(FOURCC fccIOProc, LPMMIOPROC pIOProc, DWORD dwFlags)
stuitHMMIOmmioOpen(LPTSTR szFilename, LPMMIOINFO lpmmioinfo, DWORD dwOpenFlags)
atuitHMMIOmmioOpenA(LPSTR szFilename, LPMMIOINFO lpmmioinfo, DWORD dwOpenFlags)
wtuitHMMIOmmioOpenW(LPWSTR szFilename, LPMMIOINFO lpmmioinfo, DWORD dwOpenFlags)
ttiiLONGmmioRead(HMMIO hmmio, HPSTR pch, LONG cch)
sstuiuiMMRESULTmmioRename(LPCTSTR szFilename, LPCTSTR szNewFilename, const LPMMIOINFO lpmmioinfo, DWORD dwRenameFlags)
aatuiuiMMRESULTmmioRenameA(LPCSTR szFilename, LPCSTR szNewFilename, const LPMMIOINFO lpmmioinfo, DWORD dwRenameFlags)
wwtuiuiMMRESULTmmioRenameW(LPCWSTR szFilename, LPCWSTR szNewFilename, const LPMMIOINFO lpmmioinfo, DWORD dwRenameFlags)
tiiiLONGmmioSeek(HMMIO hmmio, LONG lOffset, int iOrigin)
tuiututtLRESULTmmioSendMessage(HMMIO hmmio, UINT wMsg, LPARAM lParam1, LPARAM lParam2)
taiuiuiMMRESULTmmioSetBuffer(HMMIO hmmio, LPSTR pchBuffer, LONG cchBuffer, UINT wFlags)
ttuiuiMMRESULTmmioSetInfo(HMMIO hmmio, LPMMIOINFO lpmmioinfo, UINT wFlags)
suiuiFOURCCmmioStringToFOURCC(LPCTSTR sz, UINT wFlags)
auiuiFOURCCmmioStringToFOURCCA(LPCSTR sz, UINT wFlags)
wuiuiFOURCCmmioStringToFOURCCW(LPCWSTR sz, UINT wFlags)
ttiiLONGmmioWrite(HMMIO hmmio, char _huge *pch, LONG cch)
uiUINTmmsystemGetVersion(void)
uiiVOIDmmTaskBlock(DWORD h)
ttutuiUINTmmTaskCreate(LPTASKCALLBACK lpfn, HANDLE FAR *lph, DWORD_PTR dwInst)
iVOIDmmTaskYield(void)
wwuttHDRVROpenDriver(_In_ LPCWSTR lpDriverName, _In_ LPCWSTR lpSectionName, _In_ LPARAM lParam)
stuiiBOOLPlaySound(LPCTSTR pszSound, HMODULE hmod, DWORD fdwSound)
atuiiBOOLPlaySoundA(LPCSTR pszSound, HMODULE hmod, DWORD fdwSound)
wtuiiBOOLPlaySoundW(LPCWSTR pszSound, HMODULE hmod, DWORD fdwSound)
tuiututtLRESULTSendDriverMessage(_In_ HDRVR hdrvr, _In_ UINT msg, _Inout_ LPARAM lParam1, _Inout_ LPARAM lParam2)
suiiBOOLsndPlaySound(LPCTSTR lpszSound, UINT fuSound)
auiiBOOLsndPlaySoundA(LPCSTR lpszSound, UINT fuSound)
wuiiBOOLsndPlaySoundW(LPCWSTR lpszSound, UINT fuSound)
uiuiMMRESULTtimeBeginPeriod(UINT uPeriod)
uiuiMMRESULTtimeEndPeriod(UINT uPeriod)
tuiuiMMRESULTtimeGetDevCaps(LPTIMECAPS ptc, UINT cbtc)
tuiuiMMRESULTtimeGetSystemTime(LPMMTIME pmmt, UINT cbmmt)
uiDWORDtimeGetTime(void)
uiuiMMRESULTtimeKillEvent(UINT uTimerID)
uiuitutuiuiMMRESULTtimeSetEvent(UINT uDelay, UINT uResolution, LPTIMECALLBACK lpTimeProc, DWORD_PTR dwUser, UINT fuEvent)
ttuiuiMMRESULTwaveInAddBuffer(HWAVEIN hwi, LPWAVEHDR pwh, UINT cbwh)
tuiMMRESULTwaveInClose(HWAVEIN hwi)
uttuiuiMMRESULTwaveInGetDevCaps(UINT_PTR uDeviceID, LPWAVEINCAPS pwic, UINT cbwic)
uttuiuiMMRESULTwaveInGetDevCapsA(UINT_PTR uDeviceID, LPWAVEINCAPS pwic, UINT cbwic)
uttuiuiMMRESULTwaveInGetDevCapsW(UINT_PTR uDeviceID, LPWAVEINCAPS pwic, UINT cbwic)
uisuiuiMMRESULTwaveInGetErrorText(MMRESULT mmrError, LPTSTR pszText, UINT cchText)
uiauiuiMMRESULTwaveInGetErrorTextA(MMRESULT mmrError, LPSTR pszText, UINT cchText)
uiwuiuiMMRESULTwaveInGetErrorTextW(MMRESULT mmrError, LPWSTR pszText, UINT cchText)
ttuiMMRESULTwaveInGetID(HWAVEIN hwi, LPUINT puDeviceID)
uiUINTwaveInGetNumDevs(void)
ttuiuiMMRESULTwaveInGetPosition(HWAVEIN hwi, LPMMTIME pmmt, UINT cbmmt)
tuiututuiDWORDwaveInMessage(HWAVEIN deviceID, UINT uMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2)
tuitututuiuiMMRESULTwaveInOpen(LPHWAVEIN phwi, UINT uDeviceID, LPCWAVEFORMATEX pwfx, DWORD_PTR dwCallback, DWORD_PTR dwCallbackInstance, DWORD fdwOpen)
ttuiuiMMRESULTwaveInPrepareHeader(HWAVEIN hwi, LPWAVEHDR pwh, UINT cbwh)
tuiMMRESULTwaveInReset(HWAVEIN hwi)
tuiMMRESULTwaveInStart(HWAVEIN hwi)
tuiMMRESULTwaveInStop(HWAVEIN hwi)
ttuiuiMMRESULTwaveInUnprepareHeader(HWAVEIN hwi, LPWAVEHDR pwh, UINT cbwh)
tuiMMRESULTwaveOutBreakLoop(HWAVEOUT hwo)
tuiMMRESULTwaveOutClose(HWAVEOUT hwo)
uttuiuiMMRESULTwaveOutGetDevCaps(UINT_PTR uDeviceID, LPWAVEOUTCAPS pwoc, UINT cbwoc)
uttuiuiMMRESULTwaveOutGetDevCapsA(UINT_PTR uDeviceID, LPWAVEOUTCAPS pwoc, UINT cbwoc)
uttuiuiMMRESULTwaveOutGetDevCapsW(UINT_PTR uDeviceID, LPWAVEOUTCAPS pwoc, UINT cbwoc)
uisuiuiMMRESULTwaveOutGetErrorText(MMRESULT mmrError, LPTSTR pszText, UINT cchText)
uiauiuiMMRESULTwaveOutGetErrorTextA(MMRESULT mmrError, LPSTR pszText, UINT cchText)
uiwuiuiMMRESULTwaveOutGetErrorTextW(MMRESULT mmrError, LPWSTR pszText, UINT cchText)
ttuiMMRESULTwaveOutGetID(HWAVEOUT hwo, LPUINT puDeviceID)
uiUINTwaveOutGetNumDevs(void)
ttuiMMRESULTwaveOutGetPitch(HWAVEOUT hwo, LPDWORD pdwPitch)
ttuiMMRESULTwaveOutGetPlaybackRate(HWAVEOUT hwo, LPDWORD pdwRate)
ttuiuiMMRESULTwaveOutGetPosition(HWAVEOUT hwo, LPMMTIME pmmt, UINT cbmmt)
ttuiMMRESULTwaveOutGetVolume(HWAVEOUT hwo, LPDWORD pdwVolume)
tuiututuiDWORDwaveOutMessage(HWAVEOUT deviceID, UINT uMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2)
tuttututuiuiMMRESULTwaveOutOpen(LPHWAVEOUT phwo, UINT_PTR uDeviceID, LPWAVEFORMATEX pwfx, DWORD_PTR dwCallback, DWORD_PTR dwCallbackInstance, DWORD fdwOpen)
tuiMMRESULTwaveOutPause(HWAVEOUT hwo)
ttuiuiMMRESULTwaveOutPrepareHeader(HWAVEOUT hwo, LPWAVEHDR pwh, UINT cbwh)
tuiMMRESULTwaveOutReset(HWAVEOUT hwo)
tuiMMRESULTwaveOutRestart(HWAVEOUT hwo)
tuiuiMMRESULTwaveOutSetPitch(HWAVEOUT hwo, DWORD dwPitch)
tuiuiMMRESULTwaveOutSetPlaybackRate(HWAVEOUT hwo, DWORD dwRate)
tuiuiMMRESULTwaveOutSetVolume(HWAVEOUT hwo, DWORD dwVolume)
ttuiuiMMRESULTwaveOutUnprepareHeader(HWAVEOUT hwo, LPWAVEHDR pwh, UINT cbwh)
ttuiuiMMRESULTwaveOutWrite(HWAVEOUT hwo, LPWAVEHDR pwh, UINT cbwh)

Ws2_32.dll

ttiint__WSAFDIsSet(SOCKET fd, fd_set *set)
ttttSOCKETaccept(_In_ SOCKET s, _Out_ struct sockaddr *addr, _Inout_ int *addrlen)
ttiiintbind(_In_ SOCKET s, _In_ const struct sockaddr *name, _In_ int namelen)
tiintclosesocket(_In_ SOCKET s)
ttiiintconnect(_In_ SOCKET s, _In_ const struct sockaddr *name, _In_ int namelen)
tiVOIDfreeaddrinfo(_In_ struct addrinfo *ai)
tiVOIDFreeAddrInfoEx(_In_ PADDRINFOEX pAddrInfo)
tiVOIDFreeAddrInfoExW(_In_ PADDRINFOEX pAddrInfo)
tiVOIDFreeAddrInfoW(_In_ PADDRINFOW pAddrInfo)
aattiintgetaddrinfo(_In_opt_ PCSTR pNodeName, _In_opt_ PCSTR pServiceName, _In_opt_ const ADDRINFOA *pHints, _Out_ PADDRINFOA *ppResult)
ssuitttttttiintGetAddrInfoEx(_In_opt_ PCTSTR pName, _In_opt_ PCTSTR pServiceName, _In_ DWORD dwNameSpace, _In_opt_ LPGUID lpNspId, _In_opt_ const ADDRINFOEX *pHints, _Out_ PADDRINFOEX *ppResult, _In_opt_ struct timeval *timeout, _In_opt_ LPOVERLAPPED lpOverlapped, _In_opt_ LPLOOKUPSERVICE_COMPLETION_ROUTINE lpCompletionRoutine, _Out_opt_ LPHANDLE lpNameHandle)
aauitttttttiintGetAddrInfoExA(_In_opt_ PCTSTR pName, _In_opt_ PCTSTR pServiceName, _In_ DWORD dwNameSpace, _In_opt_ LPGUID lpNspId, _In_opt_ const ADDRINFOEX *pHints, _Out_ PADDRINFOEX *ppResult, _In_opt_ struct timeval *timeout, _In_opt_ LPOVERLAPPED lpOverlapped, _In_opt_ LPLOOKUPSERVICE_COMPLETION_ROUTINE lpCompletionRoutine, _Out_opt_ LPHANDLE lpNameHandle)
wwuitttttttiintGetAddrInfoExW(_In_opt_ PCTSTR pName, _In_opt_ PCTSTR pServiceName, _In_ DWORD dwNameSpace, _In_opt_ LPGUID lpNspId, _In_opt_ const ADDRINFOEX *pHints, _Out_ PADDRINFOEX *ppResult, _In_opt_ struct timeval *timeout, _In_opt_ LPOVERLAPPED lpOverlapped, _In_opt_ LPLOOKUPSERVICE_COMPLETION_ROUTINE lpCompletionRoutine, _Out_opt_ LPHANDLE lpNameHandle)
wwttiintGetAddrInfoW(_In_opt_ PCWSTR pNodeName, _In_opt_ PCWSTR pServiceName, _In_opt_ const ADDRINFOW *pHints, _Out_ PADDRINFOW *ppResult)
aiithostent*gethostbyaddr(_In_ const char *addr, _In_ int len, _In_ int type)
athostent*gethostbyname(_In_ const char *name)
aiiintgethostname(_Out_ char *name, _In_ int namelen)
tiauiauiiiintgetnameinfo(_In_ const struct sockaddr FAR *sa, _In_ socklen_t salen, _Out_ char FAR *host, _In_ DWORD hostlen, _Out_ char FAR *serv, _In_ DWORD servlen, _In_ int flags)
tiwuiwuiiiintGetNameInfoW(_In_ const SOCKADDR *pSockaddr, _In_ socklen_t SockaddrLength, _Out_ PWCHAR pNodeBuffer, _In_ DWORD NodeBufferSize, _Out_ PWCHAR pServiceBuffer, _In_ DWORD ServiceBufferSize, _In_ INT Flags)
tttiintgetpeername(_In_ SOCKET s, _Out_ struct sockaddr *name, _Inout_ int *namelen)
atPROTOENT*getprotobyname(_In_ const char *name)
itPROTOENT*getprotobynumber(_In_ int number)
aatservent*getservbyname(_In_ const char *name, _In_ const char *proto)
iatservent*getservbyport(_In_ int port, _In_ const char *proto)
tttiintgetsockname(_In_ SOCKET s, _Out_ struct sockaddr *name, _Inout_ int *namelen)
tiiatiintgetsockopt(_In_ SOCKET s, _In_ int level, _In_ int optname, _Out_ char *optval, _Inout_ int *optlen)
uiuiu_longhtonl(_In_ u_long hostlong)
uhuhu_shorthtons(_In_ u_short hostshort)
auiunsignedlonginet_addr(_In_ const char *cp)
uitchar*inet_ntoa(_In_ struct in_addr in)
itsutsPCTSTRInetNtop(_In_ INT Family, _In_ PVOID pAddr, _Out_ PTSTR pStringBuf, _In_ size_t StringBufSize)
itwutwPCTSTRInetNtopW(_In_ INT Family, _In_ PVOID pAddr, _Out_ PTSTR pStringBuf, _In_ size_t StringBufSize)
istiintInetPton(_In_ INT Family, _In_ PCTSTR pszAddrString, _Out_ PVOID pAddrBuf)
iwtiintInetPtonW(_In_ INT Family, _In_ PCTSTR pszAddrString, _Out_ PVOID pAddrBuf)
titiintioctlsocket(_In_ SOCKET s, _In_ long cmd, _Inout_ u_long *argp)
tiiintlisten(_In_ SOCKET s, _In_ int backlog)
uiuiu_longntohl(_In_ u_long netlong)
uhuhu_shortntohs(_In_ u_short netshort)
taiiiintrecv(_In_ SOCKET s, _Out_ char *buf, _In_ int len, _In_ int flags)
taiittiintrecvfrom(_In_ SOCKET s, _Out_ char *buf, _In_ int len, _In_ int flags, _Out_ struct sockaddr *from, _Inout_opt_ int *fromlen)
ittttiintselect(_In_ int nfds, _Inout_ fd_set *readfds, _Inout_ fd_set *writefds, _Inout_ fd_set *exceptfds, _In_ const struct timeval *timeout)
taiiiintsend_(_In_ SOCKET s, _In_ const char *buf, _In_ int len, _In_ int flags)
taiitiiintsendto(_In_ SOCKET s, _In_ const char *buf, _In_ int len, _In_ int flags, _In_ const struct sockaddr *to, _In_ int tolen)
sstuituiuitttttiintSetAddrInfoEx(_In_ PCTSTR pName, _In_ PCTSTR pServiceName, _Inout_ SOCKET_ADDRESS *pAddresses, _In_ DWORD dwAddressCount, _In_opt_ LPBLOB lpBlob, _In_ DWORD dwFlags, _In_ DWORD dwNameSpace, _In_opt_ LPGUID lpNspId, _In_opt_ struct timeval *timeout, _In_opt_ LPOVERLAPPED lpOverlapped, _In_opt_ LPLOOKUPSERVICE_COMPLETION_ROUTINE lpCompletionRoutine, _Out_opt_ LPHANDLE lpNameHandle)
aatuituiuitttttiintSetAddrInfoExA(_In_ PCTSTR pName, _In_ PCTSTR pServiceName, _Inout_ SOCKET_ADDRESS *pAddresses, _In_ DWORD dwAddressCount, _In_opt_ LPBLOB lpBlob, _In_ DWORD dwFlags, _In_ DWORD dwNameSpace, _In_opt_ LPGUID lpNspId, _In_opt_ struct timeval *timeout, _In_opt_ LPOVERLAPPED lpOverlapped, _In_opt_ LPLOOKUPSERVICE_COMPLETION_ROUTINE lpCompletionRoutine, _Out_opt_ LPHANDLE lpNameHandle)
wwtuituiuitttttiintSetAddrInfoExW(_In_ PCTSTR pName, _In_ PCTSTR pServiceName, _Inout_ SOCKET_ADDRESS *pAddresses, _In_ DWORD dwAddressCount, _In_opt_ LPBLOB lpBlob, _In_ DWORD dwFlags, _In_ DWORD dwNameSpace, _In_opt_ LPGUID lpNspId, _In_opt_ struct timeval *timeout, _In_opt_ LPOVERLAPPED lpOverlapped, _In_opt_ LPLOOKUPSERVICE_COMPLETION_ROUTINE lpCompletionRoutine, _Out_opt_ LPHANDLE lpNameHandle)
tiiaiiintsetsockopt(_In_ SOCKET s, _In_ int level, _In_ int optname, _In_ const char *optval, _In_ int optlen)
tiiintshutdown_(_In_ SOCKET s, _In_ int how)
iiitSOCKETsocket(_In_ int af, _In_ int type, _In_ int protocol)
ttttuttSOCKETWSAAccept(_In_ SOCKET s, _Out_ struct sockaddr *addr, _Inout_ LPINT addrlen, _In_ LPCONDITIONPROC lpfnCondition, _In_ DWORD_PTR dwCallbackData)
tuitstiintWSAAddressToString(_In_ LPSOCKADDR lpsaAddress, _In_ DWORD dwAddressLength, _In_opt_ LPWSAPROTOCOL_INFO lpProtocolInfo, _Inout_ LPTSTR lpszAddressString, _Inout_ LPDWORD lpdwAddressStringLength)
tuitatiintWSAAddressToStringA(_In_ LPSOCKADDR lpsaAddress, _In_ DWORD dwAddressLength, _In_opt_ LPWSAPROTOCOL_INFO lpProtocolInfo, _Inout_ LPSTR lpszAddressString, _Inout_ LPDWORD lpdwAddressStringLength)
tuitwtiintWSAAddressToStringW(_In_ LPSOCKADDR lpsaAddress, _In_ DWORD dwAddressLength, _In_opt_ LPWSAPROTOCOL_INFO lpProtocolInfo, _Inout_ LPWSTR lpszAddressString, _Inout_ LPDWORD lpdwAddressStringLength)
ttiintWSAAdvertiseProvider(_In_ const GUID *puuidProviderId, _In_ const LPCNSPV2_ROUTINE *pNSPv2Routine)
tuiaiiaitHANDLEWSAAsyncGetHostByAddr(_In_ HWND hWnd, _In_ unsigned int wMsg, _In_ const char *addr, _In_ int len, _In_ int type, _Out_ char *buf, _In_ int buflen)
tuiaaitHANDLEWSAAsyncGetHostByName(_In_ HWND hWnd, _In_ unsigned int wMsg, _In_ const char *name, _Out_ char *buf, _In_ int buflen)
tuiaaitHANDLEWSAAsyncGetProtoByName(_In_ HWND hWnd, _In_ unsigned int wMsg, _In_ const char *name, _Out_ char *buf, _Out_ int buflen)
tuiiaitHANDLEWSAAsyncGetProtoByNumber(_In_ HWND hWnd, _In_ unsigned int wMsg, _In_ int number, _Out_ char *buf, _In_ int buflen)
tuiaaaitHANDLEWSAAsyncGetServByName(_In_ HWND hWnd, _In_ unsigned int wMsg, _In_ const char *name, _In_ const char *proto, _Out_ char *buf, _In_ int buflen)
tuiiaaitHANDLEWSAAsyncGetServByPort(_In_ HWND hWnd, _In_ unsigned int wMsg, _In_ int port, _In_ const char *proto, _Out_ char *buf, _In_ int buflen)
ttuiiiintWSAAsyncSelect(_In_ SOCKET s, _In_ HWND hWnd, _In_ unsigned int wMsg, _In_ long lEvent)
tiintWSACancelAsyncRequest(_In_ HANDLE hAsyncTaskHandle)
iintWSACleanup(void)
tiBOOLWSACloseEvent(_In_ WSAEVENT hEvent)
ttittttiintWSAConnect(_In_ SOCKET s, _In_ const struct sockaddr *name, _In_ int namelen, _In_ LPWSABUF lpCallerData, _Out_ LPWSABUF lpCalleeData, _In_ LPQOS lpSQOS, _In_ LPQOS lpGQOS)
ttttttttiBOOLWSAConnectByList(_In_ SOCKET s, _In_ PSOCKET_ADDRESS_LIST SocketAddressList, _Inout_ LPDWORD LocalAddressLength, _Out_ LPSOCKADDR LocalAddress, _Inout_ LPDWORD RemoteAddressLength, _Out_ LPSOCKADDR RemoteAddress, _In_ const struct timeval *timeout, _In_ LPWSAOVERLAPPED Reserved)
tssttttttiBOOLWSAConnectByName(_In_ SOCKET s, _In_ LPTSTR nodename, _In_ LPTSTR servicename, _Inout_ LPDWORD LocalAddressLength, _Out_ LPSOCKADDR LocalAddress, _Inout_ LPDWORD RemoteAddressLength, _Out_ LPSOCKADDR RemoteAddress, _In_ const struct timeval *timeout, LPWSAOVERLAPPED Reserved)
taattttttiBOOLWSAConnectByNameA(_In_ SOCKET s, _In_ LPSTR nodename, _In_ LPSTR servicename, _Inout_ LPDWORD LocalAddressLength, _Out_ LPSOCKADDR LocalAddress, _Inout_ LPDWORD RemoteAddressLength, _Out_ LPSOCKADDR RemoteAddress, _In_ const struct timeval *timeout, LPWSAOVERLAPPED Reserved)
twwttttttiBOOLWSAConnectByNameW(_In_ SOCKET s, _In_ LPWSTR nodename, _In_ LPWSTR servicename, _Inout_ LPDWORD LocalAddressLength, _Out_ LPSOCKADDR LocalAddress, _Inout_ LPDWORD RemoteAddressLength, _Out_ LPSOCKADDR RemoteAddress, _In_ const struct timeval *timeout, LPWSAOVERLAPPED Reserved)
tWSAEVENTWSACreateEvent(void)
tuitiintWSADuplicateSocket(_In_ SOCKET s, _In_ DWORD dwProcessId, _Out_ LPWSAPROTOCOL_INFO lpProtocolInfo)
tuitiintWSADuplicateSocketA(_In_ SOCKET s, _In_ DWORD dwProcessId, _Out_ LPWSAPROTOCOL_INFO lpProtocolInfo)
tuitiintWSADuplicateSocketW(_In_ SOCKET s, _In_ DWORD dwProcessId, _Out_ LPWSAPROTOCOL_INFO lpProtocolInfo)
ttiintWSAEnumNameSpaceProviders(_Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSANAMESPACE_INFO lpnspBuffer)
ttiintWSAEnumNameSpaceProvidersA(_Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSANAMESPACE_INFO lpnspBuffer)
ttiintWSAEnumNameSpaceProvidersEx(_Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSANAMESPACE_INFOEX lpnspBuffer)
ttiintWSAEnumNameSpaceProvidersExA(_Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSANAMESPACE_INFOEX lpnspBuffer)
ttiintWSAEnumNameSpaceProvidersExW(_Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSANAMESPACE_INFOEX lpnspBuffer)
ttiintWSAEnumNameSpaceProvidersW(_Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSANAMESPACE_INFO lpnspBuffer)
tttiintWSAEnumNetworkEvents(_In_ SOCKET s, _In_ WSAEVENT hEventObject, _Out_ LPWSANETWORKEVENTS lpNetworkEvents)
tttiintWSAEnumProtocols(_In_ LPINT lpiProtocols, _Out_ LPWSAPROTOCOL_INFO lpProtocolBuffer, _Inout_ LPDWORD lpdwBufferLength)
tttiintWSAEnumProtocolsA(_In_ LPINT lpiProtocols, _Out_ LPWSAPROTOCOL_INFO lpProtocolBuffer, _Inout_ LPDWORD lpdwBufferLength)
tttiintWSAEnumProtocolsW(_In_ LPINT lpiProtocols, _Out_ LPWSAPROTOCOL_INFO lpProtocolBuffer, _Inout_ LPDWORD lpdwBufferLength)
ttiiintWSAEventSelect(_In_ SOCKET s, _In_ WSAEVENT hEventObject, _In_ long lNetworkEvents)
iintWSAGetLastError(void)
tttitiBOOLWSAGetOverlappedResult(_In_ SOCKET s, _In_ LPWSAOVERLAPPED lpOverlapped, _Out_ LPDWORD lpcbTransfer, _In_ BOOL fWait, _Out_ LPDWORD lpdwFlags)
tttiBOOLWSAGetQOSByName(_In_ SOCKET s, _Inout_ LPWSABUF lpQOSName, _Out_ LPQOS lpQOS)
ttttiintWSAGetServiceClassInfo(_In_ LPGUID lpProviderId, _In_ LPGUID lpServiceClassId, _Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSASERVICECLASSINFO lpServiceClassInfo)
ttttiintWSAGetServiceClassInfoA(_In_ LPGUID lpProviderId, _In_ LPGUID lpServiceClassId, _Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSASERVICECLASSINFO lpServiceClassInfo)
ttttiintWSAGetServiceClassInfoW(_In_ LPGUID lpProviderId, _In_ LPGUID lpServiceClassId, _Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSASERVICECLASSINFO lpServiceClassInfo)
tstiintWSAGetServiceClassNameByClassId(_In_ LPGUID lpServiceClassId, _Out_ LPTSTR lpszServiceClassName, _Inout_ LPDWORD lpdwBufferLength)
tatiintWSAGetServiceClassNameByClassIdA(_In_ LPGUID lpServiceClassId, _Out_ LPSTR lpszServiceClassName, _Inout_ LPDWORD lpdwBufferLength)
twtiintWSAGetServiceClassNameByClassIdW(_In_ LPGUID lpServiceClassId, _Out_ LPWSTR lpszServiceClassName, _Inout_ LPDWORD lpdwBufferLength)
tuitiintWSAHtonl(_In_ SOCKET s, _In_ u_long hostlong, _Out_ u_long *lpnetlong)
tuhtiintWSAHtons(_In_ SOCKET s, _In_ u_short hostshort, _Out_ u_short *lpnetshort)
tiintWSAInstallServiceClass(_In_ LPWSASERVICECLASSINFO lpServiceClassInfo)
tiintWSAInstallServiceClassA(_In_ LPWSASERVICECLASSINFO lpServiceClassInfo)
tiintWSAInstallServiceClassW(_In_ LPWSASERVICECLASSINFO lpServiceClassInfo)
tuituituitttiintWSAIoctl(_In_ SOCKET s, _In_ DWORD dwIoControlCode, _In_ LPVOID lpvInBuffer, _In_ DWORD cbInBuffer, _Out_ LPVOID lpvOutBuffer, _In_ DWORD cbOutBuffer, _Out_ LPDWORD lpcbBytesReturned, _In_ LPWSAOVERLAPPED lpOverlapped, _In_ LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
ttittttuitSOCKETWSAJoinLeaf(_In_ SOCKET s, _In_ const struct sockaddr *name, _In_ int namelen, _In_ LPWSABUF lpCallerData, _Out_ LPWSABUF lpCalleeData, _In_ LPQOS lpSQOS, _In_ LPQOS lpGQOS, _In_ DWORD dwFlags)
tuitiintWSALookupServiceBegin(_In_ LPWSAQUERYSET lpqsRestrictions, _In_ DWORD dwControlFlags, _Out_ LPHANDLE lphLookup)
tuitiintWSALookupServiceBeginA(_In_ LPWSAQUERYSET lpqsRestrictions, _In_ DWORD dwControlFlags, _Out_ LPHANDLE lphLookup)
tuitiintWSALookupServiceBeginW(_In_ LPWSAQUERYSET lpqsRestrictions, _In_ DWORD dwControlFlags, _Out_ LPHANDLE lphLookup)
tiintWSALookupServiceEnd(_In_ HANDLE hLookup)
tuittiintWSALookupServiceNext(_In_ HANDLE hLookup, _In_ DWORD dwControlFlags, _Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSAQUERYSET lpqsResults)
tuittiintWSALookupServiceNextA(_In_ HANDLE hLookup, _In_ DWORD dwControlFlags, _Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSAQUERYSET lpqsResults)
tuittiintWSALookupServiceNextW(_In_ HANDLE hLookup, _In_ DWORD dwControlFlags, _Inout_ LPDWORD lpdwBufferLength, _Out_ LPWSAQUERYSET lpqsResults)
tuitiintWSANtohl(_In_ SOCKET s, _In_ u_long netlong, _Out_ u_long *lphostlong)
tuhtiintWSANtohs(_In_ SOCKET s, _In_ u_short netshort, _Out_ u_short *lphostshort)
tuiiiintWSAPoll(_Inout_ WSAPOLLFD fdarray[], _In_ ULONG nfds, _In_ INT timeout)
tiiintWSAProviderCompleteAsyncCall(HANDLE hAsyncCall, INT iRetCode)
tttiintWSAProviderConfigChange(_Inout_ LPHANDLE lpNotificationHandle, _In_ LPWSAOVERLAPPED lpOverlapped, _In_ LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
ttuittttiintWSARecv(_In_ SOCKET s, _Inout_ LPWSABUF lpBuffers, _In_ DWORD dwBufferCount, _Out_ LPDWORD lpNumberOfBytesRecvd, _Inout_ LPDWORD lpFlags, _In_ LPWSAOVERLAPPED lpOverlapped, _In_ LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
ttiintWSARecvDisconnect(_In_ SOCKET s, _Out_ LPWSABUF lpInboundDisconnectData)
ttuittttttiintWSARecvFrom(_In_ SOCKET s, _Inout_ LPWSABUF lpBuffers, _In_ DWORD dwBufferCount, _Out_ LPDWORD lpNumberOfBytesRecvd, _Inout_ LPDWORD lpFlags, _Out_ struct sockaddr *lpFrom, _Inout_ LPINT lpFromlen, _In_ LPWSAOVERLAPPED lpOverlapped, _In_ LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
tiintWSARemoveServiceClass(_In_ LPGUID lpServiceClassId)
tiBOOLWSAResetEvent(_In_ WSAEVENT hEvent)
ttuituittiintWSASend(_In_ SOCKET s, _In_ LPWSABUF lpBuffers, _In_ DWORD dwBufferCount, _Out_ LPDWORD lpNumberOfBytesSent, _In_ DWORD dwFlags, _In_ LPWSAOVERLAPPED lpOverlapped, _In_ LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
ttiintWSASendDisconnect(_In_ SOCKET s, _In_ LPWSABUF lpOutboundDisconnectData)
ttuitttiintWSASendMsg(_In_ SOCKET s, _In_ LPWSAMSG lpMsg, _In_ DWORD dwFlags, _Out_ LPDWORD lpNumberOfBytesSent, _In_ LPWSAOVERLAPPED lpOverlapped, _In_ LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
ttuituitittiintWSASendTo(_In_ SOCKET s, _In_ LPWSABUF lpBuffers, _In_ DWORD dwBufferCount, _Out_ LPDWORD lpNumberOfBytesSent, _In_ DWORD dwFlags, _In_ const struct sockaddr *lpTo, _In_ int iToLen, _In_ LPWSAOVERLAPPED lpOverlapped, _In_ LPWSAOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
tiBOOLWSASetEvent(_In_ WSAEVENT hEvent)
iiVOIDWSASetLastError(_In_ int iError)
tuiuiiintWSASetService(_In_ LPWSAQUERYSET lpqsRegInfo, _In_ WSAESETSERVICEOP essOperation, _In_ DWORD dwControlFlags)
tuiuiiintWSASetServiceA(_In_ LPWSAQUERYSET lpqsRegInfo, _In_ WSAESETSERVICEOP essOperation, _In_ DWORD dwControlFlags)
tuiuiiintWSASetServiceW(_In_ LPWSAQUERYSET lpqsRegInfo, _In_ WSAESETSERVICEOP essOperation, _In_ DWORD dwControlFlags)
iiituiuitSOCKETWSASocket(_In_ int af, _In_ int type, _In_ int protocol, _In_ LPWSAPROTOCOL_INFO lpProtocolInfo, _In_ GROUP g, _In_ DWORD dwFlags)
iiituiuitSOCKETWSASocketA(_In_ int af, _In_ int type, _In_ int protocol, _In_ LPWSAPROTOCOL_INFO lpProtocolInfo, _In_ GROUP g, _In_ DWORD dwFlags)
iiituiuitSOCKETWSASocketW(_In_ int af, _In_ int type, _In_ int protocol, _In_ LPWSAPROTOCOL_INFO lpProtocolInfo, _In_ GROUP g, _In_ DWORD dwFlags)
uhtiintWSAStartup(_In_ WORD wVersionRequested, _Out_ LPWSADATA lpWSAData)
sitttiintWSAStringToAddress(_In_ LPTSTR AddressString, _In_ INT AddressFamily, _In_opt_ LPWSAPROTOCOL_INFO lpProtocolInfo, _Out_ LPSOCKADDR lpAddress, _Inout_ LPINT lpAddressLength)
aitttiintWSAStringToAddressA(_In_ LPSTR AddressString, _In_ INT AddressFamily, _In_opt_ LPWSAPROTOCOL_INFO lpProtocolInfo, _Out_ LPSOCKADDR lpAddress, _Inout_ LPINT lpAddressLength)
witttiintWSAStringToAddressW(_In_ LPWSTR AddressString, _In_ INT AddressFamily, _In_opt_ LPWSAPROTOCOL_INFO lpProtocolInfo, _Out_ LPSOCKADDR lpAddress, _Inout_ LPINT lpAddressLength)
tiintWSAUnadvertiseProvider(_In_ const GUID *puuidProviderId)
uitiuiiuiDWORDWSAWaitForMultipleEvents(_In_ DWORD cEvents, _In_ const WSAEVENT *lphEvents, _In_ BOOL fWaitAll, _In_ DWORD dwTimeout, _In_ BOOL fAlertable)
ttiintWSCDeinstallProvider(_In_ LPGUID lpProviderId, _Out_ LPINT lpErrno)
tiiintWSCEnableNSProvider(_In_ LPGUID lpProviderId, _In_ BOOL fEnable)
ttttiintWSCEnumProtocols(_In_ LPINT lpiProtocols, _Out_ LPWSAPROTOCOL_INFOW lpProtocolBuffer, _Inout_ LPDWORD lpdwBufferLength, _Out_ LPINT lpErrno)
wuiwuittiintWSCGetApplicationCategory(_In_ LPCWSTR Path, _In_ DWORD PathLength, _In_ LPCWSTR Extra, _In_ DWORD ExtraLength, _Out_ DWORD *pPermittedLspCategories, _Out_ LPINT lpErrno)
tuittuitiintWSCGetProviderInfo(_In_ LPGUID lpProviderId, _In_ WSC_PROVIDER_INFO_TYPE InfoType, _Out_ PBYTE Info, _Inout_ size_t *InfoSize, _In_ DWORD Flags, _Out_ LPINT lpErrno)
twttiintWSCGetProviderPath(_In_ LPGUID lpProviderId, _Out_ LPWSTR lpszProviderDllPath, _Inout_ LPINT lpProviderDllPathLen, _Out_ LPINT lpErrno)
wwuiuitiintWSCInstallNameSpace(_In_ LPWSTR lpszIdentifier, _In_ LPWSTR lpszPathName, _In_ DWORD dwNameSpace, _In_ DWORD dwVersion, _In_ LPGUID lpProviderId)
wwuiuittiintWSCInstallNameSpaceEx(_In_ LPWSTR lpszIdentifier, _In_ LPWSTR lpszPathName, _In_ DWORD dwNameSpace, _In_ DWORD dwVersion, _In_ LPGUID lpProviderId, _In_ LPBLOB lpProviderInfo)
twtuitiintWSCInstallProvider(_In_ const LPGUID lpProviderId, _In_ const LPWSTR lpszProviderDllPath, _In_ const LPWSAPROTOCOL_INFO lpProtocolInfoList, _In_ DWORD dwNumberOfEntries, _Out_ LPINT lpErrno)
twwuituittiintWSCInstallProviderAndChains(_In_ const LPGUID lpProviderId, _In_ const LPWSTR lpszProviderDllPath, _In_ const LPWSTR lpszLspName, _In_ DWORD dwServiceFlags, _In_ const LPWSAPROTOCOL_INFO lpProtocolInfoList, _In_ DWORD dwNumberOfEntries, _Out_opt_ LPDWORD lpdwCatalogEntryId, _Out_ LPINT lpErrno)
wuiwuiuittiintWSCSetApplicationCategory(_In_ LPCWSTR Path, _In_ DWORD PathLength, _In_ LPCWSTR Extra, _In_ DWORD ExtraLength, _In_ DWORD PermittedLspCategories, _Out_ DWORD *pPrevPermLspCat, _Out_ LPINT lpErrno)
tuitutuitiintWSCSetProviderInfo(_In_ LPGUID lpProviderId, _In_ WSC_PROVIDER_INFO_TYPE InfoType, _In_ PBYTE Info, _In_ size_t InfoSize, _In_ DWORD Flags, _Out_ LPINT lpErrno)
tiintWSCUnInstallNameSpace(_In_ LPGUID lpProviderId)
twtuitiintWSCUpdateProvider(_In_ LPGUID lpProviderId, _In_ const WCHAR *lpszProviderDllPath, _In_ const LPWSAPROTOCOL_INFO lpProtocolInfoList, _In_ DWORD dwNumberOfEntries, _Out_ LPINT lpErrno)