kernel32.dll API hash lookup table
This page contains a lookup table of hashed kernel32.dll APIs (MD5: D385B6882BFE47BEDF2A2B9547C91A16, SHA-1: 907eec7568423245054be9c59638f0e2bc04afad, SHA-256: a4e40c348031047b966c18f2761ee0460a226905721d2f29327528cb2b213cb1). The hash algorithm used to produce the hashes is the one ‘The Last Stage of Delirium Research Group’ wrote [[1]]. The DLL version from which the APIs were hashed is 10.0.17763.1 (WinBuild.160101.0800).
Hashing APIs is a technique in shellcode writing to obfuscate the name of APIs. Hashing assists in detection evasion purposes.
The page is in essence an effort to document the exported APIs of important Windows libraries. Additional work has been documented in:
- iphlpapi.dll API hash lookup table
- ntoskrnl.exe API hash lookup table
- ntdll.dll API hash lookup table
The C version of the hash algorithm
DWORD HashAPI(CHAR* api)
{
unsigned int h = 0;
while (*api)
{
h = ((h << 5) | (h >> 27)) + *api++;
}
//printf("hashed API: 0x%x\n", h);
return h;
}
The hash algorithm in Assembly
HashAPIName proc
xor rax, rax
lea rsi, [rcx]
lodsb
xor rbx, rbx ; hashed API
test al, al
jz no_op
hash_loop:
mov edx, ebx
shl ebx, 5
shr edx, 27
or ebx, edx
add ebx, eax
lodsb
test al, al
jnz hash_loop
mov eax, ebx
no_op:
ret
HashAPIName endp
Look up table
| API name | hash |
|---|---|
| AcquireSRWLockExclusive | 0xcb5d967d |
| AcquireSRWLockShared | 0xe1b0aca8 |
| ActivateActCtx | 0x341e403a |
| ActivateActCtxWorker | 0x42324921 |
| AddAtomA | 0xcc4bcc02 |
| AddAtomW | 0xcc4bcc18 |
| AddConsoleAliasA | 0x323f06e7 |
| AddConsoleAliasW | 0x323f06fd |
| AddDllDirectory | 0xb429a32c |
| AddIntegrityLabelToBoundaryDescriptor | 0xe7e3cc2e |
| AddLocalAlternateComputerNameA | 0x7bb1dba3 |
| AddLocalAlternateComputerNameW | 0x7bb1dbb9 |
| AddRefActCtx | 0x2a87f03a |
| AddRefActCtxWorker | 0x3fccb521 |
| AddResourceAttributeAce | 0x86b659dd |
| AddSIDToBoundaryDescriptor | 0x419ee1c6 |
| AddScopedPolicyIDAce | 0x56d794ef |
| AddSecureMemoryCacheCallback | 0x185e60e3 |
| AddVectoredContinueHandler | 0x36a47766 |
| AddVectoredExceptionHandler | 0x8ec1a4eb |
| AdjustCalendarDate | 0x34dce99c |
| AllocConsole | 0xc7593c0e |
| AllocateUserPhysicalPages | 0xf4998bcf |
| AllocateUserPhysicalPagesNuma | 0xbd282b99 |
| AppPolicyGetClrCompat | 0x8cbd9268 |
| AppPolicyGetCreateFileAccess | 0x10aa7f59 |
| AppPolicyGetLifecycleManagement | 0xb70d66ca |
| AppPolicyGetMediaFoundationCodecLoading | 0x91d07de2 |
| AppPolicyGetProcessTerminationMethod | 0xee6e0099 |
| AppPolicyGetShowDeveloperDiagnostic | 0x59eafa97 |
| AppPolicyGetThreadInitializationType | 0x3106a377 |
| AppPolicyGetWindowingModel | 0xcaa6a223 |
| AppXGetOSMaxVersionTested | 0x61b45f72 |
| ApplicationRecoveryFinished | 0x75399fba |
| ApplicationRecoveryInProgress | 0x1e75e0ba |
| AreFileApisANSI | 0x4e03baf8 |
| AssignProcessToJobObject | 0xd3d00cbb |
| AttachConsole | 0xf0f7d03a |
| BackupRead | 0xb13344b7 |
| BackupSeek | 0xb133c53e |
| BackupWrite | 0x26bf395b |
| BaseCheckAppcompatCache | 0xff75e6aa |
| BaseCheckAppcompatCacheEx | 0xd79ab515 |
| BaseCheckAppcompatCacheExWorker | 0x2b116658 |
| BaseCheckAppcompatCacheWorker | 0x750832bd |
| BaseCheckElevation | 0xef0a0c94 |
| BaseCleanupAppcompatCacheSupport | 0xed7b244 |
| BaseCleanupAppcompatCacheSupportWorker | 0xb8e0a5a3 |
| BaseDestroyVDMEnvironment | 0x6cd580fe |
| BaseDllReadWriteIniFile | 0x2e0a3c8c |
| BaseDumpAppcompatCache | 0x82f578d2 |
| BaseDumpAppcompatCacheWorker | 0x55e81747 |
| BaseElevationPostProcessing | 0xe5ec5b80 |
| BaseFlushAppcompatCache | 0xc0665eb |
| BaseFlushAppcompatCacheWorker | 0x782c528d |
| BaseFormatObjectAttributes | 0x40fd595e |
| BaseFormatTimeOut | 0x729ef558 |
| BaseFreeAppCompatDataForProcessWorker | 0xc3bc3a86 |
| BaseGenerateAppCompatData | 0x9d6719d8 |
| BaseGetNamedObjectDirectory | 0x4cc95926 |
| BaseInitAppcompatCacheSupport | 0xcdac995d |
| BaseInitAppcompatCacheSupportWorker | 0x2895df6a |
| BaseIsAppcompatInfrastructureDisabled | 0x2d5b46fb |
| BaseIsAppcompatInfrastructureDisabledWorker | 0x80818ad1 |
| BaseIsDosApplication | 0xc9a58b3a |
| BaseQueryModuleData | 0xbdf7e250 |
| BaseReadAppCompatDataForProcessWorker | 0x5aba3a92 |
| BaseSetLastNTError | 0xc06c1ef2 |
| BaseThreadInitThunk | 0x961cec8e |
| BaseUpdateAppcompatCache | 0xb50a5043 |
| BaseUpdateAppcompatCacheWorker | 0xa26d4d23 |
| BaseUpdateVDMEntry | 0xdac0786b |
| BaseVerifyUnicodeString | 0x5b52303c |
| BaseWriteErrorElevationRequiredEvent | 0x50882ade |
| Basep8BitStringToDynamicUnicodeString | 0xea863af0 |
| BasepAllocateActivationContextActivationBlock | 0x33971008 |
| BasepAnsiStringToDynamicUnicodeString | 0x3d998af1 |
| BasepAppContainerEnvironmentExtension | 0x2a29bb6c |
| BasepAppXExtension | 0x238b2d50 |
| BasepCheckAppCompat | 0x55d835be |
| BasepCheckWebBladeHashes | 0x73f2714a |
| BasepCheckWinSaferRestrictions | 0xd1139c2e |
| BasepConstructSxsCreateProcessMessage | 0xff345e14 |
| BasepCopyEncryption | 0xb7bf0811 |
| BasepFreeActivationContextActivationBlock | 0x93400525 |
| BasepFreeAppCompatData | 0x357699bf |
| BasepGetAppCompatData | 0x6c3ebbe4 |
| BasepGetComputerNameFromNtPath | 0xc56de5e8 |
| BasepGetExeArchType | 0xec659e1f |
| BasepInitAppCompatData | 0x35797add |
| BasepIsProcessAllowed | 0xd124e966 |
| BasepMapModuleHandle | 0x915a2a8a |
| BasepNotifyLoadStringResource | 0xa861a13a |
| BasepPostSuccessAppXExtension | 0x8e4dc09a |
| BasepProcessInvalidImage | 0xb3ea9476 |
| BasepQueryAppCompat | 0x2615f5db |
| BasepQueryModuleChpeSettings | 0x594c3e41 |
| BasepReleaseAppXContext | 0x5367d9b3 |
| BasepReleaseSxsCreateProcessUtilityStruct | 0xdb6e969a |
| BasepReportFault | 0xf5e99eb5 |
| BasepSetFileEncryptionCompression | 0x3371ab5 |
| Beep | 0x22a110 |
| BeginUpdateResourceA | 0xb934146f |
| BeginUpdateResourceW | 0xb9341485 |
| BindIoCompletionCallback | 0xf1a28840 |
| BuildCommDCBA | 0xfd24fab9 |
| BuildCommDCBAndTimeoutsA | 0x6fefc882 |
| BuildCommDCBAndTimeoutsW | 0x6fefc898 |
| BuildCommDCBW | 0xfd24facf |
| CallNamedPipeA | 0x54f071ef |
| CallNamedPipeW | 0x54f07205 |
| CallbackMayRunLong | 0xbd024ace |
| CancelDeviceWakeupRequest | 0x56c2e980 |
| CancelIo | 0x22643bc0 |
| CancelIoEx | 0x90ef09a1 |
| CancelSynchronousIo | 0x2a02535a |
| CancelThreadpoolIo | 0xdb9c6b41 |
| CancelTimerQueueTimer | 0x58915393 |
| CancelWaitableTimer | 0x8a3a575c |
| CeipIsOptedIn | 0xba6663f |
| ChangeTimerQueueTimer | 0xa5f31b96 |
| CheckAllowDecryptedRemoteDestinationPolicy | 0x9351c0f |
| CheckElevation | 0xe6655b54 |
| CheckElevationEnabled | 0x556d97bd |
| CheckForReadOnlyResource | 0x3ef9cade |
| CheckForReadOnlyResourceFilter | 0x22864fca |
| CheckNameLegalDOS8Dot3A | 0xefc1358f |
| CheckNameLegalDOS8Dot3W | 0xefc135a5 |
| CheckRemoteDebuggerPresent | 0x544d4006 |
| CheckTokenCapability | 0x1c0ee59a |
| CheckTokenMembershipEx | 0x8e906ea2 |
| ClearCommBreak | 0x126d27ac |
| ClearCommError | 0x129d5d73 |
| CloseConsoleHandle | 0x485f05ed |
| CloseHandle | 0xd7629096 |
| ClosePackageInfo | 0x7844ff85 |
| ClosePrivateNamespace | 0x6e8e23aa |
| CloseProfileUserMapping | 0x1ba3ac4f |
| ClosePseudoConsole | 0xe90de6fd |
| CloseState | 0x8f74627a |
| CloseThreadpool | 0x3398c795 |
| CloseThreadpoolCleanupGroup | 0x9b215c17 |
| CloseThreadpoolCleanupGroupMembers | 0xea0d8383 |
| CloseThreadpoolIo | 0x631e5e5d |
| CloseThreadpoolTimer | 0x2fdd72a1 |
| CloseThreadpoolWait | 0x79804b20 |
| CloseThreadpoolWork | 0x79808437 |
| CmdBatNotification | 0x7de6cfe2 |
| CommConfigDialogA | 0x41d38989 |
| CommConfigDialogW | 0x41d3899f |
| CompareCalendarDates | 0xd4c293bd |
| CompareFileTime | 0x280e6af5 |
| CompareStringA | 0xd7a2daeb |
| CompareStringEx | 0xf45b5e72 |
| CompareStringOrdinal | 0x605efb4b |
| CompareStringW | 0xd7a2db01 |
| ConnectNamedPipe | 0x2486b82c |
| ConsoleMenuControl | 0xa1af75aa |
| ContinueDebugEvent | 0x377c183b |
| ConvertCalDateTimeToSystemTime | 0xf5e8fba3 |
| ConvertDefaultLocale | 0x5d80eff2 |
| ConvertFiberToThread | 0x4f08fad0 |
| ConvertNLSDayOfWeekToWin32DayOfWeek | 0x3ec0cbc0 |
| ConvertSystemTimeToCalDateTime | 0x5f4e869e |
| ConvertThreadToFiber | 0xa2a45ed8 |
| ConvertThreadToFiberEx | 0x917b6ba2 |
| CopyContext | 0xa635f74d |
| CopyFile2 | 0xf6968366 |
| CopyFileA | 0xf6968375 |
| CopyFileExA | 0x5a0df71b |
| CopyFileExW | 0x5a0df731 |
| CopyFileTransactedA | 0x969e1fa8 |
| CopyFileTransactedW | 0x969e1fbe |
| CopyFileW | 0xf696838b |
| CopyLZFile | 0xddcd8483 |
| CreateActCtxA | 0x7803f67e |
| CreateActCtxW | 0x7803f694 |
| CreateActCtxWWorker | 0xd32bb6b7 |
| CreateBoundaryDescriptorA | 0x93db73f3 |
| CreateBoundaryDescriptorW | 0x93db7409 |
| CreateConsoleScreenBuffer | 0x679b0b68 |
| CreateDirectoryA | 0x5918795b |
| CreateDirectoryExA | 0x61e58ca5 |
| CreateDirectoryExW | 0x61e58cbb |
| CreateDirectoryTransactedA | 0x6e33a9b0 |
| CreateDirectoryTransactedW | 0x6e33a9c6 |
| CreateDirectoryW | 0x59187971 |
| CreateEnclave | 0x8d082a63 |
| CreateEventA | 0xf4e94b7a |
| CreateEventExA | 0xa52e0b14 |
| CreateEventExW | 0xa52e0b2a |
| CreateEventW | 0xf4e94b90 |
| CreateFiber | 0xcfb0bd37 |
| CreateFiberEx | 0xc2f4e856 |
| CreateFile2 | 0xcfb0e4f7 |
| CreateFileA | 0xcfb0e506 |
| CreateFileMappingA | 0xa4bd6dd0 |
| CreateFileMappingFromApp | 0x5456ede6 |
| CreateFileMappingNumaA | 0xde168c37 |
| CreateFileMappingNumaW | 0xde168c4d |
| CreateFileMappingW | 0xa4bd6de6 |
| CreateFileTransactedA | 0x1ce18412 |
| CreateFileTransactedW | 0x1ce18428 |
| CreateFileW | 0xcfb0e51c |
| CreateHardLinkA | 0xcf534270 |
| CreateHardLinkTransactedA | 0x9289829b |
| CreateHardLinkTransactedW | 0x928982b1 |
| CreateHardLinkW | 0xcf534286 |
| CreateIoCompletionPort | 0x603fa510 |
| CreateJobObjectA | 0xd6740235 |
| CreateJobObjectW | 0xd674024b |
| CreateJobSet | 0xfe775dcd |
| CreateMailslotA | 0xa1c4cc8e |
| CreateMailslotW | 0xa1c4cca4 |
| CreateMemoryResourceNotification | 0x65be5b40 |
| CreateMutexA | 0x4e0a7fb |
| CreateMutexExA | 0x82a00b54 |
| CreateMutexExW | 0x82a00b6a |
| CreateMutexW | 0x4e0a811 |
| CreateNamedPipeA | 0x58d6a6b3 |
| CreateNamedPipeW | 0x58d6a6c9 |
| CreatePipe | 0x2e8287a6 |
| CreatePrivateNamespaceA | 0xd5d59317 |
| CreatePrivateNamespaceW | 0xd5d5932d |
| CreateProcessA | 0xb87742cb |
| CreateProcessAsUserA | 0xd9a8f334 |
| CreateProcessAsUserW | 0xd9a8f34a |
| CreateProcessInternalA | 0x489b6907 |
| CreateProcessInternalW | 0x489b691d |
| CreateProcessW | 0xb87742e1 |
| CreatePseudoConsole | 0xfae6773e |
| CreateRemoteThread | 0x7231f46c |
| CreateRemoteThreadEx | 0xc7d1bae0 |
| CreateSemaphoreA | 0x725a52b2 |
| CreateSemaphoreExA | 0x694ae90a |
| CreateSemaphoreExW | 0x694ae920 |
| CreateSemaphoreW | 0x725a52c8 |
| CreateSymbolicLinkA | 0x93df1dec |
| CreateSymbolicLinkTransactedA | 0x7894cb |
| CreateSymbolicLinkTransactedW | 0x7894e1 |
| CreateSymbolicLinkW | 0x93df1e02 |
| CreateTapePartition | 0xfbc0cb43 |
| CreateThread | 0x120fa53e |
| CreateThreadpool | 0x541aeb46 |
| CreateThreadpoolCleanupGroup | 0xad297e52 |
| CreateThreadpoolIo | 0x6bad22df |
| CreateThreadpoolTimer | 0x921e76e8 |
| CreateThreadpoolWait | 0xb4925342 |
| CreateThreadpoolWork | 0xb4928c59 |
| CreateTimerQueue | 0x74ed44d7 |
| CreateTimerQueueTimer | 0xb4601b9b |
| CreateToolhelp32Snapshot | 0x7229a72a |
| CreateUmsCompletionList | 0xaa5fcb5e |
| CreateUmsThreadContext | 0x2dd8f925 |
| CreateWaitableTimerA | 0x8a296212 |
| CreateWaitableTimerExA | 0xa5886969 |
| CreateWaitableTimerExW | 0xa588697f |
| CreateWaitableTimerW | 0x8a296228 |
| CtrlRoutine | 0x66a6a79a |
| DeactivateActCtx | 0x342079ba |
| DeactivateActCtxWorker | 0x4232d781 |
| DebugActiveProcess | 0x3768ea22 |
| DebugActiveProcessStop | 0xa24ed4de |
| DebugBreak | 0x126388b9 |
| DebugBreakProcess | 0x7e3f68b0 |
| DebugSetProcessKillOnExit | 0x9a6f5737 |
| DecodePointer | 0x58e32453 |
| DecodeSystemPointer | 0x702a575f |
| DefineDosDeviceA | 0x9a35459d |
| DefineDosDeviceW | 0x9a3545b3 |
| DelayLoadFailureHook | 0xf7f32d1 |
| DeleteAtom | 0x2e7b46c7 |
| DeleteBoundaryDescriptor | 0x94a3a9dd |
| DeleteCriticalSection | 0x9933b4e2 |
| DeleteFiber | 0xcfb32457 |
| DeleteFileA | 0xcfb34c26 |
| DeleteFileTransactedA | 0xb961841b |
| DeleteFileTransactedW | 0xb9618431 |
| DeleteFileW | 0xcfb34c3c |
| DeleteProcThreadAttributeList | 0x6f0cff6e |
| DeleteSynchronizationBarrier | 0x9de7e957 |
| DeleteTimerQueue | 0xb4ed49a5 |
| DeleteTimerQueueEx | 0xb5269feb |
| DeleteTimerQueueTimer | 0x50e01ba5 |
| DeleteUmsCompletionList | 0xaa5ff1d0 |
| DeleteUmsThreadContext | 0xbdd8fa58 |
| DeleteVolumeMountPointA | 0x7f40434 |
| DeleteVolumeMountPointW | 0x7f4044a |
| DequeueUmsCompletionListItems | 0xc62cb2a7 |
| DeviceIoControl | 0x3b34d4a7 |
| DisableThreadLibraryCalls | 0xc4642578 |
| DisableThreadProfiling | 0xf7885275 |
| DisassociateCurrentThreadFromCallback | 0xfe7d0f80 |
| DiscardVirtualMemory | 0xe9a5684d |
| DisconnectNamedPipe | 0x421ab82d |
| DnsHostnameToComputerNameA | 0x488fdcf2 |
| DnsHostnameToComputerNameExW | 0x3f73e879 |
| DnsHostnameToComputerNameW | 0x488fdd08 |
| DosDateTimeToFileTime | 0x3b7f61b8 |
| DosPathToSessionPathA | 0x12b9f2ce |
| DosPathToSessionPathW | 0x12b9f2e4 |
| DuplicateConsoleHandle | 0xfd1625b6 |
| DuplicateEncryptionInfoFileExt | 0xa297c31d |
| DuplicateHandle | 0xdf97490 |
| EnableThreadProfiling | 0x7787c833 |
| EncodePointer | 0x6d632453 |
| EncodeSystemPointer | 0x754a575f |
| EndUpdateResourceA | 0x20f8c44d |
| EndUpdateResourceW | 0x20f8c463 |
| EnterCriticalSection | 0xa3051892 |
| EnterSynchronizationBarrier | 0xec7306d7 |
| EnterUmsSchedulingMode | 0x2ad257e8 |
| EnumCalendarInfoA | 0x8b4e4578 |
| EnumCalendarInfoExA | 0x3916016e |
| EnumCalendarInfoExEx | 0x22c02ebf |
| EnumCalendarInfoExW | 0x39160184 |
| EnumCalendarInfoW | 0x8b4e458e |
| EnumDateFormatsA | 0x9e978a5e |
| EnumDateFormatsExA | 0x5e2999bb |
| EnumDateFormatsExEx | 0xc5333863 |
| EnumDateFormatsExW | 0x5e2999d1 |
| EnumDateFormatsW | 0x9e978a74 |
| EnumLanguageGroupLocalesA | 0xc4f8f69e |
| EnumLanguageGroupLocalesW | 0xc4f8f6b4 |
| EnumResourceLanguagesA | 0x420c4cf9 |
| EnumResourceLanguagesExA | 0x31340449 |
| EnumResourceLanguagesExW | 0x3134045f |
| EnumResourceLanguagesW | 0x420c4d0f |
| EnumResourceNamesA | 0x76a4fbbd |
| EnumResourceNamesExA | 0x93ef151b |
| EnumResourceNamesExW | 0x93ef1531 |
| EnumResourceNamesW | 0x76a4fbd3 |
| EnumResourceTypesA | 0x84267bbd |
| EnumResourceTypesExA | 0x99ef1551 |
| EnumResourceTypesExW | 0x99ef1567 |
| EnumResourceTypesW | 0x84267bd3 |
| EnumSystemCodePagesA | 0xa191ac2c |
| EnumSystemCodePagesW | 0xa191ac42 |
| EnumSystemFirmwareTables | 0x2e21b68b |
| EnumSystemGeoID | 0xa67fee41 |
| EnumSystemGeoNames | 0xf7811452 |
| EnumSystemLanguageGroupsA | 0x64037413 |
| EnumSystemLanguageGroupsW | 0x64037429 |
| EnumSystemLocalesA | 0x60b6760b |
| EnumSystemLocalesEx | 0x16cec264 |
| EnumSystemLocalesW | 0x60b67621 |
| EnumTimeFormatsA | 0xa6b6aa5e |
| EnumTimeFormatsEx | 0xd6d54ccc |
| EnumTimeFormatsW | 0xa6b6aa74 |
| EnumUILanguagesA | 0xabf54b9c |
| EnumUILanguagesW | 0xabf54bb2 |
| EnumerateLocalComputerNamesA | 0x1922cb2e |
| EnumerateLocalComputerNamesW | 0x1922cb44 |
| EraseTape | 0x2c7bdb0e |
| EscapeCommFunction | 0x9ecbf2c2 |
| ExecuteUmsThread | 0xdb19dfd9 |
| ExitProcess | 0xec468f87 |
| ExitThread | 0xaec3bbe9 |
| ExitVDM | 0x36cb60df |
| ExpandEnvironmentStringsA | 0x6e010fcf |
| ExpandEnvironmentStringsW | 0x6e010fe5 |
| ExpungeConsoleCommandHistoryA | 0x21311259 |
| ExpungeConsoleCommandHistoryW | 0x2131126f |
| FatalAppExitA | 0x76ea40ea |
| FatalAppExitW | 0x76ea4100 |
| FatalExit | 0xc8e4b6b9 |
| FileTimeToDosDateTime | 0xe4116fe3 |
| FileTimeToLocalFileTime | 0xf536d726 |
| FileTimeToSystemTime | 0xfeaa49ff |
| FillConsoleOutputAttribute | 0x6b707186 |
| FillConsoleOutputCharacterA | 0x5e1daa16 |
| FillConsoleOutputCharacterW | 0x5e1daa2c |
| FindActCtxSectionGuid | 0xe722a262 |
| FindActCtxSectionGuidWorker | 0x6ef361ab |
| FindActCtxSectionStringA | 0x4fc5b8b5 |
| FindActCtxSectionStringW | 0x4fc5b8cb |
| FindActCtxSectionStringWWorker | 0x891c2745 |
| FindAtomA | 0x4c4c1345 |
| FindAtomW | 0x4c4c135b |
| FindClose | 0x4c681429 |
| FindCloseChangeNotification | 0x3313633e |
| FindFirstChangeNotificationA | 0xe283ae0e |
| FindFirstChangeNotificationW | 0xe283ae24 |
| FindFirstFileA | 0x752f6a21 |
| FindFirstFileExA | 0xbda8a515 |
| FindFirstFileExW | 0xbda8a52b |
| FindFirstFileNameTransactedW | 0xd824d1ca |
| FindFirstFileNameW | 0xa31993ed |
| FindFirstFileTransactedA | 0x314c1a0c |
| FindFirstFileTransactedW | 0x314c1a22 |
| FindFirstFileW | 0x752f6a37 |
| FindFirstStreamTransactedW | 0xd7aa9588 |
| FindFirstStreamW | 0x140913cf |
| FindFirstVolumeA | 0xc9b142b9 |
| FindFirstVolumeMountPointA | 0xb24bc613 |
| FindFirstVolumeMountPointW | 0xb24bc629 |
| FindFirstVolumeW | 0xc9b142cf |
| FindNLSString | 0x3bf82a1 |
| FindNLSStringEx | 0xfe0a8d26 |
| FindNextChangeNotification | 0x8a6b6584 |
| FindNextFileA | 0x82db0e2c |
| FindNextFileNameW | 0xe3ca6ea7 |
| FindNextFileW | 0x82db0e42 |
| FindNextStreamW | 0xc2994005 |
| FindNextVolumeA | 0x78416ef0 |
| FindNextVolumeMountPointA | 0x63268054 |
| FindNextVolumeMountPointW | 0x6326806a |
| FindNextVolumeW | 0x78416f06 |
| FindPackagesByPackageFamily | 0xa6df694e |
| FindResourceA | 0x3bcf6e2b |
| FindResourceExA | 0x3db8cc30 |
| FindResourceExW | 0x3db8cc46 |
| FindResourceW | 0x3bcf6e41 |
| FindStringOrdinal | 0x16953a26 |
| FindVolumeClose | 0x21ce2ce2 |
| FindVolumeMountPointClose | 0x7db6c6e8 |
| FlsAlloc | 0xea47c08e |
| FlsFree | 0x5f54d517 |
| FlsGetValue | 0x2eb83457 |
| FlsSetValue | 0x2eb834b7 |
| FlushConsoleInputBuffer | 0xa81bc607 |
| FlushFileBuffers | 0xd5bc7ddd |
| FlushInstructionCache | 0xfe0d59ce |
| FlushProcessWriteBuffers | 0x1ee85d7f |
| FlushViewOfFile | 0xefaff08a |
| FoldStringA | 0xb07c9456 |
| FoldStringW | 0xb07c946c |
| FormatApplicationUserModelId | 0xba82d605 |
| FormatMessageA | 0x5822bff6 |
| FormatMessageW | 0x5822c00c |
| FreeConsole | 0xa641f21e |
| FreeEnvironmentStringsA | 0xa536b13f |
| FreeEnvironmentStringsW | 0xa536b155 |
| FreeLibrary | 0xd9813af4 |
| FreeLibraryAndExitThread | 0xaa5631d7 |
| FreeLibraryWhenCallbackReturns | 0x1f39fba5 |
| FreeMemoryJobObject | 0x54564a77 |
| FreeResource | 0x52015c6f |
| FreeUserPhysicalPages | 0xf41dac07 |
| GenerateConsoleCtrlEvent | 0x5b02e01f |
| GetACP | 0x948b0cb0 |
| GetActiveProcessorCount | 0x1c81d432 |
| GetActiveProcessorGroupCount | 0x20a2e8ae |
| GetAppContainerAce | 0x4f1cf90f |
| GetAppContainerNamedObjectPath | 0xb675ab1f |
| GetApplicationRecoveryCallback | 0x71f58d67 |
| GetApplicationRecoveryCallbackWorker | 0x91a81c6c |
| GetApplicationRestartSettings | 0x8c3bfe11 |
| GetApplicationRestartSettingsWorker | 0x1839b897 |
| GetApplicationUserModelId | 0x54a2b13b |
| GetAtomNameA | 0xc435059d |
| GetAtomNameW | 0xc43505b3 |
| GetBinaryType | 0xd0149ef2 |
| GetBinaryTypeA | 0x293de9b |
| GetBinaryTypeW | 0x293deb1 |
| GetCPInfo | 0x8b268f74 |
| GetCPInfoExA | 0x47bb68d4 |
| GetCPInfoExW | 0x47bb68ea |
| GetCachedSigningLevel | 0x16e9ede5 |
| GetCalendarDateFormat | 0x9e402414 |
| GetCalendarDateFormatEx | 0x905b91 |
| GetCalendarDaysInMonth | 0x83b5bc6c |
| GetCalendarDifferenceInDays | 0x201dff89 |
| GetCalendarInfoA | 0x8b080986 |
| GetCalendarInfoEx | 0x610131c9 |
| GetCalendarInfoW | 0x8b08099c |
| GetCalendarMonthsInYear | 0xb353731b |
| GetCalendarSupportedDateRange | 0x424a701b |
| GetCalendarWeekNumber | 0x2e9fdc1c |
| GetComPlusPackageInstallStatus | 0x574be291 |
| GetCommConfig | 0x7181780f |
| GetCommMask | 0xa22128ff |
| GetCommModemStatus | 0xfe7d57fb |
| GetCommProperties | 0xf9e46c34 |
| GetCommState | 0x448e5979 |
| GetCommTimeouts | 0x83d3853f |
| GetCommandLineA | 0xb0406796 |
| GetCommandLineW | 0xb04067ac |
| GetCompressedFileSizeA | 0x54d87021 |
| GetCompressedFileSizeTransactedA | 0x494b98b0 |
| GetCompressedFileSizeTransactedW | 0x494b98c6 |
| GetCompressedFileSizeW | 0x54d87037 |
| GetComputerNameA | 0x92570bc7 |
| GetComputerNameExA | 0x5c2f3d8a |
| GetComputerNameExW | 0x5c2f3da0 |
| GetComputerNameW | 0x92570bdd |
| GetConsoleAliasA | 0x323f3747 |
| GetConsoleAliasExesA | 0x74f0c694 |
| GetConsoleAliasExesLengthA | 0xae518ee9 |
| GetConsoleAliasExesLengthW | 0xae518eff |
| GetConsoleAliasExesW | 0x74f0c6aa |
| GetConsoleAliasW | 0x323f375d |
| GetConsoleAliasesA | 0xfcddbb69 |
| GetConsoleAliasesLengthA | 0x104ccc1f |
| GetConsoleAliasesLengthW | 0x104ccc35 |
| GetConsoleAliasesW | 0xfcddbb7f |
| GetConsoleCP | 0x924a6344 |
| GetConsoleCharType | 0xedde8b3c |
| GetConsoleCommandHistoryA | 0x5a20448a |
| GetConsoleCommandHistoryLengthA | 0x279d6e67 |
| GetConsoleCommandHistoryLengthW | 0x279d6e7d |
| GetConsoleCommandHistoryW | 0x5a2044a0 |
| GetConsoleCursorInfo | 0xefa9b26e |
| GetConsoleCursorMode | 0xefabb624 |
| GetConsoleDisplayMode | 0x162871ca |
| GetConsoleFontInfo | 0xc7f8de20 |
| GetConsoleFontSize | 0xc7fdcc96 |
| GetConsoleHardwareState | 0x4c09b23c |
| GetConsoleHistoryInfo | 0xf8366e34 |
| GetConsoleInputExeNameA | 0xe22a7c59 |
| GetConsoleInputExeNameW | 0xe22a7c6f |
| GetConsoleInputWaitHandle | 0xf738aa96 |
| GetConsoleKeyboardLayoutNameA | 0xbfd534d |
| GetConsoleKeyboardLayoutNameW | 0xbfd5363 |
| GetConsoleMode | 0x29929b2e |
| GetConsoleNlsMode | 0x887cddae |
| GetConsoleOriginalTitleA | 0x4e19f453 |
| GetConsoleOriginalTitleW | 0x4e19f469 |
| GetConsoleOutputCP | 0x53cef1eb |
| GetConsoleProcessList | 0x79f8f74f |
| GetConsoleScreenBufferInfo | 0x68205448 |
| GetConsoleScreenBufferInfoEx | 0x81512ab8 |
| GetConsoleSelectionInfo | 0xd38c711c |
| GetConsoleTitleA | 0x5814e187 |
| GetConsoleTitleW | 0x5814e19d |
| GetConsoleWindow | 0x5e11c2fd |
| GetCurrencyFormatA | 0xc942eb4c |
| GetCurrencyFormatEx | 0x285d6a91 |
| GetCurrencyFormatW | 0xc942eb62 |
| GetCurrentActCtx | 0xf4c415b1 |
| GetCurrentActCtxWorker | 0x325bbe7f |
| GetCurrentApplicationUserModelId | 0x5171d94 |
| GetCurrentConsoleFont | 0x1267cdde |
| GetCurrentConsoleFontEx | 0x9f378161 |
| GetCurrentDirectoryA | 0xb919099a |
| GetCurrentDirectoryW | 0xb91909b0 |
| GetCurrentPackageFamilyName | 0xc1df04a1 |
| GetCurrentPackageFullName | 0xa5511ba6 |
| GetCurrentPackageId | 0x19a226d2 |
| GetCurrentPackageInfo | 0x889b7d95 |
| GetCurrentPackagePath | 0x889ecb4e |
| GetCurrentProcess | 0x76427a15 |
| GetCurrentProcessId | 0x9e85f5d |
| GetCurrentProcessorNumber | 0x66022e1d |
| GetCurrentProcessorNumberEx | 0x8b87eb0 |
| GetCurrentThread | 0x1b139b3e |
| GetCurrentThreadId | 0x4e6d01f0 |
| GetCurrentThreadStackLimits | 0xff30a0f3 |
| GetCurrentUmsThread | 0xec17af35 |
| GetDateFormatA | 0xf074aa8f |
| GetDateFormatAWorker | 0xb147e3b6 |
| GetDateFormatEx | 0xe9552f6 |
| GetDateFormatW | 0xf074aaa5 |
| GetDateFormatWWorker | 0x3147e3bc |
| GetDefaultCommConfigA | 0xf9174f6f |
| GetDefaultCommConfigW | 0xf9174f85 |
| GetDevicePowerState | 0x15a03feb |
| GetDiskFreeSpaceA | 0xb8b193b1 |
| GetDiskFreeSpaceExA | 0xc64ee623 |
| GetDiskFreeSpaceExW | 0xc64ee639 |
| GetDiskFreeSpaceW | 0xb8b193c7 |
| GetDiskSpaceInformationA | 0xdbc4422f |
| GetDiskSpaceInformationW | 0xdbc44245 |
| GetDllDirectoryA | 0x85349637 |
| GetDllDirectoryW | 0x8534964d |
| GetDriveTypeA | 0xf3d7424b |
| GetDriveTypeW | 0xf3d74261 |
| GetDurationFormat | 0x9e07f2b7 |
| GetDurationFormatEx | 0x1fcae790 |
| GetDynamicTimeZoneInformation | 0x4e1be064 |
| GetEnabledXStateFeatures | 0x810aa9b |
| GetEncryptedFileVersionExt | 0x9bf0b028 |
| GetEnvironmentStrings | 0x312926d8 |
| GetEnvironmentStringsA | 0x2524db47 |
| GetEnvironmentStringsW | 0x2524db5d |
| GetEnvironmentVariableA | 0xa3c8d40d |
| GetEnvironmentVariableW | 0xa3c8d423 |
| GetEraNameCountedString | 0x6b609edb |
| GetErrorMode | 0x8a6b1192 |
| GetExitCodeProcess | 0xbf861c46 |
| GetExitCodeThread | 0xa55db84f |
| GetExpandedNameA | 0x9ae12447 |
| GetExpandedNameW | 0x9ae1245d |
| GetFileAttributesA | 0x8674ca5 |
| GetFileAttributesExA | 0x9d32b362 |
| GetFileAttributesExW | 0x9d32b378 |
| GetFileAttributesTransactedA | 0xbb5a66eb |
| GetFileAttributesTransactedW | 0xbb5a6701 |
| GetFileAttributesW | 0x8674cbb |
| GetFileBandwidthReservation | 0x9013bb3e |
| GetFileInformationByHandle | 0x1cd6dc71 |
| GetFileInformationByHandleEx | 0x5b71cd8b |
| GetFileMUIInfo | 0x79dbd4ff |
| GetFileMUIPath | 0x79df22b8 |
| GetFileSize | 0x1fa449f0 |
| GetFileSizeEx | 0x9127c996 |
| GetFileTime | 0x1fa4c850 |
| GetFileType | 0x1fa508b0 |
| GetFinalPathNameByHandleA | 0xb76d5b59 |
| GetFinalPathNameByHandleW | 0xb76d5b6f |
| GetFirmwareEnvironmentVariableA | 0x6718d1d0 |
| GetFirmwareEnvironmentVariableExA | 0x634760dd |
| GetFirmwareEnvironmentVariableExW | 0x634760f3 |
| GetFirmwareEnvironmentVariableW | 0x6718d1e6 |
| GetFirmwareType | 0x8f2eb5c7 |
| GetFullPathNameA | 0x71526633 |
| GetFullPathNameTransactedA | 0x21940a98 |
| GetFullPathNameTransactedW | 0x21940aae |
| GetFullPathNameW | 0x71526649 |
| GetGeoInfoA | 0x23f1bc73 |
| GetGeoInfoEx | 0x7e378f5c |
| GetGeoInfoW | 0x23f1bc89 |
| GetHandleInformation | 0x76c90057 |
| GetLargePageMinimum | 0xe5f94674 |
| GetLargestConsoleWindowSize | 0x7e7a4069 |
| GetLastError | 0xd1ada577 |
| GetLocalTime | 0xae0e8196 |
| GetLocaleInfoA | 0x5a06ecd9 |
| GetLocaleInfoEx | 0x40dd9c23 |
| GetLocaleInfoW | 0x5a06ecef |
| GetLogicalDriveStringsA | 0x2eda94db |
| GetLogicalDriveStringsW | 0x2eda94f1 |
| GetLogicalDrives | 0x88823d63 |
| GetLogicalProcessorInformation | 0xabba35b8 |
| GetLogicalProcessorInformationEx | 0xe8d6ebc6 |
| GetLongPathNameA | 0xce59c633 |
| GetLongPathNameTransactedA | 0xa1957eb5 |
| GetLongPathNameTransactedW | 0xa1957ecb |
| GetLongPathNameW | 0xce59c649 |
| GetMailslotInfo | 0x4d77e774 |
| GetMaximumProcessorCount | 0x716569d2 |
| GetMaximumProcessorGroupCount | 0x614cafd9 |
| GetMemoryErrorHandlingCapabilities | 0x60c40846 |
| GetModuleFileNameA | 0x5497de69 |
| GetModuleFileNameW | 0x5497de7f |
| GetModuleHandleA | 0xd2351e48 |
| GetModuleHandleExA | 0xd4794289 |
| GetModuleHandleExW | 0xd479429f |
| GetModuleHandleW | 0xd2351e5e |
| GetNLSVersion | 0xf5b54100 |
| GetNLSVersionEx | 0xd5040cee |
| GetNamedPipeAttribute | 0x7b344e54 |
| GetNamedPipeClientComputerNameA | 0x47073fcd |
| GetNamedPipeClientComputerNameW | 0x47073fe3 |
| GetNamedPipeClientProcessId | 0xb4ee847b |
| GetNamedPipeClientSessionId | 0xd52c7314 |
| GetNamedPipeHandleStateA | 0xa65d4c93 |
| GetNamedPipeHandleStateW | 0xa65d4ca9 |
| GetNamedPipeInfo | 0x38b99df7 |
| GetNamedPipeServerProcessId | 0x4d4a486e |
| GetNamedPipeServerSessionId | 0x6d883707 |
| GetNativeSystemInfo | 0xc6abab14 |
| GetNextUmsListItem | 0xf21126d9 |
| GetNextVDMCommand | 0x332d5e40 |
| GetNumaAvailableMemoryNode | 0xdf2fa63c |
| GetNumaAvailableMemoryNodeEx | 0xbe98fc94 |
| GetNumaHighestNodeNumber | 0xb19fd6fe |
| GetNumaNodeNumberFromHandle | 0xa0f82fb |
| GetNumaNodeProcessorMask | 0x22d49a6c |
| GetNumaNodeProcessorMaskEx | 0x5269b9a3 |
| GetNumaProcessorNode | 0x2e355c7 |
| GetNumaProcessorNodeEx | 0x8d572523 |
| GetNumaProximityNode | 0x8d55f994 |
| GetNumaProximityNodeEx | 0x57e65b4d |
| GetNumberFormatA | 0x819b0d90 |
| GetNumberFormatEx | 0x3361b308 |
| GetNumberFormatW | 0x819b0da6 |
| GetNumberOfConsoleFonts | 0x33fb5414 |
| GetNumberOfConsoleInputEvents | 0xde9efe00 |
| GetNumberOfConsoleMouseButtons | 0x14d74976 |
| GetOEMCP | 0x2d13bf02 |
| GetOverlappedResult | 0x2b346b88 |
| GetOverlappedResultEx | 0xd1ae29c4 |
| GetPackageApplicationIds | 0x2efc3614 |
| GetPackageFamilyName | 0x87a8d849 |
| GetPackageFullName | 0x8f428e1b |
| GetPackageId | 0xc167f0a5 |
| GetPackageInfo | 0x9fc2cc34 |
| GetPackagePath | 0x9fc619ed |
| GetPackagePathByFullName | 0x86a7cc6b |
| GetPackagesByPackageFamily | 0x5e5f6832 |
| GetPhysicallyInstalledSystemMemory | 0xa033690f |
| GetPriorityClass | 0x311c3a66 |
| GetPrivateProfileIntA | 0xecba63f9 |
| GetPrivateProfileIntW | 0xecba640f |
| GetPrivateProfileSectionA | 0xe10515f4 |
| GetPrivateProfileSectionNamesA | 0xa0a2ccd |
| GetPrivateProfileSectionNamesW | 0xa0a2ce3 |
| GetPrivateProfileSectionW | 0xe105160a |
| GetPrivateProfileStringA | 0xbdf2bb80 |
| GetPrivateProfileStringW | 0xbdf2bb96 |
| GetPrivateProfileStructA | 0xbdf89120 |
| GetPrivateProfileStructW | 0xbdf89136 |
| GetProcAddress | 0x99c95590 |
| GetProcessAffinityMask | 0xd090060e |
| GetProcessDEPPolicy | 0x3498f47b |
| GetProcessDefaultCpuSets | 0xf729152d |
| GetProcessGroupAffinity | 0xd3ec9c2f |
| GetProcessHandleCount | 0x938b89a5 |
| GetProcessHeap | 0xb8a45356 |
| GetProcessHeaps | 0x148a6b4a |
| GetProcessId | 0xb1ae2930 |
| GetProcessIdOfThread | 0xdce3d3c7 |
| GetProcessInformation | 0x25737219 |
| GetProcessIoCounters | 0x5f44e099 |
| GetProcessMitigationPolicy | 0x57c50bc8 |
| GetProcessPreferredUILanguages | 0x60af964a |
| GetProcessPriorityBoost | 0x764774f |
| GetProcessShutdownParameters | 0x78467ed9 |
| GetProcessTimes | 0x154c99ea |
| GetProcessVersion | 0xaabe8ea3 |
| GetProcessWorkingSetSize | 0x873fa7a2 |
| GetProcessWorkingSetSizeEx | 0xfe9e9334 |
| GetProcessorSystemCycleTime | 0x7b8da42d |
| GetProductInfo | 0x98b4f801 |
| GetProfileIntA | 0xa9c4f9a0 |
| GetProfileIntW | 0xa9c4f9b6 |
| GetProfileSectionA | 0x3b70e69e |
| GetProfileSectionW | 0x3b70e6b4 |
| GetProfileStringA | 0x8c61a06 |
| GetProfileStringW | 0x8c61a1c |
| GetQueuedCompletionStatus | 0x106129cd |
| GetQueuedCompletionStatusEx | 0x84a73d59 |
| GetShortPathNameA | 0x8eb359b3 |
| GetShortPathNameW | 0x8eb359c9 |
| GetStagedPackagePathByFullName | 0x693c37c6 |
| GetStartupInfoA | 0x90254e70 |
| GetStartupInfoW | 0x90254e86 |
| GetStateFolder | 0x5e828260 |
| GetStdHandle | 0xbb6b749e |
| GetStringScripts | 0xf92e326d |
| GetStringTypeA | 0xded942d9 |
| GetStringTypeExA | 0x650b86bc |
| GetStringTypeExW | 0x650b86d2 |
| GetStringTypeW | 0xded942ef |
| GetSystemAppDataKey | 0x66c503d9 |
| GetSystemCpuSetInformation | 0xd61a3344 |
| GetSystemDEPPolicy | 0x1c124ccf |
| GetSystemDefaultLCID | 0xc9db045d |
| GetSystemDefaultLangID | 0x6e048c8b |
| GetSystemDefaultLocaleName | 0x90ef7ff4 |
| GetSystemDefaultUILanguage | 0x9523f87c |
| GetSystemDirectoryA | 0xaaccfb39 |
| GetSystemDirectoryW | 0xaaccfb4f |
| GetSystemFileCacheSize | 0x884f6870 |
| GetSystemFirmwareTable | 0x415f7eb4 |
| GetSystemInfo | 0x755121e9 |
| GetSystemPowerStatus | 0xd8179f2b |
| GetSystemPreferredUILanguages | 0x8aa352f6 |
| GetSystemRegistryQuota | 0x270d3049 |
| GetSystemTime | 0x75568ebf |
| GetSystemTimeAdjustment | 0x687e7efc |
| GetSystemTimeAsFileTime | 0x59821caa |
| GetSystemTimePreciseAsFileTime | 0xc1da9c2e |
| GetSystemTimes | 0xaad1d861 |
| GetSystemWindowsDirectoryA | 0x257e61cf |
| GetSystemWindowsDirectoryW | 0x257e61e5 |
| GetSystemWow64DirectoryA | 0xf68cf01e |
| GetSystemWow64DirectoryW | 0xf68cf034 |
| GetTapeParameters | 0x6a744d0a |
| GetTapePosition | 0x185e2c7c |
| GetTapeStatus | 0x91cd43b1 |
| GetTempFileNameA | 0x4356dc72 |
| GetTempFileNameW | 0x4356dc88 |
| GetTempPathA | 0x4a553485 |
| GetTempPathW | 0x4a55349b |
| GetThreadContext | 0x1af2f9d3 |
| GetThreadDescription | 0xbf3025f8 |
| GetThreadErrorMode | 0xc2a1c769 |
| GetThreadGroupAffinity | 0x5b099ab3 |
| GetThreadIOPendingFlag | 0x38d7a35a |
| GetThreadId | 0xebab303e |
| GetThreadIdealProcessorEx | 0x5f8413d5 |
| GetThreadInformation | 0xc6553958 |
| GetThreadLocale | 0xad1cc98 |
| GetThreadPreferredUILanguages | 0x99978a66 |
| GetThreadPriority | 0x14157f45 |
| GetThreadPriorityBoost | 0x8e8175d2 |
| GetThreadSelectedCpuSets | 0x72ec6e2b |
| GetThreadSelectorEntry | 0x6a3bbb0e |
| GetThreadTimes | 0x98d3b6e8 |
| GetThreadUILanguage | 0xcdddb7a9 |
| GetTickCount | 0xbf8c3995 |
| GetTickCount64 | 0x30e65df2 |
| GetTimeFormatA | 0xf0b5a38f |
| GetTimeFormatAWorker | 0xb15821f6 |
| GetTimeFormatEx | 0x16b472f6 |
| GetTimeFormatW | 0xf0b5a3a5 |
| GetTimeFormatWWorker | 0x315821fc |
| GetTimeZoneInformation | 0xd18eafd3 |
| GetTimeZoneInformationForYear | 0xf1c39f42 |
| GetUILanguageInfo | 0xcc52b59e |
| GetUmsCompletionListEvent | 0x76cfe76 |
| GetUmsSystemThreadInformation | 0x562796fa |
| GetUserDefaultGeoName | 0x70c1eb6a |
| GetUserDefaultLCID | 0xb2ccd4b6 |
| GetUserDefaultLangID | 0x3545f02f |
| GetUserDefaultLocaleName | 0xcb2bf40a |
| GetUserDefaultUILanguage | 0xcf606c92 |
| GetUserGeoID | 0x4dc71e16 |
| GetUserPreferredUILanguages | 0xc4ae7014 |
| GetVDMCurrentDirectories | 0x9732129 |
| GetVersion | 0x51647b04 |
| GetVersionExA | 0x3d834bf3 |
| GetVersionExW | 0x3d834c09 |
| GetVolumeInformationA | 0xdaedff71 |
| GetVolumeInformationByHandleW | 0xb71333ac |
| GetVolumeInformationW | 0xdaedff87 |
| GetVolumeNameForVolumeMountPointA | 0xc2be7be0 |
| GetVolumeNameForVolumeMountPointW | 0xc2be7bf6 |
| GetVolumePathNameA | 0xda9bea6b |
| GetVolumePathNameW | 0xda9bea81 |
| GetVolumePathNamesForVolumeNameA | 0xe07338ae |
| GetVolumePathNamesForVolumeNameW | 0xe07338c4 |
| GetWindowsDirectoryA | 0x5da8a87f |
| GetWindowsDirectoryW | 0x5da8a895 |
| GetWriteWatch | 0x73fdb232 |
| GetXStateFeaturesMask | 0x214f6863 |
| GlobalAddAtomA | 0xc5605897 |
| GlobalAddAtomExA | 0x81627e56 |
| GlobalAddAtomExW | 0x81627e6c |
| GlobalAddAtomW | 0xc56058ad |
| GlobalAlloc | 0x1d71b06c |
| GlobalCompact | 0x4cd2354a |
| GlobalDeleteAtom | 0x80ad9aab |
| GlobalFindAtomA | 0x6edda5e4 |
| GlobalFindAtomW | 0x6edda5fa |
| GlobalFix | 0x8a477014 |
| GlobalFlags | 0x1dc1837c |
| GlobalFree | 0x48ee2496 |
| GlobalGetAtomNameA | 0x8d8496e6 |
| GlobalGetAtomNameW | 0x8d8496fc |
| GlobalHandle | 0xbb86e308 |
| GlobalLock | 0x48f1185c |
| GlobalMemoryStatus | 0xdee4030a |
| GlobalMemoryStatusEx | 0x900c3493 |
| GlobalReAlloc | 0xf61062bc |
| GlobalSize | 0x48f48336 |
| GlobalUnWire | 0xd64b77c8 |
| GlobalUnfix | 0x1eb297c1 |
| GlobalUnlock | 0xd6560dee |
| GlobalWire | 0x48f68236 |
| Heap32First | 0x29c35b61 |
| Heap32ListFirst | 0xf568f909 |
| Heap32ListNext | 0xafaf3885 |
| Heap32Next | 0x69520b98 |
| HeapAlloc | 0x24480984 |
| HeapCompact | 0xa6369565 |
| HeapCreate | 0x8d5d7b09 |
| HeapDestroy | 0xd298daea |
| HeapFree | 0x924d75f |
| HeapLock | 0x927cb25 |
| HeapQueryInformation | 0x5e90821a |
| HeapReAlloc | 0x4f74c2d8 |
| HeapSetInformation | 0xf4e6008f |
| HeapSize | 0x92b35ff |
| HeapSummary | 0xb235174e |
| HeapUnlock | 0xb12130ef |
| HeapValidate | 0x446425ae |
| HeapWalk | 0x92d1445 |
| IdnToAscii | 0xe254a10e |
| IdnToNameprepUnicode | 0x45297dea |
| IdnToUnicode | 0x48e16073 |
| InitAtomTable | 0x6824daa6 |
| InitOnceBeginInitialize | 0xc8c2a126 |
| InitOnceComplete | 0xa7ece73 |
| InitOnceExecuteOnce | 0xc449619e |
| InitOnceInitialize | 0xf4f6aaaf |
| InitializeConditionVariable | 0x98160525 |
| InitializeContext | 0x67a5cbdc |
| InitializeContext2 | 0xf4b97bbe |
| InitializeCriticalSection | 0xe644df30 |
| InitializeCriticalSectionAndSpinCount | 0x511286c2 |
| InitializeCriticalSectionEx | 0x137cccb1 |
| InitializeEnclave | 0xe4f1bb8d |
| InitializeProcThreadAttributeList | 0x80374dbb |
| InitializeSListHead | 0x56075109 |
| InitializeSRWLock | 0x2c21f137 |
| InitializeSynchronizationBarrier | 0x6713bca |
| InstallELAMCertificateInfo | 0x39a0b3f2 |
| InterlockedFlushSList | 0x568663ef |
| InterlockedPopEntrySList | 0x714ba529 |
| InterlockedPushEntrySList | 0x17dcd791 |
| InterlockedPushListSList | 0xaa5be2d1 |
| InterlockedPushListSListEx | 0x6f8b4fc1 |
| InvalidateConsoleDIBits | 0x7393cecd |
| IsBadCodePtr | 0xcac87323 |
| IsBadHugeReadPtr | 0x9374be79 |
| IsBadHugeWritePtr | 0xbfa1c00f |
| IsBadReadPtr | 0x7697f327 |
| IsBadStringPtrA | 0x74b4c956 |
| IsBadStringPtrW | 0x74b4c96c |
| IsBadWritePtr | 0x240855cc |
| IsCalendarLeapDay | 0xc4daaac5 |
| IsCalendarLeapMonth | 0x6b41f9fb |
| IsCalendarLeapYear | 0x9b5fe62a |
| IsDBCSLeadByte | 0x5b73a8f8 |
| IsDBCSLeadByteEx | 0xcea3ea85 |
| IsDebuggerPresent | 0x470114a9 |
| IsEnclaveTypeSupported | 0xaa47936c |
| IsNLSDefinedString | 0x2b35c713 |
| IsNativeVhdBoot | 0x68c076bd |
| IsNormalizedString | 0xb94ddc13 |
| IsProcessCritical | 0x7ce59aac |
| IsProcessInJob | 0x49e7d21 |
| IsProcessorFeaturePresent | 0xdc6db7a6 |
| IsSystemResumeAutomatic | 0xac3eeb08 |
| IsThreadAFiber | 0xe244bdcc |
| IsThreadpoolTimerSet | 0xf14051fd |
| IsValidCalDateTime | 0xfb2a095c |
| IsValidCodePage | 0x20b72aa5 |
| IsValidLanguageGroup | 0xd8149e65 |
| IsValidLocale | 0x6a07a14b |
| IsValidLocaleName | 0x14df327f |
| IsValidNLSVersion | 0x47c1ef45 |
| IsWow64GuestMachineSupported | 0x130c67d9 |
| IsWow64Process | 0x486e3b21 |
| IsWow64Process2 | 0xdc7645b |
| K32EmptyWorkingSet | 0xde98cde0 |
| K32EnumDeviceDrivers | 0xb1bab731 |
| K32EnumPageFilesA | 0xef52ac03 |
| K32EnumPageFilesW | 0xef52ac19 |
| K32EnumProcessModules | 0xcea71c70 |
| K32EnumProcessModulesEx | 0x9c71cc52 |
| K32EnumProcesses | 0x156fb1e8 |
| K32GetDeviceDriverBaseNameA | 0x558d2d98 |
| K32GetDeviceDriverBaseNameW | 0x558d2dae |
| K32GetDeviceDriverFileNameA | 0x958d31d6 |
| K32GetDeviceDriverFileNameW | 0x958d31ec |
| K32GetMappedFileNameA | 0x59fbc318 |
| K32GetMappedFileNameW | 0x59fbc32e |
| K32GetModuleBaseNameA | 0x5c97def5 |
| K32GetModuleBaseNameW | 0x5c97df0b |
| K32GetModuleFileNameExA | 0x5f8cedb3 |
| K32GetModuleFileNameExW | 0x5f8cedc9 |
| K32GetModuleInformation | 0x76e19719 |
| K32GetPerformanceInfo | 0xf289aeee |
| K32GetProcessImageFileNameA | 0x2e560e0b |
| K32GetProcessImageFileNameW | 0x2e560e21 |
| K32GetProcessMemoryInfo | 0x59f32385 |
| K32GetWsChanges | 0xdb6b96e5 |
| K32GetWsChangesEx | 0xae5ba085 |
| K32InitializeProcessForWsWatch | 0xd93f8f23 |
| K32QueryWorkingSet | 0x2d98d0f0 |
| K32QueryWorkingSetEx | 0x6343c9ce |
| LCIDToLocaleName | 0x8a40f58c |
| LCMapStringA | 0xd66c49b6 |
| LCMapStringEx | 0xcd8937d2 |
| LCMapStringW | 0xd66c49cc |
| LZClose | 0xb867cad8 |
| LZCloseFile | 0xadb03861 |
| LZCopy | 0x9dc34a79 |
| LZCreateFileW | 0xbcb0e521 |
| LZDone | 0x9dc3ca25 |
| LZInit | 0x9dc64594 |
| LZOpenFileA | 0x21d1cf7b |
| LZOpenFileW | 0x21d1cf91 |
| LZRead | 0x9dcaa084 |
| LZSeek | 0x9dcb210b |
| LZStart | 0xb96b92c7 |
| LeaveCriticalSection | 0xfcb5b095 |
| LeaveCriticalSectionWhenCallbackReturns | 0xb0d43675 |
| LoadAppInitDlls | 0x9c76443b |
| LoadEnclaveData | 0x7595cd3e |
| LoadLibraryA | 0x331adddc |
| LoadLibraryExA | 0x6b77900d |
| LoadLibraryExW | 0x6b779023 |
| LoadLibraryW | 0x331addf2 |
| LoadModule | 0xa12dd406 |
| LoadPackagedLibrary | 0x7db00fb6 |
| LoadResource | 0x54f4db6f |
| LoadStringBaseExW | 0xb588c5ad |
| LoadStringBaseW | 0x95ad623f |
| LocalAlloc | 0x1c51b074 |
| LocalCompact | 0xccd25545 |
| LocalFileTimeToFileTime | 0x1fdb01a1 |
| LocalFileTimeToLocalSystemTime | 0x3e310d27 |
| LocalFlags | 0x1ca18384 |
| LocalFree | 0x88e52496 |
| LocalHandle | 0x9786e408 |
| LocalLock | 0x88e8185c |
| LocalReAlloc | 0x761082b8 |
| LocalShrink | 0xadf8f84e |
| LocalSize | 0x88eb8336 |
| LocalSystemTimeToLocalFileTime | 0xcca94fcc |
| LocalUnlock | 0xb2560eee |
| LocaleNameToLCID | 0x36b7b672 |
| LocateXStateFeature | 0x39ee9fb0 |
| LockFile | 0x8cd4b461 |
| LockFileEx | 0x52d18f4b |
| LockResource | 0x54f5226f |
| MapUserPhysicalPages | 0x657da795 |
| MapUserPhysicalPagesScatter | 0xb83919d2 |
| MapViewOfFile | 0x66cfde30 |
| MapViewOfFileEx | 0x3f78cab3 |
| MapViewOfFileExNuma | 0xab5cd98d |
| MapViewOfFileFromApp | 0xa1a68405 |
| Module32First | 0x31b5660e |
| Module32FirstW | 0x36acc21d |
| Module32Next | 0xd1919bed |
| Module32NextW | 0x32337e11 |
| MoveFileA | 0x4e968d77 |
| MoveFileExA | 0x5a35fc7b |
| MoveFileExW | 0x5a35fc91 |
| MoveFileTransactedA | 0xbea37fa8 |
| MoveFileTransactedW | 0xbea37fbe |
| MoveFileW | 0x4e968d8d |
| MoveFileWithProgressA | 0xa09b1726 |
| MoveFileWithProgressW | 0xa09b173c |
| MulDiv | 0xa1871d96 |
| MultiByteToWideChar | 0x1d21d932 |
| NeedCurrentDirectoryForExePathA | 0x97b8dec |
| NeedCurrentDirectoryForExePathW | 0x97b8e02 |
| NlsCheckPolicy | 0x61c119af |
| NlsEventDataDescCreate | 0x3c0a2c1f |
| NlsGetCacheUpdateCount | 0x2b629d61 |
| NlsUpdateLocale | 0x3b700afe |
| NlsUpdateSystemLocale | 0x31a9276f |
| NlsWriteEtwEvent | 0x9d421565 |
| NormalizeString | 0x458cb376 |
| NotifyMountMgr | 0xdccc7d79 |
| NotifyUILanguageChange | 0xc699a7a0 |
| NtVdm64CreateProcessInternalW | 0x375d8482 |
| OOBEComplete | 0xc9fc2a19 |
| OfferVirtualMemory | 0x41288d06 |
| OpenConsoleW | 0xccb64d2b |
| OpenConsoleWStub | 0xd2e82a66 |
| OpenEventA | 0x119e9a05 |
| OpenEventW | 0x119e9a1b |
| OpenFile | 0xd104b479 |
| OpenFileById | 0x47bffdcf |
| OpenFileMappingA | 0x2beac173 |
| OpenFileMappingW | 0x2beac189 |
| OpenJobObjectA | 0xbf15cd8a |
| OpenJobObjectW | 0xbf15cda0 |
| OpenMutexA | 0x2195f685 |
| OpenMutexW | 0x2195f69b |
| OpenPackageInfoByFullName | 0xa00bc05e |
| OpenPrivateNamespaceA | 0x1ae3edbf |
| OpenPrivateNamespaceW | 0x1ae3edd5 |
| OpenProcess | 0xec6d8b57 |
| OpenProcessToken | 0xb5521424 |
| OpenProfileUserMapping | 0x3f92b258 |
| OpenSemaphoreA | 0x5afc1e07 |
| OpenSemaphoreW | 0x5afc1e1d |
| OpenState | 0x216be57f |
| OpenStateExplicit | 0x52db9afc |
| OpenThread | 0x2ec4f3c8 |
| OpenThreadToken | 0x95d6c2f5 |
| OpenWaitableTimerA | 0x3f77ec2f |
| OpenWaitableTimerW | 0x3f77ec45 |
| OutputDebugStringA | 0x1d4fba60 |
| OutputDebugStringW | 0x1d4fba76 |
| PackageFamilyNameFromFullName | 0x8a116ed5 |
| PackageFamilyNameFromId | 0xaca3738d |
| PackageFullNameFromId | 0x74d7b90b |
| PackageIdFromFullName | 0x9d83385d |
| PackageNameAndPublisherIdFromFamilyName | 0xcb52fa87 |
| ParseApplicationUserModelId | 0xa00ef287 |
| PeekConsoleInputA | 0x42b3f755 |
| PeekConsoleInputW | 0x42b3f76b |
| PeekNamedPipe | 0x448b638e |
| PostQueuedCompletionStatus | 0x38d129d7 |
| PowerClearRequest | 0x94dcbe0a |
| PowerCreateRequest | 0xc65f8c39 |
| PowerSetRequest | 0xf59f006e |
| PrefetchVirtualMemory | 0xd80801ac |
| PrepareTape | 0x2bca3afe |
| PrivCopyFileExW | 0x250e0c1c |
| PrivMoveFileIdentityW | 0x6cc3e73a |
| Process32First | 0x81af6e20 |
| Process32FirstW | 0x35edc467 |
| Process32Next | 0x64116c2e |
| Process32NextW | 0x822d8623 |
| ProcessIdToSessionId | 0x466dbd9e |
| PssCaptureSnapshot | 0x8f947f91 |
| PssDuplicateSnapshot | 0xe6f5db10 |
| PssFreeSnapshot | 0x9e104af5 |
| PssQuerySnapshot | 0x956087b3 |
| PssWalkMarkerCreate | 0x343c924a |
| PssWalkMarkerFree | 0xd94e8f24 |
| PssWalkMarkerGetPosition | 0x774299e9 |
| PssWalkMarkerRewind | 0x5175b189 |
| PssWalkMarkerSeek | 0xd954db2a |
| PssWalkMarkerSeekToBeginning | 0x2fe381d7 |
| PssWalkMarkerSetPosition | 0x777299e9 |
| PssWalkMarkerTell | 0xd9555c0b |
| PssWalkSnapshot | 0xa64d30f5 |
| PulseEvent | 0x8e971ab1 |
| PurgeComm | 0x54739dd2 |
| QueryActCtxSettingsW | 0xb33dda34 |
| QueryActCtxSettingsWWorker | 0xe1fa2f9f |
| QueryActCtxW | 0x37c47530 |
| QueryActCtxWWorker | 0xc31bd65e |
| QueryDepthSList | 0x6044b0a2 |
| QueryDosDeviceA | 0x5c8320bb |
| QueryDosDeviceW | 0x5c8320d1 |
| QueryFullProcessImageNameA | 0xf080f436 |
| QueryFullProcessImageNameW | 0xf080f44c |
| QueryIdleProcessorCycleTime | 0xb0eaa442 |
| QueryIdleProcessorCycleTimeEx | 0xaa9113db |
| QueryInformationJobObject | 0x34958625 |
| QueryIoRateControlInformationJobObject | 0x685e8a5c |
| QueryMemoryResourceNotification | 0x459e9a8e |
| QueryPerformanceCounter | 0xec18de3b |
| QueryPerformanceFrequency | 0x6988ef9d |
| QueryProcessAffinityUpdateMode | 0xc346b823 |
| QueryProcessCycleTime | 0x2591fb97 |
| QueryProtectedPolicy | 0x33de6530 |
| QueryThreadCycleTime | 0x53a256e8 |
| QueryThreadProfiling | 0x47ee63d5 |
| QueryThreadpoolStackInformation | 0x92272514 |
| QueryUmsThreadInformation | 0x3af764f0 |
| QueryUnbiasedInterruptTime | 0x1e12f153 |
| QueueUserAPC | 0x56eb2681 |
| QueueUserWorkItem | 0x27843412 |
| QuirkGetData2Worker | 0x1353fb7d |
| QuirkGetDataWorker | 0xa41c0325 |
| QuirkIsEnabled2Worker | 0x79ee0bdc |
| QuirkIsEnabled3Worker | 0xb9ee0bdc |
| QuirkIsEnabledForPackage2Worker | 0xc3a1eb7a |
| QuirkIsEnabledForPackage3Worker | 0x3a1eb7b |
| QuirkIsEnabledForPackage4Worker | 0x43a1eb7b |
| QuirkIsEnabledForPackageWorker | 0x919e72a5 |
| QuirkIsEnabledForProcessWorker | 0x1a4d7709 |
| QuirkIsEnabledWorker | 0x9f50d3a8 |
| RaiseException | 0xd7949bd1 |
| RaiseFailFastException | 0x7c80488a |
| RaiseInvalid16BitExeError | 0x96e8141a |
| ReOpenFile | 0xd10f5979 |
| ReadConsoleA | 0xce09c315 |
| ReadConsoleInputA | 0x42b5f647 |
| ReadConsoleInputExA | 0xd7d93c4b |
| ReadConsoleInputExW | 0xd7d93c61 |
| ReadConsoleInputW | 0x42b5f65d |
| ReadConsoleOutputA | 0xe4fc538a |
| ReadConsoleOutputAttribute | 0xe7167187 |
| ReadConsoleOutputCharacterA | 0xd2ddaa45 |
| ReadConsoleOutputCharacterW | 0xd2ddaa5b |
| ReadConsoleOutputW | 0xe4fc53a0 |
| ReadConsoleW | 0xce09c32b |
| ReadDirectoryChangesExW | 0x9d22006d |
| ReadDirectoryChangesW | 0x45a7488e |
| ReadFile | 0x864b48f |
| ReadFileEx | 0x92d24539 |
| ReadFileScatter | 0xcf71819f |
| ReadProcessMemory | 0x9ba6547b |
| ReadThreadProfilingData | 0xbae750ac |
| ReclaimVirtualMemory | 0xd7ae6626 |
| RegCloseKey | 0xe6b8c24c |
| RegCopyTreeW | 0x221bc78c |
| RegCreateKeyExA | 0x6fe2bd4b |
| RegCreateKeyExW | 0x6fe2bd61 |
| RegDeleteKeyExA | 0x702fa14b |
| RegDeleteKeyExW | 0x702fa161 |
| RegDeleteTreeA | 0x5417b0d1 |
| RegDeleteTreeW | 0x5417b0e7 |
| RegDeleteValueA | 0x85e9deeb |
| RegDeleteValueW | 0x85e9df01 |
| RegDisablePredefinedCacheEx | 0xd3469cef |
| RegEnumKeyExA | 0x30b2b50a |
| RegEnumKeyExW | 0x30b2b520 |
| RegEnumValueA | 0x466cf2aa |
| RegEnumValueW | 0x466cf2c0 |
| RegFlushKey | 0xf2ba4264 |
| RegGetKeySecurity | 0x991910ff |
| RegGetValueA | 0xdce90b26 |
| RegGetValueW | 0xdce90b3c |
| RegLoadKeyA | 0x89bc2cdd |
| RegLoadKeyW | 0x89bc2cf3 |
| RegLoadMUIStringA | 0xd1c57edd |
| RegLoadMUIStringW | 0xd1c57ef3 |
| RegNotifyChangeKeyValue | 0xb4d925dc |
| RegOpenCurrentUser | 0xb62fbb62 |
| RegOpenKeyExA | 0x70b3f68a |
| RegOpenKeyExW | 0x70b3f6a0 |
| RegOpenUserClassesRoot | 0xe5dddfba |
| RegQueryInfoKeyA | 0x9f3c88d8 |
| RegQueryInfoKeyW | 0x9f3c88ee |
| RegQueryValueExA | 0x6ba9091d |
| RegQueryValueExW | 0x6ba90933 |
| RegRestoreKeyA | 0x2f4c3ac8 |
| RegRestoreKeyW | 0x2f4c3ade |
| RegSaveKeyExA | 0x30b46810 |
| RegSaveKeyExW | 0x30b46826 |
| RegSetKeySecurity | 0x99191117 |
| RegSetValueExA | 0xa45cbab4 |
| RegSetValueExW | 0xa45cbaca |
| RegUnLoadKeyA | 0xdc8e33e2 |
| RegUnLoadKeyW | 0xdc8e33f8 |
| RegisterApplicationRecoveryCallback | 0xd710e171 |
| RegisterApplicationRestart | 0xacafee90 |
| RegisterBadMemoryNotification | 0x75de9fc0 |
| RegisterConsoleIME | 0x23ecd3a0 |
| RegisterConsoleOS2 | 0x23ecec4d |
| RegisterConsoleVDM | 0x23ed0688 |
| RegisterWaitForInputIdle | 0xb5ef9056 |
| RegisterWaitForSingleObject | 0xa27b2d92 |
| RegisterWaitForSingleObjectEx | 0xecb653a1 |
| RegisterWaitUntilOOBECompleted | 0x7286b82e |
| RegisterWowBaseHandlers | 0x10086158 |
| RegisterWowExec | 0x4bef6afa |
| ReleaseActCtx | 0x1ca81faf |
| ReleaseActCtxWorker | 0x7c54c0fe |
| ReleaseMutex | 0xb9ae453d |
| ReleaseMutexWhenCallbackReturns | 0x8f5080c9 |
| ReleaseSRWLockExclusive | 0xab81da25 |
| ReleaseSRWLockShared | 0x69006cf1 |
| ReleaseSemaphore | 0x8b916b07 |
| ReleaseSemaphoreWhenCallbackReturns | 0x784213ae |
| RemoveDirectoryA | 0x3a18ee2c |
| RemoveDirectoryTransactedA | 0x41772db2 |
| RemoveDirectoryTransactedW | 0x41772dc8 |
| RemoveDirectoryW | 0x3a18ee42 |
| RemoveDllDirectory | 0xced216d0 |
| RemoveLocalAlternateComputerNameA | 0xbf4efc78 |
| RemoveLocalAlternateComputerNameW | 0xbf4efc8e |
| RemoveSecureMemoryCacheCallback | 0x4daf482b |
| RemoveVectoredContinueHandler | 0x8b1cba0 |
| RemoveVectoredExceptionHandler | 0xd06c2c25 |
| ReplaceFile | 0xdc9c55e |
| ReplaceFileA | 0xb938ac02 |
| ReplaceFileW | 0xb938ac18 |
| ReplacePartitionUnit | 0xf9d25408 |
| RequestDeviceWakeup | 0xacff1170 |
| RequestWakeupLatency | 0xe45a345 |
| ResetEvent | 0x2c974ae6 |
| ResetWriteWatch | 0x33fdc77f |
| ResizePseudoConsole | 0x3554b8bf |
| ResolveDelayLoadedAPI | 0xf0664cfc |
| ResolveDelayLoadsFromDll | 0xa819688 |
| ResolveLocaleName | 0x1b6bc9db |
| RestoreLastError | 0x25e26fa5 |
| ResumeThread | 0x195d7906 |
| RtlAddFunctionTable | 0x94a50f17 |
| RtlCaptureContext | 0xef507439 |
| RtlCaptureStackBackTrace | 0x5f3abc36 |
| RtlCompareMemory | 0x49cd5d3f |
| RtlCopyMemory | 0x3c411d5d |
| RtlDeleteFunctionTable | 0x5ac6de8f |
| RtlFillMemory | 0xfc417739 |
| RtlInstallFunctionTableCallback | 0xc2729f80 |
| RtlLookupFunctionEntry | 0x7b20d7b9 |
| RtlMoveMemory | 0x3c425d88 |
| RtlPcToFileHeader | 0x329d0532 |
| RtlRaiseException | 0xd7ea56d1 |
| RtlRestoreContext | 0x30cfb458 |
| RtlUnwind | 0xb11d87df |
| RtlUnwindEx | 0x761f87dc |
| RtlVirtualUnwind | 0x4776d825 |
| RtlZeroMemory | 0xbc43f36a |
| ScrollConsoleScreenBufferA | 0xe4ccddbf |
| ScrollConsoleScreenBufferW | 0xe4ccddd5 |
| SearchPathA | 0x968b61ea |
| SearchPathW | 0x968b6200 |
| SetCachedSigningLevel | 0x16e9eea5 |
| SetCalendarInfoA | 0x8b086986 |
| SetCalendarInfoW | 0x8b08699c |
| SetComPlusPackageInstallStatus | 0x5763e291 |
| SetCommBreak | 0x497d671f |
| SetCommConfig | 0x31817810 |
| SetCommMask | 0xa25128ff |
| SetCommState | 0x4a8e5979 |
| SetCommTimeouts | 0x83d3883f |
| SetComputerNameA | 0x92576bc7 |
| SetComputerNameEx2W | 0xb5e7afc2 |
| SetComputerNameExA | 0x5daf3d8a |
| SetComputerNameExW | 0x5daf3da0 |
| SetComputerNameW | 0x92576bdd |
| SetConsoleActiveScreenBuffer | 0xe9baa0d2 |
| SetConsoleCP | 0x984a6344 |
| SetConsoleCtrlHandler | 0x1581458e |
| SetConsoleCursor | 0x36d45ef8 |
| SetConsoleCursorInfo | 0xefa9b274 |
| SetConsoleCursorMode | 0xefabb62a |
| SetConsoleCursorPosition | 0x812aad21 |
| SetConsoleDisplayMode | 0x1628728a |
| SetConsoleFont | 0x298f1c95 |
| SetConsoleHardwareState | 0x4c0cb23c |
| SetConsoleHistoryInfo | 0xf8366ef4 |
| SetConsoleIcon | 0x29906caf |
| SetConsoleInputExeNameA | 0xe22d7c59 |
| SetConsoleInputExeNameW | 0xe22d7c6f |
| SetConsoleKeyShortcuts | 0x3ce93a79 |
| SetConsoleLocalEUDC | 0x4b3700f9 |
| SetConsoleMaximumWindowSize | 0x44ff4bca |
| SetConsoleMenuClose | 0x30baefae |
| SetConsoleMode | 0x29929b46 |
| SetConsoleNlsMode | 0x8888ddae |
| SetConsoleNumberOfCommandsA | 0xfdb80e01 |
| SetConsoleNumberOfCommandsW | 0xfdb80e17 |
| SetConsoleOS2OemFormat | 0x664fb401 |
| SetConsoleOutputCP | 0x554ef1eb |
| SetConsolePalette | 0xf224f3ae |
| SetConsoleScreenBufferInfoEx | 0x815130b8 |
| SetConsoleScreenBufferSize | 0xe82542bf |
| SetConsoleTextAttribute | 0xa97dccd5 |
| SetConsoleTitleA | 0x58154187 |
| SetConsoleTitleW | 0x5815419d |
| SetConsoleWindowInfo | 0x2ffc2651 |
| SetCriticalSectionSpinCount | 0xc57785ab |
| SetCurrentConsoleFontEx | 0x9f3a8161 |
| SetCurrentDirectoryA | 0xb91909a0 |
| SetCurrentDirectoryW | 0xb91909b6 |
| SetDefaultCommConfigA | 0xf917502f |
| SetDefaultCommConfigW | 0xf9175045 |
| SetDefaultDllDirectories | 0xcd92f057 |
| SetDllDirectoryA | 0x8534f637 |
| SetDllDirectoryW | 0x8534f64d |
| SetDynamicTimeZoneInformation | 0x4e1ca064 |
| SetEndOfFile | 0xcfa77a6e |
| SetEnvironmentStringsA | 0x2524f347 |
| SetEnvironmentStringsW | 0x2524f35d |
| SetEnvironmentVariableA | 0xa3cbd40d |
| SetEnvironmentVariableW | 0xa3cbd423 |
| SetErrorMode | 0x906b1192 |
| SetEvent | 0x2c8ca4e6 |
| SetEventWhenCallbackReturns | 0xc8bfb09d |
| SetFileApisToANSI | 0x37049ba1 |
| SetFileApisToOEM | 0xc1b85bb4 |
| SetFileAttributesA | 0x9e74ca5 |
| SetFileAttributesTransactedA | 0xbb5a6ceb |
| SetFileAttributesTransactedW | 0xbb5a6d01 |
| SetFileAttributesW | 0x9e74cbb |
| SetFileBandwidthReservation | 0x9013bb6e |
| SetFileCompletionNotificationModes | 0x84281a29 |
| SetFileInformationByHandle | 0x9cd6dc72 |
| SetFileIoOverlappedRange | 0xd7ad9227 |
| SetFilePointer | 0x6fee6cfb |
| SetFilePointerEx | 0xb9b3f6d7 |
| SetFileShortNameA | 0x35075209 |
| SetFileShortNameW | 0x3507521f |
| SetFileTime | 0x1fd4c850 |
| SetFileValidData | 0x6ea33e31 |
| SetFirmwareEnvironmentVariableA | 0x6a18d1d0 |
| SetFirmwareEnvironmentVariableExA | 0x634760e9 |
| SetFirmwareEnvironmentVariableExW | 0x634760ff |
| SetFirmwareEnvironmentVariableW | 0x6a18d1e6 |
| SetHandleCount | 0x5995f41c |
| SetHandleInformation | 0x76c9005d |
| SetInformationJobObject | 0xdfe8ebd4 |
| SetIoRateControlInformationJobObject | 0xbf0555bb |
| SetLastConsoleEventActive | 0x2b2707a3 |
| SetLastError | 0xd7ada577 |
| SetLocalPrimaryComputerNameA | 0x3776931e |
| SetLocalPrimaryComputerNameW | 0x37769334 |
| SetLocalTime | 0xb40e8196 |
| SetLocaleInfoA | 0x5a06ecf1 |
| SetLocaleInfoW | 0x5a06ed07 |
| SetMailslotInfo | 0x4d77ea74 |
| SetMessageWaitingIndicator | 0x28a36d6b |
| SetNamedPipeAttribute | 0x7b344f14 |
| SetNamedPipeHandleState | 0x9535ea62 |
| SetPriorityClass | 0x311c9a66 |
| SetProcessAffinityMask | 0xd0901e0e |
| SetProcessAffinityUpdateMode | 0x229d5eef |
| SetProcessDEPPolicy | 0x6498f47b |
| SetProcessDefaultCpuSets | 0xf789152d |
| SetProcessInformation | 0x257372d9 |
| SetProcessMitigationPolicy | 0xd7c50bc9 |
| SetProcessPreferredUILanguages | 0x60c7964a |
| SetProcessPriorityBoost | 0x767774f |
| SetProcessShutdownParameters | 0x784684d9 |
| SetProcessWorkingSetSize | 0x879fa7a2 |
| SetProcessWorkingSetSizeEx | 0x7e9e9336 |
| SetProtectedPolicy | 0xdd913d05 |
| SetSearchPathMode | 0xb153592a |
| SetStdHandle | 0xc16b749e |
| SetStdHandleEx | 0xadd2841d |
| SetSystemFileCacheSize | 0x884f8070 |
| SetSystemPowerState | 0xf6c0bce5 |
| SetSystemTime | 0x35568ec0 |
| SetSystemTimeAdjustment | 0x68817efc |
| SetTapeParameters | 0x6a804d0a |
| SetTapePosition | 0x185e2f7c |
| SetTermsrvAppInstallMode | 0xb0e35b1b |
| SetThreadAffinityMask | 0xecc8eec2 |
| SetThreadContext | 0x1af359d3 |
| SetThreadDescription | 0xbf3025fe |
| SetThreadErrorMode | 0xc421c769 |
| SetThreadExecutionState | 0x4445d47 |
| SetThreadGroupAffinity | 0x5b09b2b3 |
| SetThreadIdealProcessor | 0xaf5ae102 |
| SetThreadIdealProcessorEx | 0x6b8413d5 |
| SetThreadInformation | 0xc655395e |
| SetThreadLocale | 0xad1cf98 |
| SetThreadPreferredUILanguages | 0x99984a66 |
| SetThreadPriority | 0x14217f45 |
| SetThreadPriorityBoost | 0x8e818dd2 |
| SetThreadSelectedCpuSets | 0x734c6e2b |
| SetThreadStackGuarantee | 0x4b203adf |
| SetThreadToken | 0x98d6aefb |
| SetThreadUILanguage | 0xfdddb7a9 |
| SetThreadpoolStackInformation | 0x7cfbfe80 |
| SetThreadpoolThreadMaximum | 0x5934b33d |
| SetThreadpoolThreadMinimum | 0x6894b33d |
| SetThreadpoolTimer | 0xfc4fea7d |
| SetThreadpoolTimerEx | 0x3faa0109 |
| SetThreadpoolWait | 0x5fe3dedf |
| SetThreadpoolWaitEx | 0x8f7b8697 |
| SetTimeZoneInformation | 0xd18ec7d3 |
| SetTimerQueueTimer | 0x1e918f31 |
| SetUmsThreadInformation | 0xe64aca9f |
| SetUnhandledExceptionFilter | 0x2bc3537e |
| SetUserGeoID | 0x53c71e16 |
| SetUserGeoName | 0x1c7b5b54 |
| SetVDMCurrentDirectories | 0x9d32129 |
| SetVolumeLabelA | 0x4b0cafd4 |
| SetVolumeLabelW | 0x4b0cafea |
| SetVolumeMountPointA | 0xcdc2336a |
| SetVolumeMountPointW | 0xcdc23380 |
| SetVolumeMountPointWStub | 0x38383b25 |
| SetWaitableTimer | 0x71abd76b |
| SetWaitableTimerEx | 0xaf5db6de |
| SetXStateFeaturesMask | 0x214f6923 |
| SetupComm | 0xf123a052 |
| ShowConsoleCursor | 0x3728097e |
| SignalObjectAndWait | 0x9eaca163 |
| SizeofResource | 0xfbce9e1b |
| Sleep | 0x567a110 |
| SleepConditionVariableCS | 0xee9fcd15 |
| SleepConditionVariableSRW | 0xd3f9e2f4 |
| SleepEx | 0x9e84492d |
| SortCloseHandle | 0x3162a63c |
| SortGetHandle | 0xff9f682f |
| StartThreadpoolIo | 0x532e9adc |
| SubmitThreadpoolWork | 0xc03e3821 |
| SuspendThread | 0x1b150913 |
| SwitchToFiber | 0x4fc8fb6d |
| SwitchToThread | 0x15176bee |
| SystemTimeToFileTime | 0x5971e76a |
| SystemTimeToTzSpecificLocalTime | 0x3a5076be |
| SystemTimeToTzSpecificLocalTimeEx | 0x41db0201 |
| TerminateJobObject | 0x419c3a7e |
| TerminateProcess | 0xf16a743a |
| TerminateThread | 0x46ecdb0f |
| TermsrvAppInstallMode | 0xae31331b |
| TermsrvConvertSysRootToUserDir | 0xfefbdc2a |
| TermsrvCreateRegEntry | 0xbcb279e4 |
| TermsrvDeleteKey | 0xdccd7a87 |
| TermsrvDeleteValue | 0x3697fa78 |
| TermsrvGetPreSetValue | 0xef79a40 |
| TermsrvGetWindowsDirectoryA | 0x732e553c |
| TermsrvGetWindowsDirectoryW | 0x732e5552 |
| TermsrvOpenRegEntry | 0xf8eb750f |
| TermsrvOpenUserClasses | 0xe98494e5 |
| TermsrvRestoreKey | 0x508da730 |
| TermsrvSetKeySecurity | 0xeeda824b |
| TermsrvSetValueKey | 0x86c57c0f |
| TermsrvSyncUserIniFileExt | 0xf7671faa |
| Thread32First | 0x9e6b5b06 |
| Thread32Next | 0x94f74b95 |
| TlsAlloc | 0xea47c0fe |
| TlsFree | 0xdf54d51a |
| TlsGetValue | 0x2ef03457 |
| TlsSetValue | 0x2ef034b7 |
| Toolhelp32ReadProcessMemory | 0xc06126d2 |
| TransactNamedPipe | 0x72dc2cac |
| TransmitCommChar | 0xbc37800f |
| TryAcquireSRWLockExclusive | 0xc1259688 |
| TryAcquireSRWLockShared | 0xe1c69838 |
| TryEnterCriticalSection | 0xa31b0422 |
| TrySubmitThreadpoolCallback | 0xaf5e9569 |
| TzSpecificLocalTimeToSystemTime | 0x4795be75 |
| TzSpecificLocalTimeToSystemTimeEx | 0x56f9de36 |
| UTRegister | 0x14d653bc |
| UTUnRegister | 0x40a66dbc |
| UmsThreadYield | 0x18a397d6 |
| UnhandledExceptionFilter | 0x17c35225 |
| UnlockFile | 0x8cdfc361 |
| UnlockFileEx | 0x7f0d8f4b |
| UnmapViewOfFile | 0x66cff44e |
| UnmapViewOfFileEx | 0x3fd142b3 |
| UnregisterApplicationRecoveryCallback | 0xdc986171 |
| UnregisterApplicationRestart | 0xacb01acc |
| UnregisterBadMemoryNotification | 0x8bfc9fc0 |
| UnregisterConsoleIME | 0x5fecd3cc |
| UnregisterWait | 0xebee5efa |
| UnregisterWaitEx | 0xb97bf4c7 |
| UnregisterWaitUntilOOBECompleted | 0x3646b831 |
| UpdateCalendarDayOfWeek | 0x551bf275 |
| UpdateProcThreadAttribute | 0x661f9eee |
| UpdateResourceA | 0x17e7a44d |
| UpdateResourceW | 0x17e7a463 |
| VDMConsoleOperation | 0xf457d98c |
| VDMOperationStarted | 0x6178045c |
| VerLanguageNameA | 0x815a632c |
| VerLanguageNameW | 0x815a6342 |
| VerSetConditionMask | 0xf361b1b3 |
| VerifyConsoleIoHandle | 0xc71c6482 |
| VerifyScripts | 0x21abd8d6 |
| VerifyVersionInfoA | 0x68940799 |
| VerifyVersionInfoW | 0x689407af |
| VirtualAlloc | 0x48fa7604 |
| VirtualAllocEx | 0xe9d81a3b |
| VirtualAllocExNuma | 0xa3e77f82 |
| VirtualFree | 0xa4a6ac3 |
| VirtualFreeEx | 0x29ab1541 |
| VirtualLock | 0xa4d5e89 |
| VirtualProtect | 0xb60aa5fb |
| VirtualProtectEx | 0x2a97f7f0 |
| VirtualQuery | 0x49feda7a |
| VirtualQueryEx | 0xfb69f23f |
| VirtualUnlock | 0x476ec0f4 |
| WTSGetActiveConsoleSessionId | 0x737321b3 |
| WaitCommEvent | 0xc0bf68cd |
| WaitForDebugEvent | 0xac37ad8e |
| WaitForDebugEventEx | 0xdeb643c8 |
| WaitForMultipleObjects | 0xdfb9e2a6 |
| WaitForMultipleObjectsEx | 0xe78aa496 |
| WaitForSingleObject | 0x98157db4 |
| WaitForSingleObjectEx | 0x55f6db78 |
| WaitForThreadpoolIoCallbacks | 0x70d55363 |
| WaitForThreadpoolTimerCallbacks | 0x302ae94e |
| WaitForThreadpoolWaitCallbacks | 0xc4d29241 |
| WaitForThreadpoolWorkCallbacks | 0xcbf57241 |
| WaitNamedPipeA | 0x53907217 |
| WaitNamedPipeW | 0x5390722d |
| WakeAllConditionVariable | 0x370c176f |
| WakeConditionVariable | 0x2f5b009f |
| WerGetFlags | 0x2e00a5a5 |
| WerGetFlagsWorker | 0xaae27c |
| WerRegisterAdditionalProcess | 0x993447af |
| WerRegisterAppLocalDump | 0x6c9578bd |
| WerRegisterCustomMetadata | 0x46be51f6 |
| WerRegisterExcludedMemoryBlock | 0x2819904e |
| WerRegisterFile | 0x1be6152c |
| WerRegisterFileWorker | 0xbc243e5d |
| WerRegisterMemoryBlock | 0x55a3f399 |
| WerRegisterMemoryBlockWorker | 0xa93b5f9 |
| WerRegisterRuntimeExceptionModule | 0x7f72b9c5 |
| WerRegisterRuntimeExceptionModuleWorker | 0x15076784 |
| WerSetFlags | 0x2e00a605 |
| WerSetFlagsWorker | 0xaae294 |
| WerUnregisterAdditionalProcess | 0x39e8a4ef |
| WerUnregisterAppLocalDump | 0xc6c4188d |
| WerUnregisterCustomMetadata | 0x13d935f |
| WerUnregisterExcludedMemoryBlock | 0xf98e8ed0 |
| WerUnregisterFile | 0xec4043cb |
| WerUnregisterFileWorker | 0xb03aca05 |
| WerUnregisterMemoryBlock | 0xd8756897 |
| WerUnregisterMemoryBlockWorker | 0xab481338 |
| WerUnregisterRuntimeExceptionModule | 0xfeb4227f |
| WerUnregisterRuntimeExceptionModuleWorker | 0xb4d7c1b2 |
| WerpGetDebugger | 0x64ae55dd |
| WerpInitiateRemoteRecovery | 0x3ba8dd6f |
| WerpLaunchAeDebug | 0x13082bd |
| WerpNotifyLoadStringResourceWorker | 0xc7421813 |
| WerpNotifyUseStringResourceWorker | 0xae659ee1 |
| WideCharToMultiByte | 0xa2985d40 |
| WinExec | 0x99046d19 |
| Wow64DisableWow64FsRedirection | 0x52ae3456 |
| Wow64EnableWow64FsRedirection | 0x80dd715a |
| Wow64GetThreadContext | 0x7de6ff7c |
| Wow64GetThreadSelectorEntry | 0xc2f8bc78 |
| Wow64RevertWow64FsRedirection | 0xbd435b8d |
| Wow64SetThreadContext | 0x7de75f7c |
| Wow64SuspendThread | 0x2667cefb |
| WriteConsoleA | 0x4e1c241b |
| WriteConsoleInputA | 0x4db61b09 |
| WriteConsoleInputVDMA | 0xd9040bc |
| WriteConsoleInputVDMW | 0xd9040d2 |
| WriteConsoleInputW | 0x4db61b1f |
| WriteConsoleOutputA | 0x4500ebcc |
| WriteConsoleOutputAttribute | 0xebaeb2e7 |
| WriteConsoleOutputCharacterA | 0x65e5d646 |
| WriteConsoleOutputCharacterW | 0x65e5d65c |
| WriteConsoleOutputW | 0x4500ebe2 |
| WriteConsoleW | 0x4e1c2431 |
| WriteFile | 0x2e750c90 |
| WriteFileEx | 0xd43249d1 |
| WriteFileGather | 0x9fe8f036 |
| WritePrivateProfileSectionA | 0x4379575f |
| WritePrivateProfileSectionW | 0x43795775 |
| WritePrivateProfileStringA | 0x11065d8c |
| WritePrivateProfileStringW | 0x11065da2 |
| WritePrivateProfileStructA | 0x110c332c |
| WritePrivateProfileStructW | 0x110c3342 |
| WriteProcessMemory | 0xa6a6793d |
| WriteProfileSectionA | 0x87bf6ecb |
| WriteProfileSectionW | 0x87bf6ee1 |
| WriteProfileStringA | 0x73288e47 |
| WriteProfileStringW | 0x73288e5d |
| WriteTapemark | 0xd13afa69 |
| ZombifyActCtx | 0xa1abc74c |
| ZombifyActCtxWorker | 0xdd95aae5 |
| __C_specific_handler | 0x33fbf826 |
| __chkstk | 0x8cb75dfb |
| __misaligned_access | 0x6ddb096 |
| _hread | 0xc4baa084 |
| _hwrite | 0x97aab2fd |
| _lclose | 0x9e67cadd |
| _lcreat | 0x9e6aa0ac |
| _llseek | 0x9efb2123 |
| _local_unwind | 0xd8e5f6a2 |
| _lopen | 0xc4f94d0e |
| _lread | 0xc4faa084 |
| _lwrite | 0x9faab2fd |
| lstrcat | 0xed7a98af |
| lstrcatA | 0xaf53163e |
| lstrcatW | 0xaf531654 |
| lstrcmp | 0xed7a9a2b |
| lstrcmpA | 0xaf5345be |
| lstrcmpW | 0xaf5345d4 |
| lstrcmpi | 0xaf5345e6 |
| lstrcmpiA | 0xea68bd16 |
| lstrcmpiW | 0xea68bd2c |
| lstrcpy | 0xed7a9a94 |
| lstrcpyA | 0xaf5352de |
| lstrcpyW | 0xaf5352f4 |
| lstrcpyn | 0xaf53530b |
| lstrcpynA | 0xea6a61b6 |
| lstrcpynW | 0xea6a61cc |
| lstrlen | 0xed7abd29 |
| lstrlenA | 0xaf57a57e |
| lstrlenW | 0xaf57a594 |
| timeBeginPeriod | 0x2a1fda81 |
| timeEndPeriod | 0x1ccb9ad5 |
| timeGetDevCaps | 0x99a05c13 |
| timeGetSystemTime | 0x75cdf2c9 |
| timeGetTime | 0x9349423f |
| uaw_lstrcmpW | 0xeb6684d4 |
| uaw_lstrcmpiW | 0x6cd09d34 |
| uaw_lstrlenW | 0xeb6ae494 |
| uaw_wcschr | 0xb47a1e42 |
| uaw_wcscpy | 0xb47a1f49 |
| uaw_wcsicmp | 0x8f46b426 |
| uaw_wcslen | 0xb47a41de |
| uaw_wcsrchr | 0x8f4b3388 |
tags:#API lookup