| author | |
| committer | |
| log | c0242f23102ebcc444e20042d5a988af9ebe4685 |
| tree | 6da2642145690444e9fa6735a0ff61c6742ea6fd |
| parent | 8e5913cfee9a35cc23fd80277abb8db26c1a9854 |
| signature |
114 files changed, 1786 insertions(+), 2549 deletions(-)
lib/libc/mingw/crt/merr.c-26| ... | @@ -4,35 +4,9 @@ | ... | @@ -4,35 +4,9 @@ |
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| 5 | */ | 5 | */ |
| 6 | 6 | ||
| 7 | #include <internal.h> | ||
| 8 | #include <math.h> | 7 | #include <math.h> |
| 9 | #include <stdio.h> | 8 | #include <stdio.h> |
| 10 | 9 | ||
| 11 | typedef int (__cdecl *fUserMathErr)(struct _exception *); | ||
| 12 | static fUserMathErr stUserMathErr; | ||
| 13 | |||
| 14 | void __mingw_raise_matherr (int typ, const char *name, double a1, double a2, | ||
| 15 | 			 double rslt) | ||
| 16 | { | ||
| 17 | struct _exception ex; | ||
| 18 | if (!stUserMathErr) | ||
| 19 | return; | ||
| 20 | ex.type = typ; | ||
| 21 | ex.name = (char*)name; | ||
| 22 | ex.arg1 = a1; | ||
| 23 | ex.arg2 = a2; | ||
| 24 | ex.retval = rslt; | ||
| 25 | (*stUserMathErr)(&ex); | ||
| 26 | } | ||
| 27 | |||
| 28 | #undef __setusermatherr | ||
| 29 | |||
| 30 | void __mingw_setusermatherr (int (__cdecl *f)(struct _exception *)) | ||
| 31 | { | ||
| 32 | stUserMathErr = f; | ||
| 33 | __setusermatherr (f); | ||
| 34 | } | ||
| 35 | |||
| 36 | int __CRTDECL | 10 | int __CRTDECL |
| 37 | _matherr (struct _exception *pexcept) | 11 | _matherr (struct _exception *pexcept) |
| 38 | { | 12 | { |
lib/libc/mingw/crt/mingw_helpers.c-23| ... | @@ -4,28 +4,5 @@ | ... | @@ -4,28 +4,5 @@ |
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| 5 | */ | 5 | */ |
| 6 | 6 | ||
| 7 | #include <oscalls.h> | ||
| 8 | #include <internal.h> | ||
| 9 | #include <process.h> | ||
| 10 | #include <math.h> | ||
| 11 | #include <stdlib.h> | ||
| 12 | #include <tchar.h> | ||
| 13 | #include <sect_attribs.h> | ||
| 14 | #include <locale.h> | ||
| 15 | |||
| 16 | extern const PIMAGE_TLS_CALLBACK __dyn_tls_init_callback; | ||
| 17 | |||
| 18 | void * __cdecl | ||
| 19 | _decode_pointer (void *codedptr) | ||
| 20 | { | ||
| 21 | return (void *) codedptr; | ||
| 22 | } | ||
| 23 | |||
| 24 | void * __cdecl | ||
| 25 | _encode_pointer (void *ptr) | ||
| 26 | { | ||
| 27 | return ptr; | ||
| 28 | } | ||
| 29 | |||
| 30 | /* 0:console, 1:windows. */ | 7 | /* 0:console, 1:windows. */ |
| 31 | int mingw_app_type = 0; | 8 | int mingw_app_type = 0; |
lib/libc/mingw/crt/pseudo-reloc.c+2-2| ... | @@ -10,8 +10,8 @@ | ... | @@ -10,8 +10,8 @@ |
| 10 | use, modify or distribute it freely. | 10 | use, modify or distribute it freely. |
| 11 | 11 | ||
| 12 | This code is distributed in the hope that it will be useful but | 12 | This code is distributed in the hope that it will be useful but |
| 13 | WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY | 13 | WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY |
| 14 | DISCLAMED. This includes but is not limited to warrenties of | 14 | DISCLAMED. This includes but is not limited to warranties of |
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 16 | */ | 16 | */ |
| 17 | 17 |
lib/libc/mingw/crt/usermatherr.c created+32| ... | @@ -0,0 +1,32 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <math.h> | ||
| 8 | |||
| 9 | typedef int (__cdecl *fUserMathErr)(struct _exception *); | ||
| 10 | static fUserMathErr stUserMathErr; | ||
| 11 | |||
| 12 | void __mingw_raise_matherr (int typ, const char *name, double a1, double a2, | ||
| 13 | 			 double rslt) | ||
| 14 | { | ||
| 15 | struct _exception ex; | ||
| 16 | if (!stUserMathErr) | ||
| 17 | return; | ||
| 18 | ex.type = typ; | ||
| 19 | ex.name = (char*)name; | ||
| 20 | ex.arg1 = a1; | ||
| 21 | ex.arg2 = a2; | ||
| 22 | ex.retval = rslt; | ||
| 23 | (*stUserMathErr)(&ex); | ||
| 24 | } | ||
| 25 | |||
| 26 | #undef __setusermatherr | ||
| 27 | |||
| 28 | void __mingw_setusermatherr (int (__cdecl *f)(struct _exception *)) | ||
| 29 | { | ||
| 30 | stUserMathErr = f; | ||
| 31 | __setusermatherr (f); | ||
| 32 | } | ||
lib/libc/mingw/def-include/msvcrt-common.def.in+10-2| ... | @@ -1,3 +1,5 @@ | ... | @@ -1,3 +1,5 @@ |
| 1 | #include "func.def.in" | ||
| 2 | |||
| 1 | #define ADD_UNDERSCORE(symbol) symbol == _ ## symbol | 3 | #define ADD_UNDERSCORE(symbol) symbol == _ ## symbol |
| 2 | #define ADD_DOUBLE_UNDERSCORE(symbol) symbol == __ ## symbol | 4 | #define ADD_DOUBLE_UNDERSCORE(symbol) symbol == __ ## symbol |
| 3 | 5 | ||
| ... | @@ -44,7 +46,13 @@ ADD_UNDERSCORE(gcvt) | ... | @@ -44,7 +46,13 @@ ADD_UNDERSCORE(gcvt) |
| 44 | ADD_UNDERSCORE(getch) | 46 | ADD_UNDERSCORE(getch) |
| 45 | ADD_UNDERSCORE(getche) | 47 | ADD_UNDERSCORE(getche) |
| 46 | ADD_UNDERSCORE(getcwd) | 48 | ADD_UNDERSCORE(getcwd) |
| 49 | #ifdef UCRTBASE | ||
| 50 | ; ucrtbase.dll has got _getpid for all archs | ||
| 47 | ADD_UNDERSCORE(getpid) | 51 | ADD_UNDERSCORE(getpid) |
| 52 | #elif !defined(NO_GETPID_ALIAS) | ||
| 53 | ; msvcrt.dll for arm/arm64 lacks _getpid | ||
| 54 | F_X86_ANY(ADD_UNDERSCORE(getpid)) | ||
| 55 | #endif | ||
| 48 | ADD_UNDERSCORE(getw) | 56 | ADD_UNDERSCORE(getw) |
| 49 | ADD_UNDERSCORE(heapwalk) | 57 | ADD_UNDERSCORE(heapwalk) |
| 50 | ADD_UNDERSCORE(isatty) | 58 | ADD_UNDERSCORE(isatty) |
| ... | @@ -131,6 +139,8 @@ ADD_UNDERSCORE(hypot) | ... | @@ -131,6 +139,8 @@ ADD_UNDERSCORE(hypot) |
| 131 | ;logb | 139 | ;logb |
| 132 | ADD_UNDERSCORE(nextafter) | 140 | ADD_UNDERSCORE(nextafter) |
| 133 | 141 | ||
| 142 | longjmp | ||
| 143 | |||
| 134 | #ifndef UCRTBASE | 144 | #ifndef UCRTBASE |
| 135 | _daylight DATA | 145 | _daylight DATA |
| 136 | _timezone DATA | 146 | _timezone DATA |
| ... | @@ -140,6 +150,4 @@ ADD_UNDERSCORE(timezone) | ... | @@ -140,6 +150,4 @@ ADD_UNDERSCORE(timezone) |
| 140 | ADD_UNDERSCORE(tzname) | 150 | ADD_UNDERSCORE(tzname) |
| 141 | 151 | ||
| 142 | ADD_UNDERSCORE(vsnprintf_s) | 152 | ADD_UNDERSCORE(vsnprintf_s) |
| 143 | |||
| 144 | longjmp DATA | ||
| 145 | #endif | 153 | #endif |
lib/libc/mingw/include/internal.h-4| ... | @@ -152,10 +152,6 @@ extern char *** __MINGW_IMP_SYMBOL(__initenv); | ... | @@ -152,10 +152,6 @@ extern char *** __MINGW_IMP_SYMBOL(__initenv); |
| 152 | #include <crtdbg.h> | 152 | #include <crtdbg.h> |
| 153 | #include <errno.h> | 153 | #include <errno.h> |
| 154 | 154 | ||
| 155 | void * __cdecl _encode_pointer(void *); | ||
| 156 | void * __cdecl _encoded_null(); | ||
| 157 | void * __cdecl _decode_pointer(void *); | ||
| 158 | |||
| 159 | BOOL __cdecl _ValidateImageBase (PBYTE pImageBase); | 155 | BOOL __cdecl _ValidateImageBase (PBYTE pImageBase); |
| 160 | PIMAGE_SECTION_HEADER __cdecl _FindPESection (PBYTE pImageBase, DWORD_PTR rva); | 156 | PIMAGE_SECTION_HEADER __cdecl _FindPESection (PBYTE pImageBase, DWORD_PTR rva); |
| 161 | BOOL __cdecl _IsNonwritableInCurrentImage (PBYTE pTarget); | 157 | BOOL __cdecl _IsNonwritableInCurrentImage (PBYTE pTarget); |
lib/libc/mingw/include/msvcrt.h-4| ... | @@ -1,9 +1,5 @@ | ... | @@ -1,9 +1,5 @@ |
| 1 | #include <winbase.h> | 1 | #include <winbase.h> |
| 2 | 2 | ||
| 3 | #ifndef __LIBMSVCRT__ | ||
| 4 | #error "This file should only be used in libmsvcrt.a" | ||
| 5 | #endif | ||
| 6 | |||
| 7 | static inline HANDLE __mingw_get_msvcrt_handle(void) | 3 | static inline HANDLE __mingw_get_msvcrt_handle(void) |
| 8 | { | 4 | { |
| 9 | return GetModuleHandleW(L"msvcrt.dll"); | 5 | return GetModuleHandleW(L"msvcrt.dll"); |
lib/libc/mingw/lib-common/advapi32.def.in+9| ... | @@ -149,6 +149,7 @@ CreateProcessWithTokenW | ... | @@ -149,6 +149,7 @@ CreateProcessWithTokenW |
| 149 | CreateRestrictedToken | 149 | CreateRestrictedToken |
| 150 | CreateServiceA | 150 | CreateServiceA |
| 151 | CreateServiceW | 151 | CreateServiceW |
| 152 | CreateServiceEx | ||
| 152 | CreateTraceInstanceId | 153 | CreateTraceInstanceId |
| 153 | CreateWellKnownSid | 154 | CreateWellKnownSid |
| 154 | CredBackupCredentials | 155 | CredBackupCredentials |
| ... | @@ -235,6 +236,7 @@ CryptSignHashA | ... | @@ -235,6 +236,7 @@ CryptSignHashA |
| 235 | CryptSignHashW | 236 | CryptSignHashW |
| 236 | CryptVerifySignatureA | 237 | CryptVerifySignatureA |
| 237 | CryptVerifySignatureW | 238 | CryptVerifySignatureW |
| 239 | CveEventWrite | ||
| 238 | DecryptFileA | 240 | DecryptFileA |
| 239 | DecryptFileW | 241 | DecryptFileW |
| 240 | DeleteAce | 242 | DeleteAce |
| ... | @@ -519,6 +521,7 @@ NotifyChangeEventLog | ... | @@ -519,6 +521,7 @@ NotifyChangeEventLog |
| 519 | NotifyServiceStatusChange | 521 | NotifyServiceStatusChange |
| 520 | NotifyServiceStatusChangeA | 522 | NotifyServiceStatusChangeA |
| 521 | NotifyServiceStatusChangeW | 523 | NotifyServiceStatusChangeW |
| 524 | NpGetUserName | ||
| 522 | ObjectCloseAuditAlarmA | 525 | ObjectCloseAuditAlarmA |
| 523 | ObjectCloseAuditAlarmW | 526 | ObjectCloseAuditAlarmW |
| 524 | ObjectDeleteAuditAlarmA | 527 | ObjectDeleteAuditAlarmA |
| ... | @@ -581,6 +584,7 @@ ProcessIdleTasksW | ... | @@ -581,6 +584,7 @@ ProcessIdleTasksW |
| 581 | ProcessTrace | 584 | ProcessTrace |
| 582 | QueryAllTracesA | 585 | QueryAllTracesA |
| 583 | QueryAllTracesW | 586 | QueryAllTracesW |
| 587 | QueryLocalUserServiceName | ||
| 584 | QueryRecoveryAgentsOnEncryptedFile | 588 | QueryRecoveryAgentsOnEncryptedFile |
| 585 | QuerySecurityAccessMask | 589 | QuerySecurityAccessMask |
| 586 | QueryServiceConfig2A | 590 | QueryServiceConfig2A |
| ... | @@ -595,6 +599,9 @@ QueryServiceStatus | ... | @@ -595,6 +599,9 @@ QueryServiceStatus |
| 595 | QueryServiceStatusEx | 599 | QueryServiceStatusEx |
| 596 | QueryTraceA | 600 | QueryTraceA |
| 597 | QueryTraceW | 601 | QueryTraceW |
| 602 | QueryTraceProcessingHandle | ||
| 603 | QueryUserServiceName | ||
| 604 | QueryUserServiceNameForContext | ||
| 598 | QueryUsersOnEncryptedFile | 605 | QueryUsersOnEncryptedFile |
| 599 | ReadEncryptedFileRaw | 606 | ReadEncryptedFileRaw |
| 600 | ReadEventLogA | 607 | ReadEventLogA |
| ... | @@ -694,6 +701,8 @@ RegisterWaitChainCOMCallback | ... | @@ -694,6 +701,8 @@ RegisterWaitChainCOMCallback |
| 694 | RemoteRegEnumKeyWrapper | 701 | RemoteRegEnumKeyWrapper |
| 695 | RemoteRegEnumValueWrapper | 702 | RemoteRegEnumValueWrapper |
| 696 | RemoteRegQueryInfoKeyWrapper | 703 | RemoteRegQueryInfoKeyWrapper |
| 704 | RemoteRegQueryMultipleValues2Wrapper | ||
| 705 | RemoteRegQueryMultipleValuesWrapper | ||
| 697 | RemoteRegQueryValueWrapper | 706 | RemoteRegQueryValueWrapper |
| 698 | RemoveTraceCallback | 707 | RemoveTraceCallback |
| 699 | RemoveUsersFromEncryptedFile | 708 | RemoveUsersFromEncryptedFile |
lib/libc/mingw/lib-common/kernel32.def.in+76-3| ... | @@ -26,6 +26,14 @@ AdjustCalendarDate | ... | @@ -26,6 +26,14 @@ AdjustCalendarDate |
| 26 | AllocConsole | 26 | AllocConsole |
| 27 | AllocateUserPhysicalPages | 27 | AllocateUserPhysicalPages |
| 28 | AllocateUserPhysicalPagesNuma | 28 | AllocateUserPhysicalPagesNuma |
| 29 | AppPolicyGetClrCompat | ||
| 30 | AppPolicyGetCreateFileAccess | ||
| 31 | AppPolicyGetLifecycleManagement | ||
| 32 | AppPolicyGetMediaFoundationCodecLoading | ||
| 33 | AppPolicyGetProcessTerminationMethod | ||
| 34 | AppPolicyGetShowDeveloperDiagnostic | ||
| 35 | AppPolicyGetThreadInitializationType | ||
| 36 | AppPolicyGetWindowingModel | ||
| 29 | AppXGetOSMaxVersionTested | 37 | AppXGetOSMaxVersionTested |
| 30 | ApplicationRecoveryFinished | 38 | ApplicationRecoveryFinished |
| 31 | ApplicationRecoveryInProgress | 39 | ApplicationRecoveryInProgress |
| ... | @@ -88,12 +96,14 @@ BasepFreeAppCompatData | ... | @@ -88,12 +96,14 @@ BasepFreeAppCompatData |
| 88 | BasepGetAppCompatData | 96 | BasepGetAppCompatData |
| 89 | BasepGetComputerNameFromNtPath | 97 | BasepGetComputerNameFromNtPath |
| 90 | BasepGetExeArchType | 98 | BasepGetExeArchType |
| 99 | BasepInitAppCompatData | ||
| 91 | BasepIsProcessAllowed | 100 | BasepIsProcessAllowed |
| 92 | BasepMapModuleHandle | 101 | BasepMapModuleHandle |
| 93 | BasepNotifyLoadStringResource | 102 | BasepNotifyLoadStringResource |
| 94 | BasepPostSuccessAppXExtension | 103 | BasepPostSuccessAppXExtension |
| 95 | BasepProcessInvalidImage | 104 | BasepProcessInvalidImage |
| 96 | BasepQueryAppCompat | 105 | BasepQueryAppCompat |
| 106 | BasepQueryModuleChpeSettings | ||
| 97 | BasepReleaseAppXContext | 107 | BasepReleaseAppXContext |
| 98 | BasepReleaseSxsCreateProcessUtilityStruct | 108 | BasepReleaseSxsCreateProcessUtilityStruct |
| 99 | BasepReportFault | 109 | BasepReportFault |
| ... | @@ -136,6 +146,7 @@ CloseHandle | ... | @@ -136,6 +146,7 @@ CloseHandle |
| 136 | ClosePackageInfo | 146 | ClosePackageInfo |
| 137 | ClosePrivateNamespace | 147 | ClosePrivateNamespace |
| 138 | CloseProfileUserMapping | 148 | CloseProfileUserMapping |
| 149 | ClosePseudoConsole | ||
| 139 | CloseState | 150 | CloseState |
| 140 | CloseThreadpool | 151 | CloseThreadpool |
| 141 | CloseThreadpoolCleanupGroup | 152 | CloseThreadpoolCleanupGroup |
| ... | @@ -186,6 +197,7 @@ CreateDirectoryExW | ... | @@ -186,6 +197,7 @@ CreateDirectoryExW |
| 186 | CreateDirectoryTransactedA | 197 | CreateDirectoryTransactedA |
| 187 | CreateDirectoryTransactedW | 198 | CreateDirectoryTransactedW |
| 188 | CreateDirectoryW | 199 | CreateDirectoryW |
| 200 | CreateEnclave | ||
| 189 | CreateEventA | 201 | CreateEventA |
| 190 | CreateEventExA | 202 | CreateEventExA |
| 191 | CreateEventExW | 203 | CreateEventExW |
| ... | @@ -224,10 +236,12 @@ CreatePipe | ... | @@ -224,10 +236,12 @@ CreatePipe |
| 224 | CreatePrivateNamespaceA | 236 | CreatePrivateNamespaceA |
| 225 | CreatePrivateNamespaceW | 237 | CreatePrivateNamespaceW |
| 226 | CreateProcessA | 238 | CreateProcessA |
| 239 | CreateProcessAsUserA | ||
| 227 | CreateProcessAsUserW | 240 | CreateProcessAsUserW |
| 228 | CreateProcessInternalA | 241 | CreateProcessInternalA |
| 229 | CreateProcessInternalW | 242 | CreateProcessInternalW |
| 230 | CreateProcessW | 243 | CreateProcessW |
| 244 | CreatePseudoConsole | ||
| 231 | CreateRemoteThread | 245 | CreateRemoteThread |
| 232 | CreateRemoteThreadEx | 246 | CreateRemoteThreadEx |
| 233 | CreateSemaphoreA | 247 | CreateSemaphoreA |
| ... | @@ -309,6 +323,7 @@ EndUpdateResourceW | ... | @@ -309,6 +323,7 @@ EndUpdateResourceW |
| 309 | EnterCriticalSection | 323 | EnterCriticalSection |
| 310 | F_X64(EnterUmsSchedulingMode) | 324 | F_X64(EnterUmsSchedulingMode) |
| 311 | EnterSynchronizationBarrier | 325 | EnterSynchronizationBarrier |
| 326 | EnterUmsSchedulingMode | ||
| 312 | EnumCalendarInfoA | 327 | EnumCalendarInfoA |
| 313 | EnumCalendarInfoExA | 328 | EnumCalendarInfoExA |
| 314 | EnumCalendarInfoExEx | 329 | EnumCalendarInfoExEx |
| ... | @@ -337,6 +352,7 @@ EnumSystemCodePagesA | ... | @@ -337,6 +352,7 @@ EnumSystemCodePagesA |
| 337 | EnumSystemCodePagesW | 352 | EnumSystemCodePagesW |
| 338 | EnumSystemFirmwareTables | 353 | EnumSystemFirmwareTables |
| 339 | EnumSystemGeoID | 354 | EnumSystemGeoID |
| 355 | EnumSystemGeoNames | ||
| 340 | EnumSystemLanguageGroupsA | 356 | EnumSystemLanguageGroupsA |
| 341 | EnumSystemLanguageGroupsW | 357 | EnumSystemLanguageGroupsW |
| 342 | EnumSystemLocalesA | 358 | EnumSystemLocalesA |
| ... | @@ -432,6 +448,7 @@ FreeEnvironmentStringsW | ... | @@ -432,6 +448,7 @@ FreeEnvironmentStringsW |
| 432 | FreeLibrary | 448 | FreeLibrary |
| 433 | FreeLibraryAndExitThread | 449 | FreeLibraryAndExitThread |
| 434 | FreeLibraryWhenCallbackReturns | 450 | FreeLibraryWhenCallbackReturns |
| 451 | FreeMemoryJobObject | ||
| 435 | FreeResource | 452 | FreeResource |
| 436 | FreeUserPhysicalPages | 453 | FreeUserPhysicalPages |
| 437 | GenerateConsoleCtrlEvent | 454 | GenerateConsoleCtrlEvent |
| ... | @@ -558,6 +575,8 @@ GetDiskFreeSpaceA | ... | @@ -558,6 +575,8 @@ GetDiskFreeSpaceA |
| 558 | GetDiskFreeSpaceExA | 575 | GetDiskFreeSpaceExA |
| 559 | GetDiskFreeSpaceExW | 576 | GetDiskFreeSpaceExW |
| 560 | GetDiskFreeSpaceW | 577 | GetDiskFreeSpaceW |
| 578 | GetDiskSpaceInformationA | ||
| 579 | GetDiskSpaceInformationW | ||
| 561 | GetDllDirectoryA | 580 | GetDllDirectoryA |
| 562 | GetDllDirectoryW | 581 | GetDllDirectoryW |
| 563 | GetDriveTypeA | 582 | GetDriveTypeA |
| ... | @@ -566,6 +585,7 @@ GetDurationFormat | ... | @@ -566,6 +585,7 @@ GetDurationFormat |
| 566 | GetDurationFormatEx | 585 | GetDurationFormatEx |
| 567 | GetDynamicTimeZoneInformation | 586 | GetDynamicTimeZoneInformation |
| 568 | GetEnabledExtendedFeatures | 587 | GetEnabledExtendedFeatures |
| 588 | GetEnabledXStateFeatures | ||
| 569 | GetEncryptedFileVersionExt | 589 | GetEncryptedFileVersionExt |
| 570 | GetEnvironmentStrings | 590 | GetEnvironmentStrings |
| 571 | GetEnvironmentStringsA | 591 | GetEnvironmentStringsA |
| ... | @@ -608,6 +628,7 @@ GetFullPathNameTransactedW | ... | @@ -608,6 +628,7 @@ GetFullPathNameTransactedW |
| 608 | GetFullPathNameW | 628 | GetFullPathNameW |
| 609 | GetGeoInfoA | 629 | GetGeoInfoA |
| 610 | GetGeoInfoW | 630 | GetGeoInfoW |
| 631 | GetGeoInfoEx | ||
| 611 | GetHandleInformation | 632 | GetHandleInformation |
| 612 | GetLargePageMinimum | 633 | GetLargePageMinimum |
| 613 | GetLargestConsoleWindowSize | 634 | GetLargestConsoleWindowSize |
| ... | @@ -693,7 +714,9 @@ GetPrivateProfileStructA | ... | @@ -693,7 +714,9 @@ GetPrivateProfileStructA |
| 693 | GetPrivateProfileStructW | 714 | GetPrivateProfileStructW |
| 694 | GetProcAddress | 715 | GetProcAddress |
| 695 | GetProcessAffinityMask | 716 | GetProcessAffinityMask |
| 717 | GetProcessDefaultCpuSets | ||
| 696 | GetProcessDEPPolicy | 718 | GetProcessDEPPolicy |
| 719 | GetProcessDefaultCpuSets | ||
| 697 | GetProcessGroupAffinity | 720 | GetProcessGroupAffinity |
| 698 | GetProcessHandleCount | 721 | GetProcessHandleCount |
| 699 | GetProcessHeap | 722 | GetProcessHeap |
| ... | @@ -733,6 +756,7 @@ GetStringTypeExA | ... | @@ -733,6 +756,7 @@ GetStringTypeExA |
| 733 | GetStringTypeExW | 756 | GetStringTypeExW |
| 734 | GetStringTypeW | 757 | GetStringTypeW |
| 735 | GetSystemAppDataKey | 758 | GetSystemAppDataKey |
| 759 | GetSystemCpuSetInformation | ||
| 736 | GetSystemDEPPolicy | 760 | GetSystemDEPPolicy |
| 737 | GetSystemDefaultLCID | 761 | GetSystemDefaultLCID |
| 738 | GetSystemDefaultLangID | 762 | GetSystemDefaultLangID |
| ... | @@ -763,6 +787,7 @@ GetTempFileNameW | ... | @@ -763,6 +787,7 @@ GetTempFileNameW |
| 763 | GetTempPathA | 787 | GetTempPathA |
| 764 | GetTempPathW | 788 | GetTempPathW |
| 765 | GetThreadContext | 789 | GetThreadContext |
| 790 | GetThreadDescription | ||
| 766 | GetThreadErrorMode | 791 | GetThreadErrorMode |
| 767 | GetThreadGroupAffinity | 792 | GetThreadGroupAffinity |
| 768 | GetThreadIOPendingFlag | 793 | GetThreadIOPendingFlag |
| ... | @@ -773,6 +798,7 @@ GetThreadLocale | ... | @@ -773,6 +798,7 @@ GetThreadLocale |
| 773 | GetThreadPreferredUILanguages | 798 | GetThreadPreferredUILanguages |
| 774 | GetThreadPriority | 799 | GetThreadPriority |
| 775 | GetThreadPriorityBoost | 800 | GetThreadPriorityBoost |
| 801 | GetThreadSelectedCpuSets | ||
| 776 | GetThreadSelectorEntry | 802 | GetThreadSelectorEntry |
| 777 | GetThreadTimes | 803 | GetThreadTimes |
| 778 | GetThreadUILanguage | 804 | GetThreadUILanguage |
| ... | @@ -787,6 +813,8 @@ GetTimeZoneInformation | ... | @@ -787,6 +813,8 @@ GetTimeZoneInformation |
| 787 | GetTimeZoneInformationForYear | 813 | GetTimeZoneInformationForYear |
| 788 | GetUILanguageInfo | 814 | GetUILanguageInfo |
| 789 | F_X64(GetUmsCompletionListEvent) | 815 | F_X64(GetUmsCompletionListEvent) |
| 816 | GetUmsSystemThreadInformation | ||
| 817 | GetUserDefaultGeoName | ||
| 790 | GetUserDefaultLCID | 818 | GetUserDefaultLCID |
| 791 | GetUserDefaultLangID | 819 | GetUserDefaultLangID |
| 792 | GetUserDefaultLocaleName | 820 | GetUserDefaultLocaleName |
| ... | @@ -809,6 +837,7 @@ GetVolumePathNamesForVolumeNameW | ... | @@ -809,6 +837,7 @@ GetVolumePathNamesForVolumeNameW |
| 809 | GetWindowsDirectoryA | 837 | GetWindowsDirectoryA |
| 810 | GetWindowsDirectoryW | 838 | GetWindowsDirectoryW |
| 811 | GetWriteWatch | 839 | GetWriteWatch |
| 840 | GetXStateFeaturesMask | ||
| 812 | GlobalAddAtomA | 841 | GlobalAddAtomA |
| 813 | GlobalAddAtomExA | 842 | GlobalAddAtomExA |
| 814 | GlobalAddAtomExW | 843 | GlobalAddAtomExW |
| ... | @@ -859,17 +888,17 @@ IdnToAscii | ... | @@ -859,17 +888,17 @@ IdnToAscii |
| 859 | IdnToNameprepUnicode | 888 | IdnToNameprepUnicode |
| 860 | IdnToUnicode | 889 | IdnToUnicode |
| 861 | InitAtomTable | 890 | InitAtomTable |
| 862 | InitializeConditionVariable | ||
| 863 | InitializeCriticalSection | ||
| 864 | InitOnceBeginInitialize | 891 | InitOnceBeginInitialize |
| 865 | InitOnceComplete | 892 | InitOnceComplete |
| 866 | InitOnceExecuteOnce | 893 | InitOnceExecuteOnce |
| 867 | InitOnceInitialize | 894 | InitOnceInitialize |
| 868 | InitializeConditionVariable | 895 | InitializeConditionVariable |
| 869 | InitializeContext | 896 | InitializeContext |
| 897 | InitializeContext2 | ||
| 870 | InitializeCriticalSection | 898 | InitializeCriticalSection |
| 871 | InitializeCriticalSectionAndSpinCount | 899 | InitializeCriticalSectionAndSpinCount |
| 872 | InitializeCriticalSectionEx | 900 | InitializeCriticalSectionEx |
| 901 | InitializeEnclave | ||
| 873 | InitializeExtendedContext | 902 | InitializeExtendedContext |
| 874 | InitializeProcThreadAttributeList | 903 | InitializeProcThreadAttributeList |
| 875 | InitializeSListHead | 904 | InitializeSListHead |
| ... | @@ -895,6 +924,7 @@ IsCalendarLeapYear | ... | @@ -895,6 +924,7 @@ IsCalendarLeapYear |
| 895 | IsDBCSLeadByte | 924 | IsDBCSLeadByte |
| 896 | IsDBCSLeadByteEx | 925 | IsDBCSLeadByteEx |
| 897 | IsDebuggerPresent | 926 | IsDebuggerPresent |
| 927 | IsEnclaveTypeSupported | ||
| 898 | IsNLSDefinedString | 928 | IsNLSDefinedString |
| 899 | IsNativeVhdBoot | 929 | IsNativeVhdBoot |
| 900 | IsNormalizedString | 930 | IsNormalizedString |
| ... | @@ -912,7 +942,9 @@ IsValidLocale | ... | @@ -912,7 +942,9 @@ IsValidLocale |
| 912 | IsValidUILanguage | 942 | IsValidUILanguage |
| 913 | IsValidLocaleName | 943 | IsValidLocaleName |
| 914 | IsValidNLSVersion | 944 | IsValidNLSVersion |
| 945 | IsWow64GuestMachineSupported | ||
| 915 | IsWow64Process | 946 | IsWow64Process |
| 947 | IsWow64Process2 | ||
| 916 | K32EmptyWorkingSet | 948 | K32EmptyWorkingSet |
| 917 | K32EnumDeviceDrivers | 949 | K32EnumDeviceDrivers |
| 918 | K32EnumPageFilesA | 950 | K32EnumPageFilesA |
| ... | @@ -958,6 +990,7 @@ LZStart | ... | @@ -958,6 +990,7 @@ LZStart |
| 958 | LeaveCriticalSection | 990 | LeaveCriticalSection |
| 959 | LeaveCriticalSectionWhenCallbackReturns | 991 | LeaveCriticalSectionWhenCallbackReturns |
| 960 | LoadAppInitDlls | 992 | LoadAppInitDlls |
| 993 | LoadEnclaveData | ||
| 961 | LoadLibraryA | 994 | LoadLibraryA |
| 962 | LoadLibraryExA | 995 | LoadLibraryExA |
| 963 | LoadLibraryExW | 996 | LoadLibraryExW |
| ... | @@ -970,6 +1003,7 @@ LoadStringBaseW | ... | @@ -970,6 +1003,7 @@ LoadStringBaseW |
| 970 | LocalAlloc | 1003 | LocalAlloc |
| 971 | LocalCompact | 1004 | LocalCompact |
| 972 | LocalFileTimeToFileTime | 1005 | LocalFileTimeToFileTime |
| 1006 | LocalFileTimeToLocalSystemTime | ||
| 973 | LocalFlags | 1007 | LocalFlags |
| 974 | LocalFree | 1008 | LocalFree |
| 975 | LocalHandle | 1009 | LocalHandle |
| ... | @@ -977,10 +1011,12 @@ LocalLock | ... | @@ -977,10 +1011,12 @@ LocalLock |
| 977 | LocalReAlloc | 1011 | LocalReAlloc |
| 978 | LocalShrink | 1012 | LocalShrink |
| 979 | LocalSize | 1013 | LocalSize |
| 1014 | LocalSystemTimeToLocalFileTime | ||
| 980 | LocalUnlock | 1015 | LocalUnlock |
| 981 | LocaleNameToLCID | 1016 | LocaleNameToLCID |
| 982 | LocateExtendedFeature | 1017 | LocateExtendedFeature |
| 983 | LocateLegacyContext | 1018 | LocateLegacyContext |
| 1019 | LocateXStateFeature | ||
| 984 | LockFile | 1020 | LockFile |
| 985 | LockFileEx | 1021 | LockFileEx |
| 986 | LockResource | 1022 | LockResource |
| ... | @@ -1099,11 +1135,13 @@ QueryFullProcessImageNameW | ... | @@ -1099,11 +1135,13 @@ QueryFullProcessImageNameW |
| 1099 | QueryIdleProcessorCycleTime | 1135 | QueryIdleProcessorCycleTime |
| 1100 | QueryIdleProcessorCycleTimeEx | 1136 | QueryIdleProcessorCycleTimeEx |
| 1101 | QueryInformationJobObject | 1137 | QueryInformationJobObject |
| 1138 | QueryIoRateControlInformationJobObject | ||
| 1102 | QueryMemoryResourceNotification | 1139 | QueryMemoryResourceNotification |
| 1103 | QueryPerformanceCounter | 1140 | QueryPerformanceCounter |
| 1104 | QueryPerformanceFrequency | 1141 | QueryPerformanceFrequency |
| 1105 | QueryProcessAffinityUpdateMode | 1142 | QueryProcessAffinityUpdateMode |
| 1106 | QueryProcessCycleTime | 1143 | QueryProcessCycleTime |
| 1144 | QueryProtectedPolicy | ||
| 1107 | QueryThreadCycleTime | 1145 | QueryThreadCycleTime |
| 1108 | QueryThreadProfiling | 1146 | QueryThreadProfiling |
| 1109 | QueryThreadpoolStackInformation | 1147 | QueryThreadpoolStackInformation |
| ... | @@ -1116,6 +1154,8 @@ QuirkGetDataWorker | ... | @@ -1116,6 +1154,8 @@ QuirkGetDataWorker |
| 1116 | QuirkIsEnabled2Worker | 1154 | QuirkIsEnabled2Worker |
| 1117 | QuirkIsEnabled3Worker | 1155 | QuirkIsEnabled3Worker |
| 1118 | QuirkIsEnabledForPackage2Worker | 1156 | QuirkIsEnabledForPackage2Worker |
| 1157 | QuirkIsEnabledForPackage3Worker | ||
| 1158 | QuirkIsEnabledForPackage4Worker | ||
| 1119 | QuirkIsEnabledForPackageWorker | 1159 | QuirkIsEnabledForPackageWorker |
| 1120 | QuirkIsEnabledForProcessWorker | 1160 | QuirkIsEnabledForProcessWorker |
| 1121 | QuirkIsEnabledWorker | 1161 | QuirkIsEnabledWorker |
| ... | @@ -1135,12 +1175,14 @@ ReadConsoleOutputCharacterA | ... | @@ -1135,12 +1175,14 @@ ReadConsoleOutputCharacterA |
| 1135 | ReadConsoleOutputCharacterW | 1175 | ReadConsoleOutputCharacterW |
| 1136 | ReadConsoleOutputW | 1176 | ReadConsoleOutputW |
| 1137 | ReadConsoleW | 1177 | ReadConsoleW |
| 1178 | ReadDirectoryChangesExW | ||
| 1138 | ReadDirectoryChangesW | 1179 | ReadDirectoryChangesW |
| 1139 | ReadFile | 1180 | ReadFile |
| 1140 | ReadFileEx | 1181 | ReadFileEx |
| 1141 | ReadFileScatter | 1182 | ReadFileScatter |
| 1142 | ReadProcessMemory | 1183 | ReadProcessMemory |
| 1143 | ReadThreadProfilingData | 1184 | ReadThreadProfilingData |
| 1185 | ReclaimVirtualMemory | ||
| 1144 | ; | 1186 | ; |
| 1145 | ; MSDN says these functions are exported | 1187 | ; MSDN says these functions are exported |
| 1146 | ; from advapi32.dll. Commented out for | 1188 | ; from advapi32.dll. Commented out for |
| ... | @@ -1231,6 +1273,7 @@ RequestDeviceWakeup | ... | @@ -1231,6 +1273,7 @@ RequestDeviceWakeup |
| 1231 | RequestWakeupLatency | 1273 | RequestWakeupLatency |
| 1232 | ResetEvent | 1274 | ResetEvent |
| 1233 | ResetWriteWatch | 1275 | ResetWriteWatch |
| 1276 | ResizePseudoConsole | ||
| 1234 | ResolveDelayLoadedAPI | 1277 | ResolveDelayLoadedAPI |
| 1235 | ResolveDelayLoadsFromDll | 1278 | ResolveDelayLoadsFromDll |
| 1236 | ResolveLocaleName | 1279 | ResolveLocaleName |
| ... | @@ -1346,6 +1389,7 @@ SetFirmwareEnvironmentVariableW | ... | @@ -1346,6 +1389,7 @@ SetFirmwareEnvironmentVariableW |
| 1346 | SetHandleCount | 1389 | SetHandleCount |
| 1347 | SetHandleInformation | 1390 | SetHandleInformation |
| 1348 | SetInformationJobObject | 1391 | SetInformationJobObject |
| 1392 | SetIoRateControlInformationJobObject | ||
| 1349 | SetLastConsoleEventActive | 1393 | SetLastConsoleEventActive |
| 1350 | SetLastError | 1394 | SetLastError |
| 1351 | SetLocalPrimaryComputerNameA | 1395 | SetLocalPrimaryComputerNameA |
| ... | @@ -1361,6 +1405,7 @@ SetPriorityClass | ... | @@ -1361,6 +1405,7 @@ SetPriorityClass |
| 1361 | SetProcessAffinityMask | 1405 | SetProcessAffinityMask |
| 1362 | SetProcessAffinityUpdateMode | 1406 | SetProcessAffinityUpdateMode |
| 1363 | SetProcessDEPPolicy | 1407 | SetProcessDEPPolicy |
| 1408 | SetProcessDefaultCpuSets | ||
| 1364 | SetProcessInformation | 1409 | SetProcessInformation |
| 1365 | SetProcessMitigationPolicy | 1410 | SetProcessMitigationPolicy |
| 1366 | SetProcessPreferredUILanguages | 1411 | SetProcessPreferredUILanguages |
| ... | @@ -1368,6 +1413,7 @@ SetProcessPriorityBoost | ... | @@ -1368,6 +1413,7 @@ SetProcessPriorityBoost |
| 1368 | SetProcessShutdownParameters | 1413 | SetProcessShutdownParameters |
| 1369 | SetProcessWorkingSetSize | 1414 | SetProcessWorkingSetSize |
| 1370 | SetProcessWorkingSetSizeEx | 1415 | SetProcessWorkingSetSizeEx |
| 1416 | SetProtectedPolicy | ||
| 1371 | SetSearchPathMode | 1417 | SetSearchPathMode |
| 1372 | SetStdHandle | 1418 | SetStdHandle |
| 1373 | SetStdHandleEx | 1419 | SetStdHandleEx |
| ... | @@ -1380,6 +1426,7 @@ SetTapePosition | ... | @@ -1380,6 +1426,7 @@ SetTapePosition |
| 1380 | SetTermsrvAppInstallMode | 1426 | SetTermsrvAppInstallMode |
| 1381 | SetThreadAffinityMask | 1427 | SetThreadAffinityMask |
| 1382 | SetThreadContext | 1428 | SetThreadContext |
| 1429 | SetThreadDescription | ||
| 1383 | SetThreadErrorMode | 1430 | SetThreadErrorMode |
| 1384 | SetThreadExecutionState | 1431 | SetThreadExecutionState |
| 1385 | SetThreadGroupAffinity | 1432 | SetThreadGroupAffinity |
| ... | @@ -1390,6 +1437,7 @@ SetThreadLocale | ... | @@ -1390,6 +1437,7 @@ SetThreadLocale |
| 1390 | SetThreadPreferredUILanguages | 1437 | SetThreadPreferredUILanguages |
| 1391 | SetThreadPriority | 1438 | SetThreadPriority |
| 1392 | SetThreadPriorityBoost | 1439 | SetThreadPriorityBoost |
| 1440 | SetThreadSelectedCpuSets | ||
| 1393 | SetThreadStackGuarantee | 1441 | SetThreadStackGuarantee |
| 1394 | SetThreadToken | 1442 | SetThreadToken |
| 1395 | SetThreadUILanguage | 1443 | SetThreadUILanguage |
| ... | @@ -1405,6 +1453,7 @@ SetTimerQueueTimer | ... | @@ -1405,6 +1453,7 @@ SetTimerQueueTimer |
| 1405 | F_X64(SetUmsThreadInformation) | 1453 | F_X64(SetUmsThreadInformation) |
| 1406 | SetUnhandledExceptionFilter | 1454 | SetUnhandledExceptionFilter |
| 1407 | SetUserGeoID | 1455 | SetUserGeoID |
| 1456 | SetUserGeoName | ||
| 1408 | SetVDMCurrentDirectories | 1457 | SetVDMCurrentDirectories |
| 1409 | SetVolumeLabelA | 1458 | SetVolumeLabelA |
| 1410 | SetVolumeLabelW | 1459 | SetVolumeLabelW |
| ... | @@ -1413,6 +1462,7 @@ SetVolumeMountPointW | ... | @@ -1413,6 +1462,7 @@ SetVolumeMountPointW |
| 1413 | SetVolumeMountPointWStub | 1462 | SetVolumeMountPointWStub |
| 1414 | SetWaitableTimer | 1463 | SetWaitableTimer |
| 1415 | SetWaitableTimerEx | 1464 | SetWaitableTimerEx |
| 1465 | SetXStateFeaturesMask | ||
| 1416 | SetupComm | 1466 | SetupComm |
| 1417 | ShowConsoleCursor | 1467 | ShowConsoleCursor |
| 1418 | SignalObjectAndWait | 1468 | SignalObjectAndWait |
| ... | @@ -1507,6 +1557,7 @@ VirtualUnlock | ... | @@ -1507,6 +1557,7 @@ VirtualUnlock |
| 1507 | WTSGetActiveConsoleSessionId | 1557 | WTSGetActiveConsoleSessionId |
| 1508 | WaitCommEvent | 1558 | WaitCommEvent |
| 1509 | WaitForDebugEvent | 1559 | WaitForDebugEvent |
| 1560 | WaitForDebugEventEx | ||
| 1510 | WaitForMultipleObjects | 1561 | WaitForMultipleObjects |
| 1511 | WaitForMultipleObjectsEx | 1562 | WaitForMultipleObjectsEx |
| 1512 | WaitForSingleObject | 1563 | WaitForSingleObject |
| ... | @@ -1523,6 +1574,11 @@ WakeByAddressSingle | ... | @@ -1523,6 +1574,11 @@ WakeByAddressSingle |
| 1523 | WakeByAddressAll | 1574 | WakeByAddressAll |
| 1524 | WakeConditionVariable | 1575 | WakeConditionVariable |
| 1525 | WerGetFlags | 1576 | WerGetFlags |
| 1577 | WerGetFlagsWorker | ||
| 1578 | WerRegisterAdditionalProcess | ||
| 1579 | WerRegisterAppLocalDump | ||
| 1580 | WerRegisterCustomMetadata | ||
| 1581 | WerRegisterExcludedMemoryBlock | ||
| 1526 | WerRegisterFile | 1582 | WerRegisterFile |
| 1527 | WerRegisterFileWorker | 1583 | WerRegisterFileWorker |
| 1528 | WerRegisterMemoryBlock | 1584 | WerRegisterMemoryBlock |
| ... | @@ -1530,6 +1586,11 @@ WerRegisterMemoryBlockWorker | ... | @@ -1530,6 +1586,11 @@ WerRegisterMemoryBlockWorker |
| 1530 | WerRegisterRuntimeExceptionModule | 1586 | WerRegisterRuntimeExceptionModule |
| 1531 | WerRegisterRuntimeExceptionModuleWorker | 1587 | WerRegisterRuntimeExceptionModuleWorker |
| 1532 | WerSetFlags | 1588 | WerSetFlags |
| 1589 | WerSetFlagsWorker | ||
| 1590 | WerUnregisterAdditionalProcess | ||
| 1591 | WerUnregisterAppLocalDump | ||
| 1592 | WerUnregisterCustomMetadata | ||
| 1593 | WerUnregisterExcludedMemoryBlock | ||
| 1533 | WerUnregisterFile | 1594 | WerUnregisterFile |
| 1534 | WerUnregisterFileWorker | 1595 | WerUnregisterFileWorker |
| 1535 | WerUnregisterMemoryBlock | 1596 | WerUnregisterMemoryBlock |
| ... | @@ -1583,7 +1644,8 @@ WriteProfileStringW | ... | @@ -1583,7 +1644,8 @@ WriteProfileStringW |
| 1583 | WriteTapemark | 1644 | WriteTapemark |
| 1584 | ZombifyActCtx | 1645 | ZombifyActCtx |
| 1585 | ZombifyActCtxWorker | 1646 | ZombifyActCtxWorker |
| 1586 | __C_specific_handler | 1647 | F_X64(__C_specific_handler) |
| 1648 | F_ARM32(__C_specific_handler) | ||
| 1587 | F_ARM32(__chkstk) | 1649 | F_ARM32(__chkstk) |
| 1588 | F_X64(__misaligned_access) | 1650 | F_X64(__misaligned_access) |
| 1589 | _hread | 1651 | _hread |
| ... | @@ -1613,6 +1675,17 @@ lstrcpynW | ... | @@ -1613,6 +1675,17 @@ lstrcpynW |
| 1613 | lstrlen | 1675 | lstrlen |
| 1614 | lstrlenA | 1676 | lstrlenA |
| 1615 | lstrlenW | 1677 | lstrlenW |
| 1678 | ; | ||
| 1679 | ; MSDN says these functions are exported | ||
| 1680 | ; from winmm.dll. Commented out for | ||
| 1681 | ; compatibility with older versions of | ||
| 1682 | ; Windows. | ||
| 1683 | ; | ||
| 1684 | ;timeBeginPeriod | ||
| 1685 | ;timeEndPeriod | ||
| 1686 | ;timeGetDevCaps | ||
| 1687 | ;timeGetSystemTime | ||
| 1688 | ;timeGetTime | ||
| 1616 | uaw_lstrcmpW | 1689 | uaw_lstrcmpW |
| 1617 | uaw_lstrcmpiW | 1690 | uaw_lstrcmpiW |
| 1618 | uaw_lstrlenW | 1691 | uaw_lstrlenW |
lib/libc/mingw/lib-common/msvcrt.def.in+73-54| ... | @@ -226,7 +226,8 @@ _CrtSetReportHook | ... | @@ -226,7 +226,8 @@ _CrtSetReportHook |
| 226 | _CrtSetReportHook2 | 226 | _CrtSetReportHook2 |
| 227 | _CrtSetReportMode | 227 | _CrtSetReportMode |
| 228 | #endif | 228 | #endif |
| 229 | _CxxThrowException | 229 | F_I386(_CxxThrowException@8) |
| 230 | F_NON_I386(_CxxThrowException) | ||
| 230 | F_I386(_EH_prolog) | 231 | F_I386(_EH_prolog) |
| 231 | _Getdays | 232 | _Getdays |
| 232 | _Getmonths | 233 | _Getmonths |
| ... | @@ -245,7 +246,7 @@ F_I386(__CxxCallUnwindDtor) | ... | @@ -245,7 +246,7 @@ F_I386(__CxxCallUnwindDtor) |
| 245 | F_I386(__CxxCallUnwindVecDtor) | 246 | F_I386(__CxxCallUnwindVecDtor) |
| 246 | F_I386(__CxxDetectRethrow) | 247 | F_I386(__CxxDetectRethrow) |
| 247 | F_I386(__CxxExceptionFilter) | 248 | F_I386(__CxxExceptionFilter) |
| 248 | __CxxFrameHandler | 249 | F_X86_ANY(__CxxFrameHandler) |
| 249 | F_ARM_ANY(__CxxFrameHandler3) | 250 | F_ARM_ANY(__CxxFrameHandler3) |
| 250 | F_I386(__CxxLongjmpUnwind) | 251 | F_I386(__CxxLongjmpUnwind) |
| 251 | F_I386(__CxxQueryExceptionSize) | 252 | F_I386(__CxxQueryExceptionSize) |
| ... | @@ -259,9 +260,13 @@ __STRINGTOLD | ... | @@ -259,9 +260,13 @@ __STRINGTOLD |
| 259 | F_NON_I386(___lc_codepage_func) | 260 | F_NON_I386(___lc_codepage_func) |
| 260 | ___lc_collate_cp_func | 261 | ___lc_collate_cp_func |
| 261 | ___lc_handle_func | 262 | ___lc_handle_func |
| 262 | ___mb_cur_max_func | 263 | ; ___mb_cur_max_func exists (on all archs) since XP. Earlier, this function |
| 263 | ___setlc_active_func | 264 | ; was never used, but the __mb_cur_max data symbol was accessed instead. |
| 264 | ___unguarded_readlc_active_add_func | 265 | ; For i386 we provide this function as a statically linked helper, that uses |
| 266 | ; __mb_cur_max, to avoid forcing a dependency on XP here. | ||
| 267 | F_NON_I386(___mb_cur_max_func) | ||
| 268 | F_X86_ANY(___setlc_active_func) | ||
| 269 | F_X86_ANY(___unguarded_readlc_active_add_func) | ||
| 265 | __argc DATA | 270 | __argc DATA |
| 266 | __argv DATA | 271 | __argv DATA |
| 267 | __badioinfo DATA | 272 | __badioinfo DATA |
| ... | @@ -284,8 +289,8 @@ __isascii | ... | @@ -284,8 +289,8 @@ __isascii |
| 284 | __iscsym | 289 | __iscsym |
| 285 | __iscsymf | 290 | __iscsymf |
| 286 | F_I386(__lc_clike) | 291 | F_I386(__lc_clike) |
| 287 | __lc_codepage DATA | 292 | F_X86_ANY(__lc_codepage DATA) |
| 288 | __lc_collate_cp DATA | 293 | F_X86_ANY(__lc_collate_cp DATA) |
| 289 | __lc_handle DATA | 294 | __lc_handle DATA |
| 290 | __lconv_init | 295 | __lconv_init |
| 291 | __mb_cur_max DATA | 296 | __mb_cur_max DATA |
| ... | @@ -327,16 +332,16 @@ __pxcptinfoptrs | ... | @@ -327,16 +332,16 @@ __pxcptinfoptrs |
| 327 | F_I386(__security_error_handler) | 332 | F_I386(__security_error_handler) |
| 328 | __set_app_type | 333 | __set_app_type |
| 329 | F_I386(__set_buffer_overrun_handler) | 334 | F_I386(__set_buffer_overrun_handler) |
| 330 | __setlc_active DATA | 335 | F_X86_ANY(__setlc_active DATA) |
| 331 | __setusermatherr | 336 | __setusermatherr |
| 332 | F_ARM_ANY(__strncnt) | 337 | F_ARM_ANY(__strncnt) |
| 333 | __threadhandle | 338 | F_X86_ANY(__threadhandle) |
| 334 | __threadid | 339 | F_X86_ANY(__threadid) |
| 335 | __toascii | 340 | __toascii |
| 336 | __uncaught_exception | 341 | __uncaught_exception |
| 337 | __unDName | 342 | __unDName |
| 338 | __unDNameEx | 343 | __unDNameEx |
| 339 | __unguarded_readlc_active DATA | 344 | F_X86_ANY(__unguarded_readlc_active DATA) |
| 340 | __wargv DATA | 345 | __wargv DATA |
| 341 | __wcserror | 346 | __wcserror |
| 342 | F_NON_I386(__wcserror_s) | 347 | F_NON_I386(__wcserror_s) |
| ... | @@ -376,7 +381,7 @@ F_ARM_ANY(_aligned_offset_realloc_dbg) | ... | @@ -376,7 +381,7 @@ F_ARM_ANY(_aligned_offset_realloc_dbg) |
| 376 | _aligned_realloc | 381 | _aligned_realloc |
| 377 | F_ARM_ANY(_aligned_realloc_dbg) | 382 | F_ARM_ANY(_aligned_realloc_dbg) |
| 378 | _amsg_exit | 383 | _amsg_exit |
| 379 | _assert DATA | 384 | _assert |
| 380 | _atodbl | 385 | _atodbl |
| 381 | _atodbl_l | 386 | _atodbl_l |
| 382 | _atof_l | 387 | _atof_l |
| ... | @@ -387,7 +392,7 @@ _atoi_l | ... | @@ -387,7 +392,7 @@ _atoi_l |
| 387 | _atol_l | 392 | _atol_l |
| 388 | _atoldbl | 393 | _atoldbl |
| 389 | F_NON_I386(_atoldbl_l) | 394 | F_NON_I386(_atoldbl_l) |
| 390 | _beep | 395 | F_X86_ANY(_beep) |
| 391 | _beginthread | 396 | _beginthread |
| 392 | _beginthreadex | 397 | _beginthreadex |
| 393 | _c_exit | 398 | _c_exit |
| ... | @@ -428,7 +433,7 @@ _cputs | ... | @@ -428,7 +433,7 @@ _cputs |
| 428 | _cputws | 433 | _cputws |
| 429 | F_I386(_CRT_RTC_INIT) | 434 | F_I386(_CRT_RTC_INIT) |
| 430 | _creat | 435 | _creat |
| 431 | _create_locale | 436 | F_ARM_ANY(_create_locale) |
| 432 | F_ARM32(_crtAssertBusy) | 437 | F_ARM32(_crtAssertBusy) |
| 433 | F_ARM32(_crtBreakAlloc) | 438 | F_ARM32(_crtBreakAlloc) |
| 434 | F_ARM32(_crtDbgFlag) | 439 | F_ARM32(_crtDbgFlag) |
| ... | @@ -453,10 +458,10 @@ _cwscanf | ... | @@ -453,10 +458,10 @@ _cwscanf |
| 453 | _cwscanf_l | 458 | _cwscanf_l |
| 454 | _cwscanf_s | 459 | _cwscanf_s |
| 455 | _cwscanf_s_l | 460 | _cwscanf_s_l |
| 456 | _dstbias DATA | 461 | F_X86_ANY(_dstbias DATA) |
| 457 | F_ARM_ANY(_daylight DATA) | 462 | F_ARM_ANY(_daylight DATA) |
| 458 | F_ARM_ANY(_difftime32) | 463 | _difftime32 F_I386(== difftime) |
| 459 | F_ARM_ANY(_difftime64) | 464 | _difftime64 |
| 460 | _dup | 465 | _dup |
| 461 | _dup2 | 466 | _dup2 |
| 462 | _ecvt | 467 | _ecvt |
| ... | @@ -520,7 +525,7 @@ _fprintf_s_l | ... | @@ -520,7 +525,7 @@ _fprintf_s_l |
| 520 | _fputchar | 525 | _fputchar |
| 521 | _fputwchar | 526 | _fputwchar |
| 522 | F_ARM_ANY(_free_dbg) | 527 | F_ARM_ANY(_free_dbg) |
| 523 | _free_locale | 528 | F_ARM_ANY(_free_locale) |
| 524 | F_ARM_ANY(_freea) | 529 | F_ARM_ANY(_freea) |
| 525 | F_NON_I386(_fscanf_l) | 530 | F_NON_I386(_fscanf_l) |
| 526 | F_NON_I386(_fscanf_s_l) | 531 | F_NON_I386(_fscanf_s_l) |
| ... | @@ -532,7 +537,8 @@ _fstat64 | ... | @@ -532,7 +537,8 @@ _fstat64 |
| 532 | _fstati64 | 537 | _fstati64 |
| 533 | F64(_fstat64i32 == _fstat) | 538 | F64(_fstat64i32 == _fstat) |
| 534 | _ftime | 539 | _ftime |
| 535 | F_ARM_ANY(_ftime32) | 540 | F_I386(_ftime32 == _ftime) |
| 541 | F_NON_I386(_ftime32) | ||
| 536 | _ftime32_s | 542 | _ftime32_s |
| 537 | _ftime64 | 543 | _ftime64 |
| 538 | _ftime64_s | 544 | _ftime64_s |
| ... | @@ -542,7 +548,8 @@ F_I386(_ftol) | ... | @@ -542,7 +548,8 @@ F_I386(_ftol) |
| 542 | _fullpath | 548 | _fullpath |
| 543 | F_ARM_ANY(_fullpath_dbg) | 549 | F_ARM_ANY(_fullpath_dbg) |
| 544 | _futime | 550 | _futime |
| 545 | F_ARM_ANY(_futime32) | 551 | F_I386(_futime32 == _futime) |
| 552 | F_NON_I386(_futime32) | ||
| 546 | _futime64 | 553 | _futime64 |
| 547 | _fwprintf_l | 554 | _fwprintf_l |
| 548 | _fwprintf_p | 555 | _fwprintf_p |
| ... | @@ -558,10 +565,10 @@ F_ARM_ANY(_get_environ) | ... | @@ -558,10 +565,10 @@ F_ARM_ANY(_get_environ) |
| 558 | F_ARM_ANY(_get_errno) | 565 | F_ARM_ANY(_get_errno) |
| 559 | F_ARM_ANY(_get_fileinfo) | 566 | F_ARM_ANY(_get_fileinfo) |
| 560 | F_ARM_ANY(_get_fmode) | 567 | F_ARM_ANY(_get_fmode) |
| 561 | _get_heap_handle | 568 | F_X86_ANY(_get_heap_handle) |
| 562 | _get_osfhandle | 569 | _get_osfhandle |
| 563 | ;_get_output_format provided by emu | 570 | ;_get_output_format provided by emu |
| 564 | _get_sbh_threshold | 571 | F_X86_ANY(_get_sbh_threshold) |
| 565 | F_ARM_ANY(_get_wenviron) | 572 | F_ARM_ANY(_get_wenviron) |
| 566 | _getch | 573 | _getch |
| 567 | _getche | 574 | _getche |
| ... | @@ -570,25 +577,25 @@ _getdcwd | ... | @@ -570,25 +577,25 @@ _getdcwd |
| 570 | _getdiskfree | 577 | _getdiskfree |
| 571 | _getdllprocaddr | 578 | _getdllprocaddr |
| 572 | _getdrive | 579 | _getdrive |
| 573 | _getdrives | 580 | F_X86_ANY(_getdrives) |
| 574 | _getmaxstdio | 581 | _getmaxstdio |
| 575 | _getmbcp | 582 | _getmbcp |
| 576 | _getpid | 583 | F_X86_ANY(_getpid) |
| 577 | _getsystime | 584 | F_X86_ANY(_getsystime) |
| 578 | _getw | 585 | _getw |
| 579 | _getwch | 586 | _getwch |
| 580 | _getwche | 587 | _getwche |
| 581 | _getws | 588 | F_X86_ANY(_getws) |
| 582 | F_I386(_global_unwind2) | 589 | F_I386(_global_unwind2) |
| 583 | _gmtime32 F_I386(== gmtime) | 590 | _gmtime32 F_I386(== gmtime) |
| 584 | ; _gmtime32_s replaced by emu | 591 | ; _gmtime32_s replaced by emu |
| 585 | _gmtime64 | 592 | _gmtime64 |
| 586 | ; _gmtime64_s replaced by emu | 593 | ; _gmtime64_s replaced by emu |
| 587 | _heapadd | 594 | F_X86_ANY(_heapadd) |
| 588 | _heapchk | 595 | _heapchk |
| 589 | _heapmin | 596 | _heapmin |
| 590 | _heapset | 597 | F_X86_ANY(_heapset) |
| 591 | _heapused | 598 | F_X86_ANY(_heapused) |
| 592 | _heapwalk | 599 | _heapwalk |
| 593 | _hypot | 600 | _hypot |
| 594 | F_NON_I386(_hypotf) | 601 | F_NON_I386(_hypotf) |
| ... | @@ -698,7 +705,7 @@ _j1 | ... | @@ -698,7 +705,7 @@ _j1 |
| 698 | _jn | 705 | _jn |
| 699 | _kbhit | 706 | _kbhit |
| 700 | _lfind | 707 | _lfind |
| 701 | _loaddll | 708 | F_X86_ANY(_loaddll) |
| 702 | F_NON_I386(_lfind_s) | 709 | F_NON_I386(_lfind_s) |
| 703 | F_X64(_local_unwind) | 710 | F_X64(_local_unwind) |
| 704 | F_I386(_local_unwind2) | 711 | F_I386(_local_unwind2) |
| ... | @@ -868,9 +875,8 @@ _memicmp | ... | @@ -868,9 +875,8 @@ _memicmp |
| 868 | _memicmp_l | 875 | _memicmp_l |
| 869 | _mkdir | 876 | _mkdir |
| 870 | _mkgmtime | 877 | _mkgmtime |
| 871 | F_I386(_mkgmtime32) | 878 | _mkgmtime32 |
| 872 | F_ARM_ANY(_mkgmtime32) | 879 | _mkgmtime64 |
| 873 | F_NON_I386(_mkgmtime64) | ||
| 874 | _mktemp | 880 | _mktemp |
| 875 | ; _mktemp_s replaced by emu | 881 | ; _mktemp_s replaced by emu |
| 876 | F_I386(_mktime32 == mktime) | 882 | F_I386(_mktime32 == mktime) |
| ... | @@ -883,7 +889,7 @@ F_X64(_nextafterf) | ... | @@ -883,7 +889,7 @@ F_X64(_nextafterf) |
| 883 | _onexit | 889 | _onexit |
| 884 | _open | 890 | _open |
| 885 | _open_osfhandle | 891 | _open_osfhandle |
| 886 | _osplatform DATA | 892 | F_X86_ANY(_osplatform DATA) |
| 887 | _osver DATA | 893 | _osver DATA |
| 888 | F_I386(_outp) | 894 | F_I386(_outp) |
| 889 | F_I386(_outpd) | 895 | F_I386(_outpd) |
| ... | @@ -941,19 +947,19 @@ F_ARM_ANY(_set_fileinfo) | ... | @@ -941,19 +947,19 @@ F_ARM_ANY(_set_fileinfo) |
| 941 | F_ARM_ANY(_set_fmode) | 947 | F_ARM_ANY(_set_fmode) |
| 942 | ; Does not seem to present even on Win7 msvcrt | 948 | ; Does not seem to present even on Win7 msvcrt |
| 943 | ;_set_purecall_handler | 949 | ;_set_purecall_handler |
| 944 | _set_sbh_threshold | 950 | F_X86_ANY(_set_sbh_threshold) |
| 945 | ; _set_output_format provided by emu | 951 | ; _set_output_format provided by emu |
| 946 | F_I386(_set_SSE2_enable) | 952 | F_I386(_set_SSE2_enable) |
| 947 | F_I386(_set_security_error_handler) | 953 | F_I386(_set_security_error_handler) |
| 948 | _seterrormode | 954 | F_X86_ANY(_seterrormode) |
| 949 | _setjmp | 955 | _setjmp |
| 950 | F_I386(_setjmp3) | 956 | F_I386(_setjmp3) |
| 951 | F_NON_I386(_setjmpex) | 957 | F_NON_I386(_setjmpex) |
| 952 | _setmaxstdio | 958 | F_X86_ANY(_setmaxstdio) |
| 953 | _setmbcp | 959 | _setmbcp |
| 954 | _setmode | 960 | _setmode |
| 955 | _setsystime | 961 | F_X86_ANY(_setsystime) |
| 956 | _sleep | 962 | F_X86_ANY(_sleep) |
| 957 | _snprintf | 963 | _snprintf |
| 958 | _snprintf_c | 964 | _snprintf_c |
| 959 | _snprintf_c_l | 965 | _snprintf_c_l |
| ... | @@ -1074,10 +1080,11 @@ _umask | ... | @@ -1074,10 +1080,11 @@ _umask |
| 1074 | _ungetch | 1080 | _ungetch |
| 1075 | _ungetwch | 1081 | _ungetwch |
| 1076 | _unlink | 1082 | _unlink |
| 1077 | _unloaddll | 1083 | F_X86_ANY(_unloaddll) |
| 1078 | _unlock | 1084 | _unlock |
| 1079 | _utime | 1085 | _utime |
| 1080 | F_ARM_ANY(_utime32) | 1086 | F_I386(_utime32 == _utime) |
| 1087 | F_NON_I386(_utime32) | ||
| 1081 | _utime64 | 1088 | _utime64 |
| 1082 | _vcprintf | 1089 | _vcprintf |
| 1083 | _vcprintf_l | 1090 | _vcprintf_l |
| ... | @@ -1138,7 +1145,7 @@ _waccess | ... | @@ -1138,7 +1145,7 @@ _waccess |
| 1138 | ; _waccess_s Replaced by emu | 1145 | ; _waccess_s Replaced by emu |
| 1139 | _wasctime | 1146 | _wasctime |
| 1140 | ; _wasctime_s Replaced by emu | 1147 | ; _wasctime_s Replaced by emu |
| 1141 | F_ARM_ANY(_wassert) | 1148 | F_NON_I386(_wassert) |
| 1142 | _wchdir | 1149 | _wchdir |
| 1143 | _wchmod | 1150 | _wchmod |
| 1144 | _wcmdln DATA | 1151 | _wcmdln DATA |
| ... | @@ -1227,7 +1234,7 @@ _wgetenv_s | ... | @@ -1227,7 +1234,7 @@ _wgetenv_s |
| 1227 | _winmajor DATA | 1234 | _winmajor DATA |
| 1228 | _winminor DATA | 1235 | _winminor DATA |
| 1229 | _winput_s | 1236 | _winput_s |
| 1230 | _winver DATA | 1237 | F_X86_ANY(_winver DATA) |
| 1231 | _wmakepath | 1238 | _wmakepath |
| 1232 | _wmakepath_s | 1239 | _wmakepath_s |
| 1233 | _wmkdir | 1240 | _wmkdir |
| ... | @@ -1289,7 +1296,8 @@ _wtol | ... | @@ -1289,7 +1296,8 @@ _wtol |
| 1289 | _wtol_l | 1296 | _wtol_l |
| 1290 | _wunlink | 1297 | _wunlink |
| 1291 | _wutime | 1298 | _wutime |
| 1292 | F_ARM_ANY(_wutime32) | 1299 | F_I386(_wutime32 == _wutime) |
| 1300 | F_NON_I386(_wutime32) | ||
| 1293 | _wutime64 | 1301 | _wutime64 |
| 1294 | _y0 | 1302 | _y0 |
| 1295 | _y1 | 1303 | _y1 |
| ... | @@ -1298,14 +1306,18 @@ abort | ... | @@ -1298,14 +1306,18 @@ abort |
| 1298 | abs | 1306 | abs |
| 1299 | acos | 1307 | acos |
| 1300 | F_NON_I386(acosf F_X86_ANY(DATA)) | 1308 | F_NON_I386(acosf F_X86_ANY(DATA)) |
| 1309 | F_ARM_ANY(acosl == acos) | ||
| 1301 | asctime | 1310 | asctime |
| 1302 | ; asctime_s replaced by emu | 1311 | ; asctime_s replaced by emu |
| 1303 | asin | 1312 | asin |
| 1304 | F_NON_I386(asinf F_X86_ANY(DATA)) | 1313 | F_NON_I386(asinf F_X86_ANY(DATA)) |
| 1314 | F_ARM_ANY(asinl == asin) | ||
| 1305 | atan | 1315 | atan |
| 1306 | atan2 F_X86_ANY(DATA) | 1316 | atan2 F_X86_ANY(DATA) |
| 1307 | F_NON_I386(atan2f F_X86_ANY(DATA)) | 1317 | F_NON_I386(atan2f F_X86_ANY(DATA)) |
| 1318 | F_ARM_ANY(atan2l == atan2) | ||
| 1308 | F_NON_I386(atanf F_X86_ANY(DATA)) | 1319 | F_NON_I386(atanf F_X86_ANY(DATA)) |
| 1320 | F_ARM_ANY(atanl == atan) | ||
| 1309 | atexit DATA | 1321 | atexit DATA |
| 1310 | atof | 1322 | atof |
| 1311 | atoi | 1323 | atoi |
| ... | @@ -1314,13 +1326,15 @@ bsearch | ... | @@ -1314,13 +1326,15 @@ bsearch |
| 1314 | bsearch_s | 1326 | bsearch_s |
| 1315 | F_ARM_ANY(btowc) | 1327 | F_ARM_ANY(btowc) |
| 1316 | calloc | 1328 | calloc |
| 1317 | ceil DATA | 1329 | ceil F_X86_ANY(DATA) |
| 1318 | F_NON_I386(ceilf DATA) | 1330 | F_NON_I386(ceilf F_X86_ANY(DATA)) |
| 1331 | F_ARM_ANY(ceill == ceil) | ||
| 1319 | clearerr | 1332 | clearerr |
| 1320 | clearerr_s | 1333 | clearerr_s |
| 1321 | clock | 1334 | clock |
| 1322 | cos F_X86_ANY(DATA) | 1335 | cos F_X86_ANY(DATA) |
| 1323 | F_NON_I386(cosf F_X86_ANY(DATA)) | 1336 | F_NON_I386(cosf F_X86_ANY(DATA)) |
| 1337 | F_ARM_ANY(cosl == cos) | ||
| 1324 | cosh | 1338 | cosh |
| 1325 | F_NON_I386(coshf DATA) | 1339 | F_NON_I386(coshf DATA) |
| 1326 | ctime | 1340 | ctime |
| ... | @@ -1329,6 +1343,7 @@ div | ... | @@ -1329,6 +1343,7 @@ div |
| 1329 | exit | 1343 | exit |
| 1330 | exp F_X86_ANY(DATA) | 1344 | exp F_X86_ANY(DATA) |
| 1331 | F_NON_I386(expf F_X86_ANY(DATA)) | 1345 | F_NON_I386(expf F_X86_ANY(DATA)) |
| 1346 | F_ARM_ANY(expl == exp) | ||
| 1332 | fabs DATA | 1347 | fabs DATA |
| 1333 | F_ARM_ANY(fabsf) | 1348 | F_ARM_ANY(fabsf) |
| 1334 | fclose | 1349 | fclose |
| ... | @@ -1340,10 +1355,12 @@ fgetpos | ... | @@ -1340,10 +1355,12 @@ fgetpos |
| 1340 | fgets | 1355 | fgets |
| 1341 | fgetwc | 1356 | fgetwc |
| 1342 | fgetws | 1357 | fgetws |
| 1343 | floor DATA | 1358 | floor F_X86_ANY(DATA) |
| 1344 | F_NON_I386(floorf DATA) | 1359 | F_NON_I386(floorf F_X86_ANY(DATA)) |
| 1360 | F_ARM_ANY(floorl == floor) | ||
| 1345 | fmod F_X86_ANY(DATA) | 1361 | fmod F_X86_ANY(DATA) |
| 1346 | F_NON_I386(fmodf F_X86_ANY(DATA)) | 1362 | F_NON_I386(fmodf F_X86_ANY(DATA)) |
| 1363 | F_ARM_ANY(fmodl == fmod) | ||
| 1347 | fopen | 1364 | fopen |
| 1348 | fopen_s | 1365 | fopen_s |
| 1349 | fprintf | 1366 | fprintf |
| ... | @@ -1356,8 +1373,7 @@ fread | ... | @@ -1356,8 +1373,7 @@ fread |
| 1356 | free | 1373 | free |
| 1357 | freopen | 1374 | freopen |
| 1358 | freopen_s | 1375 | freopen_s |
| 1359 | ; If we implement frexp, we can set it to DATA only. | 1376 | frexp DATA |
| 1360 | frexp | ||
| 1361 | fscanf | 1377 | fscanf |
| 1362 | fscanf_s | 1378 | fscanf_s |
| 1363 | fseek | 1379 | fseek |
| ... | @@ -1373,7 +1389,7 @@ getc | ... | @@ -1373,7 +1389,7 @@ getc |
| 1373 | getchar | 1389 | getchar |
| 1374 | getenv | 1390 | getenv |
| 1375 | getenv_s | 1391 | getenv_s |
| 1376 | gets | 1392 | F_X86_ANY(gets) |
| 1377 | getwc | 1393 | getwc |
| 1378 | getwchar | 1394 | getwchar |
| 1379 | gmtime | 1395 | gmtime |
| ... | @@ -1411,8 +1427,9 @@ localtime | ... | @@ -1411,8 +1427,9 @@ localtime |
| 1411 | log F_X86_ANY(DATA) | 1427 | log F_X86_ANY(DATA) |
| 1412 | log10 | 1428 | log10 |
| 1413 | F_NON_I386(log10f F_X86_ANY(DATA)) | 1429 | F_NON_I386(log10f F_X86_ANY(DATA)) |
| 1430 | F_ARM_ANY(log10l == log10) | ||
| 1414 | F_NON_I386(logf F_X86_ANY(DATA)) | 1431 | F_NON_I386(logf F_X86_ANY(DATA)) |
| 1415 | F_ARM_ANY(longjmp) | 1432 | F_ARM_ANY(logl == log) |
| 1416 | malloc | 1433 | malloc |
| 1417 | mblen | 1434 | mblen |
| 1418 | F_ARM_ANY(mbrlen) | 1435 | F_ARM_ANY(mbrlen) |
| ... | @@ -1434,8 +1451,8 @@ mktime | ... | @@ -1434,8 +1451,8 @@ mktime |
| 1434 | modf DATA | 1451 | modf DATA |
| 1435 | F_NON_I386(modff DATA) | 1452 | F_NON_I386(modff DATA) |
| 1436 | perror | 1453 | perror |
| 1437 | pow F_X86_ANY(DATA) | 1454 | pow DATA |
| 1438 | F_NON_I386(powf F_X86_ANY(DATA)) | 1455 | F_NON_I386(powf DATA) |
| 1439 | printf | 1456 | printf |
| 1440 | printf_s | 1457 | printf_s |
| 1441 | putc | 1458 | putc |
| ... | @@ -1461,6 +1478,7 @@ setvbuf | ... | @@ -1461,6 +1478,7 @@ setvbuf |
| 1461 | signal | 1478 | signal |
| 1462 | sin F_X86_ANY(DATA) | 1479 | sin F_X86_ANY(DATA) |
| 1463 | F_NON_I386(sinf F_X86_ANY(DATA)) | 1480 | F_NON_I386(sinf F_X86_ANY(DATA)) |
| 1481 | F_ARM_ANY(sinl == sin) | ||
| 1464 | ; if we implement sinh, we can set it DATA only. | 1482 | ; if we implement sinh, we can set it DATA only. |
| 1465 | sinh | 1483 | sinh |
| 1466 | F_NON_I386(sinhf DATA) | 1484 | F_NON_I386(sinhf DATA) |
| ... | @@ -1506,6 +1524,7 @@ swscanf_s | ... | @@ -1506,6 +1524,7 @@ swscanf_s |
| 1506 | system | 1524 | system |
| 1507 | tan | 1525 | tan |
| 1508 | F_NON_I386(tanf F_X86_ANY(DATA)) | 1526 | F_NON_I386(tanf F_X86_ANY(DATA)) |
| 1527 | F_ARM_ANY(tanl == tan) | ||
| 1509 | ; if we implement tanh, we can set it to DATA only. | 1528 | ; if we implement tanh, we can set it to DATA only. |
| 1510 | tanh | 1529 | tanh |
| 1511 | F_ARM_ANY(tanhf) | 1530 | F_ARM_ANY(tanhf) |
lib/libc/mingw/lib-common/mswsock.def created+70| ... | @@ -0,0 +1,70 @@ | ||
| 1 | ; | ||
| 2 | ; Definition file of MSWSOCK.dll | ||
| 3 | ; Automatic generated by gendef | ||
| 4 | ; written by Kai Tietz 2008-2014 | ||
| 5 | ; | ||
| 6 | LIBRARY "MSWSOCK.dll" | ||
| 7 | EXPORTS | ||
| 8 | AcceptEx | ||
| 9 | EnumProtocolsA | ||
| 10 | EnumProtocolsW | ||
| 11 | GetAcceptExSockaddrs | ||
| 12 | GetAddressByNameA | ||
| 13 | GetAddressByNameW | ||
| 14 | GetNameByTypeA | ||
| 15 | GetNameByTypeW | ||
| 16 | GetServiceA | ||
| 17 | GetServiceW | ||
| 18 | GetSocketErrorMessageW | ||
| 19 | GetTypeByNameA | ||
| 20 | GetTypeByNameW | ||
| 21 | MigrateWinsockConfiguration | ||
| 22 | MigrateWinsockConfigurationEx | ||
| 23 | NPLoadNameSpaces | ||
| 24 | NSPStartup | ||
| 25 | SetServiceA | ||
| 26 | SetServiceW | ||
| 27 | StartWsdpService | ||
| 28 | StopWsdpService | ||
| 29 | Tcpip4_WSHAddressToString | ||
| 30 | Tcpip4_WSHEnumProtocols | ||
| 31 | Tcpip4_WSHGetBroadcastSockaddr | ||
| 32 | Tcpip4_WSHGetProviderGuid | ||
| 33 | Tcpip4_WSHGetSockaddrType | ||
| 34 | Tcpip4_WSHGetSocketInformation | ||
| 35 | Tcpip4_WSHGetWSAProtocolInfo | ||
| 36 | Tcpip4_WSHGetWildcardSockaddr | ||
| 37 | Tcpip4_WSHGetWinsockMapping | ||
| 38 | Tcpip4_WSHIoctl | ||
| 39 | Tcpip4_WSHJoinLeaf | ||
| 40 | Tcpip4_WSHNotify | ||
| 41 | Tcpip4_WSHOpenSocket | ||
| 42 | Tcpip4_WSHOpenSocket2 | ||
| 43 | Tcpip4_WSHSetSocketInformation | ||
| 44 | Tcpip4_WSHStringToAddress | ||
| 45 | Tcpip6_WSHAddressToString | ||
| 46 | Tcpip6_WSHEnumProtocols | ||
| 47 | Tcpip6_WSHGetProviderGuid | ||
| 48 | Tcpip6_WSHGetSockaddrType | ||
| 49 | Tcpip6_WSHGetSocketInformation | ||
| 50 | Tcpip6_WSHGetWSAProtocolInfo | ||
| 51 | Tcpip6_WSHGetWildcardSockaddr | ||
| 52 | Tcpip6_WSHGetWinsockMapping | ||
| 53 | Tcpip6_WSHIoctl | ||
| 54 | Tcpip6_WSHJoinLeaf | ||
| 55 | Tcpip6_WSHNotify | ||
| 56 | Tcpip6_WSHOpenSocket | ||
| 57 | Tcpip6_WSHOpenSocket2 | ||
| 58 | Tcpip6_WSHSetSocketInformation | ||
| 59 | Tcpip6_WSHStringToAddress | ||
| 60 | TransmitFile | ||
| 61 | WSARecvEx | ||
| 62 | WSPStartup | ||
| 63 | dn_expand | ||
| 64 | getnetbyname | ||
| 65 | inet_network | ||
| 66 | rcmd | ||
| 67 | rexec | ||
| 68 | rresvport | ||
| 69 | s_perror | ||
| 70 | sethostname | ||
lib/libc/mingw/lib-common/rpcrt4.def+11-5| ... | @@ -2,8 +2,8 @@ LIBRARY "RPCRT4.dll" | ... | @@ -2,8 +2,8 @@ LIBRARY "RPCRT4.dll" |
| 2 | EXPORTS | 2 | EXPORTS |
| 3 | CreateProxyFromTypeInfo | 3 | CreateProxyFromTypeInfo |
| 4 | CreateStubFromTypeInfo | 4 | CreateStubFromTypeInfo |
| 5 | I_RpcFixTransferSyntax | ||
| 6 | I_RpcBindingInqCurrentModifiedId | 5 | I_RpcBindingInqCurrentModifiedId |
| 6 | I_RpcFixTransferSyntax | ||
| 7 | I_RpcFwThisIsTheManager | 7 | I_RpcFwThisIsTheManager |
| 8 | I_RpcInitFwImports | 8 | I_RpcInitFwImports |
| 9 | I_RpcInitHttpImports | 9 | I_RpcInitHttpImports |
| ... | @@ -83,12 +83,15 @@ I_RpcFilterDCOMActivation | ... | @@ -83,12 +83,15 @@ I_RpcFilterDCOMActivation |
| 83 | I_RpcFree | 83 | I_RpcFree |
| 84 | I_RpcFreeBuffer | 84 | I_RpcFreeBuffer |
| 85 | I_RpcFreePipeBuffer | 85 | I_RpcFreePipeBuffer |
| 86 | I_RpcFreeSystemHandle | ||
| 87 | I_RpcFreeSystemHandleCollection | ||
| 86 | I_RpcGetBuffer | 88 | I_RpcGetBuffer |
| 87 | I_RpcGetBufferWithObject | 89 | I_RpcGetBufferWithObject |
| 88 | I_RpcGetCurrentCallHandle | 90 | I_RpcGetCurrentCallHandle |
| 89 | I_RpcGetDefaultSD | 91 | I_RpcGetDefaultSD |
| 90 | I_RpcGetExtendedError | 92 | I_RpcGetExtendedError |
| 91 | I_RpcGetPortAllocationData | 93 | I_RpcGetPortAllocationData |
| 94 | I_RpcGetSystemHandle | ||
| 92 | I_RpcIfInqTransferSyntaxes | 95 | I_RpcIfInqTransferSyntaxes |
| 93 | I_RpcLogEvent | 96 | I_RpcLogEvent |
| 94 | I_RpcMapWin32Status | 97 | I_RpcMapWin32Status |
| ... | @@ -127,6 +130,8 @@ I_RpcServerRegisterForwardFunction | ... | @@ -127,6 +130,8 @@ I_RpcServerRegisterForwardFunction |
| 127 | I_RpcServerSetAddressChangeFn | 130 | I_RpcServerSetAddressChangeFn |
| 128 | I_RpcServerStartService | 131 | I_RpcServerStartService |
| 129 | I_RpcServerSubscribeForDisconnectNotification | 132 | I_RpcServerSubscribeForDisconnectNotification |
| 133 | I_RpcServerSubscribeForDisconnectNotification2 | ||
| 134 | I_RpcServerUnsubscribeForDisconnectNotification | ||
| 130 | I_RpcServerUseProtseq2A | 135 | I_RpcServerUseProtseq2A |
| 131 | I_RpcServerUseProtseq2W | 136 | I_RpcServerUseProtseq2W |
| 132 | I_RpcServerUseProtseqEp2A | 137 | I_RpcServerUseProtseqEp2A |
| ... | @@ -134,8 +139,10 @@ I_RpcServerUseProtseqEp2W | ... | @@ -134,8 +139,10 @@ I_RpcServerUseProtseqEp2W |
| 134 | I_RpcSessionStrictContextHandle | 139 | I_RpcSessionStrictContextHandle |
| 135 | I_RpcSetAsyncHandle | 140 | I_RpcSetAsyncHandle |
| 136 | I_RpcSetDCOMAppId | 141 | I_RpcSetDCOMAppId |
| 142 | I_RpcSetSystemHandle | ||
| 137 | I_RpcSsDontSerializeContext | 143 | I_RpcSsDontSerializeContext |
| 138 | I_RpcSystemFunction001 | 144 | I_RpcSystemFunction001 |
| 145 | I_RpcSystemHandleTypeSpecificWork | ||
| 139 | I_RpcTransConnectionAllocatePacket | 146 | I_RpcTransConnectionAllocatePacket |
| 140 | I_RpcTransConnectionFreePacket | 147 | I_RpcTransConnectionFreePacket |
| 141 | I_RpcTransConnectionReallocPacket | 148 | I_RpcTransConnectionReallocPacket |
| ... | @@ -445,6 +452,7 @@ RpcIfIdVectorFree | ... | @@ -445,6 +452,7 @@ RpcIfIdVectorFree |
| 445 | RpcIfInqId | 452 | RpcIfInqId |
| 446 | RpcImpersonateClient | 453 | RpcImpersonateClient |
| 447 | RpcImpersonateClient2 | 454 | RpcImpersonateClient2 |
| 455 | RpcImpersonateClientContainer | ||
| 448 | RpcInitializeAsyncHandle | 456 | RpcInitializeAsyncHandle |
| 449 | RpcMgmtEnableIdleCleanup | 457 | RpcMgmtEnableIdleCleanup |
| 450 | RpcMgmtEpEltInqBegin | 458 | RpcMgmtEpEltInqBegin |
| ... | @@ -479,11 +487,13 @@ RpcProtseqVectorFreeA | ... | @@ -479,11 +487,13 @@ RpcProtseqVectorFreeA |
| 479 | RpcProtseqVectorFreeW | 487 | RpcProtseqVectorFreeW |
| 480 | RpcRaiseException | 488 | RpcRaiseException |
| 481 | RpcRegisterAsyncInfo | 489 | RpcRegisterAsyncInfo |
| 490 | RpcRevertContainerImpersonation | ||
| 482 | RpcRevertToSelf | 491 | RpcRevertToSelf |
| 483 | RpcRevertToSelfEx | 492 | RpcRevertToSelfEx |
| 484 | RpcServerCompleteSecurityCallback | 493 | RpcServerCompleteSecurityCallback |
| 485 | RpcServerInqBindingHandle | 494 | RpcServerInqBindingHandle |
| 486 | RpcServerInqBindings | 495 | RpcServerInqBindings |
| 496 | RpcServerInqBindingsEx | ||
| 487 | RpcServerInqCallAttributesA | 497 | RpcServerInqCallAttributesA |
| 488 | RpcServerInqCallAttributesW | 498 | RpcServerInqCallAttributesW |
| 489 | RpcServerInqDefaultPrincNameA | 499 | RpcServerInqDefaultPrincNameA |
| ... | @@ -571,7 +581,3 @@ UuidHash | ... | @@ -571,7 +581,3 @@ UuidHash |
| 571 | UuidIsNil | 581 | UuidIsNil |
| 572 | UuidToStringA | 582 | UuidToStringA |
| 573 | UuidToStringW | 583 | UuidToStringW |
| 574 | pfnFreeRoutines DATA | ||
| 575 | pfnMarshallRoutines DATA | ||
| 576 | pfnSizeRoutines DATA | ||
| 577 | pfnUnmarshallRoutines DATA |
lib/libc/mingw/lib-common/urlmon.def created+139| ... | @@ -0,0 +1,139 @@ | ||
| 1 | ; | ||
| 2 | ; Definition file of urlmon.dll | ||
| 3 | ; Automatic generated by gendef | ||
| 4 | ; written by Kai Tietz 2008 | ||
| 5 | ; | ||
| 6 | LIBRARY "urlmon.dll" | ||
| 7 | EXPORTS | ||
| 8 | FileBearsMarkOfTheWeb | ||
| 9 | GetPortFromUrlScheme | ||
| 10 | GetPropertyFromName | ||
| 11 | GetPropertyName | ||
| 12 | IsDWORDProperty | ||
| 13 | IsStringProperty | ||
| 14 | AsyncGetClassBits | ||
| 15 | AsyncInstallDistributionUnit | ||
| 16 | BindAsyncMoniker | ||
| 17 | CAuthenticateHostUI_CreateInstance | ||
| 18 | CDLGetLongPathNameA | ||
| 19 | CDLGetLongPathNameW | ||
| 20 | CORPolicyProvider | ||
| 21 | CoGetClassObjectFromURL | ||
| 22 | CoInstall | ||
| 23 | CoInternetCanonicalizeIUri | ||
| 24 | CoInternetCombineIUri | ||
| 25 | CoInternetCombineUrl | ||
| 26 | CoInternetCombineUrlEx | ||
| 27 | CoInternetCompareUrl | ||
| 28 | CoInternetCreateSecurityManager | ||
| 29 | CoInternetCreateZoneManager | ||
| 30 | CoInternetFeatureSettingsChanged | ||
| 31 | CoInternetGetMobileBrowserAppCompatMode | ||
| 32 | CoInternetGetMobileBrowserForceDesktopMode | ||
| 33 | CoInternetGetProtocolFlags | ||
| 34 | CoInternetGetSecurityUrl | ||
| 35 | CoInternetGetSecurityUrlEx | ||
| 36 | CoInternetGetSession | ||
| 37 | CoInternetIsFeatureEnabled | ||
| 38 | CoInternetIsFeatureEnabledForIUri | ||
| 39 | CoInternetIsFeatureEnabledForUrl | ||
| 40 | CoInternetIsFeatureZoneElevationEnabled | ||
| 41 | CoInternetParseIUri | ||
| 42 | CoInternetParseUrl | ||
| 43 | CoInternetQueryInfo | ||
| 44 | CoInternetSetFeatureEnabled | ||
| 45 | CoInternetSetMobileBrowserAppCompatMode | ||
| 46 | CoInternetSetMobileBrowserForceDesktopMode | ||
| 47 | CompareSecurityIds | ||
| 48 | CompatFlagsFromClsid | ||
| 49 | CopyBindInfo | ||
| 50 | CopyStgMedium | ||
| 51 | CreateAsyncBindCtx | ||
| 52 | CreateAsyncBindCtxEx | ||
| 53 | CreateFormatEnumerator | ||
| 54 | CreateIUriBuilder | ||
| 55 | CreateURLMoniker | ||
| 56 | CreateURLMonikerEx | ||
| 57 | CreateURLMonikerEx2 | ||
| 58 | CreateUri | ||
| 59 | CreateUriFromMultiByteString | ||
| 60 | CreateUriPriv | ||
| 61 | CreateUriWithFragment | ||
| 62 | DllCanUnloadNow | ||
| 63 | DllGetClassObject | ||
| 64 | DllInstall | ||
| 65 | DllRegisterServer | ||
| 66 | DllRegisterServerEx | ||
| 67 | DllUnregisterServer | ||
| 68 | Extract | ||
| 69 | FaultInIEFeature | ||
| 70 | FindMediaType | ||
| 71 | FindMediaTypeClass | ||
| 72 | FindMimeFromData | ||
| 73 | GetAddSitesFileUrl | ||
| 74 | GetClassFileOrMime | ||
| 75 | GetClassURL | ||
| 76 | GetComponentIDFromCLSSPEC | ||
| 77 | GetIDNFlagsForUri | ||
| 78 | GetIUriPriv | ||
| 79 | GetIUriPriv2 | ||
| 80 | GetLabelsFromNamedHost | ||
| 81 | GetMarkOfTheWeb | ||
| 82 | GetSoftwareUpdateInfo | ||
| 83 | GetUrlmonThreadNotificationHwnd | ||
| 84 | GetZoneFromAlternateDataStreamEx | ||
| 85 | HlinkGoBack | ||
| 86 | HlinkGoForward | ||
| 87 | HlinkNavigateMoniker | ||
| 88 | HlinkNavigateString | ||
| 89 | HlinkSimpleNavigateToMoniker | ||
| 90 | HlinkSimpleNavigateToString | ||
| 91 | IEGetUserPrivateNamespaceName | ||
| 92 | IEInstallScope | ||
| 93 | InstallFlash | ||
| 94 | IntlPercentEncodeNormalize | ||
| 95 | IsAsyncMoniker | ||
| 96 | IsIntranetAvailable | ||
| 97 | IsJITInProgress | ||
| 98 | IsLoggingEnabledA | ||
| 99 | IsLoggingEnabledW | ||
| 100 | IsValidURL | ||
| 101 | MkParseDisplayNameEx | ||
| 102 | ObtainUserAgentString | ||
| 103 | PrivateCoInstall | ||
| 104 | QueryAssociations | ||
| 105 | QueryClsidAssociation | ||
| 106 | RegisterBindStatusCallback | ||
| 107 | RegisterFormatEnumerator | ||
| 108 | RegisterMediaTypeClass | ||
| 109 | RegisterMediaTypes | ||
| 110 | RegisterWebPlatformPermanentSecurityManager | ||
| 111 | ReleaseBindInfo | ||
| 112 | RestrictHTTP2 | ||
| 113 | RevokeBindStatusCallback | ||
| 114 | RevokeFormatEnumerator | ||
| 115 | SetAccessForIEAppContainer | ||
| 116 | SetSoftwareUpdateAdvertisementState | ||
| 117 | ShouldDisplayPunycodeForUri | ||
| 118 | ShouldShowIntranetWarningSecband | ||
| 119 | ShowTrustAlertDialog | ||
| 120 | URLDownloadA | ||
| 121 | URLDownloadToCacheFileA | ||
| 122 | URLDownloadToCacheFileW | ||
| 123 | URLDownloadToFileA | ||
| 124 | URLDownloadToFileW | ||
| 125 | URLDownloadW | ||
| 126 | URLOpenBlockingStreamA | ||
| 127 | URLOpenBlockingStreamW | ||
| 128 | URLOpenPullStreamA | ||
| 129 | URLOpenPullStreamW | ||
| 130 | URLOpenStreamA | ||
| 131 | URLOpenStreamW | ||
| 132 | UnregisterWebPlatformPermanentSecurityManager | ||
| 133 | UrlMkBuildVersion | ||
| 134 | UrlMkGetSessionOption | ||
| 135 | UrlMkSetSessionOption | ||
| 136 | UrlmonCleanupCurrentThread | ||
| 137 | WriteHitLogging | ||
| 138 | ZonesReInit | ||
| 139 | IECompatLogCSSFix | ||
lib/libc/mingw/lib32/ntdll.def+381-188| ... | @@ -5,6 +5,7 @@ | ... | @@ -5,6 +5,7 @@ |
| 5 | ; | 5 | ; |
| 6 | LIBRARY "ntdll.dll" | 6 | LIBRARY "ntdll.dll" |
| 7 | EXPORTS | 7 | EXPORTS |
| 8 | RtlDispatchAPC@12 | ||
| 8 | RtlActivateActivationContextUnsafeFast@0 | 9 | RtlActivateActivationContextUnsafeFast@0 |
| 9 | RtlDeactivateActivationContextUnsafeFast@0 | 10 | RtlDeactivateActivationContextUnsafeFast@0 |
| 10 | RtlInterlockedPushListSList@8 | 11 | RtlInterlockedPushListSList@8 |
| ... | @@ -35,6 +36,8 @@ AlpcRegisterCompletionListWorkerThread@4 | ... | @@ -35,6 +36,8 @@ AlpcRegisterCompletionListWorkerThread@4 |
| 35 | AlpcRundownCompletionList@4 | 36 | AlpcRundownCompletionList@4 |
| 36 | AlpcUnregisterCompletionList@4 | 37 | AlpcUnregisterCompletionList@4 |
| 37 | AlpcUnregisterCompletionListWorkerThread@4 | 38 | AlpcUnregisterCompletionListWorkerThread@4 |
| 39 | ApiSetQueryApiSetPresence@8 | ||
| 40 | ApiSetQueryApiSetPresenceEx@12 | ||
| 38 | CsrAllocateCaptureBuffer@8 | 41 | CsrAllocateCaptureBuffer@8 |
| 39 | CsrAllocateMessagePointer@12 | 42 | CsrAllocateMessagePointer@12 |
| 40 | CsrCaptureMessageBuffer@16 | 43 | CsrCaptureMessageBuffer@16 |
| ... | @@ -63,6 +66,7 @@ DbgSsInitialize@16 | ... | @@ -63,6 +66,7 @@ DbgSsInitialize@16 |
| 63 | DbgUiConnectToDbg@0 | 66 | DbgUiConnectToDbg@0 |
| 64 | DbgUiContinue@8 | 67 | DbgUiContinue@8 |
| 65 | DbgUiConvertStateChangeStructure@8 | 68 | DbgUiConvertStateChangeStructure@8 |
| 69 | DbgUiConvertStateChangeStructureEx@8 | ||
| 66 | DbgUiDebugActiveProcess@4 | 70 | DbgUiDebugActiveProcess@4 |
| 67 | DbgUiGetThreadDebugObject@0 | 71 | DbgUiGetThreadDebugObject@0 |
| 68 | DbgUiIssueRemoteBreakin@4 | 72 | DbgUiIssueRemoteBreakin@4 |
| ... | @@ -71,6 +75,7 @@ DbgUiSetThreadDebugObject@4 | ... | @@ -71,6 +75,7 @@ DbgUiSetThreadDebugObject@4 |
| 71 | DbgUiStopDebugging@4 | 75 | DbgUiStopDebugging@4 |
| 72 | DbgUiWaitStateChange@8 | 76 | DbgUiWaitStateChange@8 |
| 73 | DbgUserBreakPoint@0 | 77 | DbgUserBreakPoint@0 |
| 78 | EtwCheckCoverage@4 | ||
| 74 | EtwCreateTraceInstanceId@8 | 79 | EtwCreateTraceInstanceId@8 |
| 75 | EtwDeliverDataBlock@4 | 80 | EtwDeliverDataBlock@4 |
| 76 | EtwEnumerateProcessRegGuids@12 | 81 | EtwEnumerateProcessRegGuids@12 |
| ... | @@ -78,6 +83,7 @@ EtwEventActivityIdControl@8 | ... | @@ -78,6 +83,7 @@ EtwEventActivityIdControl@8 |
| 78 | EtwEventEnabled@12 | 83 | EtwEventEnabled@12 |
| 79 | EtwEventProviderEnabled@20 | 84 | EtwEventProviderEnabled@20 |
| 80 | EtwEventRegister@16 | 85 | EtwEventRegister@16 |
| 86 | EtwEventSetInformation@20 | ||
| 81 | EtwEventUnregister@8 | 87 | EtwEventUnregister@8 |
| 82 | EtwEventWrite@20 | 88 | EtwEventWrite@20 |
| 83 | EtwEventWriteEndScenario@20 | 89 | EtwEventWriteEndScenario@20 |
| ... | @@ -118,64 +124,94 @@ KiUserApcDispatcher@20 | ... | @@ -118,64 +124,94 @@ KiUserApcDispatcher@20 |
| 118 | KiUserCallbackDispatcher@12 | 124 | KiUserCallbackDispatcher@12 |
| 119 | KiUserExceptionDispatcher@8 | 125 | KiUserExceptionDispatcher@8 |
| 120 | LdrAccessResource@16 | 126 | LdrAccessResource@16 |
| 127 | LdrAddDllDirectory@8 | ||
| 121 | LdrAddLoadAsDataTable@16; Check!!! gendef says @20 | 128 | LdrAddLoadAsDataTable@16; Check!!! gendef says @20 |
| 122 | LdrAddRefDll@8 | 129 | LdrAddRefDll@8 |
| 123 | LdrAlternateResourcesEnabled@0 | 130 | LdrAlternateResourcesEnabled@0 |
| 131 | LdrAppxHandleIntegrityFailure@4 | ||
| 132 | LdrCallEnclave@12 | ||
| 133 | LdrControlFlowGuardEnforced@0 | ||
| 134 | LdrCreateEnclave@36 | ||
| 135 | LdrDeleteEnclave@4 | ||
| 124 | LdrDisableThreadCalloutsForDll@4 | 136 | LdrDisableThreadCalloutsForDll@4 |
| 125 | LdrEnumResources@20 | 137 | LdrEnumResources@20 |
| 126 | LdrEnumerateLoadedModules@12 | 138 | LdrEnumerateLoadedModules@12 |
| 139 | LdrFastFailInLoaderCallout@0 | ||
| 127 | LdrFindEntryForAddress@8 | 140 | LdrFindEntryForAddress@8 |
| 128 | LdrFindResourceDirectory_U@16 | 141 | LdrFindResourceDirectory_U@16 |
| 129 | LdrFindResourceEx_U@20 | 142 | LdrFindResourceEx_U@20 |
| 130 | LdrFindResource_U@16 | 143 | LdrFindResource_U@16 |
| 131 | LdrFlushAlternateResourceModules@0 | 144 | LdrFlushAlternateResourceModules@0 |
| 145 | LdrGetDllDirectory@4 | ||
| 146 | LdrGetDllFullName@8 | ||
| 132 | LdrGetDllHandle@16 | 147 | LdrGetDllHandle@16 |
| 133 | LdrGetDllHandleByMapping@8 | 148 | LdrGetDllHandleByMapping@8 |
| 134 | LdrGetDllHandleByName@12 | 149 | LdrGetDllHandleByName@12 |
| 135 | LdrGetDllHandleEx@20 | 150 | LdrGetDllHandleEx@20 |
| 151 | LdrGetDllPath@16 | ||
| 136 | LdrGetFailureData@0 | 152 | LdrGetFailureData@0 |
| 137 | LdrGetFileNameFromLoadAsDataTable@8 | 153 | LdrGetFileNameFromLoadAsDataTable@8 |
| 138 | LdrGetProcedureAddress@16 | 154 | LdrGetProcedureAddress@16 |
| 139 | LdrGetProcedureAddressEx@20 | 155 | LdrGetProcedureAddressEx@20 |
| 156 | LdrGetProcedureAddressForCaller@24 | ||
| 140 | LdrHotPatchRoutine@0 | 157 | LdrHotPatchRoutine@0 |
| 141 | LdrInitShimEngineDynamic@4 | 158 | LdrInitShimEngineDynamic@4 |
| 159 | LdrInitializeEnclave@20 | ||
| 142 | LdrInitializeThunk@16 | 160 | LdrInitializeThunk@16 |
| 161 | LdrIsModuleSxsRedirected@4 | ||
| 143 | LdrLoadAlternateResourceModule@16 | 162 | LdrLoadAlternateResourceModule@16 |
| 144 | LdrLoadAlternateResourceModuleEx@20 | 163 | LdrLoadAlternateResourceModuleEx@20 |
| 145 | LdrLoadDll@16 | 164 | LdrLoadDll@16 |
| 165 | LdrLoadEnclaveModule@12 | ||
| 146 | LdrAlternateResourcesEnabled@0 | 166 | LdrAlternateResourcesEnabled@0 |
| 147 | LdrLockLoaderLock@12 | 167 | LdrLockLoaderLock@12 |
| 148 | LdrOpenImageFileOptionsKey@12 | 168 | LdrOpenImageFileOptionsKey@12 |
| 169 | LdrParentInterlockedPopEntrySList@0 | ||
| 170 | LdrParentRtlInitializeNtUserPfn@0 | ||
| 171 | LdrParentRtlResetNtUserPfn@0 | ||
| 172 | LdrParentRtlRetrieveNtUserPfn@0 | ||
| 149 | LdrProcessRelocationBlock@16 | 173 | LdrProcessRelocationBlock@16 |
| 174 | LdrProcessRelocationBlockEx@20 | ||
| 150 | LdrQueryImageFileExecutionOptions@24 | 175 | LdrQueryImageFileExecutionOptions@24 |
| 151 | LdrQueryImageFileExecutionOptionsEx@28 | 176 | LdrQueryImageFileExecutionOptionsEx@28 |
| 152 | LdrQueryImageFileKeyOption@24 | 177 | LdrQueryImageFileKeyOption@24 |
| 153 | LdrQueryModuleServiceTags@12 | 178 | LdrQueryModuleServiceTags@12 |
| 179 | LdrQueryOptionalDelayLoadedAPI@16 | ||
| 154 | LdrQueryProcessModuleInformation@12 | 180 | LdrQueryProcessModuleInformation@12 |
| 155 | LdrRegisterDllNotification@16 | 181 | LdrRegisterDllNotification@16 |
| 182 | LdrRemoveDllDirectory@4 | ||
| 156 | LdrRemoveLoadAsDataTable@16 | 183 | LdrRemoveLoadAsDataTable@16 |
| 157 | LdrResFindResource@36 | 184 | LdrResFindResource@36 |
| 158 | LdrResFindResourceDirectory@28 | 185 | LdrResFindResourceDirectory@28 |
| 159 | LdrResGetRCConfig@20 | 186 | LdrResGetRCConfig@20 |
| 160 | LdrResRelease@12 | 187 | LdrResRelease@12 |
| 161 | LdrResSearchResource@32 | 188 | LdrResSearchResource@32 |
| 189 | LdrResolveDelayLoadedAPI@24 | ||
| 190 | LdrResolveDelayLoadsFromDll@12 | ||
| 162 | LdrRscIsTypeExist@16 | 191 | LdrRscIsTypeExist@16 |
| 163 | LdrSetAppCompatDllRedirectionCallback@12 | 192 | LdrSetAppCompatDllRedirectionCallback@12 |
| 193 | LdrSetDefaultDllDirectories@4 | ||
| 194 | LdrSetDllDirectory@4 | ||
| 164 | LdrSetDllManifestProber@4 | 195 | LdrSetDllManifestProber@4 |
| 196 | LdrSetImplicitPathOptions@8 | ||
| 165 | LdrSetMUICacheType@4 | 197 | LdrSetMUICacheType@4 |
| 166 | LdrShutdownProcess@0 | 198 | LdrShutdownProcess@0 |
| 167 | LdrShutdownThread@0 | 199 | LdrShutdownThread@0 |
| 200 | LdrStandardizeSystemPath@4 | ||
| 201 | LdrSystemDllInitBlock@0 | ||
| 168 | LdrUnloadAlternateResourceModule@4 | 202 | LdrUnloadAlternateResourceModule@4 |
| 169 | LdrUnloadAlternateResourceModuleEx@8 | 203 | LdrUnloadAlternateResourceModuleEx@8 |
| 170 | LdrUnloadDll@4 | 204 | LdrUnloadDll@4 |
| 171 | LdrUnlockLoaderLock@8 | 205 | LdrUnlockLoaderLock@8 |
| 172 | LdrUnregisterDllNotification@4 | 206 | LdrUnregisterDllNotification@4 |
| 207 | LdrUpdatePackageSearchPath@4 | ||
| 173 | LdrVerifyImageMatchesChecksum@16 | 208 | LdrVerifyImageMatchesChecksum@16 |
| 174 | LdrVerifyImageMatchesChecksumEx@8 | 209 | LdrVerifyImageMatchesChecksumEx@8 |
| 175 | LdrWx86FormatVirtualImage@12 | 210 | LdrpChildNtdll@0 |
| 176 | LdrpResGetMappingSize@16 | 211 | LdrpResGetMappingSize@16 |
| 177 | LdrpResGetRCConfig@20 | 212 | LdrpResGetRCConfig@20 |
| 178 | LdrpResGetResourceDirectory@20 | 213 | LdrpResGetResourceDirectory@20 |
| 214 | LdrWx86FormatVirtualImage@12 | ||
| 179 | MD4Final@4 | 215 | MD4Final@4 |
| 180 | MD4Init@4 | 216 | MD4Init@4 |
| 181 | MD4Update@12 | 217 | MD4Update@12 |
| ... | @@ -193,22 +229,29 @@ NtAccessCheckByTypeAndAuditAlarm@64 | ... | @@ -193,22 +229,29 @@ NtAccessCheckByTypeAndAuditAlarm@64 |
| 193 | NtAccessCheckByTypeResultList@44 | 229 | NtAccessCheckByTypeResultList@44 |
| 194 | NtAccessCheckByTypeResultListAndAuditAlarm@64 | 230 | NtAccessCheckByTypeResultListAndAuditAlarm@64 |
| 195 | NtAccessCheckByTypeResultListAndAuditAlarmByHandle@68 | 231 | NtAccessCheckByTypeResultListAndAuditAlarmByHandle@68 |
| 232 | NtAcquireProcessActivityReference@12 | ||
| 196 | NtAcquireCMFViewOwnership@12 | 233 | NtAcquireCMFViewOwnership@12 |
| 197 | NtAddAtom@12 | 234 | NtAddAtom@12 |
| 235 | NtAddAtomEx@16 | ||
| 198 | NtAddBootEntry@8 | 236 | NtAddBootEntry@8 |
| 199 | NtAddDriverEntry@8 | 237 | NtAddDriverEntry@8 |
| 200 | NtAdjustGroupsToken@24 | 238 | NtAdjustGroupsToken@24 |
| 201 | NtAdjustPrivilegesToken@24 | 239 | NtAdjustPrivilegesToken@24 |
| 240 | NtAdjustTokenClaimsAndDeviceGroups@64 | ||
| 202 | NtAlertResumeThread@8 | 241 | NtAlertResumeThread@8 |
| 203 | NtAlertThread@4 | 242 | NtAlertThread@4 |
| 243 | NtAlertThreadByThreadId@4 | ||
| 204 | NtAllocateLocallyUniqueId@4 | 244 | NtAllocateLocallyUniqueId@4 |
| 205 | NtAllocateReserveObject@12 | 245 | NtAllocateReserveObject@12 |
| 206 | NtAllocateUserPhysicalPages@12 | 246 | NtAllocateUserPhysicalPages@12 |
| 247 | NtAllocateUserPhysicalPagesEx@20 | ||
| 207 | NtAllocateUuids@16 | 248 | NtAllocateUuids@16 |
| 208 | NtAllocateVirtualMemory@24 | 249 | NtAllocateVirtualMemory@24 |
| 250 | NtAllocateVirtualMemoryEx@28 | ||
| 209 | NtAlpcAcceptConnectPort@36 | 251 | NtAlpcAcceptConnectPort@36 |
| 210 | NtAlpcCancelMessage@12 | 252 | NtAlpcCancelMessage@12 |
| 211 | NtAlpcConnectPort@44 | 253 | NtAlpcConnectPort@44 |
| 254 | NtAlpcConnectPortEx@44 | ||
| 212 | NtAlpcCreatePort@12 | 255 | NtAlpcCreatePort@12 |
| 213 | NtAlpcCreatePortSection@24 | 256 | NtAlpcCreatePortSection@24 |
| 214 | NtAlpcCreateResourceReserve@16 | 257 | NtAlpcCreateResourceReserve@16 |
| ... | @@ -219,6 +262,7 @@ NtAlpcDeleteResourceReserve@12 | ... | @@ -219,6 +262,7 @@ NtAlpcDeleteResourceReserve@12 |
| 219 | NtAlpcDeleteSectionView@12 | 262 | NtAlpcDeleteSectionView@12 |
| 220 | NtAlpcDeleteSecurityContext@12 | 263 | NtAlpcDeleteSecurityContext@12 |
| 221 | NtAlpcDisconnectPort@8 | 264 | NtAlpcDisconnectPort@8 |
| 265 | NtAlpcImpersonateClientContainerOfPort@12 | ||
| 222 | NtAlpcImpersonateClientOfPort@12 | 266 | NtAlpcImpersonateClientOfPort@12 |
| 223 | NtAlpcOpenSenderProcess@24 | 267 | NtAlpcOpenSenderProcess@24 |
| 224 | NtAlpcOpenSenderThread@24 | 268 | NtAlpcOpenSenderThread@24 |
| ... | @@ -230,58 +274,78 @@ NtAlpcSetInformation@16 | ... | @@ -230,58 +274,78 @@ NtAlpcSetInformation@16 |
| 230 | NtApphelpCacheControl@8 | 274 | NtApphelpCacheControl@8 |
| 231 | NtAreMappedFilesTheSame@8 | 275 | NtAreMappedFilesTheSame@8 |
| 232 | NtAssignProcessToJobObject@8 | 276 | NtAssignProcessToJobObject@8 |
| 277 | NtAssociateWaitCompletionPacket@32 | ||
| 278 | NtCallEnclave@16 | ||
| 233 | NtCallbackReturn@12 | 279 | NtCallbackReturn@12 |
| 234 | NtCancelDeviceWakeupRequest@4 | 280 | NtCancelDeviceWakeupRequest@4 |
| 235 | NtCancelIoFile@8 | 281 | NtCancelIoFile@8 |
| 236 | NtCancelIoFileEx@12 | 282 | NtCancelIoFileEx@12 |
| 237 | NtCancelSynchronousIoFile@12 | 283 | NtCancelSynchronousIoFile@12 |
| 284 | NtCancelTimer2@8 | ||
| 238 | NtCancelTimer@8 | 285 | NtCancelTimer@8 |
| 286 | NtCancelWaitCompletionPacket@8 | ||
| 239 | NtClearEvent@4 | 287 | NtClearEvent@4 |
| 240 | NtClose@4 | 288 | NtClose@4 |
| 241 | NtCloseObjectAuditAlarm@12 | 289 | NtCloseObjectAuditAlarm@12 |
| 242 | NtCommitComplete@8 | 290 | NtCommitComplete@8 |
| 243 | NtCommitEnlistment@8 | 291 | NtCommitEnlistment@8 |
| 292 | NtCommitRegistryTransaction@8 | ||
| 244 | NtCommitTransaction@8 | 293 | NtCommitTransaction@8 |
| 245 | NtCompactKeys@8 | 294 | NtCompactKeys@8 |
| 295 | NtCompareObjects@8 | ||
| 296 | NtCompareSigningLevels@8 | ||
| 246 | NtCompareTokens@12 | 297 | NtCompareTokens@12 |
| 247 | NtCompleteConnectPort@4 | 298 | NtCompleteConnectPort@4 |
| 248 | NtCompressKey@4 | 299 | NtCompressKey@4 |
| 249 | NtConnectPort@32 | 300 | NtConnectPort@32 |
| 250 | NtContinue@8 | 301 | NtContinue@8 |
| 302 | NtConvertBetweenAuxiliaryCounterAndPerformanceCounter@16 | ||
| 303 | NtCreateCrossVmEvent@24 | ||
| 251 | NtCreateDebugObject@16 | 304 | NtCreateDebugObject@16 |
| 252 | NtCreateDirectoryObject@12 | 305 | NtCreateDirectoryObject@12 |
| 306 | NtCreateDirectoryObjectEx@20 | ||
| 307 | NtCreateEnclave@36 | ||
| 253 | NtCreateEnlistment@32 | 308 | NtCreateEnlistment@32 |
| 254 | NtCreateEvent@20 | 309 | NtCreateEvent@20 |
| 255 | NtCreateEventPair@12 | 310 | NtCreateEventPair@12 |
| 256 | NtCreateFile@44 | 311 | NtCreateFile@44 |
| 312 | NtCreateIRTimer@12 | ||
| 257 | NtCreateIoCompletion@16 | 313 | NtCreateIoCompletion@16 |
| 258 | NtCreateJobObject@12 | 314 | NtCreateJobObject@12 |
| 259 | NtCreateJobSet@12 | 315 | NtCreateJobSet@12 |
| 260 | NtCreateKey@28 | 316 | NtCreateKey@28 |
| 261 | NtCreateKeyTransacted@32 | 317 | NtCreateKeyTransacted@32 |
| 262 | NtCreateKeyedEvent@16 | 318 | NtCreateKeyedEvent@16 |
| 319 | NtCreateLowBoxToken@36 | ||
| 263 | NtCreateMailslotFile@32 | 320 | NtCreateMailslotFile@32 |
| 264 | NtCreateMutant@16 | 321 | NtCreateMutant@16 |
| 265 | NtCreateNamedPipeFile@56 | 322 | NtCreateNamedPipeFile@56 |
| 266 | NtCreatePagingFile@16 | 323 | NtCreatePagingFile@16 |
| 324 | NtCreatePartition@16 | ||
| 267 | NtCreatePort@20 | 325 | NtCreatePort@20 |
| 268 | NtCreatePrivateNamespace@16 | 326 | NtCreatePrivateNamespace@16 |
| 269 | NtCreateProcess@32 | 327 | NtCreateProcess@32 |
| 270 | NtCreateProcessEx@36 | 328 | NtCreateProcessEx@36 |
| 271 | NtCreateProfile@36 | 329 | NtCreateProfile@36 |
| 272 | NtCreateProfileEx@40 | 330 | NtCreateProfileEx@40 |
| 331 | NtCreateRegistryTransaction@16 | ||
| 273 | NtCreateResourceManager@28 | 332 | NtCreateResourceManager@28 |
| 274 | NtCreateSection@28 | 333 | NtCreateSection@28 |
| 334 | NtCreateSectionEx@36 | ||
| 275 | NtCreateSemaphore@20 | 335 | NtCreateSemaphore@20 |
| 276 | NtCreateSymbolicLinkObject@16 | 336 | NtCreateSymbolicLinkObject@16 |
| 277 | NtCreateThread@32 | 337 | NtCreateThread@32 |
| 278 | NtCreateThreadEx@44 | 338 | NtCreateThreadEx@44 |
| 339 | NtCreateTimer2@20 | ||
| 279 | NtCreateTimer@16 | 340 | NtCreateTimer@16 |
| 280 | NtCreateToken@52 | 341 | NtCreateToken@52 |
| 342 | NtCreateTokenEx@68 | ||
| 281 | NtCreateTransaction@40 | 343 | NtCreateTransaction@40 |
| 282 | NtCreateTransactionManager@24 | 344 | NtCreateTransactionManager@24 |
| 283 | NtCreateUserProcess@44 | 345 | NtCreateUserProcess@44 |
| 346 | NtCreateWaitCompletionPacket@12 | ||
| 284 | NtCreateWaitablePort@20 | 347 | NtCreateWaitablePort@20 |
| 348 | NtCreateWnfStateName@28 | ||
| 285 | NtCreateWorkerFactory@40 | 349 | NtCreateWorkerFactory@40 |
| 286 | NtCurrentTeb@0 | 350 | NtCurrentTeb@0 |
| 287 | NtDebugActiveProcess@8 | 351 | NtDebugActiveProcess@8 |
| ... | @@ -295,6 +359,8 @@ NtDeleteKey@4 | ... | @@ -295,6 +359,8 @@ NtDeleteKey@4 |
| 295 | NtDeleteObjectAuditAlarm@12 | 359 | NtDeleteObjectAuditAlarm@12 |
| 296 | NtDeletePrivateNamespace@4 | 360 | NtDeletePrivateNamespace@4 |
| 297 | NtDeleteValueKey@8 | 361 | NtDeleteValueKey@8 |
| 362 | NtDeleteWnfStateData@8 | ||
| 363 | NtDeleteWnfStateName@4 | ||
| 298 | NtDeviceIoControlFile@40 | 364 | NtDeviceIoControlFile@40 |
| 299 | NtDisableLastKnownGood@0 | 365 | NtDisableLastKnownGood@0 |
| 300 | NtDisplayString@4 | 366 | NtDisplayString@4 |
| ... | @@ -309,9 +375,12 @@ NtEnumerateSystemEnvironmentValuesEx@12 | ... | @@ -309,9 +375,12 @@ NtEnumerateSystemEnvironmentValuesEx@12 |
| 309 | NtEnumerateTransactionObject@20 | 375 | NtEnumerateTransactionObject@20 |
| 310 | NtEnumerateValueKey@24 | 376 | NtEnumerateValueKey@24 |
| 311 | NtExtendSection@8 | 377 | NtExtendSection@8 |
| 378 | NtFilterBootOption@20 | ||
| 312 | NtFilterToken@24 | 379 | NtFilterToken@24 |
| 380 | NtFilterTokenEx@56 | ||
| 313 | NtFindAtom@12 | 381 | NtFindAtom@12 |
| 314 | NtFlushBuffersFile@8 | 382 | NtFlushBuffersFile@8 |
| 383 | NtFlushBuffersFileEx@20 | ||
| 315 | NtFlushInstallUILanguage@8 | 384 | NtFlushInstallUILanguage@8 |
| 316 | NtFlushInstructionCache@12 | 385 | NtFlushInstructionCache@12 |
| 317 | NtFlushKey@4 | 386 | NtFlushKey@4 |
| ... | @@ -323,8 +392,11 @@ NtFreeVirtualMemory@16 | ... | @@ -323,8 +392,11 @@ NtFreeVirtualMemory@16 |
| 323 | NtFreezeRegistry@4 | 392 | NtFreezeRegistry@4 |
| 324 | NtFreezeTransactions@8 | 393 | NtFreezeTransactions@8 |
| 325 | NtFsControlFile@40 | 394 | NtFsControlFile@40 |
| 395 | NtGetCachedSigningLevel@24 | ||
| 396 | NtGetCompleteWnfStateSubscription@24 | ||
| 326 | NtGetContextThread@8 | 397 | NtGetContextThread@8 |
| 327 | NtGetCurrentProcessorNumber@0 | 398 | NtGetCurrentProcessorNumber@0 |
| 399 | NtGetCurrentProcessorNumberEx@4 | ||
| 328 | NtGetDevicePowerState@8 | 400 | NtGetDevicePowerState@8 |
| 329 | NtGetMUIRegistryInfo@12 | 401 | NtGetMUIRegistryInfo@12 |
| 330 | NtGetNextProcess@20 | 402 | NtGetNextProcess@20 |
| ... | @@ -337,6 +409,7 @@ NtGetWriteWatch@28 | ... | @@ -337,6 +409,7 @@ NtGetWriteWatch@28 |
| 337 | NtImpersonateAnonymousToken@4 | 409 | NtImpersonateAnonymousToken@4 |
| 338 | NtImpersonateClientOfPort@8 | 410 | NtImpersonateClientOfPort@8 |
| 339 | NtImpersonateThread@12 | 411 | NtImpersonateThread@12 |
| 412 | NtInitializeEnclave@20 | ||
| 340 | NtInitializeNlsFiles@16 ;Check!!! gendef says 12 | 413 | NtInitializeNlsFiles@16 ;Check!!! gendef says 12 |
| 341 | NtInitializeRegistry@4 | 414 | NtInitializeRegistry@4 |
| 342 | NtInitiatePowerAction@16 | 415 | NtInitiatePowerAction@16 |
| ... | @@ -345,6 +418,7 @@ NtIsSystemResumeAutomatic@0 | ... | @@ -345,6 +418,7 @@ NtIsSystemResumeAutomatic@0 |
| 345 | NtIsUILanguageComitted@0 | 418 | NtIsUILanguageComitted@0 |
| 346 | NtListenPort@8 | 419 | NtListenPort@8 |
| 347 | NtLoadDriver@4 | 420 | NtLoadDriver@4 |
| 421 | NtLoadEnclaveData@36 | ||
| 348 | NtLoadKey2@12 | 422 | NtLoadKey2@12 |
| 349 | NtLoadKey@8 | 423 | NtLoadKey@8 |
| 350 | NtLoadKeyEx@32 | 424 | NtLoadKeyEx@32 |
| ... | @@ -354,13 +428,17 @@ NtLockRegistryKey@4 | ... | @@ -354,13 +428,17 @@ NtLockRegistryKey@4 |
| 354 | NtLockVirtualMemory@16 | 428 | NtLockVirtualMemory@16 |
| 355 | NtMakePermanentObject@4 | 429 | NtMakePermanentObject@4 |
| 356 | NtMakeTemporaryObject@4 | 430 | NtMakeTemporaryObject@4 |
| 431 | NtManageHotPatch@16 | ||
| 432 | NtManagePartition@20 | ||
| 357 | NtMapCMFModule@24 | 433 | NtMapCMFModule@24 |
| 358 | NtMapUserPhysicalPages@12 | 434 | NtMapUserPhysicalPages@12 |
| 359 | NtMapUserPhysicalPagesScatter@12 | 435 | NtMapUserPhysicalPagesScatter@12 |
| 360 | NtMapViewOfSection@40 | 436 | NtMapViewOfSection@40 |
| 437 | NtMapViewOfSectionEx@36 | ||
| 361 | NtModifyBootEntry@4 | 438 | NtModifyBootEntry@4 |
| 362 | NtModifyDriverEntry@4 | 439 | NtModifyDriverEntry@4 |
| 363 | NtNotifyChangeDirectoryFile@36 | 440 | NtNotifyChangeDirectoryFile@36 |
| 441 | NtNotifyChangeDirectoryFileEx@40 | ||
| 364 | NtNotifyChangeKey@40 | 442 | NtNotifyChangeKey@40 |
| 365 | NtNotifyChangeMultipleKeys@48 | 443 | NtNotifyChangeMultipleKeys@48 |
| 366 | NtNotifyChangeSession@32 | 444 | NtNotifyChangeSession@32 |
| ... | @@ -378,10 +456,12 @@ NtOpenKeyTransactedEx@20 | ... | @@ -378,10 +456,12 @@ NtOpenKeyTransactedEx@20 |
| 378 | NtOpenKeyedEvent@12 | 456 | NtOpenKeyedEvent@12 |
| 379 | NtOpenMutant@12 | 457 | NtOpenMutant@12 |
| 380 | NtOpenObjectAuditAlarm@48 | 458 | NtOpenObjectAuditAlarm@48 |
| 459 | NtOpenPartition@12 | ||
| 381 | NtOpenPrivateNamespace@16 | 460 | NtOpenPrivateNamespace@16 |
| 382 | NtOpenProcess@16 | 461 | NtOpenProcess@16 |
| 383 | NtOpenProcessToken@12 | 462 | NtOpenProcessToken@12 |
| 384 | NtOpenProcessTokenEx@16 | 463 | NtOpenProcessTokenEx@16 |
| 464 | NtOpenRegistryTransaction@12 | ||
| 385 | NtOpenResourceManager@20 | 465 | NtOpenResourceManager@20 |
| 386 | NtOpenSection@12 | 466 | NtOpenSection@12 |
| 387 | NtOpenSemaphore@12 | 467 | NtOpenSemaphore@12 |
| ... | @@ -405,20 +485,24 @@ NtPrivilegedServiceAuditAlarm@20 | ... | @@ -405,20 +485,24 @@ NtPrivilegedServiceAuditAlarm@20 |
| 405 | NtPropagationComplete@16 | 485 | NtPropagationComplete@16 |
| 406 | NtPropagationFailed@12 | 486 | NtPropagationFailed@12 |
| 407 | NtProtectVirtualMemory@20 | 487 | NtProtectVirtualMemory@20 |
| 488 | NtPssCaptureVaSpaceBulk@20 | ||
| 408 | NtPulseEvent@8 | 489 | NtPulseEvent@8 |
| 409 | NtQueryAttributesFile@8 | 490 | NtQueryAttributesFile@8 |
| 491 | NtQueryAuxiliaryCounterFrequency@4 | ||
| 410 | NtQueryBootEntryOrder@8 | 492 | NtQueryBootEntryOrder@8 |
| 411 | NtQueryBootOptions@8 | 493 | NtQueryBootOptions@8 |
| 412 | NtQueryDebugFilterState@8 | 494 | NtQueryDebugFilterState@8 |
| 413 | NtQueryDefaultLocale@8 | 495 | NtQueryDefaultLocale@8 |
| 414 | NtQueryDefaultUILanguage@4 | 496 | NtQueryDefaultUILanguage@4 |
| 415 | NtQueryDirectoryFile@44 | 497 | NtQueryDirectoryFile@44 |
| 498 | NtQueryDirectoryFileEx@40 | ||
| 416 | NtQueryDirectoryObject@28 | 499 | NtQueryDirectoryObject@28 |
| 417 | NtQueryDriverEntryOrder@8 | 500 | NtQueryDriverEntryOrder@8 |
| 418 | NtQueryEaFile@36 | 501 | NtQueryEaFile@36 |
| 419 | NtQueryEvent@20 | 502 | NtQueryEvent@20 |
| 420 | NtQueryFullAttributesFile@8 | 503 | NtQueryFullAttributesFile@8 |
| 421 | NtQueryInformationAtom@20 | 504 | NtQueryInformationAtom@20 |
| 505 | NtQueryInformationByName@20 | ||
| 422 | NtQueryInformationEnlistment@20 | 506 | NtQueryInformationEnlistment@20 |
| 423 | NtQueryInformationFile@20 | 507 | NtQueryInformationFile@20 |
| 424 | NtQueryInformationJobObject@20 | 508 | NtQueryInformationJobObject@20 |
| ... | @@ -446,6 +530,7 @@ NtQueryQuotaInformationFile@36 | ... | @@ -446,6 +530,7 @@ NtQueryQuotaInformationFile@36 |
| 446 | NtQuerySection@20 | 530 | NtQuerySection@20 |
| 447 | NtQuerySecurityAttributesToken@24 | 531 | NtQuerySecurityAttributesToken@24 |
| 448 | NtQuerySecurityObject@20 | 532 | NtQuerySecurityObject@20 |
| 533 | NtQuerySecurityPolicy@24 | ||
| 449 | NtQuerySemaphore@20 | 534 | NtQuerySemaphore@20 |
| 450 | NtQuerySymbolicLinkObject@12 | 535 | NtQuerySymbolicLinkObject@12 |
| 451 | NtQuerySystemEnvironmentValue@16 | 536 | NtQuerySystemEnvironmentValue@16 |
| ... | @@ -458,6 +543,8 @@ NtQueryTimerResolution@12 | ... | @@ -458,6 +543,8 @@ NtQueryTimerResolution@12 |
| 458 | NtQueryValueKey@24 | 543 | NtQueryValueKey@24 |
| 459 | NtQueryVirtualMemory@24 | 544 | NtQueryVirtualMemory@24 |
| 460 | NtQueryVolumeInformationFile@20 | 545 | NtQueryVolumeInformationFile@20 |
| 546 | NtQueryWnfStateData@24 | ||
| 547 | NtQueryWnfStateNameInformation@20 | ||
| 461 | NtQueueApcThread@20 | 548 | NtQueueApcThread@20 |
| 462 | NtQueueApcThreadEx@24 | 549 | NtQueueApcThreadEx@24 |
| 463 | NtRaiseException@12 | 550 | NtRaiseException@12 |
| ... | @@ -497,8 +584,10 @@ NtResetWriteWatch@12 | ... | @@ -497,8 +584,10 @@ NtResetWriteWatch@12 |
| 497 | NtRestoreKey@12 | 584 | NtRestoreKey@12 |
| 498 | NtResumeProcess@4 | 585 | NtResumeProcess@4 |
| 499 | NtResumeThread@8 | 586 | NtResumeThread@8 |
| 587 | NtRevertContainerImpersonation@0 | ||
| 500 | NtRollbackComplete@8 | 588 | NtRollbackComplete@8 |
| 501 | NtRollbackEnlistment@8 | 589 | NtRollbackEnlistment@8 |
| 590 | NtRollbackRegistryTransaction@8 | ||
| 502 | NtRollbackTransaction@8 | 591 | NtRollbackTransaction@8 |
| 503 | NtRollforwardTransactionManager@8 | 592 | NtRollforwardTransactionManager@8 |
| 504 | NtSaveKey@8 | 593 | NtSaveKey@8 |
| ... | @@ -508,6 +597,8 @@ NtSecureConnectPort@36 | ... | @@ -508,6 +597,8 @@ NtSecureConnectPort@36 |
| 508 | NtSerializeBoot@0 | 597 | NtSerializeBoot@0 |
| 509 | NtSetBootEntryOrder@8 | 598 | NtSetBootEntryOrder@8 |
| 510 | NtSetBootOptions@8 | 599 | NtSetBootOptions@8 |
| 600 | NtSetCachedSigningLevel2@24 | ||
| 601 | NtSetCachedSigningLevel@20 | ||
| 511 | NtSetContextThread@8 | 602 | NtSetContextThread@8 |
| 512 | NtSetDebugFilterState@12 | 603 | NtSetDebugFilterState@12 |
| 513 | NtSetDefaultHardErrorPort@4 | 604 | NtSetDefaultHardErrorPort@4 |
| ... | @@ -519,6 +610,7 @@ NtSetEvent@8 | ... | @@ -519,6 +610,7 @@ NtSetEvent@8 |
| 519 | NtSetEventBoostPriority@4 | 610 | NtSetEventBoostPriority@4 |
| 520 | NtSetHighEventPair@4 | 611 | NtSetHighEventPair@4 |
| 521 | NtSetHighWaitLowEventPair@4 | 612 | NtSetHighWaitLowEventPair@4 |
| 613 | NtSetIRTimer@8 | ||
| 522 | NtSetInformationDebugObject@20 | 614 | NtSetInformationDebugObject@20 |
| 523 | NtSetInformationEnlistment@16 | 615 | NtSetInformationEnlistment@16 |
| 524 | NtSetInformationFile@20 | 616 | NtSetInformationFile@20 |
| ... | @@ -527,10 +619,12 @@ NtSetInformationKey@16 | ... | @@ -527,10 +619,12 @@ NtSetInformationKey@16 |
| 527 | NtSetInformationObject@16 | 619 | NtSetInformationObject@16 |
| 528 | NtSetInformationProcess@16 | 620 | NtSetInformationProcess@16 |
| 529 | NtSetInformationResourceManager@16 | 621 | NtSetInformationResourceManager@16 |
| 622 | NtSetInformationSymbolicLink@16 | ||
| 530 | NtSetInformationThread@16 | 623 | NtSetInformationThread@16 |
| 531 | NtSetInformationToken@16 | 624 | NtSetInformationToken@16 |
| 532 | NtSetInformationTransaction@16 | 625 | NtSetInformationTransaction@16 |
| 533 | NtSetInformationTransactionManager@16 | 626 | NtSetInformationTransactionManager@16 |
| 627 | NtSetInformationVirtualMemory@24 | ||
| 534 | NtSetInformationWorkerFactory@16 | 628 | NtSetInformationWorkerFactory@16 |
| 535 | NtSetIntervalProfile@8 | 629 | NtSetIntervalProfile@8 |
| 536 | NtSetIoCompletion@20 | 630 | NtSetIoCompletion@20 |
| ... | @@ -546,21 +640,25 @@ NtSetSystemInformation@12 | ... | @@ -546,21 +640,25 @@ NtSetSystemInformation@12 |
| 546 | NtSetSystemPowerState@12 | 640 | NtSetSystemPowerState@12 |
| 547 | NtSetSystemTime@8 | 641 | NtSetSystemTime@8 |
| 548 | NtSetThreadExecutionState@8 | 642 | NtSetThreadExecutionState@8 |
| 643 | NtSetTimer2@16 | ||
| 549 | NtSetTimer@28 | 644 | NtSetTimer@28 |
| 550 | NtSetTimerEx@16 | 645 | NtSetTimerEx@16 |
| 551 | NtSetTimerResolution@12 | 646 | NtSetTimerResolution@12 |
| 552 | NtSetUuidSeed@4 | 647 | NtSetUuidSeed@4 |
| 553 | NtSetValueKey@24 | 648 | NtSetValueKey@24 |
| 554 | NtSetVolumeInformationFile@20 | 649 | NtSetVolumeInformationFile@20 |
| 650 | NtSetWnfProcessNotificationEvent@4 | ||
| 555 | NtShutdownSystem@4 | 651 | NtShutdownSystem@4 |
| 556 | NtShutdownWorkerFactory@8 | 652 | NtShutdownWorkerFactory@8 |
| 557 | NtSignalAndWaitForSingleObject@16 | 653 | NtSignalAndWaitForSingleObject@16 |
| 558 | NtSinglePhaseReject@8 | 654 | NtSinglePhaseReject@8 |
| 559 | NtStartProfile@4 | 655 | NtStartProfile@4 |
| 560 | NtStopProfile@4 | 656 | NtStopProfile@4 |
| 657 | NtSubscribeWnfStateChange@16 | ||
| 561 | NtSuspendProcess@4 | 658 | NtSuspendProcess@4 |
| 562 | NtSuspendThread@8 | 659 | NtSuspendThread@8 |
| 563 | NtSystemDebugControl@24 | 660 | NtSystemDebugControl@24 |
| 661 | NtTerminateEnclave@8 | ||
| 564 | NtTerminateJobObject@8 | 662 | NtTerminateJobObject@8 |
| 565 | NtTerminateProcess@8 | 663 | NtTerminateProcess@8 |
| 566 | NtTerminateThread@8 | 664 | NtTerminateThread@8 |
| ... | @@ -578,7 +676,11 @@ NtUnloadKeyEx@8 | ... | @@ -578,7 +676,11 @@ NtUnloadKeyEx@8 |
| 578 | NtUnlockFile@20 | 676 | NtUnlockFile@20 |
| 579 | NtUnlockVirtualMemory@16 | 677 | NtUnlockVirtualMemory@16 |
| 580 | NtUnmapViewOfSection@8 | 678 | NtUnmapViewOfSection@8 |
| 679 | NtUnmapViewOfSectionEx@12 | ||
| 680 | NtUnsubscribeWnfStateChange@4 | ||
| 681 | NtUpdateWnfStateData@28 | ||
| 581 | NtVdmControl@8 | 682 | NtVdmControl@8 |
| 683 | NtWaitForAlertByThreadId@8 | ||
| 582 | NtWaitForDebugEvent@16 | 684 | NtWaitForDebugEvent@16 |
| 583 | NtWaitForKeyedEvent@16 | 685 | NtWaitForKeyedEvent@16 |
| 584 | NtWaitForMultipleObjects32@20 | 686 | NtWaitForMultipleObjects32@20 |
| ... | @@ -622,6 +724,14 @@ PfxFindPrefix@8 | ... | @@ -622,6 +724,14 @@ PfxFindPrefix@8 |
| 622 | PfxInitialize@4 | 724 | PfxInitialize@4 |
| 623 | PfxInsertPrefix@12 | 725 | PfxInsertPrefix@12 |
| 624 | PfxRemovePrefix@8 | 726 | PfxRemovePrefix@8 |
| 727 | PssNtCaptureSnapshot@16 | ||
| 728 | PssNtDuplicateSnapshot@20 | ||
| 729 | PssNtFreeRemoteSnapshot@8 | ||
| 730 | PssNtFreeSnapshot@4 | ||
| 731 | PssNtFreeWalkMarker@4 | ||
| 732 | PssNtQuerySnapshot@16 | ||
| 733 | PssNtValidateDescriptor@8 | ||
| 734 | PssNtWalkSnapshot@20 | ||
| 625 | RtlAbortRXact@4 | 735 | RtlAbortRXact@4 |
| 626 | RtlAbsoluteToSelfRelativeSD@12 | 736 | RtlAbsoluteToSelfRelativeSD@12 |
| 627 | RtlAcquirePebLock@0 | 737 | RtlAcquirePebLock@0 |
| ... | @@ -639,6 +749,7 @@ RtlAddAccessAllowedObjectAce@28 | ... | @@ -639,6 +749,7 @@ RtlAddAccessAllowedObjectAce@28 |
| 639 | RtlAddAccessDeniedAce@16 | 749 | RtlAddAccessDeniedAce@16 |
| 640 | RtlAddAccessDeniedAceEx@20 | 750 | RtlAddAccessDeniedAceEx@20 |
| 641 | RtlAddAccessDeniedObjectAce@28 | 751 | RtlAddAccessDeniedObjectAce@28 |
| 752 | RtlAddAccessFilterAce@32 | ||
| 642 | RtlAddAce@20 | 753 | RtlAddAce@20 |
| 643 | RtlAddActionToRXact@24 | 754 | RtlAddActionToRXact@24 |
| 644 | RtlAddAtomToAtomTable@12 | 755 | RtlAddAtomToAtomTable@12 |
| ... | @@ -649,20 +760,25 @@ RtlAddAuditAccessObjectAce@36 | ... | @@ -649,20 +760,25 @@ RtlAddAuditAccessObjectAce@36 |
| 649 | RtlAddCompoundAce@24 | 760 | RtlAddCompoundAce@24 |
| 650 | RtlAddIntegrityLabelToBoundaryDescriptor@8 | 761 | RtlAddIntegrityLabelToBoundaryDescriptor@8 |
| 651 | RtlAddMandatoryAce@24 | 762 | RtlAddMandatoryAce@24 |
| 763 | RtlAddProcessTrustLabelAce@24 | ||
| 652 | RtlAddRefActivationContext@4 | 764 | RtlAddRefActivationContext@4 |
| 653 | RtlAddRange@36 | 765 | RtlAddRange@36 |
| 654 | RtlAddRefMemoryStream@4 | 766 | RtlAddRefMemoryStream@4 |
| 767 | RtlAddResourceAttributeAce@28 | ||
| 655 | RtlAddSIDToBoundaryDescriptor@8 | 768 | RtlAddSIDToBoundaryDescriptor@8 |
| 769 | RtlAddScopedPolicyIDAce@20 | ||
| 656 | RtlAddVectoredContinueHandler@8 | 770 | RtlAddVectoredContinueHandler@8 |
| 657 | RtlAddVectoredExceptionHandler@8 | 771 | RtlAddVectoredExceptionHandler@8 |
| 658 | RtlAddressInSectionTable@12 | 772 | RtlAddressInSectionTable@12 |
| 659 | RtlAdjustPrivilege@16 | 773 | RtlAdjustPrivilege@16 |
| 660 | RtlAllocateActivationContextStack@4 | 774 | RtlAllocateActivationContextStack@4 |
| 661 | RtlAllocateAndInitializeSid@44 | 775 | RtlAllocateAndInitializeSid@44 |
| 776 | RtlAllocateAndInitializeSidEx@16 | ||
| 662 | RtlAllocateHandle@8 | 777 | RtlAllocateHandle@8 |
| 663 | RtlAllocateHeap@12 | 778 | RtlAllocateHeap@12 |
| 664 | RtlAllocateMemoryBlockLookaside@12 | 779 | RtlAllocateMemoryBlockLookaside@12 |
| 665 | RtlAllocateMemoryZone@12 | 780 | RtlAllocateMemoryZone@12 |
| 781 | RtlAllocateWnfSerializationGroup@0 | ||
| 666 | RtlAnsiCharToUnicodeChar@4 | 782 | RtlAnsiCharToUnicodeChar@4 |
| 667 | RtlAnsiStringToUnicodeSize@4 | 783 | RtlAnsiStringToUnicodeSize@4 |
| 668 | RtlAnsiStringToUnicodeString@12 | 784 | RtlAnsiStringToUnicodeString@12 |
| ... | @@ -674,24 +790,40 @@ RtlAppendUnicodeToString@8 | ... | @@ -674,24 +790,40 @@ RtlAppendUnicodeToString@8 |
| 674 | RtlApplicationVerifierStop@40 | 790 | RtlApplicationVerifierStop@40 |
| 675 | RtlApplyRXact@4 | 791 | RtlApplyRXact@4 |
| 676 | RtlApplyRXactNoFlush@4 | 792 | RtlApplyRXactNoFlush@4 |
| 793 | RtlAppxIsFileOwnedByTrustedInstaller@8 | ||
| 677 | RtlAreAllAccessesGranted@8 | 794 | RtlAreAllAccessesGranted@8 |
| 678 | RtlAreAnyAccessesGranted@8 | 795 | RtlAreAnyAccessesGranted@8 |
| 679 | RtlAreBitsClear@12 | 796 | RtlAreBitsClear@12 |
| 680 | RtlAreBitsSet@12 | 797 | RtlAreBitsSet@12 |
| 798 | RtlAreLongPathsEnabled@0 | ||
| 681 | RtlAssert@16 | 799 | RtlAssert@16 |
| 800 | RtlAvlInsertNodeEx@16 | ||
| 801 | RtlAvlRemoveNode@8 | ||
| 682 | RtlBarrier@8 | 802 | RtlBarrier@8 |
| 683 | RtlBarrierForDelete@8 | 803 | RtlBarrierForDelete@8 |
| 684 | RtlCallbackLpcClient@12 | 804 | RtlCallbackLpcClient@12 |
| 685 | RtlCancelTimer@8 | 805 | RtlCancelTimer@8 |
| 806 | RtlCanonicalizeDomainName@12 | ||
| 807 | RtlCapabilityCheck@12 | ||
| 808 | RtlCapabilityCheckForSingleSessionSku@12 | ||
| 686 | RtlCaptureContext@4 | 809 | RtlCaptureContext@4 |
| 687 | RtlCaptureStackBackTrace@16 | 810 | RtlCaptureStackBackTrace@16 |
| 688 | RtlCaptureStackContext@12 | 811 | RtlCaptureStackContext@12 |
| 689 | RtlCharToInteger@12 | 812 | RtlCharToInteger@12 |
| 813 | RtlCheckBootStatusIntegrity@8 | ||
| 690 | RtlCheckForOrphanedCriticalSections@4 | 814 | RtlCheckForOrphanedCriticalSections@4 |
| 815 | RtlCheckPortableOperatingSystem@4 | ||
| 691 | RtlCheckRegistryKey@8 | 816 | RtlCheckRegistryKey@8 |
| 817 | RtlCheckSandboxedToken@8 | ||
| 818 | RtlCheckSystemBootStatusIntegrity@4 | ||
| 819 | RtlCheckTokenCapability@12 | ||
| 820 | RtlCheckTokenMembership@12 | ||
| 821 | RtlCheckTokenMembershipEx@16 | ||
| 692 | RtlCleanUpTEBLangLists@0 | 822 | RtlCleanUpTEBLangLists@0 |
| 693 | RtlClearAllBits@4 | 823 | RtlClearAllBits@4 |
| 824 | RtlClearBit@8 | ||
| 694 | RtlClearBits@12 | 825 | RtlClearBits@12 |
| 826 | RtlClearThreadWorkOnBehalfTicket@0 | ||
| 695 | RtlCloneMemoryStream@8 | 827 | RtlCloneMemoryStream@8 |
| 696 | RtlCloneUserProcess@20 | 828 | RtlCloneUserProcess@20 |
| 697 | RtlCmDecodeMemIoResource@8 | 829 | RtlCmDecodeMemIoResource@8 |
| ... | @@ -711,15 +843,20 @@ RtlComputeImportTableHash@12 | ... | @@ -711,15 +843,20 @@ RtlComputeImportTableHash@12 |
| 711 | RtlComputePrivatizedDllName_U@12 | 843 | RtlComputePrivatizedDllName_U@12 |
| 712 | RtlConnectToSm@16 | 844 | RtlConnectToSm@16 |
| 713 | RtlConsoleMultiByteToUnicodeN@24 | 845 | RtlConsoleMultiByteToUnicodeN@24 |
| 846 | RtlConstructCrossVmEventPath@12 | ||
| 714 | RtlContractHashTable@4 | 847 | RtlContractHashTable@4 |
| 848 | RtlConvertDeviceFamilyInfoToString@16 | ||
| 715 | RtlConvertExclusiveToShared@4 | 849 | RtlConvertExclusiveToShared@4 |
| 716 | RtlConvertLCIDToString@20 | 850 | RtlConvertLCIDToString@20 |
| 717 | RtlConvertLongToLargeInteger@4 | 851 | RtlConvertLongToLargeInteger@4 |
| 852 | RtlConvertSRWLockExclusiveToShared@4 | ||
| 718 | RtlConvertSharedToExclusive@4 | 853 | RtlConvertSharedToExclusive@4 |
| 719 | RtlConvertSidToUnicodeString@12 | 854 | RtlConvertSidToUnicodeString@12 |
| 720 | RtlConvertToAutoInheritSecurityObject@24 | 855 | RtlConvertToAutoInheritSecurityObject@24 |
| 721 | RtlConvertUiListToApiList@12 | 856 | RtlConvertUiListToApiList@12 |
| 722 | RtlConvertUlongToLargeInteger@4 | 857 | RtlConvertUlongToLargeInteger@4 |
| 858 | RtlCopyBitMap@12 | ||
| 859 | RtlCopyContext@12 | ||
| 723 | RtlCopyExtendedContext@12 | 860 | RtlCopyExtendedContext@12 |
| 724 | RtlCopyLuid@8 | 861 | RtlCopyLuid@8 |
| 725 | RtlCopyLuidAndAttributesArray@12 | 862 | RtlCopyLuidAndAttributesArray@12 |
| ... | @@ -732,6 +869,8 @@ RtlCopySid@12 | ... | @@ -732,6 +869,8 @@ RtlCopySid@12 |
| 732 | RtlCopySidAndAttributesArray@28 | 869 | RtlCopySidAndAttributesArray@28 |
| 733 | RtlCopyString@8 | 870 | RtlCopyString@8 |
| 734 | RtlCopyUnicodeString@8 | 871 | RtlCopyUnicodeString@8 |
| 872 | RtlCrc32@12 | ||
| 873 | RtlCrc64@16 | ||
| 735 | RtlCreateAcl@12 | 874 | RtlCreateAcl@12 |
| 736 | RtlCreateActivationContext@24 | 875 | RtlCreateActivationContext@24 |
| 737 | RtlCreateAndSetSD@20 | 876 | RtlCreateAndSetSD@20 |
| ... | @@ -741,12 +880,14 @@ RtlCreateBoundaryDescriptor@8 | ... | @@ -741,12 +880,14 @@ RtlCreateBoundaryDescriptor@8 |
| 741 | RtlCreateEnvironment@8 | 880 | RtlCreateEnvironment@8 |
| 742 | RtlCreateEnvironmentEx@12 | 881 | RtlCreateEnvironmentEx@12 |
| 743 | RtlCreateHashTable@12 | 882 | RtlCreateHashTable@12 |
| 883 | RtlCreateHashTableEx@16 | ||
| 744 | RtlCreateHeap@24 | 884 | RtlCreateHeap@24 |
| 745 | RtlCreateLpcServer@24 | 885 | RtlCreateLpcServer@24 |
| 746 | RtlCreateMemoryBlockLookaside@20 | 886 | RtlCreateMemoryBlockLookaside@20 |
| 747 | RtlCreateMemoryZone@12 | 887 | RtlCreateMemoryZone@12 |
| 748 | RtlCreateProcessParameters@40 | 888 | RtlCreateProcessParameters@40 |
| 749 | RtlCreateProcessParametersEx@44 | 889 | RtlCreateProcessParametersEx@44 |
| 890 | RtlCreateProcessParametersWithTemplate@12 | ||
| 750 | RtlCreateProcessReflection@24 | 891 | RtlCreateProcessReflection@24 |
| 751 | RtlCreateQueryDebugBuffer@8 | 892 | RtlCreateQueryDebugBuffer@8 |
| 752 | RtlCreateRegistryKey@8 | 893 | RtlCreateRegistryKey@8 |
| ... | @@ -759,6 +900,7 @@ RtlCreateTimerQueue@4 | ... | @@ -759,6 +900,7 @@ RtlCreateTimerQueue@4 |
| 759 | RtlCreateUnicodeString@8 | 900 | RtlCreateUnicodeString@8 |
| 760 | RtlCreateUnicodeStringFromAsciiz@8 | 901 | RtlCreateUnicodeStringFromAsciiz@8 |
| 761 | RtlCreateUserProcess@40 | 902 | RtlCreateUserProcess@40 |
| 903 | RtlCreateUserProcessEx@20 | ||
| 762 | RtlCreateUserSecurityObject@28 | 904 | RtlCreateUserSecurityObject@28 |
| 763 | RtlCreateUserStack@24 | 905 | RtlCreateUserStack@24 |
| 764 | RtlCreateUserThread@40 | 906 | RtlCreateUserThread@40 |
| ... | @@ -771,8 +913,10 @@ RtlDeNormalizeProcessParams@4 | ... | @@ -771,8 +913,10 @@ RtlDeNormalizeProcessParams@4 |
| 771 | RtlDeactivateActivationContext@8 | 913 | RtlDeactivateActivationContext@8 |
| 772 | RtlDebugPrintTimes@0 | 914 | RtlDebugPrintTimes@0 |
| 773 | RtlDecodePointer@4 | 915 | RtlDecodePointer@4 |
| 916 | RtlDecodeRemotePointer@12 | ||
| 774 | RtlDecodeSystemPointer@4 | 917 | RtlDecodeSystemPointer@4 |
| 775 | RtlDecompressBuffer@24 | 918 | RtlDecompressBuffer@24 |
| 919 | RtlDecompressBufferEx@28 | ||
| 776 | RtlDecompressFragment@32 | 920 | RtlDecompressFragment@32 |
| 777 | RtlDefaultNpAcl@4 | 921 | RtlDefaultNpAcl@4 |
| 778 | RtlDelete@4 | 922 | RtlDelete@4 |
| ... | @@ -783,6 +927,7 @@ RtlDeleteBoundaryDescriptor@4 | ... | @@ -783,6 +927,7 @@ RtlDeleteBoundaryDescriptor@4 |
| 783 | RtlDeleteCriticalSection@4 | 927 | RtlDeleteCriticalSection@4 |
| 784 | RtlDeleteElementGenericTable@8 | 928 | RtlDeleteElementGenericTable@8 |
| 785 | RtlDeleteElementGenericTableAvl@8 | 929 | RtlDeleteElementGenericTableAvl@8 |
| 930 | RtlDeleteElementGenericTableAvlEx@8 | ||
| 786 | RtlDeleteHashTable@4 | 931 | RtlDeleteHashTable@4 |
| 787 | RtlDeleteNoSplay@8 | 932 | RtlDeleteNoSplay@8 |
| 788 | RtlDeleteOwnersRanges@8 | 933 | RtlDeleteOwnersRanges@8 |
| ... | @@ -797,6 +942,7 @@ RtlDeNormalizeProcessParams@4 | ... | @@ -797,6 +942,7 @@ RtlDeNormalizeProcessParams@4 |
| 797 | RtlDeregisterSecureMemoryCacheCallback@4 | 942 | RtlDeregisterSecureMemoryCacheCallback@4 |
| 798 | RtlDeregisterWait@4 | 943 | RtlDeregisterWait@4 |
| 799 | RtlDeregisterWaitEx@8 | 944 | RtlDeregisterWaitEx@8 |
| 945 | RtlDeriveCapabilitySidsFromName@12 | ||
| 800 | RtlDestroyAtomTable@4 | 946 | RtlDestroyAtomTable@4 |
| 801 | RtlDestroyEnvironment@4 | 947 | RtlDestroyEnvironment@4 |
| 802 | RtlDestroyHandleTable@4 | 948 | RtlDestroyHandleTable@4 |
| ... | @@ -811,7 +957,10 @@ RtlDisableThreadProfiling@4 | ... | @@ -811,7 +957,10 @@ RtlDisableThreadProfiling@4 |
| 811 | RtlDllShutdownInProgress@0 | 957 | RtlDllShutdownInProgress@0 |
| 812 | RtlDnsHostNameToComputerName@12 | 958 | RtlDnsHostNameToComputerName@12 |
| 813 | RtlDoesFileExists_U@4 | 959 | RtlDoesFileExists_U@4 |
| 960 | RtlDoesNameContainWildCards@4 | ||
| 814 | RtlDosApplyFileIsolationRedirection_Ustr@36 | 961 | RtlDosApplyFileIsolationRedirection_Ustr@36 |
| 962 | RtlDosLongPathNameToNtPathName_U_WithStatus@16 | ||
| 963 | RtlDosLongPathNameToRelativeNtPathName_U_WithStatus@16 | ||
| 815 | RtlDosPathNameToNtPathName_U@16 | 964 | RtlDosPathNameToNtPathName_U@16 |
| 816 | RtlDosPathNameToNtPathName_U_WithStatus@16 | 965 | RtlDosPathNameToNtPathName_U_WithStatus@16 |
| 817 | RtlDosPathNameToRelativeNtPathName_U@16 | 966 | RtlDosPathNameToRelativeNtPathName_U@16 |
| ... | @@ -826,8 +975,10 @@ RtlEmptyAtomTable@8 | ... | @@ -826,8 +975,10 @@ RtlEmptyAtomTable@8 |
| 826 | RtlEnableEarlyCriticalSectionEventCreation@0 | 975 | RtlEnableEarlyCriticalSectionEventCreation@0 |
| 827 | RtlEnableThreadProfiling@20 | 976 | RtlEnableThreadProfiling@20 |
| 828 | RtlEncodePointer@4 | 977 | RtlEncodePointer@4 |
| 978 | RtlEncodeRemotePointer@12 | ||
| 829 | RtlEncodeSystemPointer@4 | 979 | RtlEncodeSystemPointer@4 |
| 830 | RtlEndEnumerationHashTable@8 | 980 | RtlEndEnumerationHashTable@8 |
| 981 | RtlEndStrongEnumerationHashTable@8 | ||
| 831 | RtlEndWeakEnumerationHashTable@8 | 982 | RtlEndWeakEnumerationHashTable@8 |
| 832 | RtlEnlargedIntegerMultiply@8 | 983 | RtlEnlargedIntegerMultiply@8 |
| 833 | RtlEnlargedUnsignedDivide@16 | 984 | RtlEnlargedUnsignedDivide@16 |
| ... | @@ -847,22 +998,24 @@ RtlEqualPrefixSid@8 | ... | @@ -847,22 +998,24 @@ RtlEqualPrefixSid@8 |
| 847 | RtlEqualSid@8 | 998 | RtlEqualSid@8 |
| 848 | RtlEqualString@12 | 999 | RtlEqualString@12 |
| 849 | RtlEqualUnicodeString@12 | 1000 | RtlEqualUnicodeString@12 |
| 1001 | RtlEqualWnfChangeStamps@8 | ||
| 850 | RtlEraseUnicodeString@4 | 1002 | RtlEraseUnicodeString@4 |
| 851 | RtlEthernetAddressToStringA@8 | 1003 | RtlEthernetAddressToStringA@8 |
| 852 | RtlEthernetAddressToStringW@8 | 1004 | RtlEthernetAddressToStringW@8 |
| 853 | RtlEthernetStringToAddressA@12 | 1005 | RtlEthernetStringToAddressA@12 |
| 854 | RtlEthernetStringToAddressW@12 | 1006 | RtlEthernetStringToAddressW@12 |
| 855 | RtlExitUserProcess@4 | 1007 | RtlExitUserProcess@4 |
| 856 | ; Not sure, but we assume @4 | 1008 | RtlExitUserThread@4 ; Not sure, but we assume @4 |
| 857 | RtlExitUserThread@4 | ||
| 858 | RtlExpandEnvironmentStrings@24 | 1009 | RtlExpandEnvironmentStrings@24 |
| 859 | RtlExpandEnvironmentStrings_U@16 | 1010 | RtlExpandEnvironmentStrings_U@16 |
| 860 | RtlExpandHashTable@4 | 1011 | RtlExpandHashTable@4 |
| 1012 | RtlExtendCorrelationVector@4 | ||
| 861 | RtlExtendMemoryBlockLookaside@8 | 1013 | RtlExtendMemoryBlockLookaside@8 |
| 862 | RtlExtendMemoryZone@8 | 1014 | RtlExtendMemoryZone@8 |
| 863 | RtlExtendedIntegerMultiply@12 | 1015 | RtlExtendedIntegerMultiply@12 |
| 864 | RtlExtendedLargeIntegerDivide@16 | 1016 | RtlExtendedLargeIntegerDivide@16 |
| 865 | RtlExtendedMagicDivide@20 | 1017 | RtlExtendedMagicDivide@20 |
| 1018 | RtlExtractBitMap@16 | ||
| 866 | RtlExtendHeap@16 | 1019 | RtlExtendHeap@16 |
| 867 | RtlFillMemory@12 | 1020 | RtlFillMemory@12 |
| 868 | RtlFillMemoryUlong@12 | 1021 | RtlFillMemoryUlong@12 |
| ... | @@ -876,6 +1029,7 @@ RtlFindClearBits@12 | ... | @@ -876,6 +1029,7 @@ RtlFindClearBits@12 |
| 876 | RtlFindClearBitsAndSet@12 | 1029 | RtlFindClearBitsAndSet@12 |
| 877 | RtlFindClearRuns@16 | 1030 | RtlFindClearRuns@16 |
| 878 | RtlFindClosestEncodableLength@12 | 1031 | RtlFindClosestEncodableLength@12 |
| 1032 | RtlFindExportedRoutineByName@8 | ||
| 879 | RtlFindLastBackwardRunClear@12 | 1033 | RtlFindLastBackwardRunClear@12 |
| 880 | RtlFindLeastSignificantBit@8 | 1034 | RtlFindLeastSignificantBit@8 |
| 881 | RtlFindLongestRunClear@8 | 1035 | RtlFindLongestRunClear@8 |
| ... | @@ -886,10 +1040,14 @@ RtlFindNextForwardRunClear@12 | ... | @@ -886,10 +1040,14 @@ RtlFindNextForwardRunClear@12 |
| 886 | RtlFindRange@48 | 1040 | RtlFindRange@48 |
| 887 | RtlFindSetBits@12 | 1041 | RtlFindSetBits@12 |
| 888 | RtlFindSetBitsAndClear@12 | 1042 | RtlFindSetBitsAndClear@12 |
| 1043 | RtlFindUnicodeSubstring@12 | ||
| 889 | RtlFirstEntrySList@4 | 1044 | RtlFirstEntrySList@4 |
| 890 | RtlFirstFreeAce@8 | 1045 | RtlFirstFreeAce@8 |
| 891 | RtlFlsAlloc@8 | 1046 | RtlFlsAlloc@8 |
| 892 | RtlFlsFree@4 | 1047 | RtlFlsFree@4 |
| 1048 | RtlFlsGetValue@8 | ||
| 1049 | RtlFlsSetValue@8 | ||
| 1050 | RtlFlushHeaps@0 | ||
| 893 | RtlFlushSecureMemoryCache@8 | 1051 | RtlFlushSecureMemoryCache@8 |
| 894 | RtlFormatCurrentUserKeyPath@4 | 1052 | RtlFormatCurrentUserKeyPath@4 |
| 895 | RtlFormatMessage@36 | 1053 | RtlFormatMessage@36 |
| ... | @@ -902,6 +1060,7 @@ RtlFreeMemoryBlockLookaside@8 | ... | @@ -902,6 +1060,7 @@ RtlFreeMemoryBlockLookaside@8 |
| 902 | RtlFreeOemString@4 | 1060 | RtlFreeOemString@4 |
| 903 | RtlFreeSid@4 | 1061 | RtlFreeSid@4 |
| 904 | RtlFreeThreadActivationContextStack@0 | 1062 | RtlFreeThreadActivationContextStack@0 |
| 1063 | RtlFreeUTF8String@4 | ||
| 905 | RtlFreeUnicodeString@4 | 1064 | RtlFreeUnicodeString@4 |
| 906 | RtlFreeUserStack@4 | 1065 | RtlFreeUserStack@4 |
| 907 | RtlFreeUserThreadStack@8 | 1066 | RtlFreeUserThreadStack@8 |
| ... | @@ -909,19 +1068,28 @@ RtlGUIDFromString@8 | ... | @@ -909,19 +1068,28 @@ RtlGUIDFromString@8 |
| 909 | RtlGenerate8dot3Name@16 | 1068 | RtlGenerate8dot3Name@16 |
| 910 | RtlGetAce@12 | 1069 | RtlGetAce@12 |
| 911 | RtlGetActiveActivationContext@4 | 1070 | RtlGetActiveActivationContext@4 |
| 1071 | RtlGetActiveConsoleId@0 | ||
| 1072 | RtlGetAppContainerNamedObjectPath@16 | ||
| 1073 | RtlGetAppContainerParent@8 | ||
| 1074 | RtlGetAppContainerSidType@8 | ||
| 912 | RtlGetCallersAddress@8 | 1075 | RtlGetCallersAddress@8 |
| 913 | RtlGetCompressionWorkSpaceSize@12 | 1076 | RtlGetCompressionWorkSpaceSize@12 |
| 1077 | RtlGetConsoleSessionForegroundProcessId@0 | ||
| 914 | RtlGetControlSecurityDescriptor@12 | 1078 | RtlGetControlSecurityDescriptor@12 |
| 915 | RtlGetCriticalSectionRecursionCount@4 | 1079 | RtlGetCriticalSectionRecursionCount@4 |
| 916 | RtlGetCurrentDirectory_U@8 | 1080 | RtlGetCurrentDirectory_U@8 |
| 917 | RtlGetCurrentPeb@0 | 1081 | RtlGetCurrentPeb@0 |
| 918 | RtlGetCurrentProcessorNumber@0 | 1082 | RtlGetCurrentProcessorNumber@0 |
| 919 | RtlGetCurrentProcessorNumberEx@4 | 1083 | RtlGetCurrentProcessorNumberEx@4 |
| 1084 | RtlGetCurrentServiceSessionId@0 | ||
| 920 | RtlGetCurrentTransaction@0 | 1085 | RtlGetCurrentTransaction@0 |
| 921 | RtlGetDaclSecurityDescriptor@16 | 1086 | RtlGetDaclSecurityDescriptor@16 |
| 1087 | RtlGetDeviceFamilyInfoEnum@12 | ||
| 922 | RtlGetElementGenericTable@8 | 1088 | RtlGetElementGenericTable@8 |
| 923 | RtlGetElementGenericTableAvl@8 | 1089 | RtlGetElementGenericTableAvl@8 |
| 924 | RtlGetEnabledExtendedFeatures@8 | 1090 | RtlGetEnabledExtendedFeatures@8 |
| 1091 | RtlGetExePath@8 | ||
| 1092 | RtlGetExtendedContextLength2@16 | ||
| 925 | RtlGetExtendedContextLength@8 | 1093 | RtlGetExtendedContextLength@8 |
| 926 | RtlGetExtendedFeaturesMask@4 | 1094 | RtlGetExtendedFeaturesMask@4 |
| 927 | RtlGetFileMUIPath@28 | 1095 | RtlGetFileMUIPath@28 |
| ... | @@ -932,36 +1100,50 @@ RtlGetFullPathName_UEx@20 | ... | @@ -932,36 +1100,50 @@ RtlGetFullPathName_UEx@20 |
| 932 | RtlGetFullPathName_UstrEx@32 | 1100 | RtlGetFullPathName_UstrEx@32 |
| 933 | RtlGetGroupSecurityDescriptor@12 | 1101 | RtlGetGroupSecurityDescriptor@12 |
| 934 | RtlGetIntegerAtom@8 | 1102 | RtlGetIntegerAtom@8 |
| 1103 | RtlGetInterruptTimePrecise@4 | ||
| 935 | RtlGetLastNtStatus@0 | 1104 | RtlGetLastNtStatus@0 |
| 936 | RtlGetLastWin32Error@0 | 1105 | RtlGetLastWin32Error@0 |
| 937 | RtlGetLengthWithoutLastFullDosOrNtPathElement@12 | 1106 | RtlGetLengthWithoutLastFullDosOrNtPathElement@12 |
| 938 | RtlGetLengthWithoutTrailingPathSeperators@12 | 1107 | RtlGetLengthWithoutTrailingPathSeperators@12 |
| 939 | RtlGetLocaleFileMappingAddress@12 | 1108 | RtlGetLocaleFileMappingAddress@12 |
| 940 | RtlGetLongestNtPathLength@0 | 1109 | RtlGetLongestNtPathLength@0 |
| 1110 | RtlGetMultiTimePrecise@12 | ||
| 1111 | RtlGetLongestNtPathLength@0 | ||
| 941 | RtlGetNativeSystemInformation@16 | 1112 | RtlGetNativeSystemInformation@16 |
| 942 | RtlGetNextRange@12 | 1113 | RtlGetNextRange@12 |
| 943 | RtlGetNextEntryHashTable@8 | 1114 | RtlGetNextEntryHashTable@8 |
| 944 | RtlGetNtGlobalFlags@0 | 1115 | RtlGetNtGlobalFlags@0 |
| 945 | RtlGetNtProductType@4 | 1116 | RtlGetNtProductType@4 |
| 1117 | RtlGetNtSystemRoot@0 | ||
| 946 | RtlGetNtVersionNumbers@12 | 1118 | RtlGetNtVersionNumbers@12 |
| 947 | RtlGetOwnerSecurityDescriptor@12 | 1119 | RtlGetOwnerSecurityDescriptor@12 |
| 948 | RtlGetParentLocaleName@16 | 1120 | RtlGetParentLocaleName@16 |
| 1121 | RtlGetPersistedStateLocation@28 | ||
| 949 | RtlGetProcessHeaps@8 | 1122 | RtlGetProcessHeaps@8 |
| 950 | RtlGetProcessPreferredUILanguages@16 | 1123 | RtlGetProcessPreferredUILanguages@16 |
| 951 | RtlGetProductInfo@20 | 1124 | RtlGetProductInfo@20 |
| 952 | RtlGetSaclSecurityDescriptor@16 | 1125 | RtlGetSaclSecurityDescriptor@16 |
| 1126 | RtlGetSearchPath@4 | ||
| 953 | RtlGetSecurityDescriptorRMControl@8 | 1127 | RtlGetSecurityDescriptorRMControl@8 |
| 1128 | RtlGetSessionProperties@8 | ||
| 954 | RtlGetSetBootStatusData@24 | 1129 | RtlGetSetBootStatusData@24 |
| 1130 | RtlGetSuiteMask@0 | ||
| 1131 | RtlGetSystemBootStatus@16 | ||
| 1132 | RtlGetSystemBootStatusEx@12 | ||
| 955 | RtlGetSystemPreferredUILanguages@20 | 1133 | RtlGetSystemPreferredUILanguages@20 |
| 1134 | RtlGetSystemTimePrecise@0 | ||
| 956 | RtlGetThreadErrorMode@0 | 1135 | RtlGetThreadErrorMode@0 |
| 957 | RtlGetThreadLangIdByIndex@16 | 1136 | RtlGetThreadLangIdByIndex@16 |
| 958 | RtlGetThreadPreferredUILanguages@16 | 1137 | RtlGetThreadPreferredUILanguages@16 |
| 1138 | RtlGetThreadWorkOnBehalfTicket@8 | ||
| 1139 | RtlGetTokenNamedObjectPath@12 | ||
| 959 | RtlGetUILanguageInfo@20 | 1140 | RtlGetUILanguageInfo@20 |
| 960 | RtlGetUnloadEventTrace@0 | 1141 | RtlGetUnloadEventTrace@0 |
| 961 | RtlGetUnloadEventTraceEx@12 | 1142 | RtlGetUnloadEventTraceEx@12 |
| 962 | RtlGetUserInfoHeap@20 | 1143 | RtlGetUserInfoHeap@20 |
| 963 | RtlGetUserPreferredUILanguages@20 | 1144 | RtlGetUserPreferredUILanguages@20 |
| 964 | RtlGetVersion@4 | 1145 | RtlGetVersion@4 |
| 1146 | RtlGuardCheckLongJumpTarget@12 | ||
| 965 | RtlGUIDFromString@8 | 1147 | RtlGUIDFromString@8 |
| 966 | RtlHashUnicodeString@16 | 1148 | RtlHashUnicodeString@16 |
| 967 | RtlHeapTrkInitialize@4 | 1149 | RtlHeapTrkInitialize@4 |
| ... | @@ -977,6 +1159,7 @@ RtlImageRvaToVa@16 | ... | @@ -977,6 +1159,7 @@ RtlImageRvaToVa@16 |
| 977 | RtlImpersonateLpcClient@8 | 1159 | RtlImpersonateLpcClient@8 |
| 978 | RtlImpersonateSelf@4 | 1160 | RtlImpersonateSelf@4 |
| 979 | RtlImpersonateSelfEx@12 | 1161 | RtlImpersonateSelfEx@12 |
| 1162 | RtlIncrementCorrelationVector@4 | ||
| 980 | RtlInitAnsiString@8 | 1163 | RtlInitAnsiString@8 |
| 981 | RtlInitAnsiStringEx@8 | 1164 | RtlInitAnsiStringEx@8 |
| 982 | RtlInitBarrier@12 | 1165 | RtlInitBarrier@12 |
| ... | @@ -986,6 +1169,10 @@ RtlInitMemoryStream@4 | ... | @@ -986,6 +1169,10 @@ RtlInitMemoryStream@4 |
| 986 | RtlInitNlsTables@16 | 1169 | RtlInitNlsTables@16 |
| 987 | RtlInitOutOfProcessMemoryStream@4 | 1170 | RtlInitOutOfProcessMemoryStream@4 |
| 988 | RtlInitString@8 | 1171 | RtlInitString@8 |
| 1172 | RtlInitStringEx@8 | ||
| 1173 | RtlInitStrongEnumerationHashTable@8 | ||
| 1174 | RtlInitUTF8String@8 | ||
| 1175 | RtlInitUTF8StringEx@8 | ||
| 989 | RtlInitUnicodeString@8 | 1176 | RtlInitUnicodeString@8 |
| 990 | RtlInitUnicodeStringEx@8 | 1177 | RtlInitUnicodeStringEx@8 |
| 991 | RtlInitWeakEnumerationHashTable@8 | 1178 | RtlInitWeakEnumerationHashTable@8 |
| ... | @@ -993,10 +1180,12 @@ RtlInitializeAtomPackage@4 | ... | @@ -993,10 +1180,12 @@ RtlInitializeAtomPackage@4 |
| 993 | RtlInitializeBitMap@12 | 1180 | RtlInitializeBitMap@12 |
| 994 | RtlInitializeConditionVariable@4 | 1181 | RtlInitializeConditionVariable@4 |
| 995 | RtlInitializeContext@20 | 1182 | RtlInitializeContext@20 |
| 1183 | RtlInitializeCorrelationVector@12 | ||
| 996 | RtlInitializeCriticalSection@4 | 1184 | RtlInitializeCriticalSection@4 |
| 997 | RtlInitializeCriticalSectionAndSpinCount@8 | 1185 | RtlInitializeCriticalSectionAndSpinCount@8 |
| 998 | RtlInitializeCriticalSectionEx@12 | 1186 | RtlInitializeCriticalSectionEx@12 |
| 999 | RtlInitializeExceptionChain@4 | 1187 | RtlInitializeExceptionChain@4 |
| 1188 | RtlInitializeExtendedContext2@20 | ||
| 1000 | RtlInitializeExtendedContext@12 | 1189 | RtlInitializeExtendedContext@12 |
| 1001 | RtlInitializeGenericTable@20 | 1190 | RtlInitializeGenericTable@20 |
| 1002 | RtlInitializeGenericTableAvl@20 | 1191 | RtlInitializeGenericTableAvl@20 |
| ... | @@ -1007,6 +1196,7 @@ RtlInitializeResource@4 | ... | @@ -1007,6 +1196,7 @@ RtlInitializeResource@4 |
| 1007 | RtlInitializeSListHead@4 | 1196 | RtlInitializeSListHead@4 |
| 1008 | RtlInitializeSRWLock@4 | 1197 | RtlInitializeSRWLock@4 |
| 1009 | RtlInitializeSid@12 | 1198 | RtlInitializeSid@12 |
| 1199 | RtlInitializeSidEx@0 | ||
| 1010 | RtlInsertElementGenericTable@16 | 1200 | RtlInsertElementGenericTable@16 |
| 1011 | RtlInsertElementGenericTableAvl@16 | 1201 | RtlInsertElementGenericTableAvl@16 |
| 1012 | RtlInsertElementGenericTableFull@24 | 1202 | RtlInsertElementGenericTableFull@24 |
| ... | @@ -1020,6 +1210,7 @@ RtlInterlockedCompareExchange64@20 | ... | @@ -1020,6 +1210,7 @@ RtlInterlockedCompareExchange64@20 |
| 1020 | RtlInterlockedFlushSList@4 | 1210 | RtlInterlockedFlushSList@4 |
| 1021 | RtlInterlockedPopEntrySList@4 | 1211 | RtlInterlockedPopEntrySList@4 |
| 1022 | RtlInterlockedPushEntrySList@8 | 1212 | RtlInterlockedPushEntrySList@8 |
| 1213 | RtlInterlockedPushListSListEx@16 | ||
| 1023 | RtlInvertRangeList@8 | 1214 | RtlInvertRangeList@8 |
| 1024 | RtlInterlockedSetBitRun@12 | 1215 | RtlInterlockedSetBitRun@12 |
| 1025 | RtlIoDecodeMemIoResource@16 | 1216 | RtlIoDecodeMemIoResource@16 |
| ... | @@ -1041,21 +1232,40 @@ RtlIpv6StringToAddressExA@16 | ... | @@ -1041,21 +1232,40 @@ RtlIpv6StringToAddressExA@16 |
| 1041 | RtlIpv6StringToAddressExW@16 | 1232 | RtlIpv6StringToAddressExW@16 |
| 1042 | RtlIpv6StringToAddressW@12 | 1233 | RtlIpv6StringToAddressW@12 |
| 1043 | RtlIsActivationContextActive@4 | 1234 | RtlIsActivationContextActive@4 |
| 1235 | RtlIsCapabilitySid@4 | ||
| 1236 | RtlIsCloudFilesPlaceholder@8 | ||
| 1044 | RtlIsCriticalSectionLocked@4 | 1237 | RtlIsCriticalSectionLocked@4 |
| 1045 | RtlIsCriticalSectionLockedByThread@4 | 1238 | RtlIsCriticalSectionLockedByThread@4 |
| 1239 | RtlIsCurrentProcess@4 | ||
| 1240 | RtlIsCurrentThread@4 | ||
| 1046 | RtlIsCurrentThreadAttachExempt@0 | 1241 | RtlIsCurrentThreadAttachExempt@0 |
| 1047 | RtlIsDosDeviceName_U@4 | 1242 | RtlIsDosDeviceName_U@4 |
| 1243 | RtlIsElevatedRid@4 | ||
| 1048 | RtlIsGenericTableEmpty@4 | 1244 | RtlIsGenericTableEmpty@4 |
| 1049 | RtlIsGenericTableEmptyAvl@4 | 1245 | RtlIsGenericTableEmptyAvl@4 |
| 1246 | RtlIsMultiSessionSku@0 | ||
| 1247 | RtlIsMultiUsersInSessionSku@0 | ||
| 1050 | RtlIsNameInExpression@16 | 1248 | RtlIsNameInExpression@16 |
| 1249 | RtlIsNameInUnUpcasedExpression@16 | ||
| 1051 | RtlIsNameLegalDOS8Dot3@12 | 1250 | RtlIsNameLegalDOS8Dot3@12 |
| 1251 | RtlIsNonEmptyDirectoryReparsePointAllowed@4 | ||
| 1052 | RtlIsNormalizedString@16 | 1252 | RtlIsNormalizedString@16 |
| 1253 | RtlIsPackageSid@4 | ||
| 1254 | RtlIsParentOfChildAppContainer@8 | ||
| 1255 | RtlIsPartialPlaceholder@8 | ||
| 1256 | RtlIsPartialPlaceholderFileHandle@8 | ||
| 1257 | RtlIsPartialPlaceholderFileInfo@12 | ||
| 1258 | RtlIsProcessorFeaturePresent@4 | ||
| 1053 | RtlIsRangeAvailable@40 | 1259 | RtlIsRangeAvailable@40 |
| 1260 | RtlIsStateSeparationEnabled@0 | ||
| 1054 | RtlIsTextUnicode@12 | 1261 | RtlIsTextUnicode@12 |
| 1055 | RtlIsThreadWithinLoaderCallout@0 | 1262 | RtlIsThreadWithinLoaderCallout@0 |
| 1263 | RtlIsUntrustedObject@12 | ||
| 1056 | RtlIsValidHandle@8 | 1264 | RtlIsValidHandle@8 |
| 1057 | RtlIsValidIndexHandle@12 | 1265 | RtlIsValidIndexHandle@12 |
| 1058 | RtlIsValidLocaleName@8 | 1266 | RtlIsValidLocaleName@8 |
| 1267 | RtlIsValidProcessTrustLabelSid@4 | ||
| 1268 | RtlIsZeroMemory@8 | ||
| 1059 | RtlKnownExceptionFilter@4 | 1269 | RtlKnownExceptionFilter@4 |
| 1060 | RtlLCIDToCultureName@8 | 1270 | RtlLCIDToCultureName@8 |
| 1061 | RtlLargeIntegerAdd@16 | 1271 | RtlLargeIntegerAdd@16 |
| ... | @@ -1071,9 +1281,11 @@ RtlLeaveCriticalSection@4 | ... | @@ -1071,9 +1281,11 @@ RtlLeaveCriticalSection@4 |
| 1071 | RtlLengthRequiredSid@4 | 1281 | RtlLengthRequiredSid@4 |
| 1072 | RtlLengthSecurityDescriptor@4 | 1282 | RtlLengthSecurityDescriptor@4 |
| 1073 | RtlLengthSid@4 | 1283 | RtlLengthSid@4 |
| 1284 | RtlLengthSidAsUnicodeString@8 | ||
| 1074 | RtlLoadString@32 | 1285 | RtlLoadString@32 |
| 1075 | RtlLocalTimeToSystemTime@8 | 1286 | RtlLocalTimeToSystemTime@8 |
| 1076 | RtlLocaleNameToLcid@12 | 1287 | RtlLocaleNameToLcid@12 |
| 1288 | RtlLocateExtendedFeature2@16 | ||
| 1077 | RtlLocateExtendedFeature@12 | 1289 | RtlLocateExtendedFeature@12 |
| 1078 | RtlLocateLegacyContext@8 | 1290 | RtlLocateLegacyContext@8 |
| 1079 | RtlLockBootStatusData@4 | 1291 | RtlLockBootStatusData@4 |
| ... | @@ -1090,6 +1302,7 @@ RtlLookupElementGenericTableAvl@8 | ... | @@ -1090,6 +1302,7 @@ RtlLookupElementGenericTableAvl@8 |
| 1090 | RtlLookupElementGenericTableFull@16 | 1302 | RtlLookupElementGenericTableFull@16 |
| 1091 | RtlLookupElementGenericTableFullAvl@16 | 1303 | RtlLookupElementGenericTableFullAvl@16 |
| 1092 | RtlLookupEntryHashTable@12 | 1304 | RtlLookupEntryHashTable@12 |
| 1305 | RtlLookupFirstMatchingElementGenericTableAvl@12 | ||
| 1093 | RtlMakeSelfRelativeSD@12 | 1306 | RtlMakeSelfRelativeSD@12 |
| 1094 | RtlMapGenericMask@8 | 1307 | RtlMapGenericMask@8 |
| 1095 | RtlMapSecurityErrorToNtStatus@4 | 1308 | RtlMapSecurityErrorToNtStatus@4 |
| ... | @@ -1106,6 +1319,7 @@ RtlNewSecurityObject@24 | ... | @@ -1106,6 +1319,7 @@ RtlNewSecurityObject@24 |
| 1106 | RtlNewSecurityObjectEx@32 | 1319 | RtlNewSecurityObjectEx@32 |
| 1107 | RtlNewSecurityObjectWithMultipleInheritance@36 | 1320 | RtlNewSecurityObjectWithMultipleInheritance@36 |
| 1108 | RtlNormalizeProcessParams@4 | 1321 | RtlNormalizeProcessParams@4 |
| 1322 | RtlNormalizeSecurityDescriptor@20 | ||
| 1109 | RtlNormalizeString@20 | 1323 | RtlNormalizeString@20 |
| 1110 | RtlNtPathNameToDosPathName@16 | 1324 | RtlNtPathNameToDosPathName@16 |
| 1111 | RtlNtStatusToDosError@4 | 1325 | RtlNtStatusToDosError@4 |
| ... | @@ -1113,12 +1327,15 @@ RtlNtStatusToDosErrorNoTeb@4 | ... | @@ -1113,12 +1327,15 @@ RtlNtStatusToDosErrorNoTeb@4 |
| 1113 | RtlNumberGenericTableElements@4 | 1327 | RtlNumberGenericTableElements@4 |
| 1114 | RtlNumberGenericTableElementsAvl@4 | 1328 | RtlNumberGenericTableElementsAvl@4 |
| 1115 | RtlNumberOfClearBits@4 | 1329 | RtlNumberOfClearBits@4 |
| 1330 | RtlNumberOfClearBitsInRange@12 | ||
| 1116 | RtlNumberOfSetBits@4 | 1331 | RtlNumberOfSetBits@4 |
| 1332 | RtlNumberOfSetBitsInRange@12 | ||
| 1117 | RtlNumberOfSetBitsUlongPtr@4 | 1333 | RtlNumberOfSetBitsUlongPtr@4 |
| 1118 | RtlOemStringToUnicodeSize@4 | 1334 | RtlOemStringToUnicodeSize@4 |
| 1119 | RtlOemStringToUnicodeString@12 | 1335 | RtlOemStringToUnicodeString@12 |
| 1120 | RtlOemToUnicodeN@20 | 1336 | RtlOemToUnicodeN@20 |
| 1121 | RtlOpenCurrentUser@8 | 1337 | RtlOpenCurrentUser@8 |
| 1338 | RtlOsDeploymentState@4 | ||
| 1122 | RtlOwnerAcesPresent@4 | 1339 | RtlOwnerAcesPresent@4 |
| 1123 | RtlPcToFileHeader@8 | 1340 | RtlPcToFileHeader@8 |
| 1124 | RtlPinAtomInAtomTable@8 | 1341 | RtlPinAtomInAtomTable@8 |
| ... | @@ -1127,6 +1344,7 @@ RtlPrefixString@12 | ... | @@ -1127,6 +1344,7 @@ RtlPrefixString@12 |
| 1127 | RtlPrefixUnicodeString@12 | 1344 | RtlPrefixUnicodeString@12 |
| 1128 | RtlProcessFlsData@4 | 1345 | RtlProcessFlsData@4 |
| 1129 | RtlProtectHeap@8 | 1346 | RtlProtectHeap@8 |
| 1347 | RtlPublishWnfStateData@24 | ||
| 1130 | RtlPushFrame@4 | 1348 | RtlPushFrame@4 |
| 1131 | RtlQueryActivationContextApplicationSettings@28 | 1349 | RtlQueryActivationContextApplicationSettings@28 |
| 1132 | RtlQueryAtomInAtomTable@24 | 1350 | RtlQueryAtomInAtomTable@24 |
| ... | @@ -1137,39 +1355,60 @@ RtlQueryElevationFlags@4 | ... | @@ -1137,39 +1355,60 @@ RtlQueryElevationFlags@4 |
| 1137 | RtlQueryEnvironmentVariable@24 | 1355 | RtlQueryEnvironmentVariable@24 |
| 1138 | RtlQueryEnvironmentVariable_U@12 | 1356 | RtlQueryEnvironmentVariable_U@12 |
| 1139 | RtlQueryHeapInformation@20 | 1357 | RtlQueryHeapInformation@20 |
| 1358 | RtlQueryImageMitigationPolicy@20 | ||
| 1140 | RtlQueryInformationAcl@16 | 1359 | RtlQueryInformationAcl@16 |
| 1141 | RtlQueryInformationActivationContext@28 | 1360 | RtlQueryInformationActivationContext@28 |
| 1142 | RtlQueryInformationActiveActivationContext@16 | 1361 | RtlQueryInformationActiveActivationContext@16 |
| 1143 | RtlQueryInterfaceMemoryStream@12 | 1362 | RtlQueryInterfaceMemoryStream@12 |
| 1144 | RtlQueryModuleInformation@12 | 1363 | RtlQueryModuleInformation@12 |
| 1364 | RtlQueryPackageClaims@32 | ||
| 1365 | RtlQueryPackageIdentity@24 | ||
| 1366 | RtlQueryPackageIdentityEx@28 | ||
| 1145 | RtlQueryPerformanceCounter@4 | 1367 | RtlQueryPerformanceCounter@4 |
| 1146 | RtlQueryPerformanceFrequency@4 | 1368 | RtlQueryPerformanceFrequency@4 |
| 1147 | RtlQueryProcessBackTraceInformation@4 | 1369 | RtlQueryProcessBackTraceInformation@4 |
| 1148 | RtlQueryProcessDebugInformation@12 | 1370 | RtlQueryProcessDebugInformation@12 |
| 1149 | RtlQueryProcessHeapInformation@4 | 1371 | RtlQueryProcessHeapInformation@4 |
| 1150 | RtlQueryProcessLockInformation@4 | 1372 | RtlQueryProcessLockInformation@4 |
| 1373 | RtlQueryProcessPlaceholderCompatibilityMode@0 | ||
| 1374 | RtlQueryProtectedPolicy@8 | ||
| 1375 | RtlQueryRegistryValueWithFallback@28 | ||
| 1151 | RtlQueryRegistryValues@20 | 1376 | RtlQueryRegistryValues@20 |
| 1377 | RtlQueryRegistryValuesEx@20 | ||
| 1378 | RtlQueryResourcePolicy@16 | ||
| 1152 | RtlQuerySecurityObject@20 | 1379 | RtlQuerySecurityObject@20 |
| 1153 | RtlQueryTagHeap@20 | 1380 | RtlQueryTagHeap@20 |
| 1381 | RtlQueryThreadPlaceholderCompatibilityMode@0 | ||
| 1154 | RtlQueryThreadProfiling@8 | 1382 | RtlQueryThreadProfiling@8 |
| 1155 | RtlQueryTimeZoneInformation@4 | 1383 | RtlQueryTimeZoneInformation@4 |
| 1384 | RtlQueryTokenHostIdAsUlong64@8 | ||
| 1385 | RtlQueryUnbiasedInterruptTime@4 | ||
| 1386 | RtlQueryValidationRunlevel@4 | ||
| 1387 | RtlQueryWnfMetaNotification@20 | ||
| 1388 | RtlQueryWnfStateData@24 | ||
| 1389 | RtlQueryWnfStateDataWithExplicitScope@28 | ||
| 1156 | RtlQueueApcWow64Thread@20 | 1390 | RtlQueueApcWow64Thread@20 |
| 1157 | RtlQueueWorkItem@12 | 1391 | RtlQueueWorkItem@12 |
| 1392 | RtlRaiseCustomSystemEventTrigger@4 | ||
| 1158 | RtlRaiseException@4 | 1393 | RtlRaiseException@4 |
| 1159 | RtlRaiseStatus@4 | 1394 | RtlRaiseStatus@4 |
| 1160 | RtlRandom@4 | 1395 | RtlRandom@4 |
| 1161 | RtlRandomEx@4 | 1396 | RtlRandomEx@4 |
| 1397 | RtlRbInsertNodeEx@16 | ||
| 1398 | RtlRbRemoveNode@8 | ||
| 1162 | RtlReAllocateHeap@16 | 1399 | RtlReAllocateHeap@16 |
| 1163 | RtlReadMemoryStream@16 | 1400 | RtlReadMemoryStream@16 |
| 1164 | RtlReadOutOfProcessMemoryStream@16 | 1401 | RtlReadOutOfProcessMemoryStream@16 |
| 1165 | RtlReadThreadProfilingData@12 | 1402 | RtlReadThreadProfilingData@12 |
| 1166 | RtlRealPredecessor@4 | 1403 | RtlRealPredecessor@4 |
| 1167 | RtlRealSuccessor@4 | 1404 | RtlRealSuccessor@4 |
| 1405 | RtlRegisterForWnfMetaNotification@24 | ||
| 1168 | RtlRegisterSecureMemoryCacheCallback@4 | 1406 | RtlRegisterSecureMemoryCacheCallback@4 |
| 1169 | RtlRegisterThreadWithCsrss@0 | 1407 | RtlRegisterThreadWithCsrss@0 |
| 1170 | RtlRegisterWait@24 | 1408 | RtlRegisterWait@24 |
| 1171 | RtlReleaseActivationContext@4 | 1409 | RtlReleaseActivationContext@4 |
| 1172 | RtlReleaseMemoryStream@4 | 1410 | RtlReleaseMemoryStream@4 |
| 1411 | RtlReleasePath@4 | ||
| 1173 | RtlReleasePebLock@0 | 1412 | RtlReleasePebLock@0 |
| 1174 | RtlReleasePrivilege@4 | 1413 | RtlReleasePrivilege@4 |
| 1175 | RtlReleaseRelativeName@4 | 1414 | RtlReleaseRelativeName@4 |
| ... | @@ -1182,13 +1421,19 @@ RtlRemovePrivileges@12 | ... | @@ -1182,13 +1421,19 @@ RtlRemovePrivileges@12 |
| 1182 | RtlRemoveVectoredContinueHandler@4 | 1421 | RtlRemoveVectoredContinueHandler@4 |
| 1183 | RtlRemoveVectoredExceptionHandler@4 | 1422 | RtlRemoveVectoredExceptionHandler@4 |
| 1184 | RtlReplaceSidInSd@16 | 1423 | RtlReplaceSidInSd@16 |
| 1424 | RtlReplaceSystemDirectoryInPath@16 | ||
| 1185 | RtlReportException@12 | 1425 | RtlReportException@12 |
| 1426 | RtlReportExceptionEx@20 | ||
| 1186 | RtlReportSilentProcessExit@8 | 1427 | RtlReportSilentProcessExit@8 |
| 1187 | RtlReportSqmEscalation@24 | 1428 | RtlReportSqmEscalation@24 |
| 1188 | RtlResetMemoryBlockLookaside@4 | 1429 | RtlResetMemoryBlockLookaside@4 |
| 1189 | RtlResetMemoryZone@4 | 1430 | RtlResetMemoryZone@4 |
| 1431 | RtlResetNtUserPfn@0 | ||
| 1190 | RtlResetRtlTranslations@4 | 1432 | RtlResetRtlTranslations@4 |
| 1433 | RtlRestoreBootStatusDefaults@4 | ||
| 1191 | RtlRestoreLastWin32Error@4 | 1434 | RtlRestoreLastWin32Error@4 |
| 1435 | RtlRestoreSystemBootStatusDefaults@0 | ||
| 1436 | RtlRestoreThreadPreferredUILanguages@4 | ||
| 1192 | RtlRetrieveNtUserPfn@12 | 1437 | RtlRetrieveNtUserPfn@12 |
| 1193 | RtlRevertMemoryStream@4 | 1438 | RtlRevertMemoryStream@4 |
| 1194 | RtlRunDecodeUnicodeString@8 | 1439 | RtlRunDecodeUnicodeString@8 |
| ... | @@ -1205,6 +1450,7 @@ RtlSelfRelativeToAbsoluteSD@44 | ... | @@ -1205,6 +1450,7 @@ RtlSelfRelativeToAbsoluteSD@44 |
| 1205 | RtlSendMsgToSm@8 | 1450 | RtlSendMsgToSm@8 |
| 1206 | RtlSetAllBits@4 | 1451 | RtlSetAllBits@4 |
| 1207 | RtlSetAttributesSecurityDescriptor@12 | 1452 | RtlSetAttributesSecurityDescriptor@12 |
| 1453 | RtlSetBit@8 | ||
| 1208 | RtlSetBits@12 | 1454 | RtlSetBits@12 |
| 1209 | RtlSetControlSecurityDescriptor@12 | 1455 | RtlSetControlSecurityDescriptor@12 |
| 1210 | RtlSetCriticalSectionSpinCount@8 | 1456 | RtlSetCriticalSectionSpinCount@8 |
| ... | @@ -1219,23 +1465,35 @@ RtlSetEnvironmentVariable@12 | ... | @@ -1219,23 +1465,35 @@ RtlSetEnvironmentVariable@12 |
| 1219 | RtlSetExtendedFeaturesMask@12 | 1465 | RtlSetExtendedFeaturesMask@12 |
| 1220 | RtlSetGroupSecurityDescriptor@12 | 1466 | RtlSetGroupSecurityDescriptor@12 |
| 1221 | RtlSetHeapInformation@16 | 1467 | RtlSetHeapInformation@16 |
| 1468 | RtlSetImageMitigationPolicy@20 | ||
| 1222 | RtlSetInformationAcl@16 | 1469 | RtlSetInformationAcl@16 |
| 1223 | RtlSetIoCompletionCallback@12 | 1470 | RtlSetIoCompletionCallback@12 |
| 1224 | RtlSetLastWin32Error@4 | 1471 | RtlSetLastWin32Error@4 |
| 1225 | RtlSetLastWin32ErrorAndNtStatusFromNtStatus@4 | 1472 | RtlSetLastWin32ErrorAndNtStatusFromNtStatus@4 |
| 1226 | RtlSetMemoryStreamSize@12 | 1473 | RtlSetMemoryStreamSize@12 |
| 1227 | RtlSetOwnerSecurityDescriptor@12 | 1474 | RtlSetOwnerSecurityDescriptor@12 |
| 1475 | RtlSetPortableOperatingSystem@4 | ||
| 1228 | RtlSetProcessDebugInformation@12 | 1476 | RtlSetProcessDebugInformation@12 |
| 1229 | RtlSetProcessIsCritical@0 | 1477 | RtlSetProcessIsCritical@0 |
| 1478 | RtlSetProcessPlaceholderCompatibilityMode@4 | ||
| 1230 | RtlSetProcessPreferredUILanguages@12 | 1479 | RtlSetProcessPreferredUILanguages@12 |
| 1480 | RtlSetProtectedPolicy@12 | ||
| 1481 | RtlSetProxiedProcessId@4 | ||
| 1231 | RtlSetSaclSecurityDescriptor@16 | 1482 | RtlSetSaclSecurityDescriptor@16 |
| 1483 | RtlSetSearchPathMode@4 | ||
| 1232 | RtlSetSecurityDescriptorRMControl@8 | 1484 | RtlSetSecurityDescriptorRMControl@8 |
| 1233 | RtlSetSecurityObject@20 | 1485 | RtlSetSecurityObject@20 |
| 1234 | RtlSetSecurityObjectEx@24 | 1486 | RtlSetSecurityObjectEx@24 |
| 1487 | RtlSetSystemBootStatus@16 | ||
| 1488 | RtlSetSystemBootStatusEx@12 | ||
| 1235 | RtlSetThreadErrorMode@8 | 1489 | RtlSetThreadErrorMode@8 |
| 1236 | RtlSetThreadIsCritical@0 | 1490 | RtlSetThreadIsCritical@0 |
| 1491 | RtlSetThreadPlaceholderCompatibilityMode@4 | ||
| 1237 | RtlSetThreadPoolStartFunc@8 | 1492 | RtlSetThreadPoolStartFunc@8 |
| 1493 | RtlSetThreadPreferredUILanguages2@16 | ||
| 1238 | RtlSetThreadPreferredUILanguages@12 | 1494 | RtlSetThreadPreferredUILanguages@12 |
| 1495 | RtlSetThreadSubProcessTag@4 | ||
| 1496 | RtlSetThreadWorkOnBehalfTicket@4 | ||
| 1239 | RtlSetTimeZoneInformation@4 | 1497 | RtlSetTimeZoneInformation@4 |
| 1240 | RtlSetTimer@28 | 1498 | RtlSetTimer@28 |
| 1241 | RtlSetUnhandledExceptionFilter@4 | 1499 | RtlSetUnhandledExceptionFilter@4 |
| ... | @@ -1244,6 +1502,7 @@ RtlSetUserFlagsHeap@20 | ... | @@ -1244,6 +1502,7 @@ RtlSetUserFlagsHeap@20 |
| 1244 | RtlSetUserValueHeap@16 | 1502 | RtlSetUserValueHeap@16 |
| 1245 | RtlShutdownLpcServer@4 | 1503 | RtlShutdownLpcServer@4 |
| 1246 | RtlSidDominates@12 | 1504 | RtlSidDominates@12 |
| 1505 | RtlSidDominatesForTrust@12 | ||
| 1247 | RtlSidEqualLevel@12 | 1506 | RtlSidEqualLevel@12 |
| 1248 | RtlSidHashInitialize@12 | 1507 | RtlSidHashInitialize@12 |
| 1249 | RtlSidHashLookup@8 | 1508 | RtlSidHashLookup@8 |
| ... | @@ -1255,12 +1514,18 @@ RtlSplay@4 | ... | @@ -1255,12 +1514,18 @@ RtlSplay@4 |
| 1255 | RtlStartRXact@4 | 1514 | RtlStartRXact@4 |
| 1256 | RtlStatMemoryStream@12 | 1515 | RtlStatMemoryStream@12 |
| 1257 | RtlStringFromGUID@8 | 1516 | RtlStringFromGUID@8 |
| 1517 | RtlStringFromGUIDEx@12 | ||
| 1518 | RtlStronglyEnumerateEntryHashTable@8 | ||
| 1258 | RtlSubAuthorityCountSid@4 | 1519 | RtlSubAuthorityCountSid@4 |
| 1259 | RtlSubAuthoritySid@8 | 1520 | RtlSubAuthoritySid@8 |
| 1521 | RtlSubscribeWnfStateChangeNotification@36 | ||
| 1260 | RtlSubtreePredecessor@4 | 1522 | RtlSubtreePredecessor@4 |
| 1261 | RtlSubtreeSuccessor@4 | 1523 | RtlSubtreeSuccessor@4 |
| 1524 | RtlSwitchedVVI@16 | ||
| 1262 | RtlSystemTimeToLocalTime@8 | 1525 | RtlSystemTimeToLocalTime@8 |
| 1526 | RtlTestAndPublishWnfStateData@28 | ||
| 1263 | RtlTestBit@8 | 1527 | RtlTestBit@8 |
| 1528 | RtlTestProtectedAccess@8 | ||
| 1264 | RtlTimeFieldsToTime@8 | 1529 | RtlTimeFieldsToTime@8 |
| 1265 | RtlTimeToElapsedTimeFields@8 | 1530 | RtlTimeToElapsedTimeFields@8 |
| 1266 | RtlTimeToSecondsSince1970@8 | 1531 | RtlTimeToSecondsSince1970@8 |
| ... | @@ -1277,8 +1542,11 @@ RtlTraceDatabaseValidate@4 | ... | @@ -1277,8 +1542,11 @@ RtlTraceDatabaseValidate@4 |
| 1277 | RtlTryAcquirePebLock@0 | 1542 | RtlTryAcquirePebLock@0 |
| 1278 | RtlTryAcquireSRWLockExclusive@4 | 1543 | RtlTryAcquireSRWLockExclusive@4 |
| 1279 | RtlTryAcquireSRWLockShared@4 | 1544 | RtlTryAcquireSRWLockShared@4 |
| 1545 | RtlTryConvertSRWLockSharedToExclusiveOrRelease@4 | ||
| 1280 | RtlTryEnterCriticalSection@4 | 1546 | RtlTryEnterCriticalSection@4 |
| 1547 | RtlUTF8StringToUnicodeString@12 | ||
| 1281 | RtlUTF8ToUnicodeN@20 | 1548 | RtlUTF8ToUnicodeN@20 |
| 1549 | RtlUdiv128@28 | ||
| 1282 | RtlUnhandledExceptionFilter2@8 | 1550 | RtlUnhandledExceptionFilter2@8 |
| 1283 | RtlUnhandledExceptionFilter@4 | 1551 | RtlUnhandledExceptionFilter@4 |
| 1284 | RtlUnicodeStringToAnsiSize@4 | 1552 | RtlUnicodeStringToAnsiSize@4 |
| ... | @@ -1287,6 +1555,7 @@ RtlUnicodeStringToCountedOemString@12 | ... | @@ -1287,6 +1555,7 @@ RtlUnicodeStringToCountedOemString@12 |
| 1287 | RtlUnicodeStringToInteger@12 | 1555 | RtlUnicodeStringToInteger@12 |
| 1288 | RtlUnicodeStringToOemSize@4 | 1556 | RtlUnicodeStringToOemSize@4 |
| 1289 | RtlUnicodeStringToOemString@12 | 1557 | RtlUnicodeStringToOemString@12 |
| 1558 | RtlUnicodeStringToUTF8String@12 | ||
| 1290 | RtlUnicodeToCustomCPN@24 | 1559 | RtlUnicodeToCustomCPN@24 |
| 1291 | RtlUnicodeToMultiByteN@20 | 1560 | RtlUnicodeToMultiByteN@20 |
| 1292 | RtlUnicodeToMultiByteSize@12 | 1561 | RtlUnicodeToMultiByteSize@12 |
| ... | @@ -1300,6 +1569,9 @@ RtlUnlockMemoryBlockLookaside@4 | ... | @@ -1300,6 +1569,9 @@ RtlUnlockMemoryBlockLookaside@4 |
| 1300 | RtlUnlockMemoryStreamRegion@24 | 1569 | RtlUnlockMemoryStreamRegion@24 |
| 1301 | RtlUnlockMemoryZone@4 | 1570 | RtlUnlockMemoryZone@4 |
| 1302 | RtlUnlockModuleSection@4 | 1571 | RtlUnlockModuleSection@4 |
| 1572 | RtlUnsubscribeWnfNotificationWaitForCompletion@4 | ||
| 1573 | RtlUnsubscribeWnfNotificationWithCompletionCallback@12 | ||
| 1574 | RtlUnsubscribeWnfStateChangeNotification@4 | ||
| 1303 | RtlUnwind@16 | 1575 | RtlUnwind@16 |
| 1304 | RtlUpcaseUnicodeChar@4 | 1576 | RtlUpcaseUnicodeChar@4 |
| 1305 | RtlUpcaseUnicodeString@12 | 1577 | RtlUpcaseUnicodeString@12 |
| ... | @@ -1318,22 +1590,37 @@ RtlUsageHeap@12 | ... | @@ -1318,22 +1590,37 @@ RtlUsageHeap@12 |
| 1318 | ; Not sure. | 1590 | ; Not sure. |
| 1319 | RtlUserThreadStart | 1591 | RtlUserThreadStart |
| 1320 | RtlValidAcl@4 | 1592 | RtlValidAcl@4 |
| 1593 | RtlValidProcessProtection@4 | ||
| 1321 | RtlValidRelativeSecurityDescriptor@12 | 1594 | RtlValidRelativeSecurityDescriptor@12 |
| 1322 | RtlValidSecurityDescriptor@4 | 1595 | RtlValidSecurityDescriptor@4 |
| 1323 | RtlValidSid@4 | 1596 | RtlValidSid@4 |
| 1597 | RtlValidateCorrelationVector@4 | ||
| 1324 | RtlValidateHeap@12 | 1598 | RtlValidateHeap@12 |
| 1325 | RtlValidateProcessHeaps@0 | 1599 | RtlValidateProcessHeaps@0 |
| 1326 | RtlValidateUnicodeString@8 | 1600 | RtlValidateUnicodeString@8 |
| 1327 | RtlVerifyVersionInfo@16 | 1601 | RtlVerifyVersionInfo@16 |
| 1602 | RtlWaitForWnfMetaNotification@24 | ||
| 1603 | RtlWaitOnAddress@16 | ||
| 1604 | RtlWakeAddressAll@4 | ||
| 1605 | RtlWakeAddressAllNoFence@4 | ||
| 1606 | RtlWakeAddressSingle@4 | ||
| 1607 | RtlWakeAddressSingleNoFence@4 | ||
| 1328 | RtlWakeAllConditionVariable@4 | 1608 | RtlWakeAllConditionVariable@4 |
| 1329 | RtlWakeConditionVariable@4 | 1609 | RtlWakeConditionVariable@4 |
| 1330 | RtlWalkFrameChain@12 | 1610 | RtlWalkFrameChain@12 |
| 1331 | RtlWalkHeap@8 | 1611 | RtlWalkHeap@8 |
| 1332 | RtlWeaklyEnumerateEntryHashTable@8 | 1612 | RtlWeaklyEnumerateEntryHashTable@8 |
| 1333 | RtlWerpReportException@16 | 1613 | RtlWerpReportException@16 |
| 1614 | RtlWnfCompareChangeStamp@8 | ||
| 1615 | RtlWnfDllUnloadCallback@4 | ||
| 1334 | RtlWow64CallFunction64@28 | 1616 | RtlWow64CallFunction64@28 |
| 1335 | RtlWow64EnableFsRedirection@4 | 1617 | RtlWow64EnableFsRedirection@4 |
| 1336 | RtlWow64EnableFsRedirectionEx@8 | 1618 | RtlWow64EnableFsRedirectionEx@8 |
| 1619 | RtlWow64GetCurrentMachine@0 | ||
| 1620 | RtlWow64GetEquivalentMachineCHPE@4 | ||
| 1621 | RtlWow64GetProcessMachines@12 | ||
| 1622 | RtlWow64GetSharedInfoProcess@12 | ||
| 1623 | RtlWow64IsWowGuestMachineSupported@8 | ||
| 1337 | RtlWow64LogMessageInEventLogger@12 | 1624 | RtlWow64LogMessageInEventLogger@12 |
| 1338 | RtlWriteMemoryStream@16 | 1625 | RtlWriteMemoryStream@16 |
| 1339 | RtlWriteRegistryValue@24 | 1626 | RtlWriteRegistryValue@24 |
| ... | @@ -1343,10 +1630,14 @@ RtlZombifyActivationContext@4 | ... | @@ -1343,10 +1630,14 @@ RtlZombifyActivationContext@4 |
| 1343 | RtlpApplyLengthFunction@16 | 1630 | RtlpApplyLengthFunction@16 |
| 1344 | RtlpCheckDynamicTimeZoneInformation@8 | 1631 | RtlpCheckDynamicTimeZoneInformation@8 |
| 1345 | RtlpCleanupRegistryKeys@0 | 1632 | RtlpCleanupRegistryKeys@0 |
| 1633 | RtlpConvertAbsoluteToRelativeSecurityAttribute@12 | ||
| 1346 | RtlpConvertCultureNamesToLCIDs@8 | 1634 | RtlpConvertCultureNamesToLCIDs@8 |
| 1347 | RtlpConvertLCIDsToCultureNames@8 | 1635 | RtlpConvertLCIDsToCultureNames@8 |
| 1636 | RtlpConvertRelativeToAbsoluteSecurityAttribute@16 | ||
| 1348 | RtlpCreateProcessRegistryInfo@4 | 1637 | RtlpCreateProcessRegistryInfo@4 |
| 1349 | RtlpEnsureBufferSize@12 | 1638 | RtlpEnsureBufferSize@12 |
| 1639 | RtlpFreezeTimeBias@0 | ||
| 1640 | RtlpGetDeviceFamilyInfoEnum@12 | ||
| 1350 | RtlpGetLCIDFromLangInfoNode@12 | 1641 | RtlpGetLCIDFromLangInfoNode@12 |
| 1351 | RtlpGetNameFromLangInfoNode@12 | 1642 | RtlpGetNameFromLangInfoNode@12 |
| 1352 | RtlpGetSystemDefaultUILanguage@4 ; Check!!! gendef says @8 | 1643 | RtlpGetSystemDefaultUILanguage@4 ; Check!!! gendef says @8 |
| ... | @@ -1355,6 +1646,7 @@ RtlpInitializeLangRegistryInfo@4 | ... | @@ -1355,6 +1646,7 @@ RtlpInitializeLangRegistryInfo@4 |
| 1355 | RtlpIsQualifiedLanguage@12 | 1646 | RtlpIsQualifiedLanguage@12 |
| 1356 | RtlpLoadMachineUIByPolicy@12 | 1647 | RtlpLoadMachineUIByPolicy@12 |
| 1357 | RtlpLoadUserUIByPolicy@12 | 1648 | RtlpLoadUserUIByPolicy@12 |
| 1649 | RtlpMergeSecurityAttributeInformation@16 | ||
| 1358 | RtlpMuiFreeLangRegistryInfo@4 | 1650 | RtlpMuiFreeLangRegistryInfo@4 |
| 1359 | RtlpMuiRegCreateRegistryInfo@0 | 1651 | RtlpMuiRegCreateRegistryInfo@0 |
| 1360 | RtlpMuiRegFreeRegistryInfo@8 | 1652 | RtlpMuiRegFreeRegistryInfo@8 |
| ... | @@ -1373,6 +1665,8 @@ RtlpRefreshCachedUILanguage@8 | ... | @@ -1373,6 +1665,8 @@ RtlpRefreshCachedUILanguage@8 |
| 1373 | RtlpSetInstallLanguage@8 | 1665 | RtlpSetInstallLanguage@8 |
| 1374 | RtlpSetPreferredUILanguages@12 | 1666 | RtlpSetPreferredUILanguages@12 |
| 1375 | RtlpSetUserPreferredUILanguages@12 | 1667 | RtlpSetUserPreferredUILanguages@12 |
| 1668 | RtlpTimeFieldsToTime@12 | ||
| 1669 | RtlpTimeToTimeFields@12 | ||
| 1376 | RtlpUnWaitCriticalSection@4 | 1670 | RtlpUnWaitCriticalSection@4 |
| 1377 | RtlpVerifyAndCommitUILanguageSettings@4 | 1671 | RtlpVerifyAndCommitUILanguageSettings@4 |
| 1378 | RtlpWaitForCriticalSection@4 | 1672 | RtlpWaitForCriticalSection@4 |
| ... | @@ -1390,17 +1684,21 @@ TpAllocAlpcCompletion@20 | ... | @@ -1390,17 +1684,21 @@ TpAllocAlpcCompletion@20 |
| 1390 | TpAllocAlpcCompletionEx@20 | 1684 | TpAllocAlpcCompletionEx@20 |
| 1391 | TpAllocCleanupGroup@4 | 1685 | TpAllocCleanupGroup@4 |
| 1392 | TpAllocIoCompletion@20 | 1686 | TpAllocIoCompletion@20 |
| 1687 | TpAllocJobNotification@20 | ||
| 1393 | TpAllocPool@8 | 1688 | TpAllocPool@8 |
| 1394 | TpAllocTimer@16 | 1689 | TpAllocTimer@16 |
| 1395 | TpAllocWait@16 | 1690 | TpAllocWait@16 |
| 1396 | TpAllocWork@16 | 1691 | TpAllocWork@16 |
| 1397 | TpAlpcRegisterCompletionList@4 | 1692 | TpAlpcRegisterCompletionList@4 |
| 1398 | TpAlpcUnregisterCompletionList@4 | 1693 | TpAlpcUnregisterCompletionList@4 |
| 1694 | TpCallbackDetectedUnrecoverableError@4 | ||
| 1399 | TpCallbackIndependent@4 | 1695 | TpCallbackIndependent@4 |
| 1400 | TpCallbackLeaveCriticalSectionOnCompletion@8 | 1696 | TpCallbackLeaveCriticalSectionOnCompletion@8 |
| 1401 | TpCallbackMayRunLong@4 | 1697 | TpCallbackMayRunLong@4 |
| 1402 | TpCallbackReleaseMutexOnCompletion@8 | 1698 | TpCallbackReleaseMutexOnCompletion@8 |
| 1403 | TpCallbackReleaseSemaphoreOnCompletion@12 | 1699 | TpCallbackReleaseSemaphoreOnCompletion@12 |
| 1700 | TpCallbackSendAlpcMessageOnCompletion@16 | ||
| 1701 | TpCallbackSendPendingAlpcMessage@4 | ||
| 1404 | TpCallbackSetEventOnCompletion@8 | 1702 | TpCallbackSetEventOnCompletion@8 |
| 1405 | TpCallbackUnloadDllOnCompletion@8 | 1703 | TpCallbackUnloadDllOnCompletion@8 |
| 1406 | TpCancelAsyncIoOperation@4 | 1704 | TpCancelAsyncIoOperation@4 |
| ... | @@ -1419,6 +1717,7 @@ TpReleaseAlpcCompletion@4 | ... | @@ -1419,6 +1717,7 @@ TpReleaseAlpcCompletion@4 |
| 1419 | TpReleaseCleanupGroup@4 | 1717 | TpReleaseCleanupGroup@4 |
| 1420 | TpReleaseCleanupGroupMembers@12 | 1718 | TpReleaseCleanupGroupMembers@12 |
| 1421 | TpReleaseIoCompletion@4 | 1719 | TpReleaseIoCompletion@4 |
| 1720 | TpReleaseJobNotification@4 | ||
| 1422 | TpReleasePool@4 | 1721 | TpReleasePool@4 |
| 1423 | TpReleaseTimer@4 | 1722 | TpReleaseTimer@4 |
| 1424 | TpReleaseWait@4 | 1723 | TpReleaseWait@4 |
| ... | @@ -1426,19 +1725,29 @@ TpReleaseWork@4 | ... | @@ -1426,19 +1725,29 @@ TpReleaseWork@4 |
| 1426 | TpSetDefaultPoolMaxThreads@4 | 1725 | TpSetDefaultPoolMaxThreads@4 |
| 1427 | TpSetDefaultPoolStackInformation@4 | 1726 | TpSetDefaultPoolStackInformation@4 |
| 1428 | TpSetPoolMaxThreads@8 | 1727 | TpSetPoolMaxThreads@8 |
| 1728 | TpSetPoolMaxThreadsSoftLimit@8 | ||
| 1429 | TpSetPoolMinThreads@8 | 1729 | TpSetPoolMinThreads@8 |
| 1430 | TpSetPoolStackInformation@8 | 1730 | TpSetPoolStackInformation@8 |
| 1731 | TpSetPoolThreadBasePriority@8 | ||
| 1732 | TpSetPoolThreadCpuSets@12 | ||
| 1733 | TpSetPoolWorkerThreadIdleTimeout@12 | ||
| 1431 | TpSetTimer@16 | 1734 | TpSetTimer@16 |
| 1735 | TpSetTimerEx@16 | ||
| 1432 | TpSetWait@12 | 1736 | TpSetWait@12 |
| 1737 | TpSetWaitEx@16 | ||
| 1433 | TpSimpleTryPost@12 | 1738 | TpSimpleTryPost@12 |
| 1434 | TpStartAsyncIoOperation@4 | 1739 | TpStartAsyncIoOperation@4 |
| 1740 | TpTimerOutstandingCallbackCount@4 | ||
| 1741 | TpTrimPools@0 | ||
| 1435 | TpWaitForAlpcCompletion@4 | 1742 | TpWaitForAlpcCompletion@4 |
| 1436 | TpWaitForIoCompletion@8 | 1743 | TpWaitForIoCompletion@8 |
| 1744 | TpWaitForJobNotification@4 | ||
| 1437 | TpWaitForTimer@8 | 1745 | TpWaitForTimer@8 |
| 1438 | TpWaitForWait@8 | 1746 | TpWaitForWait@8 |
| 1439 | TpWaitForWork@8 | 1747 | TpWaitForWork@8 |
| 1440 | VerSetConditionMask@16 | 1748 | VerSetConditionMask@16 |
| 1441 | WerCheckEventEscalation@8 | 1749 | WerCheckEventEscalation@8 |
| 1750 | WerReportExceptionWorker@4 | ||
| 1442 | WerReportSQMEvent@12 | 1751 | WerReportSQMEvent@12 |
| 1443 | WerReportWatsonEvent@16 | 1752 | WerReportWatsonEvent@16 |
| 1444 | WerReportSQMEvent@16 | 1753 | WerReportSQMEvent@16 |
| ... | @@ -1462,6 +1771,7 @@ WinSqmGetInstrumentationProperty@16 | ... | @@ -1462,6 +1771,7 @@ WinSqmGetInstrumentationProperty@16 |
| 1462 | WinSqmIncrementDWORD@12 | 1771 | WinSqmIncrementDWORD@12 |
| 1463 | WinSqmIsOptedIn@0 | 1772 | WinSqmIsOptedIn@0 |
| 1464 | WinSqmIsOptedInEx@4 | 1773 | WinSqmIsOptedInEx@4 |
| 1774 | WinSqmIsSessionDisabled@4 | ||
| 1465 | WinSqmSetDWORD64@16 | 1775 | WinSqmSetDWORD64@16 |
| 1466 | WinSqmSetDWORD@12 | 1776 | WinSqmSetDWORD@12 |
| 1467 | WinSqmSetEscalationInfo@16 | 1777 | WinSqmSetEscalationInfo@16 |
| ... | @@ -1469,6 +1779,8 @@ WinSqmSetIfMaxDWORD@12 | ... | @@ -1469,6 +1779,8 @@ WinSqmSetIfMaxDWORD@12 |
| 1469 | WinSqmSetIfMinDWORD@12 | 1779 | WinSqmSetIfMinDWORD@12 |
| 1470 | WinSqmSetString@12 | 1780 | WinSqmSetString@12 |
| 1471 | WinSqmStartSession@12 | 1781 | WinSqmStartSession@12 |
| 1782 | WinSqmStartSessionForPartner@16 | ||
| 1783 | WinSqmStartSqmOptinListener@0 | ||
| 1472 | ZwAcceptConnectPort@24 | 1784 | ZwAcceptConnectPort@24 |
| 1473 | ZwAccessCheck@32 | 1785 | ZwAccessCheck@32 |
| 1474 | ZwAccessCheckAndAuditAlarm@44 | 1786 | ZwAccessCheckAndAuditAlarm@44 |
| ... | @@ -1478,21 +1790,28 @@ ZwAccessCheckByTypeResultList@44 | ... | @@ -1478,21 +1790,28 @@ ZwAccessCheckByTypeResultList@44 |
| 1478 | ZwAccessCheckByTypeResultListAndAuditAlarm@64 | 1790 | ZwAccessCheckByTypeResultListAndAuditAlarm@64 |
| 1479 | ZwAccessCheckByTypeResultListAndAuditAlarmByHandle@68 | 1791 | ZwAccessCheckByTypeResultListAndAuditAlarmByHandle@68 |
| 1480 | ZwAcquireCMFViewOwnership@12 | 1792 | ZwAcquireCMFViewOwnership@12 |
| 1793 | ZwAcquireProcessActivityReference@12 | ||
| 1481 | ZwAddAtom@12 | 1794 | ZwAddAtom@12 |
| 1795 | ZwAddAtomEx@16 | ||
| 1482 | ZwAddBootEntry@8 | 1796 | ZwAddBootEntry@8 |
| 1483 | ZwAddDriverEntry@8 | 1797 | ZwAddDriverEntry@8 |
| 1484 | ZwAdjustGroupsToken@24 | 1798 | ZwAdjustGroupsToken@24 |
| 1485 | ZwAdjustPrivilegesToken@24 | 1799 | ZwAdjustPrivilegesToken@24 |
| 1800 | ZwAdjustTokenClaimsAndDeviceGroups@64 | ||
| 1486 | ZwAlertResumeThread@8 | 1801 | ZwAlertResumeThread@8 |
| 1487 | ZwAlertThread@4 | 1802 | ZwAlertThread@4 |
| 1803 | ZwAlertThreadByThreadId@4 | ||
| 1488 | ZwAllocateLocallyUniqueId@4 | 1804 | ZwAllocateLocallyUniqueId@4 |
| 1489 | ZwAllocateReserveObject@12 | 1805 | ZwAllocateReserveObject@12 |
| 1490 | ZwAllocateUserPhysicalPages@12 | 1806 | ZwAllocateUserPhysicalPages@12 |
| 1807 | ZwAllocateUserPhysicalPagesEx@20 | ||
| 1491 | ZwAllocateUuids@16 | 1808 | ZwAllocateUuids@16 |
| 1492 | ZwAllocateVirtualMemory@24 | 1809 | ZwAllocateVirtualMemory@24 |
| 1810 | ZwAllocateVirtualMemoryEx@28 | ||
| 1493 | ZwAlpcAcceptConnectPort@36 | 1811 | ZwAlpcAcceptConnectPort@36 |
| 1494 | ZwAlpcCancelMessage@12 | 1812 | ZwAlpcCancelMessage@12 |
| 1495 | ZwAlpcConnectPort@44 | 1813 | ZwAlpcConnectPort@44 |
| 1814 | ZwAlpcConnectPortEx@44 | ||
| 1496 | ZwAlpcCreatePort@12 | 1815 | ZwAlpcCreatePort@12 |
| 1497 | ZwAlpcCreatePortSection@24 | 1816 | ZwAlpcCreatePortSection@24 |
| 1498 | ZwAlpcCreateResourceReserve@16 | 1817 | ZwAlpcCreateResourceReserve@16 |
| ... | @@ -1503,6 +1822,7 @@ ZwAlpcDeleteResourceReserve@12 | ... | @@ -1503,6 +1822,7 @@ ZwAlpcDeleteResourceReserve@12 |
| 1503 | ZwAlpcDeleteSectionView@12 | 1822 | ZwAlpcDeleteSectionView@12 |
| 1504 | ZwAlpcDeleteSecurityContext@12 | 1823 | ZwAlpcDeleteSecurityContext@12 |
| 1505 | ZwAlpcDisconnectPort@8 | 1824 | ZwAlpcDisconnectPort@8 |
| 1825 | ZwAlpcImpersonateClientContainerOfPort@12 | ||
| 1506 | ZwAlpcImpersonateClientOfPort@12 | 1826 | ZwAlpcImpersonateClientOfPort@12 |
| 1507 | ZwAlpcOpenSenderProcess@24 | 1827 | ZwAlpcOpenSenderProcess@24 |
| 1508 | ZwAlpcOpenSenderThread@24 | 1828 | ZwAlpcOpenSenderThread@24 |
| ... | @@ -1514,58 +1834,78 @@ ZwAlpcSetInformation@16 | ... | @@ -1514,58 +1834,78 @@ ZwAlpcSetInformation@16 |
| 1514 | ZwApphelpCacheControl@8 | 1834 | ZwApphelpCacheControl@8 |
| 1515 | ZwAreMappedFilesTheSame@8 | 1835 | ZwAreMappedFilesTheSame@8 |
| 1516 | ZwAssignProcessToJobObject@8 | 1836 | ZwAssignProcessToJobObject@8 |
| 1837 | ZwAssociateWaitCompletionPacket@32 | ||
| 1838 | ZwCallEnclave@16 | ||
| 1517 | ZwCallbackReturn@12 | 1839 | ZwCallbackReturn@12 |
| 1518 | ZwCancelDeviceWakeupRequest@4 | 1840 | ZwCancelDeviceWakeupRequest@4 |
| 1519 | ZwCancelIoFile@8 | 1841 | ZwCancelIoFile@8 |
| 1520 | ZwCancelIoFileEx@12 | 1842 | ZwCancelIoFileEx@12 |
| 1521 | ZwCancelSynchronousIoFile@12 | 1843 | ZwCancelSynchronousIoFile@12 |
| 1844 | ZwCancelTimer2@8 | ||
| 1522 | ZwCancelTimer@8 | 1845 | ZwCancelTimer@8 |
| 1846 | ZwCancelWaitCompletionPacket@8 | ||
| 1523 | ZwClearEvent@4 | 1847 | ZwClearEvent@4 |
| 1524 | ZwClose@4 | 1848 | ZwClose@4 |
| 1525 | ZwCloseObjectAuditAlarm@12 | 1849 | ZwCloseObjectAuditAlarm@12 |
| 1526 | ZwCommitComplete@8 | 1850 | ZwCommitComplete@8 |
| 1527 | ZwCommitEnlistment@8 | 1851 | ZwCommitEnlistment@8 |
| 1852 | ZwCommitRegistryTransaction@8 | ||
| 1528 | ZwCommitTransaction@8 | 1853 | ZwCommitTransaction@8 |
| 1529 | ZwCompactKeys@8 | 1854 | ZwCompactKeys@8 |
| 1855 | ZwCompareObjects@8 | ||
| 1856 | ZwCompareSigningLevels@8 | ||
| 1530 | ZwCompareTokens@12 | 1857 | ZwCompareTokens@12 |
| 1531 | ZwCompleteConnectPort@4 | 1858 | ZwCompleteConnectPort@4 |
| 1532 | ZwCompressKey@4 | 1859 | ZwCompressKey@4 |
| 1533 | ZwConnectPort@32 | 1860 | ZwConnectPort@32 |
| 1534 | ZwContinue@8 | 1861 | ZwContinue@8 |
| 1862 | ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter@16 | ||
| 1863 | ZwCreateCrossVmEvent@24 | ||
| 1535 | ZwCreateDebugObject@16 | 1864 | ZwCreateDebugObject@16 |
| 1536 | ZwCreateDirectoryObject@12 | 1865 | ZwCreateDirectoryObject@12 |
| 1866 | ZwCreateDirectoryObjectEx@20 | ||
| 1867 | ZwCreateEnclave@36 | ||
| 1537 | ZwCreateEnlistment@32 | 1868 | ZwCreateEnlistment@32 |
| 1538 | ZwCreateEvent@20 | 1869 | ZwCreateEvent@20 |
| 1539 | ZwCreateEventPair@12 | 1870 | ZwCreateEventPair@12 |
| 1540 | ZwCreateFile@44 | 1871 | ZwCreateFile@44 |
| 1872 | ZwCreateIRTimer@12 | ||
| 1541 | ZwCreateIoCompletion@16 | 1873 | ZwCreateIoCompletion@16 |
| 1542 | ZwCreateJobObject@12 | 1874 | ZwCreateJobObject@12 |
| 1543 | ZwCreateJobSet@12 | 1875 | ZwCreateJobSet@12 |
| 1544 | ZwCreateKey@28 | 1876 | ZwCreateKey@28 |
| 1545 | ZwCreateKeyTransacted@32 | 1877 | ZwCreateKeyTransacted@32 |
| 1546 | ZwCreateKeyedEvent@16 | 1878 | ZwCreateKeyedEvent@16 |
| 1879 | ZwCreateLowBoxToken@36 | ||
| 1547 | ZwCreateMailslotFile@32 | 1880 | ZwCreateMailslotFile@32 |
| 1548 | ZwCreateMutant@16 | 1881 | ZwCreateMutant@16 |
| 1549 | ZwCreateNamedPipeFile@56 | 1882 | ZwCreateNamedPipeFile@56 |
| 1550 | ZwCreatePagingFile@16 | 1883 | ZwCreatePagingFile@16 |
| 1884 | ZwCreatePartition@16 | ||
| 1551 | ZwCreatePort@20 | 1885 | ZwCreatePort@20 |
| 1552 | ZwCreatePrivateNamespace@16 | 1886 | ZwCreatePrivateNamespace@16 |
| 1553 | ZwCreateProcess@32 | 1887 | ZwCreateProcess@32 |
| 1554 | ZwCreateProcessEx@36 | 1888 | ZwCreateProcessEx@36 |
| 1555 | ZwCreateProfile@36 | 1889 | ZwCreateProfile@36 |
| 1556 | ZwCreateProfileEx@40 | 1890 | ZwCreateProfileEx@40 |
| 1891 | ZwCreateRegistryTransaction@16 | ||
| 1557 | ZwCreateResourceManager@28 | 1892 | ZwCreateResourceManager@28 |
| 1558 | ZwCreateSection@28 | 1893 | ZwCreateSection@28 |
| 1894 | ZwCreateSectionEx@36 | ||
| 1559 | ZwCreateSemaphore@20 | 1895 | ZwCreateSemaphore@20 |
| 1560 | ZwCreateSymbolicLinkObject@16 | 1896 | ZwCreateSymbolicLinkObject@16 |
| 1561 | ZwCreateThread@32 | 1897 | ZwCreateThread@32 |
| 1562 | ZwCreateThreadEx@44 | 1898 | ZwCreateThreadEx@44 |
| 1899 | ZwCreateTimer2@20 | ||
| 1563 | ZwCreateTimer@16 | 1900 | ZwCreateTimer@16 |
| 1564 | ZwCreateToken@52 | 1901 | ZwCreateToken@52 |
| 1902 | ZwCreateTokenEx@68 | ||
| 1565 | ZwCreateTransaction@40 | 1903 | ZwCreateTransaction@40 |
| 1566 | ZwCreateTransactionManager@24 | 1904 | ZwCreateTransactionManager@24 |
| 1567 | ZwCreateUserProcess@44 | 1905 | ZwCreateUserProcess@44 |
| 1906 | ZwCreateWaitCompletionPacket@12 | ||
| 1568 | ZwCreateWaitablePort@20 | 1907 | ZwCreateWaitablePort@20 |
| 1908 | ZwCreateWnfStateName@28 | ||
| 1569 | ZwCreateWorkerFactory@40 | 1909 | ZwCreateWorkerFactory@40 |
| 1570 | ZwDebugActiveProcess@8 | 1910 | ZwDebugActiveProcess@8 |
| 1571 | ZwDebugContinue@12 | 1911 | ZwDebugContinue@12 |
| ... | @@ -1578,6 +1918,8 @@ ZwDeleteKey@4 | ... | @@ -1578,6 +1918,8 @@ ZwDeleteKey@4 |
| 1578 | ZwDeleteObjectAuditAlarm@12 | 1918 | ZwDeleteObjectAuditAlarm@12 |
| 1579 | ZwDeletePrivateNamespace@4 | 1919 | ZwDeletePrivateNamespace@4 |
| 1580 | ZwDeleteValueKey@8 | 1920 | ZwDeleteValueKey@8 |
| 1921 | ZwDeleteWnfStateData@8 | ||
| 1922 | ZwDeleteWnfStateName@4 | ||
| 1581 | ZwDeviceIoControlFile@40 | 1923 | ZwDeviceIoControlFile@40 |
| 1582 | ZwDisableLastKnownGood@0 | 1924 | ZwDisableLastKnownGood@0 |
| 1583 | ZwDisplayString@4 | 1925 | ZwDisplayString@4 |
| ... | @@ -1592,9 +1934,12 @@ ZwEnumerateSystemEnvironmentValuesEx@12 | ... | @@ -1592,9 +1934,12 @@ ZwEnumerateSystemEnvironmentValuesEx@12 |
| 1592 | ZwEnumerateTransactionObject@20 | 1934 | ZwEnumerateTransactionObject@20 |
| 1593 | ZwEnumerateValueKey@24 | 1935 | ZwEnumerateValueKey@24 |
| 1594 | ZwExtendSection@8 | 1936 | ZwExtendSection@8 |
| 1937 | ZwFilterBootOption@20 | ||
| 1595 | ZwFilterToken@24 | 1938 | ZwFilterToken@24 |
| 1939 | ZwFilterTokenEx@56 | ||
| 1596 | ZwFindAtom@12 | 1940 | ZwFindAtom@12 |
| 1597 | ZwFlushBuffersFile@8 | 1941 | ZwFlushBuffersFile@8 |
| 1942 | ZwFlushBuffersFileEx@20 | ||
| 1598 | ZwFlushInstallUILanguage@8 | 1943 | ZwFlushInstallUILanguage@8 |
| 1599 | ZwFlushInstructionCache@12 | 1944 | ZwFlushInstructionCache@12 |
| 1600 | ZwFlushKey@4 | 1945 | ZwFlushKey@4 |
| ... | @@ -1606,8 +1951,11 @@ ZwFreeVirtualMemory@16 | ... | @@ -1606,8 +1951,11 @@ ZwFreeVirtualMemory@16 |
| 1606 | ZwFreezeRegistry@4 | 1951 | ZwFreezeRegistry@4 |
| 1607 | ZwFreezeTransactions@8 | 1952 | ZwFreezeTransactions@8 |
| 1608 | ZwFsControlFile@40 | 1953 | ZwFsControlFile@40 |
| 1954 | ZwGetCachedSigningLevel@24 | ||
| 1955 | ZwGetCompleteWnfStateSubscription@24 | ||
| 1609 | ZwGetContextThread@8 | 1956 | ZwGetContextThread@8 |
| 1610 | ZwGetCurrentProcessorNumber@0 | 1957 | ZwGetCurrentProcessorNumber@0 |
| 1958 | ZwGetCurrentProcessorNumberEx@4 | ||
| 1611 | ZwGetDevicePowerState@8 | 1959 | ZwGetDevicePowerState@8 |
| 1612 | ZwGetMUIRegistryInfo@12 | 1960 | ZwGetMUIRegistryInfo@12 |
| 1613 | ZwGetNextProcess@20 | 1961 | ZwGetNextProcess@20 |
| ... | @@ -1620,6 +1968,7 @@ ZwGetWriteWatch@28 | ... | @@ -1620,6 +1968,7 @@ ZwGetWriteWatch@28 |
| 1620 | ZwImpersonateAnonymousToken@4 | 1968 | ZwImpersonateAnonymousToken@4 |
| 1621 | ZwImpersonateClientOfPort@8 | 1969 | ZwImpersonateClientOfPort@8 |
| 1622 | ZwImpersonateThread@12 | 1970 | ZwImpersonateThread@12 |
| 1971 | ZwInitializeEnclave@20 | ||
| 1623 | ZwInitializeNlsFiles@16 | 1972 | ZwInitializeNlsFiles@16 |
| 1624 | ZwInitializeRegistry@4 | 1973 | ZwInitializeRegistry@4 |
| 1625 | ZwInitiatePowerAction@16 | 1974 | ZwInitiatePowerAction@16 |
| ... | @@ -1628,6 +1977,7 @@ ZwIsSystemResumeAutomatic@0 | ... | @@ -1628,6 +1977,7 @@ ZwIsSystemResumeAutomatic@0 |
| 1628 | ZwIsUILanguageComitted@0 | 1977 | ZwIsUILanguageComitted@0 |
| 1629 | ZwListenPort@8 | 1978 | ZwListenPort@8 |
| 1630 | ZwLoadDriver@4 | 1979 | ZwLoadDriver@4 |
| 1980 | ZwLoadEnclaveData@36 | ||
| 1631 | ZwLoadKey2@12 | 1981 | ZwLoadKey2@12 |
| 1632 | ZwLoadKey@8 | 1982 | ZwLoadKey@8 |
| 1633 | ZwLoadKeyEx@32 | 1983 | ZwLoadKeyEx@32 |
| ... | @@ -1637,13 +1987,17 @@ ZwLockRegistryKey@4 | ... | @@ -1637,13 +1987,17 @@ ZwLockRegistryKey@4 |
| 1637 | ZwLockVirtualMemory@16 | 1987 | ZwLockVirtualMemory@16 |
| 1638 | ZwMakePermanentObject@4 | 1988 | ZwMakePermanentObject@4 |
| 1639 | ZwMakeTemporaryObject@4 | 1989 | ZwMakeTemporaryObject@4 |
| 1990 | ZwManageHotPatch@16 | ||
| 1991 | ZwManagePartition@20 | ||
| 1640 | ZwMapCMFModule@24 | 1992 | ZwMapCMFModule@24 |
| 1641 | ZwMapUserPhysicalPages@12 | 1993 | ZwMapUserPhysicalPages@12 |
| 1642 | ZwMapUserPhysicalPagesScatter@12 | 1994 | ZwMapUserPhysicalPagesScatter@12 |
| 1643 | ZwMapViewOfSection@40 | 1995 | ZwMapViewOfSection@40 |
| 1996 | ZwMapViewOfSectionEx@36 | ||
| 1644 | ZwModifyBootEntry@4 | 1997 | ZwModifyBootEntry@4 |
| 1645 | ZwModifyDriverEntry@4 | 1998 | ZwModifyDriverEntry@4 |
| 1646 | ZwNotifyChangeDirectoryFile@36 | 1999 | ZwNotifyChangeDirectoryFile@36 |
| 2000 | ZwNotifyChangeDirectoryFileEx@40 | ||
| 1647 | ZwNotifyChangeKey@40 | 2001 | ZwNotifyChangeKey@40 |
| 1648 | ZwNotifyChangeMultipleKeys@48 | 2002 | ZwNotifyChangeMultipleKeys@48 |
| 1649 | ZwNotifyChangeSession@32 | 2003 | ZwNotifyChangeSession@32 |
| ... | @@ -1661,10 +2015,12 @@ ZwOpenKeyTransactedEx@20 | ... | @@ -1661,10 +2015,12 @@ ZwOpenKeyTransactedEx@20 |
| 1661 | ZwOpenKeyedEvent@12 | 2015 | ZwOpenKeyedEvent@12 |
| 1662 | ZwOpenMutant@12 | 2016 | ZwOpenMutant@12 |
| 1663 | ZwOpenObjectAuditAlarm@48 | 2017 | ZwOpenObjectAuditAlarm@48 |
| 2018 | ZwOpenPartition@12 | ||
| 1664 | ZwOpenPrivateNamespace@16 | 2019 | ZwOpenPrivateNamespace@16 |
| 1665 | ZwOpenProcess@16 | 2020 | ZwOpenProcess@16 |
| 1666 | ZwOpenProcessToken@12 | 2021 | ZwOpenProcessToken@12 |
| 1667 | ZwOpenProcessTokenEx@16 | 2022 | ZwOpenProcessTokenEx@16 |
| 2023 | ZwOpenRegistryTransaction@12 | ||
| 1668 | ZwOpenResourceManager@20 | 2024 | ZwOpenResourceManager@20 |
| 1669 | ZwOpenSection@12 | 2025 | ZwOpenSection@12 |
| 1670 | ZwOpenSemaphore@12 | 2026 | ZwOpenSemaphore@12 |
| ... | @@ -1688,20 +2044,24 @@ ZwPrivilegedServiceAuditAlarm@20 | ... | @@ -1688,20 +2044,24 @@ ZwPrivilegedServiceAuditAlarm@20 |
| 1688 | ZwPropagationComplete@16 | 2044 | ZwPropagationComplete@16 |
| 1689 | ZwPropagationFailed@12 | 2045 | ZwPropagationFailed@12 |
| 1690 | ZwProtectVirtualMemory@20 | 2046 | ZwProtectVirtualMemory@20 |
| 2047 | ZwPssCaptureVaSpaceBulk@20 | ||
| 1691 | ZwPulseEvent@8 | 2048 | ZwPulseEvent@8 |
| 1692 | ZwQueryAttributesFile@8 | 2049 | ZwQueryAttributesFile@8 |
| 2050 | ZwQueryAuxiliaryCounterFrequency@4 | ||
| 1693 | ZwQueryBootEntryOrder@8 | 2051 | ZwQueryBootEntryOrder@8 |
| 1694 | ZwQueryBootOptions@8 | 2052 | ZwQueryBootOptions@8 |
| 1695 | ZwQueryDebugFilterState@8 | 2053 | ZwQueryDebugFilterState@8 |
| 1696 | ZwQueryDefaultLocale@8 | 2054 | ZwQueryDefaultLocale@8 |
| 1697 | ZwQueryDefaultUILanguage@4 | 2055 | ZwQueryDefaultUILanguage@4 |
| 1698 | ZwQueryDirectoryFile@44 | 2056 | ZwQueryDirectoryFile@44 |
| 2057 | ZwQueryDirectoryFileEx@40 | ||
| 1699 | ZwQueryDirectoryObject@28 | 2058 | ZwQueryDirectoryObject@28 |
| 1700 | ZwQueryDriverEntryOrder@8 | 2059 | ZwQueryDriverEntryOrder@8 |
| 1701 | ZwQueryEaFile@36 | 2060 | ZwQueryEaFile@36 |
| 1702 | ZwQueryEvent@20 | 2061 | ZwQueryEvent@20 |
| 1703 | ZwQueryFullAttributesFile@8 | 2062 | ZwQueryFullAttributesFile@8 |
| 1704 | ZwQueryInformationAtom@20 | 2063 | ZwQueryInformationAtom@20 |
| 2064 | ZwQueryInformationByName@20 | ||
| 1705 | ZwQueryInformationEnlistment@20 | 2065 | ZwQueryInformationEnlistment@20 |
| 1706 | ZwQueryInformationFile@20 | 2066 | ZwQueryInformationFile@20 |
| 1707 | ZwQueryInformationJobObject@20 | 2067 | ZwQueryInformationJobObject@20 |
| ... | @@ -1729,6 +2089,7 @@ ZwQueryQuotaInformationFile@36 | ... | @@ -1729,6 +2089,7 @@ ZwQueryQuotaInformationFile@36 |
| 1729 | ZwQuerySection@20 | 2089 | ZwQuerySection@20 |
| 1730 | ZwQuerySecurityAttributesToken@24 | 2090 | ZwQuerySecurityAttributesToken@24 |
| 1731 | ZwQuerySecurityObject@20 | 2091 | ZwQuerySecurityObject@20 |
| 2092 | ZwQuerySecurityPolicy@24 | ||
| 1732 | ZwQuerySemaphore@20 | 2093 | ZwQuerySemaphore@20 |
| 1733 | ZwQuerySymbolicLinkObject@12 | 2094 | ZwQuerySymbolicLinkObject@12 |
| 1734 | ZwQuerySystemEnvironmentValue@16 | 2095 | ZwQuerySystemEnvironmentValue@16 |
| ... | @@ -1741,6 +2102,8 @@ ZwQueryTimerResolution@12 | ... | @@ -1741,6 +2102,8 @@ ZwQueryTimerResolution@12 |
| 1741 | ZwQueryValueKey@24 | 2102 | ZwQueryValueKey@24 |
| 1742 | ZwQueryVirtualMemory@24 | 2103 | ZwQueryVirtualMemory@24 |
| 1743 | ZwQueryVolumeInformationFile@20 | 2104 | ZwQueryVolumeInformationFile@20 |
| 2105 | ZwQueryWnfStateData@24 | ||
| 2106 | ZwQueryWnfStateNameInformation@20 | ||
| 1744 | ZwQueueApcThread@20 | 2107 | ZwQueueApcThread@20 |
| 1745 | ZwQueueApcThreadEx@24 | 2108 | ZwQueueApcThreadEx@24 |
| 1746 | ZwRaiseException@12 | 2109 | ZwRaiseException@12 |
| ... | @@ -1780,8 +2143,10 @@ ZwResetWriteWatch@12 | ... | @@ -1780,8 +2143,10 @@ ZwResetWriteWatch@12 |
| 1780 | ZwRestoreKey@12 | 2143 | ZwRestoreKey@12 |
| 1781 | ZwResumeProcess@4 | 2144 | ZwResumeProcess@4 |
| 1782 | ZwResumeThread@8 | 2145 | ZwResumeThread@8 |
| 2146 | ZwRevertContainerImpersonation@0 | ||
| 1783 | ZwRollbackComplete@8 | 2147 | ZwRollbackComplete@8 |
| 1784 | ZwRollbackEnlistment@8 | 2148 | ZwRollbackEnlistment@8 |
| 2149 | ZwRollbackRegistryTransaction@8 | ||
| 1785 | ZwRollbackTransaction@8 | 2150 | ZwRollbackTransaction@8 |
| 1786 | ZwRollforwardTransactionManager@8 | 2151 | ZwRollforwardTransactionManager@8 |
| 1787 | ZwSaveKey@8 | 2152 | ZwSaveKey@8 |
| ... | @@ -1791,6 +2156,8 @@ ZwSecureConnectPort@36 | ... | @@ -1791,6 +2156,8 @@ ZwSecureConnectPort@36 |
| 1791 | ZwSerializeBoot@0 | 2156 | ZwSerializeBoot@0 |
| 1792 | ZwSetBootEntryOrder@8 | 2157 | ZwSetBootEntryOrder@8 |
| 1793 | ZwSetBootOptions@8 | 2158 | ZwSetBootOptions@8 |
| 2159 | ZwSetCachedSigningLevel2@24 | ||
| 2160 | ZwSetCachedSigningLevel@20 | ||
| 1794 | ZwSetContextThread@8 | 2161 | ZwSetContextThread@8 |
| 1795 | ZwSetDebugFilterState@12 | 2162 | ZwSetDebugFilterState@12 |
| 1796 | ZwSetDefaultHardErrorPort@4 | 2163 | ZwSetDefaultHardErrorPort@4 |
| ... | @@ -1802,6 +2169,7 @@ ZwSetEvent@8 | ... | @@ -1802,6 +2169,7 @@ ZwSetEvent@8 |
| 1802 | ZwSetEventBoostPriority@4 | 2169 | ZwSetEventBoostPriority@4 |
| 1803 | ZwSetHighEventPair@4 | 2170 | ZwSetHighEventPair@4 |
| 1804 | ZwSetHighWaitLowEventPair@4 | 2171 | ZwSetHighWaitLowEventPair@4 |
| 2172 | ZwSetIRTimer@8 | ||
| 1805 | ZwSetInformationDebugObject@20 | 2173 | ZwSetInformationDebugObject@20 |
| 1806 | ZwSetInformationEnlistment@16 | 2174 | ZwSetInformationEnlistment@16 |
| 1807 | ZwSetInformationFile@20 | 2175 | ZwSetInformationFile@20 |
| ... | @@ -1810,10 +2178,12 @@ ZwSetInformationKey@16 | ... | @@ -1810,10 +2178,12 @@ ZwSetInformationKey@16 |
| 1810 | ZwSetInformationObject@16 | 2178 | ZwSetInformationObject@16 |
| 1811 | ZwSetInformationProcess@16 | 2179 | ZwSetInformationProcess@16 |
| 1812 | ZwSetInformationResourceManager@16 | 2180 | ZwSetInformationResourceManager@16 |
| 2181 | ZwSetInformationSymbolicLink@16 | ||
| 1813 | ZwSetInformationThread@16 | 2182 | ZwSetInformationThread@16 |
| 1814 | ZwSetInformationToken@16 | 2183 | ZwSetInformationToken@16 |
| 1815 | ZwSetInformationTransaction@16 | 2184 | ZwSetInformationTransaction@16 |
| 1816 | ZwSetInformationTransactionManager@16 | 2185 | ZwSetInformationTransactionManager@16 |
| 2186 | ZwSetInformationVirtualMemory@24 | ||
| 1817 | ZwSetInformationWorkerFactory@16 | 2187 | ZwSetInformationWorkerFactory@16 |
| 1818 | ZwSetIntervalProfile@8 | 2188 | ZwSetIntervalProfile@8 |
| 1819 | ZwSetIoCompletion@20 | 2189 | ZwSetIoCompletion@20 |
| ... | @@ -1829,21 +2199,25 @@ ZwSetSystemInformation@12 | ... | @@ -1829,21 +2199,25 @@ ZwSetSystemInformation@12 |
| 1829 | ZwSetSystemPowerState@12 | 2199 | ZwSetSystemPowerState@12 |
| 1830 | ZwSetSystemTime@8 | 2200 | ZwSetSystemTime@8 |
| 1831 | ZwSetThreadExecutionState@8 | 2201 | ZwSetThreadExecutionState@8 |
| 2202 | ZwSetTimer2@16 | ||
| 1832 | ZwSetTimer@28 | 2203 | ZwSetTimer@28 |
| 1833 | ZwSetTimerEx@16 | 2204 | ZwSetTimerEx@16 |
| 1834 | ZwSetTimerResolution@12 | 2205 | ZwSetTimerResolution@12 |
| 1835 | ZwSetUuidSeed@4 | 2206 | ZwSetUuidSeed@4 |
| 1836 | ZwSetValueKey@24 | 2207 | ZwSetValueKey@24 |
| 1837 | ZwSetVolumeInformationFile@20 | 2208 | ZwSetVolumeInformationFile@20 |
| 2209 | ZwSetWnfProcessNotificationEvent@4 | ||
| 1838 | ZwShutdownSystem@4 | 2210 | ZwShutdownSystem@4 |
| 1839 | ZwShutdownWorkerFactory@8 | 2211 | ZwShutdownWorkerFactory@8 |
| 1840 | ZwSignalAndWaitForSingleObject@16 | 2212 | ZwSignalAndWaitForSingleObject@16 |
| 1841 | ZwSinglePhaseReject@8 | 2213 | ZwSinglePhaseReject@8 |
| 1842 | ZwStartProfile@4 | 2214 | ZwStartProfile@4 |
| 1843 | ZwStopProfile@4 | 2215 | ZwStopProfile@4 |
| 2216 | ZwSubscribeWnfStateChange@16 | ||
| 1844 | ZwSuspendProcess@4 | 2217 | ZwSuspendProcess@4 |
| 1845 | ZwSuspendThread@8 | 2218 | ZwSuspendThread@8 |
| 1846 | ZwSystemDebugControl@24 | 2219 | ZwSystemDebugControl@24 |
| 2220 | ZwTerminateEnclave@8 | ||
| 1847 | ZwTerminateJobObject@8 | 2221 | ZwTerminateJobObject@8 |
| 1848 | ZwTerminateProcess@8 | 2222 | ZwTerminateProcess@8 |
| 1849 | ZwTerminateThread@8 | 2223 | ZwTerminateThread@8 |
| ... | @@ -1861,7 +2235,11 @@ ZwUnloadKeyEx@8 | ... | @@ -1861,7 +2235,11 @@ ZwUnloadKeyEx@8 |
| 1861 | ZwUnlockFile@20 | 2235 | ZwUnlockFile@20 |
| 1862 | ZwUnlockVirtualMemory@16 | 2236 | ZwUnlockVirtualMemory@16 |
| 1863 | ZwUnmapViewOfSection@8 | 2237 | ZwUnmapViewOfSection@8 |
| 2238 | ZwUnmapViewOfSectionEx@12 | ||
| 2239 | ZwUnsubscribeWnfStateChange@4 | ||
| 2240 | ZwUpdateWnfStateData@28 | ||
| 1864 | ZwVdmControl@8 | 2241 | ZwVdmControl@8 |
| 2242 | ZwWaitForAlertByThreadId@8 | ||
| 1865 | ZwWaitForDebugEvent@16 | 2243 | ZwWaitForDebugEvent@16 |
| 1866 | ZwWaitForKeyedEvent@16 | 2244 | ZwWaitForKeyedEvent@16 |
| 1867 | ZwWaitForMultipleObjects32@20 | 2245 | ZwWaitForMultipleObjects32@20 |
| ... | @@ -1895,188 +2273,3 @@ ZwWriteFileGather@36 | ... | @@ -1895,188 +2273,3 @@ ZwWriteFileGather@36 |
| 1895 | ZwWriteRequestData@24 | 2273 | ZwWriteRequestData@24 |
| 1896 | ZwWriteVirtualMemory@20 | 2274 | ZwWriteVirtualMemory@20 |
| 1897 | ZwYieldExecution@0 | 2275 | ZwYieldExecution@0 |
| 1898 | _CIcos | ||
| 1899 | _CIlog | ||
| 1900 | _CIpow | ||
| 1901 | _CIsin | ||
| 1902 | _CIsqrt | ||
| 1903 | __isascii | ||
| 1904 | __iscsym | ||
| 1905 | __iscsymf | ||
| 1906 | __toascii | ||
| 1907 | _alldiv | ||
| 1908 | _alldvrm@16 | ||
| 1909 | _allmul@16 | ||
| 1910 | _alloca_probe | ||
| 1911 | _alloca_probe_16 | ||
| 1912 | _alloca_probe_8 | ||
| 1913 | _allrem@16 | ||
| 1914 | _allshl | ||
| 1915 | _allshr | ||
| 1916 | _atoi64 | ||
| 1917 | _aulldiv@16 | ||
| 1918 | _aulldvrm@16 | ||
| 1919 | _aullrem@16 | ||
| 1920 | _aullshr | ||
| 1921 | ;_chkstk | ||
| 1922 | _fltused DATA | ||
| 1923 | _ftol | ||
| 1924 | _i64toa | ||
| 1925 | _i64toa_s | ||
| 1926 | _i64tow | ||
| 1927 | _i64tow_s | ||
| 1928 | _itoa | ||
| 1929 | _itoa_s | ||
| 1930 | _itow | ||
| 1931 | _itow_s | ||
| 1932 | _lfind | ||
| 1933 | _ltoa | ||
| 1934 | _ltoa_s | ||
| 1935 | _ltow | ||
| 1936 | _ltow_s | ||
| 1937 | _makepath_s | ||
| 1938 | _memccpy | ||
| 1939 | _memicmp | ||
| 1940 | _snprintf | ||
| 1941 | _snprintf_s | ||
| 1942 | _snscanf_s | ||
| 1943 | _snwprintf | ||
| 1944 | _snwprintf_s | ||
| 1945 | _snwscanf_s | ||
| 1946 | _splitpath | ||
| 1947 | _splitpath_s | ||
| 1948 | _strcmpi | ||
| 1949 | _stricmp | ||
| 1950 | _strlwr | ||
| 1951 | _strnicmp | ||
| 1952 | _strnset_s | ||
| 1953 | _strset_s | ||
| 1954 | _strupr | ||
| 1955 | _swprintf | ||
| 1956 | _tolower | ||
| 1957 | _toupper | ||
| 1958 | _ui64toa | ||
| 1959 | _ui64toa_s | ||
| 1960 | _ui64tow | ||
| 1961 | _ui64tow_s | ||
| 1962 | _ultoa | ||
| 1963 | _ultoa_s | ||
| 1964 | _ultow | ||
| 1965 | _ultow_s | ||
| 1966 | _vscwprintf | ||
| 1967 | _vsnprintf | ||
| 1968 | _vsnprintf_s | ||
| 1969 | _vsnwprintf | ||
| 1970 | _vsnwprintf_s | ||
| 1971 | _vswprintf | ||
| 1972 | _wcsicmp | ||
| 1973 | _wcslwr | ||
| 1974 | _wcsnicmp | ||
| 1975 | _wcsnset_s | ||
| 1976 | _wcsset_s | ||
| 1977 | _wcstoui64 | ||
| 1978 | _wcsupr | ||
| 1979 | _wmakepath_s | ||
| 1980 | _wsplitpath_s | ||
| 1981 | _wtoi | ||
| 1982 | _wtoi64 | ||
| 1983 | _wtol | ||
| 1984 | abs | ||
| 1985 | atan DATA | ||
| 1986 | atoi | ||
| 1987 | atol | ||
| 1988 | bsearch | ||
| 1989 | ceil | ||
| 1990 | cos DATA | ||
| 1991 | fabs DATA | ||
| 1992 | floor DATA | ||
| 1993 | isalnum | ||
| 1994 | isalpha | ||
| 1995 | iscntrl | ||
| 1996 | isdigit | ||
| 1997 | isgraph | ||
| 1998 | islower | ||
| 1999 | isprint | ||
| 2000 | ispunct | ||
| 2001 | isspace | ||
| 2002 | isupper | ||
| 2003 | iswalpha | ||
| 2004 | iswctype | ||
| 2005 | iswdigit | ||
| 2006 | iswlower | ||
| 2007 | iswspace | ||
| 2008 | iswxdigit | ||
| 2009 | isxdigit | ||
| 2010 | labs | ||
| 2011 | log | ||
| 2012 | mbstowcs | ||
| 2013 | memchr | ||
| 2014 | memcmp | ||
| 2015 | memcpy | ||
| 2016 | memcpy_s | ||
| 2017 | memmove | ||
| 2018 | memmove_s | ||
| 2019 | memset | ||
| 2020 | pow | ||
| 2021 | qsort | ||
| 2022 | sin | ||
| 2023 | sprintf | ||
| 2024 | sprintf_s | ||
| 2025 | sqrt | ||
| 2026 | sscanf | ||
| 2027 | sscanf_s | ||
| 2028 | strcat | ||
| 2029 | strcat_s | ||
| 2030 | strchr | ||
| 2031 | strcmp | ||
| 2032 | strcpy | ||
| 2033 | strcpy_s | ||
| 2034 | strcspn | ||
| 2035 | strlen | ||
| 2036 | strncat | ||
| 2037 | strncat_s | ||
| 2038 | strncmp | ||
| 2039 | strncpy | ||
| 2040 | strncpy_s | ||
| 2041 | strnlen | ||
| 2042 | strpbrk | ||
| 2043 | strrchr | ||
| 2044 | strspn | ||
| 2045 | strstr | ||
| 2046 | strtok_s | ||
| 2047 | strtol | ||
| 2048 | strtoul | ||
| 2049 | swprintf | ||
| 2050 | swprintf_s | ||
| 2051 | swscanf_s | ||
| 2052 | tan | ||
| 2053 | tolower | ||
| 2054 | toupper | ||
| 2055 | towlower | ||
| 2056 | towupper | ||
| 2057 | vDbgPrintEx@16 | ||
| 2058 | vDbgPrintExWithPrefix@20 | ||
| 2059 | vsprintf | ||
| 2060 | vsprintf_s | ||
| 2061 | vswprintf_s | ||
| 2062 | wcscat | ||
| 2063 | wcscat_s | ||
| 2064 | wcschr | ||
| 2065 | wcscmp | ||
| 2066 | wcscpy | ||
| 2067 | wcscpy_s | ||
| 2068 | wcscspn | ||
| 2069 | wcslen | ||
| 2070 | wcsncat | ||
| 2071 | wcsncat_s | ||
| 2072 | wcsncmp | ||
| 2073 | wcsncpy | ||
| 2074 | wcsncpy_s | ||
| 2075 | wcsnlen | ||
| 2076 | wcspbrk | ||
| 2077 | wcsrchr | ||
| 2078 | wcsspn | ||
| 2079 | wcsstr | ||
| 2080 | wcstol | ||
| 2081 | wcstombs | ||
| 2082 | wcstoul |
lib/libc/mingw/lib32/rpcrt4.def+39-3| ... | @@ -5,8 +5,14 @@ | ... | @@ -5,8 +5,14 @@ |
| 5 | ; | 5 | ; |
| 6 | LIBRARY "RPCRT4.dll" | 6 | LIBRARY "RPCRT4.dll" |
| 7 | EXPORTS | 7 | EXPORTS |
| 8 | I_RpcBindingInqCurrentModifiedId@8 | ||
| 8 | I_RpcFwThisIsTheManager@0 | 9 | I_RpcFwThisIsTheManager@0 |
| 10 | I_RpcInitFwImports@4 | ||
| 9 | I_RpcInitHttpImports@4 | 11 | I_RpcInitHttpImports@4 |
| 12 | I_RpcInitImports@4 | ||
| 13 | I_RpcInitNdrImports@4 | ||
| 14 | I_RpcMgmtQueryDedicatedThreadPool@0 | ||
| 15 | I_RpcOpenClientThread@12 | ||
| 10 | I_RpcOpenClientProcess@12 | 16 | I_RpcOpenClientProcess@12 |
| 11 | I_RpcServerTurnOnOffKeepalives@16 | 17 | I_RpcServerTurnOnOffKeepalives@16 |
| 12 | I_RpcVerifierCorruptionExpected@0 | 18 | I_RpcVerifierCorruptionExpected@0 |
| ... | @@ -40,9 +46,9 @@ I_RpcAsyncSetHandle@8 | ... | @@ -40,9 +46,9 @@ I_RpcAsyncSetHandle@8 |
| 40 | I_RpcBCacheAllocate@4 | 46 | I_RpcBCacheAllocate@4 |
| 41 | I_RpcBCacheFree@4 | 47 | I_RpcBCacheFree@4 |
| 42 | I_RpcBindingCopy@8 | 48 | I_RpcBindingCopy@8 |
| 43 | I_RpcBindingInqDynamicEndpoint@8 | ||
| 44 | I_RpcBindingCreateNP@16 | 49 | I_RpcBindingCreateNP@16 |
| 45 | I_RpcBindingHandleToAsyncHandle@8 | 50 | I_RpcBindingHandleToAsyncHandle@8 |
| 51 | I_RpcBindingInqClientTokenAttributes@16 | ||
| 46 | I_RpcBindingInqDynamicEndpoint@8 | 52 | I_RpcBindingInqDynamicEndpoint@8 |
| 47 | I_RpcBindingInqDynamicEndpointA@8 | 53 | I_RpcBindingInqDynamicEndpointA@8 |
| 48 | I_RpcBindingInqDynamicEndpointW@8 | 54 | I_RpcBindingInqDynamicEndpointW@8 |
| ... | @@ -53,7 +59,10 @@ I_RpcBindingInqSecurityContextKeyInfo@8 | ... | @@ -53,7 +59,10 @@ I_RpcBindingInqSecurityContextKeyInfo@8 |
| 53 | I_RpcBindingInqTransportType@8 | 59 | I_RpcBindingInqTransportType@8 |
| 54 | I_RpcBindingInqWireIdForSnego@8 | 60 | I_RpcBindingInqWireIdForSnego@8 |
| 55 | I_RpcBindingIsClientLocal@8 | 61 | I_RpcBindingIsClientLocal@8 |
| 62 | I_RpcBindingIsServerLocal@8 | ||
| 63 | I_RpcBindingSetPrivateOption@12 | ||
| 56 | I_RpcBindingToStaticStringBindingW@8 | 64 | I_RpcBindingToStaticStringBindingW@8 |
| 65 | I_RpcCertProcessAndProvision@16 | ||
| 57 | I_RpcClearMutex@4 | 66 | I_RpcClearMutex@4 |
| 58 | I_RpcConnectionInqSockBuffSize2@4 | 67 | I_RpcConnectionInqSockBuffSize2@4 |
| 59 | I_RpcCompleteAndFree@12 | 68 | I_RpcCompleteAndFree@12 |
| ... | @@ -67,17 +76,22 @@ I_RpcFree@4 | ... | @@ -67,17 +76,22 @@ I_RpcFree@4 |
| 67 | I_RpcFreeBuffer@4 | 76 | I_RpcFreeBuffer@4 |
| 68 | I_RpcGetAssociationContext@4 | 77 | I_RpcGetAssociationContext@4 |
| 69 | I_RpcFreePipeBuffer@4 | 78 | I_RpcFreePipeBuffer@4 |
| 79 | I_RpcFreeSystemHandle@8 | ||
| 80 | I_RpcFreeSystemHandleCollection@8 | ||
| 70 | I_RpcGetBuffer@4 | 81 | I_RpcGetBuffer@4 |
| 71 | I_RpcGetBufferWithObject@8 | 82 | I_RpcGetBufferWithObject@8 |
| 72 | I_RpcGetCurrentCallHandle@0 | 83 | I_RpcGetCurrentCallHandle@0 |
| 84 | I_RpcGetDefaultSD@4 | ||
| 73 | I_RpcIOAlerted@4 | 85 | I_RpcIOAlerted@4 |
| 74 | I_RpcGetExtendedError@0 | 86 | I_RpcGetExtendedError@0 |
| 75 | I_RpcGetPortAllocationData@4 | 87 | I_RpcGetPortAllocationData@4 |
| 88 | I_RpcGetSystemHandle@20 | ||
| 76 | I_RpcIfInqTransferSyntaxes@16 | 89 | I_RpcIfInqTransferSyntaxes@16 |
| 77 | I_RpcLogEvent@28 | 90 | I_RpcLogEvent@28 |
| 78 | I_RpcMapWin32Status@4 | 91 | I_RpcMapWin32Status@4 |
| 79 | I_RpcMonitorAssociation@12 | 92 | I_RpcMonitorAssociation@12 |
| 80 | I_RpcMarshalBindingHandleAndInterfaceForNDF@24 | 93 | I_RpcMarshalBindingHandleAndInterfaceForNDF@24 |
| 94 | I_RpcMgmtEnableDedicatedThreadPool@0 | ||
| 81 | I_RpcNDRCGetWireRepresentation@8 | 95 | I_RpcNDRCGetWireRepresentation@8 |
| 82 | I_RpcNDRSContextEmergencyCleanup@8 | 96 | I_RpcNDRSContextEmergencyCleanup@8 |
| 83 | I_RpcNegotiateTransferSyntax@4 | 97 | I_RpcNegotiateTransferSyntax@4 |
| ... | @@ -97,6 +111,8 @@ I_RpcSend@4 | ... | @@ -97,6 +111,8 @@ I_RpcSend@4 |
| 97 | I_RpcSendReceive@4 | 111 | I_RpcSendReceive@4 |
| 98 | I_RpcServerAllocateIpPort@8 | 112 | I_RpcServerAllocateIpPort@8 |
| 99 | I_RpcServerCheckClientRestriction@4 | 113 | I_RpcServerCheckClientRestriction@4 |
| 114 | I_RpcServerDisableExceptionFilter@0 | ||
| 115 | I_RpcServerGetAssociationID@8 | ||
| 100 | I_RpcServerInqAddressChangeFn@0 | 116 | I_RpcServerInqAddressChangeFn@0 |
| 101 | I_RpcServerInqLocalConnAddress@16 | 117 | I_RpcServerInqLocalConnAddress@16 |
| 102 | I_RpcServerInqRemoteConnAddress@16 | 118 | I_RpcServerInqRemoteConnAddress@16 |
| ... | @@ -106,12 +122,16 @@ I_RpcServerRegisterForwardFunction@4 | ... | @@ -106,12 +122,16 @@ I_RpcServerRegisterForwardFunction@4 |
| 106 | I_RpcSetAssociationContext@4 | 122 | I_RpcSetAssociationContext@4 |
| 107 | I_RpcServerSetAddressChangeFn@4 | 123 | I_RpcServerSetAddressChangeFn@4 |
| 108 | I_RpcServerStartService@12 | 124 | I_RpcServerStartService@12 |
| 125 | I_RpcServerSubscribeForDisconnectNotification2@12 | ||
| 126 | I_RpcServerSubscribeForDisconnectNotification@8 | ||
| 127 | I_RpcServerUnsubscribeForDisconnectNotification@20 | ||
| 109 | I_RpcServerUseProtseq2A@20 | 128 | I_RpcServerUseProtseq2A@20 |
| 110 | I_RpcServerUseProtseq2W@20 | 129 | I_RpcServerUseProtseq2W@20 |
| 111 | I_RpcServerUseProtseqEp2A@24 | 130 | I_RpcServerUseProtseqEp2A@24 |
| 112 | I_RpcServerUseProtseqEp2W@24 | 131 | I_RpcServerUseProtseqEp2W@24 |
| 113 | I_RpcSessionStrictContextHandle@0 | 132 | I_RpcSessionStrictContextHandle@0 |
| 114 | I_RpcSetDCOMAppId@4 | 133 | I_RpcSetDCOMAppId@4 |
| 134 | I_RpcSetSystemHandle@20 | ||
| 115 | I_RpcSsDontSerializeContext@0 | 135 | I_RpcSsDontSerializeContext@0 |
| 116 | I_RpcStopMonitorAssociation@4 | 136 | I_RpcStopMonitorAssociation@4 |
| 117 | I_RpcTransClientMaxFrag@4 | 137 | I_RpcTransClientMaxFrag@4 |
| ... | @@ -125,6 +145,7 @@ I_RpcTransServerReallocBuffer@16 | ... | @@ -125,6 +145,7 @@ I_RpcTransServerReallocBuffer@16 |
| 125 | I_RpcTransServerReceiveDirectReady@4 | 145 | I_RpcTransServerReceiveDirectReady@4 |
| 126 | I_RpcTransServerUnprotectThread@4 | 146 | I_RpcTransServerUnprotectThread@4 |
| 127 | I_RpcSystemFunction001@12 | 147 | I_RpcSystemFunction001@12 |
| 148 | I_RpcSystemHandleTypeSpecificWork@16 | ||
| 128 | I_RpcTransConnectionAllocatePacket@8 | 149 | I_RpcTransConnectionAllocatePacket@8 |
| 129 | I_RpcTransConnectionFreePacket@8 | 150 | I_RpcTransConnectionFreePacket@8 |
| 130 | I_RpcTransConnectionReallocPacket@16 | 151 | I_RpcTransConnectionReallocPacket@16 |
| ... | @@ -159,7 +180,8 @@ NDRSContextUnmarshall@8 | ... | @@ -159,7 +180,8 @@ NDRSContextUnmarshall@8 |
| 159 | NDRSContextUnmarshallEx@12 | 180 | NDRSContextUnmarshallEx@12 |
| 160 | NDRcopy@12 | 181 | NDRcopy@12 |
| 161 | NdrAllocate@8 | 182 | NdrAllocate@8 |
| 162 | NdrAsyncClientCall@0 | 183 | NdrAsyncClientCall |
| 184 | NdrAsyncClientCall2 | ||
| 163 | NdrAsyncServerCall@4 | 185 | NdrAsyncServerCall@4 |
| 164 | NdrByteCountPointerBufferSize@12 | 186 | NdrByteCountPointerBufferSize@12 |
| 165 | NdrByteCountPointerFree@12 | 187 | NdrByteCountPointerFree@12 |
| ... | @@ -170,6 +192,7 @@ NdrCStdStubBuffer_Release@8 | ... | @@ -170,6 +192,7 @@ NdrCStdStubBuffer_Release@8 |
| 170 | NdrClearOutParameters@12 | 192 | NdrClearOutParameters@12 |
| 171 | NdrClientCall | 193 | NdrClientCall |
| 172 | NdrClientCall2 | 194 | NdrClientCall2 |
| 195 | NdrClientCall4 | ||
| 173 | NdrClientContextMarshall@12 | 196 | NdrClientContextMarshall@12 |
| 174 | NdrClientContextUnmarshall@12 | 197 | NdrClientContextUnmarshall@12 |
| 175 | NdrClientInitialize@16 | 198 | NdrClientInitialize@16 |
| ... | @@ -216,7 +239,8 @@ NdrCorrelationFree@4 | ... | @@ -216,7 +239,8 @@ NdrCorrelationFree@4 |
| 216 | NdrCorrelationInitialize@16 | 239 | NdrCorrelationInitialize@16 |
| 217 | NdrCorrelationPass@4 | 240 | NdrCorrelationPass@4 |
| 218 | NdrCreateServerInterfaceFromStub@8 | 241 | NdrCreateServerInterfaceFromStub@8 |
| 219 | NdrDcomAsyncClientCall@0 | 242 | NdrDcomAsyncClientCall |
| 243 | NdrDcomAsyncClientCall2 | ||
| 220 | NdrDcomAsyncStubCall@16 | 244 | NdrDcomAsyncStubCall@16 |
| 221 | NdrDllCanUnloadNow@4 | 245 | NdrDllCanUnloadNow@4 |
| 222 | NdrDllGetClassObject@24 | 246 | NdrDllGetClassObject@24 |
| ... | @@ -262,6 +286,7 @@ NdrInterfacePointerUnmarshall@16 | ... | @@ -262,6 +286,7 @@ NdrInterfacePointerUnmarshall@16 |
| 262 | NdrMapCommAndFaultStatus@16 | 286 | NdrMapCommAndFaultStatus@16 |
| 263 | NdrMesProcEncodeDecode | 287 | NdrMesProcEncodeDecode |
| 264 | NdrMesProcEncodeDecode2 | 288 | NdrMesProcEncodeDecode2 |
| 289 | NdrMesProcEncodeDecode4 | ||
| 265 | NdrMesSimpleTypeAlignSize@4 | 290 | NdrMesSimpleTypeAlignSize@4 |
| 266 | NdrMesSimpleTypeDecode@12 | 291 | NdrMesSimpleTypeDecode@12 |
| 267 | NdrMesSimpleTypeEncode@16 | 292 | NdrMesSimpleTypeEncode@16 |
| ... | @@ -425,7 +450,9 @@ RpcFreeAuthorizationContext@4 | ... | @@ -425,7 +450,9 @@ RpcFreeAuthorizationContext@4 |
| 425 | RpcGetAuthorizationContextForClient@36 | 450 | RpcGetAuthorizationContextForClient@36 |
| 426 | RpcIfIdVectorFree@4 | 451 | RpcIfIdVectorFree@4 |
| 427 | RpcIfInqId@8 | 452 | RpcIfInqId@8 |
| 453 | RpcImpersonateClient2@4 | ||
| 428 | RpcImpersonateClient@4 | 454 | RpcImpersonateClient@4 |
| 455 | RpcImpersonateClientContainer@4 | ||
| 429 | RpcMgmtEnableIdleCleanup@0 | 456 | RpcMgmtEnableIdleCleanup@0 |
| 430 | RpcMgmtEpEltInqBegin@24 | 457 | RpcMgmtEpEltInqBegin@24 |
| 431 | RpcMgmtEpEltInqDone@4 | 458 | RpcMgmtEpEltInqDone@4 |
| ... | @@ -458,20 +485,29 @@ RpcObjectSetType@8 | ... | @@ -458,20 +485,29 @@ RpcObjectSetType@8 |
| 458 | RpcProtseqVectorFreeA@4 | 485 | RpcProtseqVectorFreeA@4 |
| 459 | RpcProtseqVectorFreeW@4 | 486 | RpcProtseqVectorFreeW@4 |
| 460 | RpcRaiseException@4 | 487 | RpcRaiseException@4 |
| 488 | RpcRevertContainerImpersonation@0 | ||
| 461 | RpcRevertToSelf@0 | 489 | RpcRevertToSelf@0 |
| 462 | RpcRevertToSelfEx@4 | 490 | RpcRevertToSelfEx@4 |
| 463 | RpcServerCompleteSecurityCallback@8 | 491 | RpcServerCompleteSecurityCallback@8 |
| 464 | RpcServerInqBindingHandle@4 | 492 | RpcServerInqBindingHandle@4 |
| 465 | RpcServerInqBindings@4 | 493 | RpcServerInqBindings@4 |
| 494 | RpcServerInqBindingsEx@8 | ||
| 466 | RpcServerInqCallAttributesA@8 | 495 | RpcServerInqCallAttributesA@8 |
| 467 | RpcServerInqCallAttributesW@8 | 496 | RpcServerInqCallAttributesW@8 |
| 468 | RpcServerInqDefaultPrincNameA@8 | 497 | RpcServerInqDefaultPrincNameA@8 |
| 469 | RpcServerInqDefaultPrincNameW@8 | 498 | RpcServerInqDefaultPrincNameW@8 |
| 470 | RpcServerInqIf@12 | 499 | RpcServerInqIf@12 |
| 500 | RpcServerInterfaceGroupActivate@4 | ||
| 501 | RpcServerInterfaceGroupClose@4 | ||
| 502 | RpcServerInterfaceGroupCreateA@32 | ||
| 503 | RpcServerInterfaceGroupCreateW@32 | ||
| 504 | RpcServerInterfaceGroupDeactivate@8 | ||
| 505 | RpcServerInterfaceGroupInqBindings@8 | ||
| 471 | RpcServerListen@12 | 506 | RpcServerListen@12 |
| 472 | RpcServerRegisterAuthInfoA@16 | 507 | RpcServerRegisterAuthInfoA@16 |
| 473 | RpcServerRegisterAuthInfoW@16 | 508 | RpcServerRegisterAuthInfoW@16 |
| 474 | RpcServerRegisterIf2@28 | 509 | RpcServerRegisterIf2@28 |
| 510 | RpcServerRegisterIf3@32 | ||
| 475 | RpcServerRegisterIf@12 | 511 | RpcServerRegisterIf@12 |
| 476 | RpcServerRegisterIfEx@24 | 512 | RpcServerRegisterIfEx@24 |
| 477 | RpcServerSubscribeForNotification@16 | 513 | RpcServerSubscribeForNotification@16 |
lib/libc/mingw/lib32/urlmon.def+13-109| ... | @@ -5,24 +5,10 @@ | ... | @@ -5,24 +5,10 @@ |
| 5 | ; | 5 | ; |
| 6 | LIBRARY "urlmon.dll" | 6 | LIBRARY "urlmon.dll" |
| 7 | EXPORTS | 7 | EXPORTS |
| 8 | ord_100@16 @100 | ||
| 9 | ord_101 @101 | ||
| 10 | ord_102 @102 | ||
| 11 | ord_103@8 @103 | ||
| 12 | ord_104@24 @104 | ||
| 13 | ord_105@12 @105 | ||
| 14 | ord_106@4 @106 | ||
| 15 | ord_107@8 @107 | ||
| 16 | ord_108 @108 | ||
| 17 | AsyncGetClassBits@44 | 8 | AsyncGetClassBits@44 |
| 18 | AsyncInstallDistributionUnit@36 | 9 | AsyncInstallDistributionUnit@36 |
| 19 | ord_111@8 @111 | ||
| 20 | ord_112@8 @112 | ||
| 21 | ord_113@8 @113 | ||
| 22 | ord_114 @114 | ||
| 23 | ord_115@4 @115 | ||
| 24 | ord_116@8 @116 | ||
| 25 | BindAsyncMoniker@20 | 10 | BindAsyncMoniker@20 |
| 11 | CAuthenticateHostUI_CreateInstance@12 | ||
| 26 | CDLGetLongPathNameA@12 | 12 | CDLGetLongPathNameA@12 |
| 27 | CDLGetLongPathNameW@12 | 13 | CDLGetLongPathNameW@12 |
| 28 | CORPolicyProvider@4 | 14 | CORPolicyProvider@4 |
| ... | @@ -36,6 +22,8 @@ CoInternetCompareUrl@12 | ... | @@ -36,6 +22,8 @@ CoInternetCompareUrl@12 |
| 36 | CoInternetCreateSecurityManager@12 | 22 | CoInternetCreateSecurityManager@12 |
| 37 | CoInternetCreateZoneManager@12 | 23 | CoInternetCreateZoneManager@12 |
| 38 | CoInternetFeatureSettingsChanged | 24 | CoInternetFeatureSettingsChanged |
| 25 | CoInternetGetMobileBrowserAppCompatMode@4 | ||
| 26 | CoInternetGetMobileBrowserForceDesktopMode@4 | ||
| 39 | CoInternetGetProtocolFlags@12 | 27 | CoInternetGetProtocolFlags@12 |
| 40 | CoInternetGetSecurityUrl@16 | 28 | CoInternetGetSecurityUrl@16 |
| 41 | CoInternetGetSecurityUrlEx@16 | 29 | CoInternetGetSecurityUrlEx@16 |
| ... | @@ -48,6 +36,8 @@ CoInternetParseIUri@28 | ... | @@ -48,6 +36,8 @@ CoInternetParseIUri@28 |
| 48 | CoInternetParseUrl@28 | 36 | CoInternetParseUrl@28 |
| 49 | CoInternetQueryInfo@28 | 37 | CoInternetQueryInfo@28 |
| 50 | CoInternetSetFeatureEnabled@12 | 38 | CoInternetSetFeatureEnabled@12 |
| 39 | CoInternetSetMobileBrowserAppCompatMode@4 | ||
| 40 | CoInternetSetMobileBrowserForceDesktopMode@4 | ||
| 51 | CompareSecurityIds@20 | 41 | CompareSecurityIds@20 |
| 52 | CompatFlagsFromClsid@12 | 42 | CompatFlagsFromClsid@12 |
| 53 | CopyBindInfo@8 | 43 | CopyBindInfo@8 |
| ... | @@ -65,6 +55,7 @@ CreateUriPriv@32 | ... | @@ -65,6 +55,7 @@ CreateUriPriv@32 |
| 65 | CreateUriWithFragment@20 | 55 | CreateUriWithFragment@20 |
| 66 | Extract@8 | 56 | Extract@8 |
| 67 | FaultInIEFeature@16 | 57 | FaultInIEFeature@16 |
| 58 | FileBearsMarkOfTheWeb@8 | ||
| 68 | FindMediaType@8 | 59 | FindMediaType@8 |
| 69 | FindMediaTypeClass@16 | 60 | FindMediaTypeClass@16 |
| 70 | FindMimeFromData@32 | 61 | FindMimeFromData@32 |
| ... | @@ -82,12 +73,14 @@ GetPropertyFromName@8 | ... | @@ -82,12 +73,14 @@ GetPropertyFromName@8 |
| 82 | GetPropertyName@4 | 73 | GetPropertyName@4 |
| 83 | GetSoftwareUpdateInfo@8 | 74 | GetSoftwareUpdateInfo@8 |
| 84 | GetUrlmonThreadNotificationHwnd@0 | 75 | GetUrlmonThreadNotificationHwnd@0 |
| 76 | GetZoneFromAlternateDataStreamEx@8 | ||
| 85 | HlinkGoBack@4 | 77 | HlinkGoBack@4 |
| 86 | HlinkGoForward@4 | 78 | HlinkGoForward@4 |
| 87 | HlinkNavigateMoniker@8 | 79 | HlinkNavigateMoniker@8 |
| 88 | HlinkNavigateString@8 | 80 | HlinkNavigateString@8 |
| 89 | HlinkSimpleNavigateToMoniker@32 | 81 | HlinkSimpleNavigateToMoniker@32 |
| 90 | HlinkSimpleNavigateToString@32 | 82 | HlinkSimpleNavigateToString@32 |
| 83 | IEGetUserPrivateNamespaceName@0 | ||
| 91 | IEDllLoader@8 | 84 | IEDllLoader@8 |
| 92 | IEInstallScope@4 | 85 | IEInstallScope@4 |
| 93 | IntlPercentEncodeNormalize@16 | 86 | IntlPercentEncodeNormalize@16 |
| ... | @@ -108,10 +101,13 @@ RegisterBindStatusCallback@16 | ... | @@ -108,10 +101,13 @@ RegisterBindStatusCallback@16 |
| 108 | RegisterFormatEnumerator@12 | 101 | RegisterFormatEnumerator@12 |
| 109 | RegisterMediaTypeClass@20 | 102 | RegisterMediaTypeClass@20 |
| 110 | RegisterMediaTypes@12 | 103 | RegisterMediaTypes@12 |
| 104 | RegisterWebPlatformPermanentSecurityManager@4 | ||
| 111 | ReleaseBindInfo@4 | 105 | ReleaseBindInfo@4 |
| 112 | ResetUrlmonLanguageData@0 | 106 | ResetUrlmonLanguageData@0 |
| 107 | RestrictHTTP2@4 | ||
| 113 | RevokeBindStatusCallback@8 | 108 | RevokeBindStatusCallback@8 |
| 114 | RevokeFormatEnumerator@8 | 109 | RevokeFormatEnumerator@8 |
| 110 | SetAccessForIEAppContainer@12 | ||
| 115 | SetSoftwareUpdateAdvertisementState@16 | 111 | SetSoftwareUpdateAdvertisementState@16 |
| 116 | ShouldDisplayPunycodeForUri@4 | 112 | ShouldDisplayPunycodeForUri@4 |
| 117 | ShouldShowIntranetWarningSecband@4 | 113 | ShouldShowIntranetWarningSecband@4 |
| ... | @@ -128,103 +124,11 @@ URLOpenPullStreamA@16 | ... | @@ -128,103 +124,11 @@ URLOpenPullStreamA@16 |
| 128 | URLOpenPullStreamW@16 | 124 | URLOpenPullStreamW@16 |
| 129 | URLOpenStreamA@16 | 125 | URLOpenStreamA@16 |
| 130 | URLOpenStreamW@16 | 126 | URLOpenStreamW@16 |
| 127 | UnregisterWebPlatformPermanentSecurityManager@0 | ||
| 131 | UrlMkBuildVersion | 128 | UrlMkBuildVersion |
| 132 | UrlMkGetSessionOption@20 | 129 | UrlMkGetSessionOption@20 |
| 133 | UrlMkSetSessionOption@16 | 130 | UrlMkSetSessionOption@16 |
| 131 | UrlmonCleanupCurrentThread@0 | ||
| 134 | WriteHitLogging@4 | 132 | WriteHitLogging@4 |
| 135 | ZonesReInit@4 | 133 | ZonesReInit@4 |
| 136 | ord_304@28 @304 | ||
| 137 | ord_305@12 @305 | ||
| 138 | ord_306@4 @306 | ||
| 139 | ord_307@20 @307 | ||
| 140 | ord_308@4 @308 | ||
| 141 | ord_309@4 @309 | ||
| 142 | ord_310@12 @310 | ||
| 143 | ord_311@12 @311 | ||
| 144 | ord_312@4 @312 | ||
| 145 | ord_313@8 @313 | ||
| 146 | ord_314@4 @314 | ||
| 147 | ord_315@8 @315 | ||
| 148 | ord_316@8 @316 | ||
| 149 | ord_318@8 @318 | ||
| 150 | ord_319@8 @319 | ||
| 151 | ord_320@12 @320 | ||
| 152 | ord_321@8 @321 | ||
| 153 | IECompatLogCSSFix@12 | 134 | IECompatLogCSSFix@12 |
| 154 | ord_323@12 @323 | ||
| 155 | ord_324 @324 | ||
| 156 | ; ord_395 @395 Couldn't determine function argument count. Function doesn't return. | ||
| 157 | ord_400@8 @400 | ||
| 158 | ord_401@4 @401 | ||
| 159 | ord_403@4 @403 | ||
| 160 | ord_404 @404 | ||
| 161 | ord_406 @406 | ||
| 162 | ord_407 @407 | ||
| 163 | ord_408@8 @408 | ||
| 164 | ord_409@8 @409 | ||
| 165 | ord_410@8 @410 | ||
| 166 | ord_411@8 @411 | ||
| 167 | ord_412@8 @412 | ||
| 168 | ord_413@8 @413 | ||
| 169 | ord_414@8 @414 | ||
| 170 | ord_415@8 @415 | ||
| 171 | ord_416@12 @416 | ||
| 172 | ord_417@12 @417 | ||
| 173 | ord_420@24 @420 | ||
| 174 | ord_421@8 @421 | ||
| 175 | ; ord_422 @422 Check!!! forwards to CloseHandle in KERNEL32.dll (ordinal 82) | ||
| 176 | ord_423@16 @423 | ||
| 177 | ord_430 @430 | ||
| 178 | ord_431@4 @431 | ||
| 179 | ord_432@8 @432 | ||
| 180 | ord_433@4 @433 | ||
| 181 | ord_434@12 @434 | ||
| 182 | ord_435@12 @435 | ||
| 183 | ord_436@8 @436 | ||
| 184 | ord_437@8 @437 | ||
| 185 | ord_438@24 @438 | ||
| 186 | ord_439@4 @439 | ||
| 187 | ord_440@4 @440 | ||
| 188 | ord_441@16 @441 | ||
| 189 | ord_442@8 @442 | ||
| 190 | ord_443@8 @443 | ||
| 191 | ord_444@12 @444 | ||
| 192 | ord_445@8 @445 | ||
| 193 | ord_446@4 @446 | ||
| 194 | ord_447@4 @447 | ||
| 195 | ord_448@4 @448 | ||
| 196 | ord_449@4 @449 | ||
| 197 | ord_450@4 @450 | ||
| 198 | ord_451@4 @451 | ||
| 199 | ord_452@8 @452 | ||
| 200 | ord_453@8 @453 | ||
| 201 | ord_454@8 @454 | ||
| 202 | ord_455 @455 | ||
| 203 | ord_456 @456 | ||
| 204 | ord_457@4 @457 | ||
| 205 | ord_458 @458 | ||
| 206 | ord_460@4 @460 | ||
| 207 | ord_461@8 @461 | ||
| 208 | ord_462@20 @462 | ||
| 209 | ord_463@20 @463 | ||
| 210 | ord_470@4 @470 | ||
| 211 | ord_471 @471 | ||
| 212 | ord_473@4 @473 | ||
| 213 | ord_474@16 @474 | ||
| 214 | ord_475@16 @475 | ||
| 215 | ord_476@16 @476 | ||
| 216 | ord_477@16 @477 | ||
| 217 | ord_478@32 @478 | ||
| 218 | ord_479@32 @479 | ||
| 219 | ord_480@36 @480 | ||
| 220 | ord_481@36 @481 | ||
| 221 | ord_482@12 @482 | ||
| 222 | ord_483@28 @483 | ||
| 223 | ord_484@8 @484 | ||
| 224 | ord_485@8 @485 | ||
| 225 | ord_486@8 @486 | ||
| 226 | ord_487@4 @487 | ||
| 227 | ord_488 @488 | ||
| 228 | ord_489@16 @489 | ||
| 229 | ord_490@44 @490 | ||
| 230 | ord_491@4 @491 |
lib/libc/mingw/lib64/mswsock.def deleted-40| ... | @@ -1,40 +0,0 @@ | ||
| 1 | ; | ||
| 2 | ; Exports of file MSWSOCK.dll | ||
| 3 | ; | ||
| 4 | ; Autogenerated by gen_exportdef | ||
| 5 | ; Written by Kai Tietz, 2007 | ||
| 6 | ; | ||
| 7 | LIBRARY MSWSOCK.dll | ||
| 8 | EXPORTS | ||
| 9 | ServiceMain | ||
| 10 | SvchostPushServiceGlobals | ||
| 11 | AcceptEx | ||
| 12 | EnumProtocolsA | ||
| 13 | EnumProtocolsW | ||
| 14 | GetAcceptExSockaddrs | ||
| 15 | GetAddressByNameA | ||
| 16 | GetAddressByNameW | ||
| 17 | GetNameByTypeA | ||
| 18 | GetNameByTypeW | ||
| 19 | GetServiceA | ||
| 20 | GetServiceW | ||
| 21 | GetTypeByNameA | ||
| 22 | GetTypeByNameW | ||
| 23 | MigrateWinsockConfiguration | ||
| 24 | NPLoadNameSpaces | ||
| 25 | NSPStartup | ||
| 26 | SetServiceA | ||
| 27 | SetServiceW | ||
| 28 | StartWsdpService | ||
| 29 | StopWsdpService | ||
| 30 | TransmitFile | ||
| 31 | WSARecvEx | ||
| 32 | WSPStartup | ||
| 33 | dn_expand | ||
| 34 | getnetbyname | ||
| 35 | inet_network | ||
| 36 | rcmd | ||
| 37 | rexec | ||
| 38 | rresvport | ||
| 39 | s_perror | ||
| 40 | sethostname | ||
lib/libc/mingw/lib64/ntdll.def+416-172| ... | @@ -26,6 +26,8 @@ AlpcRegisterCompletionListWorkerThread | ... | @@ -26,6 +26,8 @@ AlpcRegisterCompletionListWorkerThread |
| 26 | AlpcRundownCompletionList | 26 | AlpcRundownCompletionList |
| 27 | AlpcUnregisterCompletionList | 27 | AlpcUnregisterCompletionList |
| 28 | AlpcUnregisterCompletionListWorkerThread | 28 | AlpcUnregisterCompletionListWorkerThread |
| 29 | ApiSetQueryApiSetPresence | ||
| 30 | ApiSetQueryApiSetPresenceEx | ||
| 29 | CsrAllocateCaptureBuffer | 31 | CsrAllocateCaptureBuffer |
| 30 | CsrAllocateMessagePointer | 32 | CsrAllocateMessagePointer |
| 31 | CsrCaptureMessageBuffer | 33 | CsrCaptureMessageBuffer |
| ... | @@ -52,6 +54,7 @@ DbgSetDebugFilterState | ... | @@ -52,6 +54,7 @@ DbgSetDebugFilterState |
| 52 | DbgUiConnectToDbg | 54 | DbgUiConnectToDbg |
| 53 | DbgUiContinue | 55 | DbgUiContinue |
| 54 | DbgUiConvertStateChangeStructure | 56 | DbgUiConvertStateChangeStructure |
| 57 | DbgUiConvertStateChangeStructureEx | ||
| 55 | DbgUiDebugActiveProcess | 58 | DbgUiDebugActiveProcess |
| 56 | DbgUiGetThreadDebugObject | 59 | DbgUiGetThreadDebugObject |
| 57 | DbgUiIssueRemoteBreakin | 60 | DbgUiIssueRemoteBreakin |
| ... | @@ -60,6 +63,7 @@ DbgUiSetThreadDebugObject | ... | @@ -60,6 +63,7 @@ DbgUiSetThreadDebugObject |
| 60 | DbgUiStopDebugging | 63 | DbgUiStopDebugging |
| 61 | DbgUiWaitStateChange | 64 | DbgUiWaitStateChange |
| 62 | DbgUserBreakPoint | 65 | DbgUserBreakPoint |
| 66 | EtwCheckCoverage | ||
| 63 | EtwControlTraceA | 67 | EtwControlTraceA |
| 64 | EtwControlTraceW | 68 | EtwControlTraceW |
| 65 | EtwCreateTraceInstanceId | 69 | EtwCreateTraceInstanceId |
| ... | @@ -73,6 +77,7 @@ EtwEventActivityIdControl | ... | @@ -73,6 +77,7 @@ EtwEventActivityIdControl |
| 73 | EtwEventEnabled | 77 | EtwEventEnabled |
| 74 | EtwEventProviderEnabled | 78 | EtwEventProviderEnabled |
| 75 | EtwEventRegister | 79 | EtwEventRegister |
| 80 | EtwEventSetInformation | ||
| 76 | EtwEventUnregister | 81 | EtwEventUnregister |
| 77 | EtwEventWrite | 82 | EtwEventWrite |
| 78 | EtwEventWriteEndScenario | 83 | EtwEventWriteEndScenario |
| ... | @@ -132,64 +137,90 @@ KiRaiseUserExceptionDispatcher | ... | @@ -132,64 +137,90 @@ KiRaiseUserExceptionDispatcher |
| 132 | KiUserApcDispatcher | 137 | KiUserApcDispatcher |
| 133 | KiUserCallbackDispatcher | 138 | KiUserCallbackDispatcher |
| 134 | KiUserExceptionDispatcher | 139 | KiUserExceptionDispatcher |
| 140 | KiUserInvertedFunctionTable | ||
| 135 | LdrAccessOutOfProcessResource | 141 | LdrAccessOutOfProcessResource |
| 136 | LdrAccessResource | 142 | LdrAccessResource |
| 143 | LdrAddDllDirectory | ||
| 137 | LdrAddLoadAsDataTable | 144 | LdrAddLoadAsDataTable |
| 138 | LdrAddRefDll | 145 | LdrAddRefDll |
| 139 | LdrAlternateResourcesEnabled | 146 | LdrAlternateResourcesEnabled |
| 147 | LdrAppxHandleIntegrityFailure | ||
| 148 | LdrCallEnclave | ||
| 149 | LdrControlFlowGuardEnforced | ||
| 150 | LdrCreateEnclave | ||
| 140 | LdrCreateOutOfProcessImage | 151 | LdrCreateOutOfProcessImage |
| 152 | LdrDeleteEnclave | ||
| 141 | LdrDestroyOutOfProcessImage | 153 | LdrDestroyOutOfProcessImage |
| 142 | LdrDisableThreadCalloutsForDll | 154 | LdrDisableThreadCalloutsForDll |
| 143 | LdrEnumResources | 155 | LdrEnumResources |
| 144 | LdrEnumerateLoadedModules | 156 | LdrEnumerateLoadedModules |
| 157 | LdrFastFailInLoaderCallout | ||
| 145 | LdrFindCreateProcessManifest | 158 | LdrFindCreateProcessManifest |
| 146 | LdrFindEntryForAddress | 159 | LdrFindEntryForAddress |
| 147 | LdrFindResourceDirectory_U | 160 | LdrFindResourceDirectory_U |
| 148 | LdrFindResourceEx_U | 161 | LdrFindResourceEx_U |
| 149 | LdrFindResource_U | 162 | LdrFindResource_U |
| 150 | LdrFlushAlternateResourceModules | 163 | LdrFlushAlternateResourceModules |
| 164 | LdrGetDllDirectory | ||
| 165 | LdrGetDllFullName | ||
| 151 | LdrGetDllHandle | 166 | LdrGetDllHandle |
| 152 | LdrGetDllHandleByMapping | 167 | LdrGetDllHandleByMapping |
| 153 | LdrGetDllHandleByName | 168 | LdrGetDllHandleByName |
| 154 | LdrGetDllHandleEx | 169 | LdrGetDllHandleEx |
| 170 | LdrGetDllPath | ||
| 155 | LdrGetFailureData | 171 | LdrGetFailureData |
| 156 | LdrGetFileNameFromLoadAsDataTable | 172 | LdrGetFileNameFromLoadAsDataTable |
| 157 | LdrGetKnownDllSectionHandle | 173 | LdrGetKnownDllSectionHandle |
| 158 | LdrGetProcedureAddress | 174 | LdrGetProcedureAddress |
| 159 | LdrGetProcedureAddressEx | 175 | LdrGetProcedureAddressEx |
| 176 | LdrGetProcedureAddressForCaller | ||
| 160 | LdrHotPatchRoutine | 177 | LdrHotPatchRoutine |
| 161 | LdrInitShimEngineDynamic | 178 | LdrInitShimEngineDynamic |
| 179 | LdrInitializeEnclave | ||
| 162 | LdrInitializeThunk | 180 | LdrInitializeThunk |
| 181 | LdrIsModuleSxsRedirected | ||
| 163 | LdrLoadAlternateResourceModule | 182 | LdrLoadAlternateResourceModule |
| 164 | LdrLoadAlternateResourceModuleEx | 183 | LdrLoadAlternateResourceModuleEx |
| 165 | LdrLoadDll | 184 | LdrLoadDll |
| 185 | LdrLoadEnclaveModule | ||
| 166 | LdrLockLoaderLock | 186 | LdrLockLoaderLock |
| 167 | LdrOpenImageFileOptionsKey | 187 | LdrOpenImageFileOptionsKey |
| 168 | LdrProcessInitializationComplete | 188 | LdrProcessInitializationComplete |
| 169 | LdrProcessRelocationBlock | 189 | LdrProcessRelocationBlock |
| 190 | LdrProcessRelocationBlockEx | ||
| 170 | LdrQueryImageFileExecutionOptions | 191 | LdrQueryImageFileExecutionOptions |
| 171 | LdrQueryImageFileExecutionOptionsEx | 192 | LdrQueryImageFileExecutionOptionsEx |
| 172 | LdrQueryImageFileKeyOption | 193 | LdrQueryImageFileKeyOption |
| 173 | LdrQueryModuleServiceTags | 194 | LdrQueryModuleServiceTags |
| 195 | LdrQueryOptionalDelayLoadedAPI | ||
| 174 | LdrQueryProcessModuleInformation | 196 | LdrQueryProcessModuleInformation |
| 175 | LdrRegisterDllNotification | 197 | LdrRegisterDllNotification |
| 198 | LdrRemoveDllDirectory | ||
| 176 | LdrRemoveLoadAsDataTable | 199 | LdrRemoveLoadAsDataTable |
| 177 | LdrResFindResource | 200 | LdrResFindResource |
| 178 | LdrResFindResourceDirectory | 201 | LdrResFindResourceDirectory |
| 179 | LdrResGetRCConfig | 202 | LdrResGetRCConfig |
| 180 | LdrResRelease | 203 | LdrResRelease |
| 181 | LdrResSearchResource | 204 | LdrResSearchResource |
| 205 | LdrResolveDelayLoadedAPI | ||
| 206 | LdrResolveDelayLoadsFromDll | ||
| 182 | LdrRscIsTypeExist | 207 | LdrRscIsTypeExist |
| 183 | LdrSetAppCompatDllRedirectionCallback | 208 | LdrSetAppCompatDllRedirectionCallback |
| 209 | LdrSetDefaultDllDirectories | ||
| 210 | LdrSetDllDirectory | ||
| 184 | LdrSetDllManifestProber | 211 | LdrSetDllManifestProber |
| 212 | LdrSetImplicitPathOptions | ||
| 185 | LdrSetMUICacheType | 213 | LdrSetMUICacheType |
| 186 | LdrShutdownProcess | 214 | LdrShutdownProcess |
| 187 | LdrShutdownThread | 215 | LdrShutdownThread |
| 216 | LdrStandardizeSystemPath | ||
| 217 | LdrSystemDllInitBlock | ||
| 188 | LdrUnloadAlternateResourceModule | 218 | LdrUnloadAlternateResourceModule |
| 189 | LdrUnloadAlternateResourceModuleEx | 219 | LdrUnloadAlternateResourceModuleEx |
| 190 | LdrUnloadDll | 220 | LdrUnloadDll |
| 191 | LdrUnlockLoaderLock | 221 | LdrUnlockLoaderLock |
| 192 | LdrUnregisterDllNotification | 222 | LdrUnregisterDllNotification |
| 223 | LdrUpdatePackageSearchPath | ||
| 193 | LdrVerifyImageMatchesChecksum | 224 | LdrVerifyImageMatchesChecksum |
| 194 | LdrVerifyImageMatchesChecksumEx | 225 | LdrVerifyImageMatchesChecksumEx |
| 195 | LdrpResGetMappingSize | 226 | LdrpResGetMappingSize |
| ... | @@ -211,21 +242,28 @@ NtAccessCheckByTypeAndAuditAlarm | ... | @@ -211,21 +242,28 @@ NtAccessCheckByTypeAndAuditAlarm |
| 211 | NtAccessCheckByTypeResultList | 242 | NtAccessCheckByTypeResultList |
| 212 | NtAccessCheckByTypeResultListAndAuditAlarm | 243 | NtAccessCheckByTypeResultListAndAuditAlarm |
| 213 | NtAccessCheckByTypeResultListAndAuditAlarmByHandle | 244 | NtAccessCheckByTypeResultListAndAuditAlarmByHandle |
| 245 | NtAcquireProcessActivityReference | ||
| 214 | NtAddAtom | 246 | NtAddAtom |
| 247 | NtAddAtomEx | ||
| 215 | NtAddBootEntry | 248 | NtAddBootEntry |
| 216 | NtAddDriverEntry | 249 | NtAddDriverEntry |
| 217 | NtAdjustGroupsToken | 250 | NtAdjustGroupsToken |
| 218 | NtAdjustPrivilegesToken | 251 | NtAdjustPrivilegesToken |
| 252 | NtAdjustTokenClaimsAndDeviceGroups | ||
| 219 | NtAlertResumeThread | 253 | NtAlertResumeThread |
| 220 | NtAlertThread | 254 | NtAlertThread |
| 255 | NtAlertThreadByThreadId | ||
| 221 | NtAllocateLocallyUniqueId | 256 | NtAllocateLocallyUniqueId |
| 222 | NtAllocateReserveObject | 257 | NtAllocateReserveObject |
| 223 | NtAllocateUserPhysicalPages | 258 | NtAllocateUserPhysicalPages |
| 259 | NtAllocateUserPhysicalPagesEx | ||
| 224 | NtAllocateUuids | 260 | NtAllocateUuids |
| 225 | NtAllocateVirtualMemory | 261 | NtAllocateVirtualMemory |
| 262 | NtAllocateVirtualMemoryEx | ||
| 226 | NtAlpcAcceptConnectPort | 263 | NtAlpcAcceptConnectPort |
| 227 | NtAlpcCancelMessage | 264 | NtAlpcCancelMessage |
| 228 | NtAlpcConnectPort | 265 | NtAlpcConnectPort |
| 266 | NtAlpcConnectPortEx | ||
| 229 | NtAlpcCreatePort | 267 | NtAlpcCreatePort |
| 230 | NtAlpcCreatePortSection | 268 | NtAlpcCreatePortSection |
| 231 | NtAlpcCreateResourceReserve | 269 | NtAlpcCreateResourceReserve |
| ... | @@ -236,6 +274,7 @@ NtAlpcDeleteResourceReserve | ... | @@ -236,6 +274,7 @@ NtAlpcDeleteResourceReserve |
| 236 | NtAlpcDeleteSectionView | 274 | NtAlpcDeleteSectionView |
| 237 | NtAlpcDeleteSecurityContext | 275 | NtAlpcDeleteSecurityContext |
| 238 | NtAlpcDisconnectPort | 276 | NtAlpcDisconnectPort |
| 277 | NtAlpcImpersonateClientContainerOfPort | ||
| 239 | NtAlpcImpersonateClientOfPort | 278 | NtAlpcImpersonateClientOfPort |
| 240 | NtAlpcOpenSenderProcess | 279 | NtAlpcOpenSenderProcess |
| 241 | NtAlpcOpenSenderThread | 280 | NtAlpcOpenSenderThread |
| ... | @@ -247,58 +286,78 @@ NtAlpcSetInformation | ... | @@ -247,58 +286,78 @@ NtAlpcSetInformation |
| 247 | NtApphelpCacheControl | 286 | NtApphelpCacheControl |
| 248 | NtAreMappedFilesTheSame | 287 | NtAreMappedFilesTheSame |
| 249 | NtAssignProcessToJobObject | 288 | NtAssignProcessToJobObject |
| 289 | NtAssociateWaitCompletionPacket | ||
| 290 | NtCallEnclave | ||
| 250 | NtCallbackReturn | 291 | NtCallbackReturn |
| 251 | NtCancelDeviceWakeupRequest | 292 | NtCancelDeviceWakeupRequest |
| 252 | NtCancelIoFile | 293 | NtCancelIoFile |
| 253 | NtCancelIoFileEx | 294 | NtCancelIoFileEx |
| 254 | NtCancelSynchronousIoFile | 295 | NtCancelSynchronousIoFile |
| 255 | NtCancelTimer | 296 | NtCancelTimer |
| 297 | NtCancelTimer2 | ||
| 298 | NtCancelWaitCompletionPacket | ||
| 256 | NtClearEvent | 299 | NtClearEvent |
| 257 | NtClose | 300 | NtClose |
| 258 | NtCloseObjectAuditAlarm | 301 | NtCloseObjectAuditAlarm |
| 259 | NtCommitComplete | 302 | NtCommitComplete |
| 260 | NtCommitEnlistment | 303 | NtCommitEnlistment |
| 304 | NtCommitRegistryTransaction | ||
| 261 | NtCommitTransaction | 305 | NtCommitTransaction |
| 262 | NtCompactKeys | 306 | NtCompactKeys |
| 307 | NtCompareObjects | ||
| 308 | NtCompareSigningLevels | ||
| 263 | NtCompareTokens | 309 | NtCompareTokens |
| 264 | NtCompleteConnectPort | 310 | NtCompleteConnectPort |
| 265 | NtCompressKey | 311 | NtCompressKey |
| 266 | NtConnectPort | 312 | NtConnectPort |
| 267 | NtContinue | 313 | NtContinue |
| 314 | NtConvertBetweenAuxiliaryCounterAndPerformanceCounter | ||
| 315 | NtCreateCrossVmEvent | ||
| 268 | NtCreateDebugObject | 316 | NtCreateDebugObject |
| 269 | NtCreateDirectoryObject | 317 | NtCreateDirectoryObject |
| 318 | NtCreateDirectoryObjectEx | ||
| 319 | NtCreateEnclave | ||
| 270 | NtCreateEnlistment | 320 | NtCreateEnlistment |
| 271 | NtCreateEvent | 321 | NtCreateEvent |
| 272 | NtCreateEventPair | 322 | NtCreateEventPair |
| 273 | NtCreateFile | 323 | NtCreateFile |
| 324 | NtCreateIRTimer | ||
| 274 | NtCreateIoCompletion | 325 | NtCreateIoCompletion |
| 275 | NtCreateJobObject | 326 | NtCreateJobObject |
| 276 | NtCreateJobSet | 327 | NtCreateJobSet |
| 277 | NtCreateKey | 328 | NtCreateKey |
| 278 | NtCreateKeyTransacted | 329 | NtCreateKeyTransacted |
| 279 | NtCreateKeyedEvent | 330 | NtCreateKeyedEvent |
| 331 | NtCreateLowBoxToken | ||
| 280 | NtCreateMailslotFile | 332 | NtCreateMailslotFile |
| 281 | NtCreateMutant | 333 | NtCreateMutant |
| 282 | NtCreateNamedPipeFile | 334 | NtCreateNamedPipeFile |
| 283 | NtCreatePagingFile | 335 | NtCreatePagingFile |
| 336 | NtCreatePartition | ||
| 284 | NtCreatePort | 337 | NtCreatePort |
| 285 | NtCreatePrivateNamespace | 338 | NtCreatePrivateNamespace |
| 286 | NtCreateProcess | 339 | NtCreateProcess |
| 287 | NtCreateProcessEx | 340 | NtCreateProcessEx |
| 288 | NtCreateProfile | 341 | NtCreateProfile |
| 289 | NtCreateProfileEx | 342 | NtCreateProfileEx |
| 343 | NtCreateRegistryTransaction | ||
| 290 | NtCreateResourceManager | 344 | NtCreateResourceManager |
| 291 | NtCreateSection | 345 | NtCreateSection |
| 346 | NtCreateSectionEx | ||
| 292 | NtCreateSemaphore | 347 | NtCreateSemaphore |
| 293 | NtCreateSymbolicLinkObject | 348 | NtCreateSymbolicLinkObject |
| 294 | NtCreateThread | 349 | NtCreateThread |
| 295 | NtCreateThreadEx | 350 | NtCreateThreadEx |
| 296 | NtCreateTimer | 351 | NtCreateTimer |
| 352 | NtCreateTimer2 | ||
| 297 | NtCreateToken | 353 | NtCreateToken |
| 354 | NtCreateTokenEx | ||
| 298 | NtCreateTransaction | 355 | NtCreateTransaction |
| 299 | NtCreateTransactionManager | 356 | NtCreateTransactionManager |
| 300 | NtCreateUserProcess | 357 | NtCreateUserProcess |
| 358 | NtCreateWaitCompletionPacket | ||
| 301 | NtCreateWaitablePort | 359 | NtCreateWaitablePort |
| 360 | NtCreateWnfStateName | ||
| 302 | NtCreateWorkerFactory | 361 | NtCreateWorkerFactory |
| 303 | NtDebugActiveProcess | 362 | NtDebugActiveProcess |
| 304 | NtDebugContinue | 363 | NtDebugContinue |
| ... | @@ -311,6 +370,8 @@ NtDeleteKey | ... | @@ -311,6 +370,8 @@ NtDeleteKey |
| 311 | NtDeleteObjectAuditAlarm | 370 | NtDeleteObjectAuditAlarm |
| 312 | NtDeletePrivateNamespace | 371 | NtDeletePrivateNamespace |
| 313 | NtDeleteValueKey | 372 | NtDeleteValueKey |
| 373 | NtDeleteWnfStateData | ||
| 374 | NtDeleteWnfStateName | ||
| 314 | NtDeviceIoControlFile | 375 | NtDeviceIoControlFile |
| 315 | NtDisableLastKnownGood | 376 | NtDisableLastKnownGood |
| 316 | NtDisplayString | 377 | NtDisplayString |
| ... | @@ -325,9 +386,12 @@ NtEnumerateSystemEnvironmentValuesEx | ... | @@ -325,9 +386,12 @@ NtEnumerateSystemEnvironmentValuesEx |
| 325 | NtEnumerateTransactionObject | 386 | NtEnumerateTransactionObject |
| 326 | NtEnumerateValueKey | 387 | NtEnumerateValueKey |
| 327 | NtExtendSection | 388 | NtExtendSection |
| 389 | NtFilterBootOption | ||
| 328 | NtFilterToken | 390 | NtFilterToken |
| 391 | NtFilterTokenEx | ||
| 329 | NtFindAtom | 392 | NtFindAtom |
| 330 | NtFlushBuffersFile | 393 | NtFlushBuffersFile |
| 394 | NtFlushBuffersFileEx | ||
| 331 | NtFlushInstallUILanguage | 395 | NtFlushInstallUILanguage |
| 332 | NtFlushInstructionCache | 396 | NtFlushInstructionCache |
| 333 | NtFlushKey | 397 | NtFlushKey |
| ... | @@ -339,8 +403,11 @@ NtFreeVirtualMemory | ... | @@ -339,8 +403,11 @@ NtFreeVirtualMemory |
| 339 | NtFreezeRegistry | 403 | NtFreezeRegistry |
| 340 | NtFreezeTransactions | 404 | NtFreezeTransactions |
| 341 | NtFsControlFile | 405 | NtFsControlFile |
| 406 | NtGetCachedSigningLevel | ||
| 407 | NtGetCompleteWnfStateSubscription | ||
| 342 | NtGetContextThread | 408 | NtGetContextThread |
| 343 | NtGetCurrentProcessorNumber | 409 | NtGetCurrentProcessorNumber |
| 410 | NtGetCurrentProcessorNumberEx | ||
| 344 | NtGetDevicePowerState | 411 | NtGetDevicePowerState |
| 345 | NtGetMUIRegistryInfo | 412 | NtGetMUIRegistryInfo |
| 346 | NtGetNextProcess | 413 | NtGetNextProcess |
| ... | @@ -353,6 +420,7 @@ NtGetWriteWatch | ... | @@ -353,6 +420,7 @@ NtGetWriteWatch |
| 353 | NtImpersonateAnonymousToken | 420 | NtImpersonateAnonymousToken |
| 354 | NtImpersonateClientOfPort | 421 | NtImpersonateClientOfPort |
| 355 | NtImpersonateThread | 422 | NtImpersonateThread |
| 423 | NtInitializeEnclave | ||
| 356 | NtInitializeNlsFiles | 424 | NtInitializeNlsFiles |
| 357 | NtInitializeRegistry | 425 | NtInitializeRegistry |
| 358 | NtInitiatePowerAction | 426 | NtInitiatePowerAction |
| ... | @@ -361,6 +429,7 @@ NtIsSystemResumeAutomatic | ... | @@ -361,6 +429,7 @@ NtIsSystemResumeAutomatic |
| 361 | NtIsUILanguageComitted | 429 | NtIsUILanguageComitted |
| 362 | NtListenPort | 430 | NtListenPort |
| 363 | NtLoadDriver | 431 | NtLoadDriver |
| 432 | NtLoadEnclaveData | ||
| 364 | NtLoadKey | 433 | NtLoadKey |
| 365 | NtLoadKey2 | 434 | NtLoadKey2 |
| 366 | NtLoadKeyEx | 435 | NtLoadKeyEx |
| ... | @@ -370,13 +439,17 @@ NtLockRegistryKey | ... | @@ -370,13 +439,17 @@ NtLockRegistryKey |
| 370 | NtLockVirtualMemory | 439 | NtLockVirtualMemory |
| 371 | NtMakePermanentObject | 440 | NtMakePermanentObject |
| 372 | NtMakeTemporaryObject | 441 | NtMakeTemporaryObject |
| 442 | NtManageHotPatch | ||
| 443 | NtManagePartition | ||
| 373 | NtMapCMFModule | 444 | NtMapCMFModule |
| 374 | NtMapUserPhysicalPages | 445 | NtMapUserPhysicalPages |
| 375 | NtMapUserPhysicalPagesScatter | 446 | NtMapUserPhysicalPagesScatter |
| 376 | NtMapViewOfSection | 447 | NtMapViewOfSection |
| 448 | NtMapViewOfSectionEx | ||
| 377 | NtModifyBootEntry | 449 | NtModifyBootEntry |
| 378 | NtModifyDriverEntry | 450 | NtModifyDriverEntry |
| 379 | NtNotifyChangeDirectoryFile | 451 | NtNotifyChangeDirectoryFile |
| 452 | NtNotifyChangeDirectoryFileEx | ||
| 380 | NtNotifyChangeKey | 453 | NtNotifyChangeKey |
| 381 | NtNotifyChangeMultipleKeys | 454 | NtNotifyChangeMultipleKeys |
| 382 | NtNotifyChangeSession | 455 | NtNotifyChangeSession |
| ... | @@ -394,10 +467,12 @@ NtOpenKeyTransactedEx | ... | @@ -394,10 +467,12 @@ NtOpenKeyTransactedEx |
| 394 | NtOpenKeyedEvent | 467 | NtOpenKeyedEvent |
| 395 | NtOpenMutant | 468 | NtOpenMutant |
| 396 | NtOpenObjectAuditAlarm | 469 | NtOpenObjectAuditAlarm |
| 470 | NtOpenPartition | ||
| 397 | NtOpenPrivateNamespace | 471 | NtOpenPrivateNamespace |
| 398 | NtOpenProcess | 472 | NtOpenProcess |
| 399 | NtOpenProcessToken | 473 | NtOpenProcessToken |
| 400 | NtOpenProcessTokenEx | 474 | NtOpenProcessTokenEx |
| 475 | NtOpenRegistryTransaction | ||
| 401 | NtOpenResourceManager | 476 | NtOpenResourceManager |
| 402 | NtOpenSection | 477 | NtOpenSection |
| 403 | NtOpenSemaphore | 478 | NtOpenSemaphore |
| ... | @@ -421,20 +496,24 @@ NtPrivilegedServiceAuditAlarm | ... | @@ -421,20 +496,24 @@ NtPrivilegedServiceAuditAlarm |
| 421 | NtPropagationComplete | 496 | NtPropagationComplete |
| 422 | NtPropagationFailed | 497 | NtPropagationFailed |
| 423 | NtProtectVirtualMemory | 498 | NtProtectVirtualMemory |
| 499 | NtPssCaptureVaSpaceBulk | ||
| 424 | NtPulseEvent | 500 | NtPulseEvent |
| 425 | NtQueryAttributesFile | 501 | NtQueryAttributesFile |
| 502 | NtQueryAuxiliaryCounterFrequency | ||
| 426 | NtQueryBootEntryOrder | 503 | NtQueryBootEntryOrder |
| 427 | NtQueryBootOptions | 504 | NtQueryBootOptions |
| 428 | NtQueryDebugFilterState | 505 | NtQueryDebugFilterState |
| 429 | NtQueryDefaultLocale | 506 | NtQueryDefaultLocale |
| 430 | NtQueryDefaultUILanguage | 507 | NtQueryDefaultUILanguage |
| 431 | NtQueryDirectoryFile | 508 | NtQueryDirectoryFile |
| 509 | NtQueryDirectoryFileEx | ||
| 432 | NtQueryDirectoryObject | 510 | NtQueryDirectoryObject |
| 433 | NtQueryDriverEntryOrder | 511 | NtQueryDriverEntryOrder |
| 434 | NtQueryEaFile | 512 | NtQueryEaFile |
| 435 | NtQueryEvent | 513 | NtQueryEvent |
| 436 | NtQueryFullAttributesFile | 514 | NtQueryFullAttributesFile |
| 437 | NtQueryInformationAtom | 515 | NtQueryInformationAtom |
| 516 | NtQueryInformationByName | ||
| 438 | NtQueryInformationEnlistment | 517 | NtQueryInformationEnlistment |
| 439 | NtQueryInformationFile | 518 | NtQueryInformationFile |
| 440 | NtQueryInformationJobObject | 519 | NtQueryInformationJobObject |
| ... | @@ -462,6 +541,7 @@ NtQueryQuotaInformationFile | ... | @@ -462,6 +541,7 @@ NtQueryQuotaInformationFile |
| 462 | NtQuerySection | 541 | NtQuerySection |
| 463 | NtQuerySecurityAttributesToken | 542 | NtQuerySecurityAttributesToken |
| 464 | NtQuerySecurityObject | 543 | NtQuerySecurityObject |
| 544 | NtQuerySecurityPolicy | ||
| 465 | NtQuerySemaphore | 545 | NtQuerySemaphore |
| 466 | NtQuerySymbolicLinkObject | 546 | NtQuerySymbolicLinkObject |
| 467 | NtQuerySystemEnvironmentValue | 547 | NtQuerySystemEnvironmentValue |
| ... | @@ -474,6 +554,8 @@ NtQueryTimerResolution | ... | @@ -474,6 +554,8 @@ NtQueryTimerResolution |
| 474 | NtQueryValueKey | 554 | NtQueryValueKey |
| 475 | NtQueryVirtualMemory | 555 | NtQueryVirtualMemory |
| 476 | NtQueryVolumeInformationFile | 556 | NtQueryVolumeInformationFile |
| 557 | NtQueryWnfStateData | ||
| 558 | NtQueryWnfStateNameInformation | ||
| 477 | NtQueueApcThread | 559 | NtQueueApcThread |
| 478 | NtQueueApcThreadEx | 560 | NtQueueApcThreadEx |
| 479 | NtRaiseException | 561 | NtRaiseException |
| ... | @@ -512,8 +594,10 @@ NtResetWriteWatch | ... | @@ -512,8 +594,10 @@ NtResetWriteWatch |
| 512 | NtRestoreKey | 594 | NtRestoreKey |
| 513 | NtResumeProcess | 595 | NtResumeProcess |
| 514 | NtResumeThread | 596 | NtResumeThread |
| 597 | NtRevertContainerImpersonation | ||
| 515 | NtRollbackComplete | 598 | NtRollbackComplete |
| 516 | NtRollbackEnlistment | 599 | NtRollbackEnlistment |
| 600 | NtRollbackRegistryTransaction | ||
| 517 | NtRollbackTransaction | 601 | NtRollbackTransaction |
| 518 | NtRollforwardTransactionManager | 602 | NtRollforwardTransactionManager |
| 519 | NtSaveKey | 603 | NtSaveKey |
| ... | @@ -523,6 +607,8 @@ NtSecureConnectPort | ... | @@ -523,6 +607,8 @@ NtSecureConnectPort |
| 523 | NtSerializeBoot | 607 | NtSerializeBoot |
| 524 | NtSetBootEntryOrder | 608 | NtSetBootEntryOrder |
| 525 | NtSetBootOptions | 609 | NtSetBootOptions |
| 610 | NtSetCachedSigningLevel | ||
| 611 | NtSetCachedSigningLevel2 | ||
| 526 | NtSetContextThread | 612 | NtSetContextThread |
| 527 | NtSetDebugFilterState | 613 | NtSetDebugFilterState |
| 528 | NtSetDefaultHardErrorPort | 614 | NtSetDefaultHardErrorPort |
| ... | @@ -534,6 +620,7 @@ NtSetEvent | ... | @@ -534,6 +620,7 @@ NtSetEvent |
| 534 | NtSetEventBoostPriority | 620 | NtSetEventBoostPriority |
| 535 | NtSetHighEventPair | 621 | NtSetHighEventPair |
| 536 | NtSetHighWaitLowEventPair | 622 | NtSetHighWaitLowEventPair |
| 623 | NtSetIRTimer | ||
| 537 | NtSetInformationDebugObject | 624 | NtSetInformationDebugObject |
| 538 | NtSetInformationEnlistment | 625 | NtSetInformationEnlistment |
| 539 | NtSetInformationFile | 626 | NtSetInformationFile |
| ... | @@ -542,10 +629,12 @@ NtSetInformationKey | ... | @@ -542,10 +629,12 @@ NtSetInformationKey |
| 542 | NtSetInformationObject | 629 | NtSetInformationObject |
| 543 | NtSetInformationProcess | 630 | NtSetInformationProcess |
| 544 | NtSetInformationResourceManager | 631 | NtSetInformationResourceManager |
| 632 | NtSetInformationSymbolicLink | ||
| 545 | NtSetInformationThread | 633 | NtSetInformationThread |
| 546 | NtSetInformationToken | 634 | NtSetInformationToken |
| 547 | NtSetInformationTransaction | 635 | NtSetInformationTransaction |
| 548 | NtSetInformationTransactionManager | 636 | NtSetInformationTransactionManager |
| 637 | NtSetInformationVirtualMemory | ||
| 549 | NtSetInformationWorkerFactory | 638 | NtSetInformationWorkerFactory |
| 550 | NtSetIntervalProfile | 639 | NtSetIntervalProfile |
| 551 | NtSetIoCompletion | 640 | NtSetIoCompletion |
| ... | @@ -562,20 +651,24 @@ NtSetSystemPowerState | ... | @@ -562,20 +651,24 @@ NtSetSystemPowerState |
| 562 | NtSetSystemTime | 651 | NtSetSystemTime |
| 563 | NtSetThreadExecutionState | 652 | NtSetThreadExecutionState |
| 564 | NtSetTimer | 653 | NtSetTimer |
| 654 | NtSetTimer2 | ||
| 565 | NtSetTimerEx | 655 | NtSetTimerEx |
| 566 | NtSetTimerResolution | 656 | NtSetTimerResolution |
| 567 | NtSetUuidSeed | 657 | NtSetUuidSeed |
| 568 | NtSetValueKey | 658 | NtSetValueKey |
| 569 | NtSetVolumeInformationFile | 659 | NtSetVolumeInformationFile |
| 660 | NtSetWnfProcessNotificationEvent | ||
| 570 | NtShutdownSystem | 661 | NtShutdownSystem |
| 571 | NtShutdownWorkerFactory | 662 | NtShutdownWorkerFactory |
| 572 | NtSignalAndWaitForSingleObject | 663 | NtSignalAndWaitForSingleObject |
| 573 | NtSinglePhaseReject | 664 | NtSinglePhaseReject |
| 574 | NtStartProfile | 665 | NtStartProfile |
| 575 | NtStopProfile | 666 | NtStopProfile |
| 667 | NtSubscribeWnfStateChange | ||
| 576 | NtSuspendProcess | 668 | NtSuspendProcess |
| 577 | NtSuspendThread | 669 | NtSuspendThread |
| 578 | NtSystemDebugControl | 670 | NtSystemDebugControl |
| 671 | NtTerminateEnclave | ||
| 579 | NtTerminateJobObject | 672 | NtTerminateJobObject |
| 580 | NtTerminateProcess | 673 | NtTerminateProcess |
| 581 | NtTerminateThread | 674 | NtTerminateThread |
| ... | @@ -593,7 +686,11 @@ NtUnloadKeyEx | ... | @@ -593,7 +686,11 @@ NtUnloadKeyEx |
| 593 | NtUnlockFile | 686 | NtUnlockFile |
| 594 | NtUnlockVirtualMemory | 687 | NtUnlockVirtualMemory |
| 595 | NtUnmapViewOfSection | 688 | NtUnmapViewOfSection |
| 689 | NtUnmapViewOfSectionEx | ||
| 690 | NtUnsubscribeWnfStateChange | ||
| 691 | NtUpdateWnfStateData | ||
| 596 | NtVdmControl | 692 | NtVdmControl |
| 693 | NtWaitForAlertByThreadId | ||
| 597 | NtWaitForDebugEvent | 694 | NtWaitForDebugEvent |
| 598 | NtWaitForKeyedEvent | 695 | NtWaitForKeyedEvent |
| 599 | NtWaitForMultipleObjects | 696 | NtWaitForMultipleObjects |
| ... | @@ -616,6 +713,14 @@ PfxFindPrefix | ... | @@ -616,6 +713,14 @@ PfxFindPrefix |
| 616 | PfxInitialize | 713 | PfxInitialize |
| 617 | PfxInsertPrefix | 714 | PfxInsertPrefix |
| 618 | PfxRemovePrefix | 715 | PfxRemovePrefix |
| 716 | PssNtCaptureSnapshot | ||
| 717 | PssNtDuplicateSnapshot | ||
| 718 | PssNtFreeRemoteSnapshot | ||
| 719 | PssNtFreeSnapshot | ||
| 720 | PssNtFreeWalkMarker | ||
| 721 | PssNtQuerySnapshot | ||
| 722 | PssNtValidateDescriptor | ||
| 723 | PssNtWalkSnapshot | ||
| 619 | RtlAbortRXact | 724 | RtlAbortRXact |
| 620 | RtlAbsoluteToSelfRelativeSD | 725 | RtlAbsoluteToSelfRelativeSD |
| 621 | RtlAcquirePebLock | 726 | RtlAcquirePebLock |
| ... | @@ -634,6 +739,7 @@ RtlAddAccessAllowedObjectAce | ... | @@ -634,6 +739,7 @@ RtlAddAccessAllowedObjectAce |
| 634 | RtlAddAccessDeniedAce | 739 | RtlAddAccessDeniedAce |
| 635 | RtlAddAccessDeniedAceEx | 740 | RtlAddAccessDeniedAceEx |
| 636 | RtlAddAccessDeniedObjectAce | 741 | RtlAddAccessDeniedObjectAce |
| 742 | RtlAddAccessFilterAce | ||
| 637 | RtlAddAce | 743 | RtlAddAce |
| 638 | RtlAddActionToRXact | 744 | RtlAddActionToRXact |
| 639 | RtlAddAtomToAtomTable | 745 | RtlAddAtomToAtomTable |
| ... | @@ -643,21 +749,27 @@ RtlAddAuditAccessAceEx | ... | @@ -643,21 +749,27 @@ RtlAddAuditAccessAceEx |
| 643 | RtlAddAuditAccessObjectAce | 749 | RtlAddAuditAccessObjectAce |
| 644 | RtlAddCompoundAce | 750 | RtlAddCompoundAce |
| 645 | RtlAddFunctionTable | 751 | RtlAddFunctionTable |
| 752 | RtlAddGrowableFunctionTable | ||
| 646 | RtlAddIntegrityLabelToBoundaryDescriptor | 753 | RtlAddIntegrityLabelToBoundaryDescriptor |
| 647 | RtlAddMandatoryAce | 754 | RtlAddMandatoryAce |
| 755 | RtlAddProcessTrustLabelAce | ||
| 648 | RtlAddRefActivationContext | 756 | RtlAddRefActivationContext |
| 649 | RtlAddRefMemoryStream | 757 | RtlAddRefMemoryStream |
| 758 | RtlAddResourceAttributeAce | ||
| 650 | RtlAddSIDToBoundaryDescriptor | 759 | RtlAddSIDToBoundaryDescriptor |
| 760 | RtlAddScopedPolicyIDAce | ||
| 651 | RtlAddVectoredContinueHandler | 761 | RtlAddVectoredContinueHandler |
| 652 | RtlAddVectoredExceptionHandler | 762 | RtlAddVectoredExceptionHandler |
| 653 | RtlAddressInSectionTable | 763 | RtlAddressInSectionTable |
| 654 | RtlAdjustPrivilege | 764 | RtlAdjustPrivilege |
| 655 | RtlAllocateActivationContextStack | 765 | RtlAllocateActivationContextStack |
| 656 | RtlAllocateAndInitializeSid | 766 | RtlAllocateAndInitializeSid |
| 767 | RtlAllocateAndInitializeSidEx | ||
| 657 | RtlAllocateHandle | 768 | RtlAllocateHandle |
| 658 | RtlAllocateHeap | 769 | RtlAllocateHeap |
| 659 | RtlAllocateMemoryBlockLookaside | 770 | RtlAllocateMemoryBlockLookaside |
| 660 | RtlAllocateMemoryZone | 771 | RtlAllocateMemoryZone |
| 772 | RtlAllocateWnfSerializationGroup | ||
| 661 | RtlAnsiCharToUnicodeChar | 773 | RtlAnsiCharToUnicodeChar |
| 662 | RtlAnsiStringToUnicodeSize | 774 | RtlAnsiStringToUnicodeSize |
| 663 | RtlAnsiStringToUnicodeString | 775 | RtlAnsiStringToUnicodeString |
| ... | @@ -669,23 +781,44 @@ RtlAppendUnicodeToString | ... | @@ -669,23 +781,44 @@ RtlAppendUnicodeToString |
| 669 | RtlApplicationVerifierStop | 781 | RtlApplicationVerifierStop |
| 670 | RtlApplyRXact | 782 | RtlApplyRXact |
| 671 | RtlApplyRXactNoFlush | 783 | RtlApplyRXactNoFlush |
| 784 | RtlAppxIsFileOwnedByTrustedInstaller | ||
| 672 | RtlAreAllAccessesGranted | 785 | RtlAreAllAccessesGranted |
| 673 | RtlAreAnyAccessesGranted | 786 | RtlAreAnyAccessesGranted |
| 674 | RtlAreBitsClear | 787 | RtlAreBitsClear |
| 788 | RtlAreBitsClearEx | ||
| 675 | RtlAreBitsSet | 789 | RtlAreBitsSet |
| 790 | RtlAreLongPathsEnabled | ||
| 676 | RtlAssert | 791 | RtlAssert |
| 792 | RtlAvlInsertNodeEx | ||
| 793 | RtlAvlRemoveNode | ||
| 677 | RtlBarrier | 794 | RtlBarrier |
| 678 | RtlBarrierForDelete | 795 | RtlBarrierForDelete |
| 796 | RtlCallEnclaveReturn | ||
| 679 | RtlCancelTimer | 797 | RtlCancelTimer |
| 798 | RtlCanonicalizeDomainName | ||
| 799 | RtlCapabilityCheck | ||
| 800 | RtlCapabilityCheckForSingleSessionSku | ||
| 680 | RtlCaptureContext | 801 | RtlCaptureContext |
| 681 | RtlCaptureStackBackTrace | 802 | RtlCaptureStackBackTrace |
| 682 | RtlCharToInteger | 803 | RtlCharToInteger |
| 804 | RtlCheckBootStatusIntegrity | ||
| 683 | RtlCheckForOrphanedCriticalSections | 805 | RtlCheckForOrphanedCriticalSections |
| 806 | RtlCheckPortableOperatingSystem | ||
| 684 | RtlCheckProcessParameters | 807 | RtlCheckProcessParameters |
| 685 | RtlCheckRegistryKey | 808 | RtlCheckRegistryKey |
| 809 | RtlCheckSandboxedToken | ||
| 810 | RtlCheckSystemBootStatusIntegrity | ||
| 811 | RtlCheckTokenCapability | ||
| 812 | RtlCheckTokenMembership | ||
| 813 | RtlCheckTokenMembershipEx | ||
| 686 | RtlCleanUpTEBLangLists | 814 | RtlCleanUpTEBLangLists |
| 687 | RtlClearAllBits | 815 | RtlClearAllBits |
| 816 | RtlClearAllBitsEx | ||
| 817 | RtlClearBit | ||
| 818 | RtlClearBitEx | ||
| 688 | RtlClearBits | 819 | RtlClearBits |
| 820 | RtlClearBitsEx | ||
| 821 | RtlClearThreadWorkOnBehalfTicket | ||
| 689 | RtlCloneMemoryStream | 822 | RtlCloneMemoryStream |
| 690 | RtlCloneUserProcess | 823 | RtlCloneUserProcess |
| 691 | RtlCmDecodeMemIoResource | 824 | RtlCmDecodeMemIoResource |
| ... | @@ -706,13 +839,18 @@ RtlComputeImportTableHash | ... | @@ -706,13 +839,18 @@ RtlComputeImportTableHash |
| 706 | RtlComputePrivatizedDllName_U | 839 | RtlComputePrivatizedDllName_U |
| 707 | RtlConnectToSm | 840 | RtlConnectToSm |
| 708 | RtlConsoleMultiByteToUnicodeN | 841 | RtlConsoleMultiByteToUnicodeN |
| 842 | RtlConstructCrossVmEventPath | ||
| 709 | RtlContractHashTable | 843 | RtlContractHashTable |
| 844 | RtlConvertDeviceFamilyInfoToString | ||
| 710 | RtlConvertExclusiveToShared | 845 | RtlConvertExclusiveToShared |
| 711 | RtlConvertLCIDToString | 846 | RtlConvertLCIDToString |
| 847 | RtlConvertSRWLockExclusiveToShared | ||
| 712 | RtlConvertSharedToExclusive | 848 | RtlConvertSharedToExclusive |
| 713 | RtlConvertSidToUnicodeString | 849 | RtlConvertSidToUnicodeString |
| 714 | RtlConvertToAutoInheritSecurityObject | 850 | RtlConvertToAutoInheritSecurityObject |
| 715 | RtlConvertUiListToApiList | 851 | RtlConvertUiListToApiList |
| 852 | RtlCopyBitMap | ||
| 853 | RtlCopyContext | ||
| 716 | RtlCopyExtendedContext | 854 | RtlCopyExtendedContext |
| 717 | RtlCopyLuid | 855 | RtlCopyLuid |
| 718 | RtlCopyLuidAndAttributesArray | 856 | RtlCopyLuidAndAttributesArray |
| ... | @@ -726,6 +864,8 @@ RtlCopySid | ... | @@ -726,6 +864,8 @@ RtlCopySid |
| 726 | RtlCopySidAndAttributesArray | 864 | RtlCopySidAndAttributesArray |
| 727 | RtlCopyString | 865 | RtlCopyString |
| 728 | RtlCopyUnicodeString | 866 | RtlCopyUnicodeString |
| 867 | RtlCrc32 | ||
| 868 | RtlCrc64 | ||
| 729 | RtlCreateAcl | 869 | RtlCreateAcl |
| 730 | RtlCreateActivationContext | 870 | RtlCreateActivationContext |
| 731 | RtlCreateAndSetSD | 871 | RtlCreateAndSetSD |
| ... | @@ -735,11 +875,13 @@ RtlCreateBoundaryDescriptor | ... | @@ -735,11 +875,13 @@ RtlCreateBoundaryDescriptor |
| 735 | RtlCreateEnvironment | 875 | RtlCreateEnvironment |
| 736 | RtlCreateEnvironmentEx | 876 | RtlCreateEnvironmentEx |
| 737 | RtlCreateHashTable | 877 | RtlCreateHashTable |
| 878 | RtlCreateHashTableEx | ||
| 738 | RtlCreateHeap | 879 | RtlCreateHeap |
| 739 | RtlCreateMemoryBlockLookaside | 880 | RtlCreateMemoryBlockLookaside |
| 740 | RtlCreateMemoryZone | 881 | RtlCreateMemoryZone |
| 741 | RtlCreateProcessParameters | 882 | RtlCreateProcessParameters |
| 742 | RtlCreateProcessParametersEx | 883 | RtlCreateProcessParametersEx |
| 884 | RtlCreateProcessParametersWithTemplate | ||
| 743 | RtlCreateProcessReflection | 885 | RtlCreateProcessReflection |
| 744 | RtlCreateQueryDebugBuffer | 886 | RtlCreateQueryDebugBuffer |
| 745 | RtlCreateRegistryKey | 887 | RtlCreateRegistryKey |
| ... | @@ -754,7 +896,9 @@ RtlCreateUmsThread | ... | @@ -754,7 +896,9 @@ RtlCreateUmsThread |
| 754 | RtlCreateUmsThreadContext | 896 | RtlCreateUmsThreadContext |
| 755 | RtlCreateUnicodeString | 897 | RtlCreateUnicodeString |
| 756 | RtlCreateUnicodeStringFromAsciiz | 898 | RtlCreateUnicodeStringFromAsciiz |
| 899 | RtlCreateUserFiberShadowStack | ||
| 757 | RtlCreateUserProcess | 900 | RtlCreateUserProcess |
| 901 | RtlCreateUserProcessEx | ||
| 758 | RtlCreateUserSecurityObject | 902 | RtlCreateUserSecurityObject |
| 759 | RtlCreateUserStack | 903 | RtlCreateUserStack |
| 760 | RtlCreateUserThread | 904 | RtlCreateUserThread |
| ... | @@ -768,8 +912,10 @@ RtlDeactivateActivationContext | ... | @@ -768,8 +912,10 @@ RtlDeactivateActivationContext |
| 768 | RtlDeactivateActivationContextUnsafeFast | 912 | RtlDeactivateActivationContextUnsafeFast |
| 769 | RtlDebugPrintTimes | 913 | RtlDebugPrintTimes |
| 770 | RtlDecodePointer | 914 | RtlDecodePointer |
| 915 | RtlDecodeRemotePointer | ||
| 771 | RtlDecodeSystemPointer | 916 | RtlDecodeSystemPointer |
| 772 | RtlDecompressBuffer | 917 | RtlDecompressBuffer |
| 918 | RtlDecompressBufferEx | ||
| 773 | RtlDecompressFragment | 919 | RtlDecompressFragment |
| 774 | RtlDefaultNpAcl | 920 | RtlDefaultNpAcl |
| 775 | RtlDelete | 921 | RtlDelete |
| ... | @@ -780,7 +926,9 @@ RtlDeleteBoundaryDescriptor | ... | @@ -780,7 +926,9 @@ RtlDeleteBoundaryDescriptor |
| 780 | RtlDeleteCriticalSection | 926 | RtlDeleteCriticalSection |
| 781 | RtlDeleteElementGenericTable | 927 | RtlDeleteElementGenericTable |
| 782 | RtlDeleteElementGenericTableAvl | 928 | RtlDeleteElementGenericTableAvl |
| 929 | RtlDeleteElementGenericTableAvlEx | ||
| 783 | RtlDeleteFunctionTable | 930 | RtlDeleteFunctionTable |
| 931 | RtlDeleteGrowableFunctionTable | ||
| 784 | RtlDeleteHashTable | 932 | RtlDeleteHashTable |
| 785 | RtlDeleteNoSplay | 933 | RtlDeleteNoSplay |
| 786 | RtlDeleteRegistryValue | 934 | RtlDeleteRegistryValue |
| ... | @@ -795,6 +943,7 @@ RtlDequeueUmsCompletionListItems | ... | @@ -795,6 +943,7 @@ RtlDequeueUmsCompletionListItems |
| 795 | RtlDeregisterSecureMemoryCacheCallback | 943 | RtlDeregisterSecureMemoryCacheCallback |
| 796 | RtlDeregisterWait | 944 | RtlDeregisterWait |
| 797 | RtlDeregisterWaitEx | 945 | RtlDeregisterWaitEx |
| 946 | RtlDeriveCapabilitySidsFromName | ||
| 798 | RtlDestroyAtomTable | 947 | RtlDestroyAtomTable |
| 799 | RtlDestroyEnvironment | 948 | RtlDestroyEnvironment |
| 800 | RtlDestroyHandleTable | 949 | RtlDestroyHandleTable |
| ... | @@ -809,7 +958,10 @@ RtlDisableThreadProfiling | ... | @@ -809,7 +958,10 @@ RtlDisableThreadProfiling |
| 809 | RtlDllShutdownInProgress | 958 | RtlDllShutdownInProgress |
| 810 | RtlDnsHostNameToComputerName | 959 | RtlDnsHostNameToComputerName |
| 811 | RtlDoesFileExists_U | 960 | RtlDoesFileExists_U |
| 961 | RtlDoesNameContainWildCards | ||
| 812 | RtlDosApplyFileIsolationRedirection_Ustr | 962 | RtlDosApplyFileIsolationRedirection_Ustr |
| 963 | RtlDosLongPathNameToNtPathName_U_WithStatus | ||
| 964 | RtlDosLongPathNameToRelativeNtPathName_U_WithStatus | ||
| 813 | RtlDosPathNameToNtPathName_U | 965 | RtlDosPathNameToNtPathName_U |
| 814 | RtlDosPathNameToNtPathName_U_WithStatus | 966 | RtlDosPathNameToNtPathName_U_WithStatus |
| 815 | RtlDosPathNameToRelativeNtPathName_U | 967 | RtlDosPathNameToRelativeNtPathName_U |
| ... | @@ -818,14 +970,19 @@ RtlDosSearchPath_U | ... | @@ -818,14 +970,19 @@ RtlDosSearchPath_U |
| 818 | RtlDosSearchPath_Ustr | 970 | RtlDosSearchPath_Ustr |
| 819 | RtlDowncaseUnicodeChar | 971 | RtlDowncaseUnicodeChar |
| 820 | RtlDowncaseUnicodeString | 972 | RtlDowncaseUnicodeString |
| 973 | RtlDrainNonVolatileFlush | ||
| 821 | RtlDumpResource | 974 | RtlDumpResource |
| 822 | RtlDuplicateUnicodeString | 975 | RtlDuplicateUnicodeString |
| 823 | RtlEmptyAtomTable | 976 | RtlEmptyAtomTable |
| 824 | RtlEnableEarlyCriticalSectionEventCreation | 977 | RtlEnableEarlyCriticalSectionEventCreation |
| 825 | RtlEnableThreadProfiling | 978 | RtlEnableThreadProfiling |
| 979 | RtlEnclaveCallDispatch | ||
| 980 | RtlEnclaveCallDispatchReturn | ||
| 826 | RtlEncodePointer | 981 | RtlEncodePointer |
| 982 | RtlEncodeRemotePointer | ||
| 827 | RtlEncodeSystemPointer | 983 | RtlEncodeSystemPointer |
| 828 | RtlEndEnumerationHashTable | 984 | RtlEndEnumerationHashTable |
| 985 | RtlEndStrongEnumerationHashTable | ||
| 829 | RtlEndWeakEnumerationHashTable | 986 | RtlEndWeakEnumerationHashTable |
| 830 | RtlEnterCriticalSection | 987 | RtlEnterCriticalSection |
| 831 | RtlEnterUmsSchedulingMode | 988 | RtlEnterUmsSchedulingMode |
| ... | @@ -843,6 +1000,7 @@ RtlEqualPrefixSid | ... | @@ -843,6 +1000,7 @@ RtlEqualPrefixSid |
| 843 | RtlEqualSid | 1000 | RtlEqualSid |
| 844 | RtlEqualString | 1001 | RtlEqualString |
| 845 | RtlEqualUnicodeString | 1002 | RtlEqualUnicodeString |
| 1003 | RtlEqualWnfChangeStamps | ||
| 846 | RtlEraseUnicodeString | 1004 | RtlEraseUnicodeString |
| 847 | RtlEthernetAddressToStringA | 1005 | RtlEthernetAddressToStringA |
| 848 | RtlEthernetAddressToStringW | 1006 | RtlEthernetAddressToStringW |
| ... | @@ -855,9 +1013,13 @@ RtlExpandEnvironmentStrings | ... | @@ -855,9 +1013,13 @@ RtlExpandEnvironmentStrings |
| 855 | RtlExpandEnvironmentStrings_U | 1013 | RtlExpandEnvironmentStrings_U |
| 856 | RtlExtendHeap | 1014 | RtlExtendHeap |
| 857 | RtlExpandHashTable | 1015 | RtlExpandHashTable |
| 1016 | RtlExtendCorrelationVector | ||
| 858 | RtlExtendMemoryBlockLookaside | 1017 | RtlExtendMemoryBlockLookaside |
| 859 | RtlExtendMemoryZone | 1018 | RtlExtendMemoryZone |
| 1019 | RtlExtractBitMap | ||
| 860 | RtlFillMemory | 1020 | RtlFillMemory |
| 1021 | RtlFillMemoryNonTemporal | ||
| 1022 | RtlFillNonVolatileMemory | ||
| 861 | RtlFinalReleaseOutOfProcessMemoryStream | 1023 | RtlFinalReleaseOutOfProcessMemoryStream |
| 862 | RtlFindAceByType | 1024 | RtlFindAceByType |
| 863 | RtlFindActivationContextSectionGuid | 1025 | RtlFindActivationContextSectionGuid |
| ... | @@ -865,8 +1027,10 @@ RtlFindActivationContextSectionString | ... | @@ -865,8 +1027,10 @@ RtlFindActivationContextSectionString |
| 865 | RtlFindCharInUnicodeString | 1027 | RtlFindCharInUnicodeString |
| 866 | RtlFindClearBits | 1028 | RtlFindClearBits |
| 867 | RtlFindClearBitsAndSet | 1029 | RtlFindClearBitsAndSet |
| 1030 | RtlFindClearBitsEx | ||
| 868 | RtlFindClearRuns | 1031 | RtlFindClearRuns |
| 869 | RtlFindClosestEncodableLength | 1032 | RtlFindClosestEncodableLength |
| 1033 | RtlFindExportedRoutineByName | ||
| 870 | RtlFindLastBackwardRunClear | 1034 | RtlFindLastBackwardRunClear |
| 871 | RtlFindLeastSignificantBit | 1035 | RtlFindLeastSignificantBit |
| 872 | RtlFindLongestRunClear | 1036 | RtlFindLongestRunClear |
| ... | @@ -875,10 +1039,18 @@ RtlFindMostSignificantBit | ... | @@ -875,10 +1039,18 @@ RtlFindMostSignificantBit |
| 875 | RtlFindNextForwardRunClear | 1039 | RtlFindNextForwardRunClear |
| 876 | RtlFindSetBits | 1040 | RtlFindSetBits |
| 877 | RtlFindSetBitsAndClear | 1041 | RtlFindSetBitsAndClear |
| 1042 | RtlFindSetBitsAndClearEx | ||
| 1043 | RtlFindSetBitsEx | ||
| 1044 | RtlFindUnicodeSubstring | ||
| 878 | RtlFirstEntrySList | 1045 | RtlFirstEntrySList |
| 879 | RtlFirstFreeAce | 1046 | RtlFirstFreeAce |
| 880 | RtlFlsAlloc | 1047 | RtlFlsAlloc |
| 881 | RtlFlsFree | 1048 | RtlFlsFree |
| 1049 | RtlFlsGetValue | ||
| 1050 | RtlFlsSetValue | ||
| 1051 | RtlFlushHeaps | ||
| 1052 | RtlFlushNonVolatileMemory | ||
| 1053 | RtlFlushNonVolatileMemoryRanges | ||
| 882 | RtlFlushSecureMemoryCache | 1054 | RtlFlushSecureMemoryCache |
| 883 | RtlFormatCurrentUserKeyPath | 1055 | RtlFormatCurrentUserKeyPath |
| 884 | RtlFormatMessage | 1056 | RtlFormatMessage |
| ... | @@ -888,31 +1060,43 @@ RtlFreeAnsiString | ... | @@ -888,31 +1060,43 @@ RtlFreeAnsiString |
| 888 | RtlFreeHandle | 1060 | RtlFreeHandle |
| 889 | RtlFreeHeap | 1061 | RtlFreeHeap |
| 890 | RtlFreeMemoryBlockLookaside | 1062 | RtlFreeMemoryBlockLookaside |
| 1063 | RtlFreeNonVolatileToken | ||
| 891 | RtlFreeOemString | 1064 | RtlFreeOemString |
| 892 | RtlFreeSid | 1065 | RtlFreeSid |
| 893 | RtlFreeThreadActivationContextStack | 1066 | RtlFreeThreadActivationContextStack |
| 1067 | RtlFreeUTF8String | ||
| 894 | RtlFreeUnicodeString | 1068 | RtlFreeUnicodeString |
| 1069 | RtlFreeUserFiberShadowStack | ||
| 895 | RtlFreeUserThreadStack | 1070 | RtlFreeUserThreadStack |
| 896 | RtlFreeUserStack | 1071 | RtlFreeUserStack |
| 897 | RtlGUIDFromString | 1072 | RtlGUIDFromString |
| 898 | RtlGenerate8dot3Name | 1073 | RtlGenerate8dot3Name |
| 899 | RtlGetAce | 1074 | RtlGetAce |
| 900 | RtlGetActiveActivationContext | 1075 | RtlGetActiveActivationContext |
| 1076 | RtlGetActiveConsoleId | ||
| 1077 | RtlGetAppContainerNamedObjectPath | ||
| 1078 | RtlGetAppContainerParent | ||
| 1079 | RtlGetAppContainerSidType | ||
| 901 | RtlGetCallersAddress | 1080 | RtlGetCallersAddress |
| 902 | RtlGetCompressionWorkSpaceSize | 1081 | RtlGetCompressionWorkSpaceSize |
| 1082 | RtlGetConsoleSessionForegroundProcessId | ||
| 903 | RtlGetControlSecurityDescriptor | 1083 | RtlGetControlSecurityDescriptor |
| 904 | RtlGetCriticalSectionRecursionCount | 1084 | RtlGetCriticalSectionRecursionCount |
| 905 | RtlGetCurrentDirectory_U | 1085 | RtlGetCurrentDirectory_U |
| 906 | RtlGetCurrentPeb | 1086 | RtlGetCurrentPeb |
| 907 | RtlGetCurrentProcessorNumber | 1087 | RtlGetCurrentProcessorNumber |
| 908 | RtlGetCurrentProcessorNumberEx | 1088 | RtlGetCurrentProcessorNumberEx |
| 1089 | RtlGetCurrentServiceSessionId | ||
| 909 | RtlGetCurrentTransaction | 1090 | RtlGetCurrentTransaction |
| 910 | RtlGetCurrentUmsThread | 1091 | RtlGetCurrentUmsThread |
| 911 | RtlGetDaclSecurityDescriptor | 1092 | RtlGetDaclSecurityDescriptor |
| 1093 | RtlGetDeviceFamilyInfoEnum | ||
| 912 | RtlGetElementGenericTable | 1094 | RtlGetElementGenericTable |
| 913 | RtlGetElementGenericTableAvl | 1095 | RtlGetElementGenericTableAvl |
| 914 | RtlGetEnabledExtendedFeatures | 1096 | RtlGetEnabledExtendedFeatures |
| 1097 | RtlGetExePath | ||
| 915 | RtlGetExtendedContextLength | 1098 | RtlGetExtendedContextLength |
| 1099 | RtlGetExtendedContextLength2 | ||
| 916 | RtlGetExtendedFeaturesMask | 1100 | RtlGetExtendedFeaturesMask |
| 917 | RtlGetFileMUIPath | 1101 | RtlGetFileMUIPath |
| 918 | RtlGetFrame | 1102 | RtlGetFrame |
| ... | @@ -922,30 +1106,43 @@ RtlGetFullPathName_UstrEx | ... | @@ -922,30 +1106,43 @@ RtlGetFullPathName_UstrEx |
| 922 | RtlGetFunctionTableListHead | 1106 | RtlGetFunctionTableListHead |
| 923 | RtlGetGroupSecurityDescriptor | 1107 | RtlGetGroupSecurityDescriptor |
| 924 | RtlGetIntegerAtom | 1108 | RtlGetIntegerAtom |
| 1109 | RtlGetInterruptTimePrecise | ||
| 925 | RtlGetLastNtStatus | 1110 | RtlGetLastNtStatus |
| 926 | RtlGetLastWin32Error | 1111 | RtlGetLastWin32Error |
| 927 | RtlGetLengthWithoutLastFullDosOrNtPathElement | 1112 | RtlGetLengthWithoutLastFullDosOrNtPathElement |
| 928 | RtlGetLengthWithoutTrailingPathSeperators | 1113 | RtlGetLengthWithoutTrailingPathSeperators |
| 929 | RtlGetLocaleFileMappingAddress | 1114 | RtlGetLocaleFileMappingAddress |
| 930 | RtlGetLongestNtPathLength | 1115 | RtlGetLongestNtPathLength |
| 1116 | RtlGetMultiTimePrecise | ||
| 931 | RtlGetNativeSystemInformation | 1117 | RtlGetNativeSystemInformation |
| 932 | RtlGetNextEntryHashTable | 1118 | RtlGetNextEntryHashTable |
| 933 | RtlGetNextUmsListItem | 1119 | RtlGetNextUmsListItem |
| 1120 | RtlGetNonVolatileToken | ||
| 934 | RtlGetNtGlobalFlags | 1121 | RtlGetNtGlobalFlags |
| 935 | RtlGetNtProductType | 1122 | RtlGetNtProductType |
| 1123 | RtlGetNtSystemRoot | ||
| 936 | RtlGetNtVersionNumbers | 1124 | RtlGetNtVersionNumbers |
| 937 | RtlGetOwnerSecurityDescriptor | 1125 | RtlGetOwnerSecurityDescriptor |
| 938 | RtlGetParentLocaleName | 1126 | RtlGetParentLocaleName |
| 1127 | RtlGetPersistedStateLocation | ||
| 939 | RtlGetProcessHeaps | 1128 | RtlGetProcessHeaps |
| 940 | RtlGetProcessPreferredUILanguages | 1129 | RtlGetProcessPreferredUILanguages |
| 941 | RtlGetProductInfo | 1130 | RtlGetProductInfo |
| 942 | RtlGetSaclSecurityDescriptor | 1131 | RtlGetSaclSecurityDescriptor |
| 1132 | RtlGetSearchPath | ||
| 943 | RtlGetSecurityDescriptorRMControl | 1133 | RtlGetSecurityDescriptorRMControl |
| 1134 | RtlGetSessionProperties | ||
| 944 | RtlGetSetBootStatusData | 1135 | RtlGetSetBootStatusData |
| 1136 | RtlGetSuiteMask | ||
| 1137 | RtlGetSystemBootStatus | ||
| 1138 | RtlGetSystemBootStatusEx | ||
| 945 | RtlGetSystemPreferredUILanguages | 1139 | RtlGetSystemPreferredUILanguages |
| 1140 | RtlGetSystemTimePrecise | ||
| 946 | RtlGetThreadErrorMode | 1141 | RtlGetThreadErrorMode |
| 947 | RtlGetThreadLangIdByIndex | 1142 | RtlGetThreadLangIdByIndex |
| 948 | RtlGetThreadPreferredUILanguages | 1143 | RtlGetThreadPreferredUILanguages |
| 1144 | RtlGetThreadWorkOnBehalfTicket | ||
| 1145 | RtlGetTokenNamedObjectPath | ||
| 949 | RtlGetUILanguageInfo | 1146 | RtlGetUILanguageInfo |
| 950 | RtlGetUmsCompletionListEvent | 1147 | RtlGetUmsCompletionListEvent |
| 951 | RtlGetUnloadEventTrace | 1148 | RtlGetUnloadEventTrace |
| ... | @@ -953,6 +1150,8 @@ RtlGetUnloadEventTraceEx | ... | @@ -953,6 +1150,8 @@ RtlGetUnloadEventTraceEx |
| 953 | RtlGetUserInfoHeap | 1150 | RtlGetUserInfoHeap |
| 954 | RtlGetUserPreferredUILanguages | 1151 | RtlGetUserPreferredUILanguages |
| 955 | RtlGetVersion | 1152 | RtlGetVersion |
| 1153 | RtlGrowFunctionTable | ||
| 1154 | RtlGuardCheckLongJumpTarget | ||
| 956 | RtlHashUnicodeString | 1155 | RtlHashUnicodeString |
| 957 | RtlHeapTrkInitialize | 1156 | RtlHeapTrkInitialize |
| 958 | RtlIdentifierAuthoritySid | 1157 | RtlIdentifierAuthoritySid |
| ... | @@ -966,6 +1165,7 @@ RtlImageRvaToSection | ... | @@ -966,6 +1165,7 @@ RtlImageRvaToSection |
| 966 | RtlImageRvaToVa | 1165 | RtlImageRvaToVa |
| 967 | RtlImpersonateSelf | 1166 | RtlImpersonateSelf |
| 968 | RtlImpersonateSelfEx | 1167 | RtlImpersonateSelfEx |
| 1168 | RtlIncrementCorrelationVector | ||
| 969 | RtlInitAnsiString | 1169 | RtlInitAnsiString |
| 970 | RtlInitAnsiStringEx | 1170 | RtlInitAnsiStringEx |
| 971 | RtlInitBarrier | 1171 | RtlInitBarrier |
| ... | @@ -975,17 +1175,24 @@ RtlInitMemoryStream | ... | @@ -975,17 +1175,24 @@ RtlInitMemoryStream |
| 975 | RtlInitNlsTables | 1175 | RtlInitNlsTables |
| 976 | RtlInitOutOfProcessMemoryStream | 1176 | RtlInitOutOfProcessMemoryStream |
| 977 | RtlInitString | 1177 | RtlInitString |
| 1178 | RtlInitStringEx | ||
| 1179 | RtlInitStrongEnumerationHashTable | ||
| 1180 | RtlInitUTF8String | ||
| 1181 | RtlInitUTF8StringEx | ||
| 978 | RtlInitUnicodeString | 1182 | RtlInitUnicodeString |
| 979 | RtlInitUnicodeStringEx | 1183 | RtlInitUnicodeStringEx |
| 980 | RtlInitWeakEnumerationHashTable | 1184 | RtlInitWeakEnumerationHashTable |
| 981 | RtlInitializeAtomPackage | 1185 | RtlInitializeAtomPackage |
| 982 | RtlInitializeBitMap | 1186 | RtlInitializeBitMap |
| 1187 | RtlInitializeBitMapEx | ||
| 983 | RtlInitializeConditionVariable | 1188 | RtlInitializeConditionVariable |
| 984 | RtlInitializeContext | 1189 | RtlInitializeContext |
| 1190 | RtlInitializeCorrelationVector | ||
| 985 | RtlInitializeCriticalSection | 1191 | RtlInitializeCriticalSection |
| 986 | RtlInitializeCriticalSectionAndSpinCount | 1192 | RtlInitializeCriticalSectionAndSpinCount |
| 987 | RtlInitializeCriticalSectionEx | 1193 | RtlInitializeCriticalSectionEx |
| 988 | RtlInitializeExtendedContext | 1194 | RtlInitializeExtendedContext |
| 1195 | RtlInitializeExtendedContext2 | ||
| 989 | RtlInitializeGenericTable | 1196 | RtlInitializeGenericTable |
| 990 | RtlInitializeGenericTableAvl | 1197 | RtlInitializeGenericTableAvl |
| 991 | RtlInitializeHandleTable | 1198 | RtlInitializeHandleTable |
| ... | @@ -995,6 +1202,7 @@ RtlInitializeResource | ... | @@ -995,6 +1202,7 @@ RtlInitializeResource |
| 995 | RtlInitializeSListHead | 1202 | RtlInitializeSListHead |
| 996 | RtlInitializeSRWLock | 1203 | RtlInitializeSRWLock |
| 997 | RtlInitializeSid | 1204 | RtlInitializeSid |
| 1205 | RtlInitializeSidEx | ||
| 998 | RtlInsertElementGenericTable | 1206 | RtlInsertElementGenericTable |
| 999 | RtlInsertElementGenericTableAvl | 1207 | RtlInsertElementGenericTableAvl |
| 1000 | RtlInsertElementGenericTableFull | 1208 | RtlInsertElementGenericTableFull |
| ... | @@ -1009,6 +1217,7 @@ RtlInterlockedFlushSList | ... | @@ -1009,6 +1217,7 @@ RtlInterlockedFlushSList |
| 1009 | RtlInterlockedPopEntrySList | 1217 | RtlInterlockedPopEntrySList |
| 1010 | RtlInterlockedPushEntrySList | 1218 | RtlInterlockedPushEntrySList |
| 1011 | RtlInterlockedPushListSList | 1219 | RtlInterlockedPushListSList |
| 1220 | RtlInterlockedPushListSListEx | ||
| 1012 | RtlInterlockedSetBitRun | 1221 | RtlInterlockedSetBitRun |
| 1013 | RtlIoDecodeMemIoResource | 1222 | RtlIoDecodeMemIoResource |
| 1014 | RtlIoEncodeMemIoResource | 1223 | RtlIoEncodeMemIoResource |
| ... | @@ -1029,20 +1238,39 @@ RtlIpv6StringToAddressExA | ... | @@ -1029,20 +1238,39 @@ RtlIpv6StringToAddressExA |
| 1029 | RtlIpv6StringToAddressExW | 1238 | RtlIpv6StringToAddressExW |
| 1030 | RtlIpv6StringToAddressW | 1239 | RtlIpv6StringToAddressW |
| 1031 | RtlIsActivationContextActive | 1240 | RtlIsActivationContextActive |
| 1241 | RtlIsCapabilitySid | ||
| 1242 | RtlIsCloudFilesPlaceholder | ||
| 1032 | RtlIsCriticalSectionLocked | 1243 | RtlIsCriticalSectionLocked |
| 1033 | RtlIsCriticalSectionLockedByThread | 1244 | RtlIsCriticalSectionLockedByThread |
| 1245 | RtlIsCurrentProcess | ||
| 1246 | RtlIsCurrentThread | ||
| 1034 | RtlIsCurrentThreadAttachExempt | 1247 | RtlIsCurrentThreadAttachExempt |
| 1035 | RtlIsDosDeviceName_U | 1248 | RtlIsDosDeviceName_U |
| 1249 | RtlIsElevatedRid | ||
| 1036 | RtlIsGenericTableEmpty | 1250 | RtlIsGenericTableEmpty |
| 1037 | RtlIsGenericTableEmptyAvl | 1251 | RtlIsGenericTableEmptyAvl |
| 1252 | RtlIsMultiSessionSku | ||
| 1253 | RtlIsMultiUsersInSessionSku | ||
| 1038 | RtlIsNameInExpression | 1254 | RtlIsNameInExpression |
| 1255 | RtlIsNameInUnUpcasedExpression | ||
| 1039 | RtlIsNameLegalDOS8Dot3 | 1256 | RtlIsNameLegalDOS8Dot3 |
| 1257 | RtlIsNonEmptyDirectoryReparsePointAllowed | ||
| 1040 | RtlIsNormalizedString | 1258 | RtlIsNormalizedString |
| 1259 | RtlIsPackageSid | ||
| 1260 | RtlIsParentOfChildAppContainer | ||
| 1261 | RtlIsPartialPlaceholder | ||
| 1262 | RtlIsPartialPlaceholderFileHandle | ||
| 1263 | RtlIsPartialPlaceholderFileInfo | ||
| 1264 | RtlIsProcessorFeaturePresent | ||
| 1265 | RtlIsStateSeparationEnabled | ||
| 1041 | RtlIsTextUnicode | 1266 | RtlIsTextUnicode |
| 1042 | RtlIsThreadWithinLoaderCallout | 1267 | RtlIsThreadWithinLoaderCallout |
| 1268 | RtlIsUntrustedObject | ||
| 1043 | RtlIsValidHandle | 1269 | RtlIsValidHandle |
| 1044 | RtlIsValidIndexHandle | 1270 | RtlIsValidIndexHandle |
| 1045 | RtlIsValidLocaleName | 1271 | RtlIsValidLocaleName |
| 1272 | RtlIsValidProcessTrustLabelSid | ||
| 1273 | RtlIsZeroMemory | ||
| 1046 | RtlKnownExceptionFilter | 1274 | RtlKnownExceptionFilter |
| 1047 | RtlLCIDToCultureName | 1275 | RtlLCIDToCultureName |
| 1048 | RtlLargeIntegerToChar | 1276 | RtlLargeIntegerToChar |
| ... | @@ -1051,10 +1279,12 @@ RtlLeaveCriticalSection | ... | @@ -1051,10 +1279,12 @@ RtlLeaveCriticalSection |
| 1051 | RtlLengthRequiredSid | 1279 | RtlLengthRequiredSid |
| 1052 | RtlLengthSecurityDescriptor | 1280 | RtlLengthSecurityDescriptor |
| 1053 | RtlLengthSid | 1281 | RtlLengthSid |
| 1282 | RtlLengthSidAsUnicodeString | ||
| 1054 | RtlLoadString | 1283 | RtlLoadString |
| 1055 | RtlLocalTimeToSystemTime | 1284 | RtlLocalTimeToSystemTime |
| 1056 | RtlLocaleNameToLcid | 1285 | RtlLocaleNameToLcid |
| 1057 | RtlLocateExtendedFeature | 1286 | RtlLocateExtendedFeature |
| 1287 | RtlLocateExtendedFeature2 | ||
| 1058 | RtlLocateLegacyContext | 1288 | RtlLocateLegacyContext |
| 1059 | RtlLockBootStatusData | 1289 | RtlLockBootStatusData |
| 1060 | RtlLockCurrentThread | 1290 | RtlLockCurrentThread |
| ... | @@ -1070,6 +1300,7 @@ RtlLookupElementGenericTableAvl | ... | @@ -1070,6 +1300,7 @@ RtlLookupElementGenericTableAvl |
| 1070 | RtlLookupElementGenericTableFull | 1300 | RtlLookupElementGenericTableFull |
| 1071 | RtlLookupElementGenericTableFullAvl | 1301 | RtlLookupElementGenericTableFullAvl |
| 1072 | RtlLookupEntryHashTable | 1302 | RtlLookupEntryHashTable |
| 1303 | RtlLookupFirstMatchingElementGenericTableAvl | ||
| 1073 | RtlLookupFunctionEntry | 1304 | RtlLookupFunctionEntry |
| 1074 | RtlLookupFunctionTable | 1305 | RtlLookupFunctionTable |
| 1075 | RtlMakeSelfRelativeSD | 1306 | RtlMakeSelfRelativeSD |
| ... | @@ -1087,6 +1318,7 @@ RtlNewSecurityObject | ... | @@ -1087,6 +1318,7 @@ RtlNewSecurityObject |
| 1087 | RtlNewSecurityObjectEx | 1318 | RtlNewSecurityObjectEx |
| 1088 | RtlNewSecurityObjectWithMultipleInheritance | 1319 | RtlNewSecurityObjectWithMultipleInheritance |
| 1089 | RtlNormalizeProcessParams | 1320 | RtlNormalizeProcessParams |
| 1321 | RtlNormalizeSecurityDescriptor | ||
| 1090 | RtlNormalizeString | 1322 | RtlNormalizeString |
| 1091 | RtlNtPathNameToDosPathName | 1323 | RtlNtPathNameToDosPathName |
| 1092 | RtlNtStatusToDosError | 1324 | RtlNtStatusToDosError |
| ... | @@ -1095,12 +1327,17 @@ RtlNtdllName DATA | ... | @@ -1095,12 +1327,17 @@ RtlNtdllName DATA |
| 1095 | RtlNumberGenericTableElements | 1327 | RtlNumberGenericTableElements |
| 1096 | RtlNumberGenericTableElementsAvl | 1328 | RtlNumberGenericTableElementsAvl |
| 1097 | RtlNumberOfClearBits | 1329 | RtlNumberOfClearBits |
| 1330 | RtlNumberOfClearBitsEx | ||
| 1331 | RtlNumberOfClearBitsInRange | ||
| 1098 | RtlNumberOfSetBits | 1332 | RtlNumberOfSetBits |
| 1333 | RtlNumberOfSetBitsEx | ||
| 1334 | RtlNumberOfSetBitsInRange | ||
| 1099 | RtlNumberOfSetBitsUlongPtr | 1335 | RtlNumberOfSetBitsUlongPtr |
| 1100 | RtlOemStringToUnicodeSize | 1336 | RtlOemStringToUnicodeSize |
| 1101 | RtlOemStringToUnicodeString | 1337 | RtlOemStringToUnicodeString |
| 1102 | RtlOemToUnicodeN | 1338 | RtlOemToUnicodeN |
| 1103 | RtlOpenCurrentUser | 1339 | RtlOpenCurrentUser |
| 1340 | RtlOsDeploymentState | ||
| 1104 | RtlOwnerAcesPresent | 1341 | RtlOwnerAcesPresent |
| 1105 | RtlPcToFileHeader | 1342 | RtlPcToFileHeader |
| 1106 | RtlPinAtomInAtomTable | 1343 | RtlPinAtomInAtomTable |
| ... | @@ -1110,6 +1347,7 @@ RtlPrefixUnicodeString | ... | @@ -1110,6 +1347,7 @@ RtlPrefixUnicodeString |
| 1110 | RtlPrepareForProcessCloning | 1347 | RtlPrepareForProcessCloning |
| 1111 | RtlProcessFlsData | 1348 | RtlProcessFlsData |
| 1112 | RtlProtectHeap | 1349 | RtlProtectHeap |
| 1350 | RtlPublishWnfStateData | ||
| 1113 | RtlPushFrame | 1351 | RtlPushFrame |
| 1114 | RtlQueryActivationContextApplicationSettings | 1352 | RtlQueryActivationContextApplicationSettings |
| 1115 | RtlQueryAtomInAtomTable | 1353 | RtlQueryAtomInAtomTable |
| ... | @@ -1120,40 +1358,61 @@ RtlQueryElevationFlags | ... | @@ -1120,40 +1358,61 @@ RtlQueryElevationFlags |
| 1120 | RtlQueryEnvironmentVariable | 1358 | RtlQueryEnvironmentVariable |
| 1121 | RtlQueryEnvironmentVariable_U | 1359 | RtlQueryEnvironmentVariable_U |
| 1122 | RtlQueryHeapInformation | 1360 | RtlQueryHeapInformation |
| 1361 | RtlQueryImageMitigationPolicy | ||
| 1123 | RtlQueryInformationAcl | 1362 | RtlQueryInformationAcl |
| 1124 | RtlQueryInformationActivationContext | 1363 | RtlQueryInformationActivationContext |
| 1125 | RtlQueryInformationActiveActivationContext | 1364 | RtlQueryInformationActiveActivationContext |
| 1126 | RtlQueryInterfaceMemoryStream | 1365 | RtlQueryInterfaceMemoryStream |
| 1127 | RtlQueryModuleInformation | 1366 | RtlQueryModuleInformation |
| 1367 | RtlQueryPackageClaims | ||
| 1368 | RtlQueryPackageIdentity | ||
| 1369 | RtlQueryPackageIdentityEx | ||
| 1128 | RtlQueryPerformanceCounter | 1370 | RtlQueryPerformanceCounter |
| 1129 | RtlQueryPerformanceFrequency | 1371 | RtlQueryPerformanceFrequency |
| 1130 | RtlQueryProcessBackTraceInformation | 1372 | RtlQueryProcessBackTraceInformation |
| 1131 | RtlQueryProcessDebugInformation | 1373 | RtlQueryProcessDebugInformation |
| 1132 | RtlQueryProcessHeapInformation | 1374 | RtlQueryProcessHeapInformation |
| 1133 | RtlQueryProcessLockInformation | 1375 | RtlQueryProcessLockInformation |
| 1376 | RtlQueryProcessPlaceholderCompatibilityMode | ||
| 1377 | RtlQueryProtectedPolicy | ||
| 1378 | RtlQueryRegistryValueWithFallback | ||
| 1134 | RtlQueryRegistryValues | 1379 | RtlQueryRegistryValues |
| 1380 | RtlQueryRegistryValuesEx | ||
| 1381 | RtlQueryResourcePolicy | ||
| 1135 | RtlQuerySecurityObject | 1382 | RtlQuerySecurityObject |
| 1136 | RtlQueryTagHeap | 1383 | RtlQueryTagHeap |
| 1384 | RtlQueryThreadPlaceholderCompatibilityMode | ||
| 1137 | RtlQueryThreadProfiling | 1385 | RtlQueryThreadProfiling |
| 1138 | RtlQueryTimeZoneInformation | 1386 | RtlQueryTimeZoneInformation |
| 1387 | RtlQueryTokenHostIdAsUlong64 | ||
| 1139 | RtlQueryUmsThreadInformation | 1388 | RtlQueryUmsThreadInformation |
| 1389 | RtlQueryUnbiasedInterruptTime | ||
| 1390 | RtlQueryValidationRunlevel | ||
| 1391 | RtlQueryWnfMetaNotification | ||
| 1392 | RtlQueryWnfStateData | ||
| 1393 | RtlQueryWnfStateDataWithExplicitScope | ||
| 1140 | RtlQueueApcWow64Thread | 1394 | RtlQueueApcWow64Thread |
| 1141 | RtlQueueWorkItem | 1395 | RtlQueueWorkItem |
| 1396 | RtlRaiseCustomSystemEventTrigger | ||
| 1142 | RtlRaiseException | 1397 | RtlRaiseException |
| 1143 | RtlRaiseStatus | 1398 | RtlRaiseStatus |
| 1144 | RtlRandom | 1399 | RtlRandom |
| 1145 | RtlRandomEx | 1400 | RtlRandomEx |
| 1401 | RtlRbInsertNodeEx | ||
| 1402 | RtlRbRemoveNode | ||
| 1146 | RtlReAllocateHeap | 1403 | RtlReAllocateHeap |
| 1147 | RtlReadMemoryStream | 1404 | RtlReadMemoryStream |
| 1148 | RtlReadOutOfProcessMemoryStream | 1405 | RtlReadOutOfProcessMemoryStream |
| 1149 | RtlReadThreadProfilingData | 1406 | RtlReadThreadProfilingData |
| 1150 | RtlRealPredecessor | 1407 | RtlRealPredecessor |
| 1151 | RtlRealSuccessor | 1408 | RtlRealSuccessor |
| 1409 | RtlRegisterForWnfMetaNotification | ||
| 1152 | RtlRegisterSecureMemoryCacheCallback | 1410 | RtlRegisterSecureMemoryCacheCallback |
| 1153 | RtlRegisterThreadWithCsrss | 1411 | RtlRegisterThreadWithCsrss |
| 1154 | RtlRegisterWait | 1412 | RtlRegisterWait |
| 1155 | RtlReleaseActivationContext | 1413 | RtlReleaseActivationContext |
| 1156 | RtlReleaseMemoryStream | 1414 | RtlReleaseMemoryStream |
| 1415 | RtlReleasePath | ||
| 1157 | RtlReleasePebLock | 1416 | RtlReleasePebLock |
| 1158 | RtlReleasePrivilege | 1417 | RtlReleasePrivilege |
| 1159 | RtlReleaseRelativeName | 1418 | RtlReleaseRelativeName |
| ... | @@ -1166,14 +1425,20 @@ RtlRemovePrivileges | ... | @@ -1166,14 +1425,20 @@ RtlRemovePrivileges |
| 1166 | RtlRemoveVectoredContinueHandler | 1425 | RtlRemoveVectoredContinueHandler |
| 1167 | RtlRemoveVectoredExceptionHandler | 1426 | RtlRemoveVectoredExceptionHandler |
| 1168 | RtlReplaceSidInSd | 1427 | RtlReplaceSidInSd |
| 1428 | RtlReplaceSystemDirectoryInPath | ||
| 1169 | RtlReportException | 1429 | RtlReportException |
| 1430 | RtlReportExceptionEx | ||
| 1170 | RtlReportSilentProcessExit | 1431 | RtlReportSilentProcessExit |
| 1171 | RtlReportSqmEscalation | 1432 | RtlReportSqmEscalation |
| 1172 | RtlResetMemoryBlockLookaside | 1433 | RtlResetMemoryBlockLookaside |
| 1173 | RtlResetMemoryZone | 1434 | RtlResetMemoryZone |
| 1435 | RtlResetNtUserPfn | ||
| 1174 | RtlResetRtlTranslations | 1436 | RtlResetRtlTranslations |
| 1437 | RtlRestoreBootStatusDefaults | ||
| 1175 | RtlRestoreContext | 1438 | RtlRestoreContext |
| 1176 | RtlRestoreLastWin32Error | 1439 | RtlRestoreLastWin32Error |
| 1440 | RtlRestoreSystemBootStatusDefaults | ||
| 1441 | RtlRestoreThreadPreferredUILanguages | ||
| 1177 | RtlRetrieveNtUserPfn | 1442 | RtlRetrieveNtUserPfn |
| 1178 | RtlRevertMemoryStream | 1443 | RtlRevertMemoryStream |
| 1179 | RtlRunDecodeUnicodeString | 1444 | RtlRunDecodeUnicodeString |
| ... | @@ -1189,8 +1454,12 @@ RtlSelfRelativeToAbsoluteSD | ... | @@ -1189,8 +1454,12 @@ RtlSelfRelativeToAbsoluteSD |
| 1189 | RtlSelfRelativeToAbsoluteSD2 | 1454 | RtlSelfRelativeToAbsoluteSD2 |
| 1190 | RtlSendMsgToSm | 1455 | RtlSendMsgToSm |
| 1191 | RtlSetAllBits | 1456 | RtlSetAllBits |
| 1457 | RtlSetAllBitsEx | ||
| 1192 | RtlSetAttributesSecurityDescriptor | 1458 | RtlSetAttributesSecurityDescriptor |
| 1459 | RtlSetBit | ||
| 1460 | RtlSetBitEx | ||
| 1193 | RtlSetBits | 1461 | RtlSetBits |
| 1462 | RtlSetBitsEx | ||
| 1194 | RtlSetControlSecurityDescriptor | 1463 | RtlSetControlSecurityDescriptor |
| 1195 | RtlSetCriticalSectionSpinCount | 1464 | RtlSetCriticalSectionSpinCount |
| 1196 | RtlSetCurrentDirectory_U | 1465 | RtlSetCurrentDirectory_U |
| ... | @@ -1204,23 +1473,35 @@ RtlSetEnvironmentVariable | ... | @@ -1204,23 +1473,35 @@ RtlSetEnvironmentVariable |
| 1204 | RtlSetExtendedFeaturesMask | 1473 | RtlSetExtendedFeaturesMask |
| 1205 | RtlSetGroupSecurityDescriptor | 1474 | RtlSetGroupSecurityDescriptor |
| 1206 | RtlSetHeapInformation | 1475 | RtlSetHeapInformation |
| 1476 | RtlSetImageMitigationPolicy | ||
| 1207 | RtlSetInformationAcl | 1477 | RtlSetInformationAcl |
| 1208 | RtlSetIoCompletionCallback | 1478 | RtlSetIoCompletionCallback |
| 1209 | RtlSetLastWin32Error | 1479 | RtlSetLastWin32Error |
| 1210 | RtlSetLastWin32ErrorAndNtStatusFromNtStatus | 1480 | RtlSetLastWin32ErrorAndNtStatusFromNtStatus |
| 1211 | RtlSetMemoryStreamSize | 1481 | RtlSetMemoryStreamSize |
| 1212 | RtlSetOwnerSecurityDescriptor | 1482 | RtlSetOwnerSecurityDescriptor |
| 1483 | RtlSetPortableOperatingSystem | ||
| 1213 | RtlSetProcessDebugInformation | 1484 | RtlSetProcessDebugInformation |
| 1214 | RtlSetProcessIsCritical | 1485 | RtlSetProcessIsCritical |
| 1486 | RtlSetProcessPlaceholderCompatibilityMode | ||
| 1215 | RtlSetProcessPreferredUILanguages | 1487 | RtlSetProcessPreferredUILanguages |
| 1488 | RtlSetProtectedPolicy | ||
| 1489 | RtlSetProxiedProcessId | ||
| 1216 | RtlSetSaclSecurityDescriptor | 1490 | RtlSetSaclSecurityDescriptor |
| 1491 | RtlSetSearchPathMode | ||
| 1217 | RtlSetSecurityDescriptorRMControl | 1492 | RtlSetSecurityDescriptorRMControl |
| 1218 | RtlSetSecurityObject | 1493 | RtlSetSecurityObject |
| 1219 | RtlSetSecurityObjectEx | 1494 | RtlSetSecurityObjectEx |
| 1495 | RtlSetSystemBootStatus | ||
| 1496 | RtlSetSystemBootStatusEx | ||
| 1220 | RtlSetThreadErrorMode | 1497 | RtlSetThreadErrorMode |
| 1221 | RtlSetThreadIsCritical | 1498 | RtlSetThreadIsCritical |
| 1499 | RtlSetThreadPlaceholderCompatibilityMode | ||
| 1222 | RtlSetThreadPoolStartFunc | 1500 | RtlSetThreadPoolStartFunc |
| 1223 | RtlSetThreadPreferredUILanguages | 1501 | RtlSetThreadPreferredUILanguages |
| 1502 | RtlSetThreadPreferredUILanguages2 | ||
| 1503 | RtlSetThreadSubProcessTag | ||
| 1504 | RtlSetThreadWorkOnBehalfTicket | ||
| 1224 | RtlSetTimeZoneInformation | 1505 | RtlSetTimeZoneInformation |
| 1225 | RtlSetTimer | 1506 | RtlSetTimer |
| 1226 | RtlSetUmsThreadInformation | 1507 | RtlSetUmsThreadInformation |
| ... | @@ -1229,6 +1510,7 @@ RtlSetUnicodeCallouts | ... | @@ -1229,6 +1510,7 @@ RtlSetUnicodeCallouts |
| 1229 | RtlSetUserFlagsHeap | 1510 | RtlSetUserFlagsHeap |
| 1230 | RtlSetUserValueHeap | 1511 | RtlSetUserValueHeap |
| 1231 | RtlSidDominates | 1512 | RtlSidDominates |
| 1513 | RtlSidDominatesForTrust | ||
| 1232 | RtlSidEqualLevel | 1514 | RtlSidEqualLevel |
| 1233 | RtlSidHashInitialize | 1515 | RtlSidHashInitialize |
| 1234 | RtlSidHashLookup | 1516 | RtlSidHashLookup |
| ... | @@ -1240,12 +1522,19 @@ RtlSplay | ... | @@ -1240,12 +1522,19 @@ RtlSplay |
| 1240 | RtlStartRXact | 1522 | RtlStartRXact |
| 1241 | RtlStatMemoryStream | 1523 | RtlStatMemoryStream |
| 1242 | RtlStringFromGUID | 1524 | RtlStringFromGUID |
| 1525 | RtlStringFromGUIDEx | ||
| 1526 | RtlStronglyEnumerateEntryHashTable | ||
| 1243 | RtlSubAuthorityCountSid | 1527 | RtlSubAuthorityCountSid |
| 1244 | RtlSubAuthoritySid | 1528 | RtlSubAuthoritySid |
| 1529 | RtlSubscribeWnfStateChangeNotification | ||
| 1245 | RtlSubtreePredecessor | 1530 | RtlSubtreePredecessor |
| 1246 | RtlSubtreeSuccessor | 1531 | RtlSubtreeSuccessor |
| 1532 | RtlSwitchedVVI | ||
| 1247 | RtlSystemTimeToLocalTime | 1533 | RtlSystemTimeToLocalTime |
| 1534 | RtlTestAndPublishWnfStateData | ||
| 1248 | RtlTestBit | 1535 | RtlTestBit |
| 1536 | RtlTestBitEx | ||
| 1537 | RtlTestProtectedAccess | ||
| 1249 | RtlTimeFieldsToTime | 1538 | RtlTimeFieldsToTime |
| 1250 | RtlTimeToElapsedTimeFields | 1539 | RtlTimeToElapsedTimeFields |
| 1251 | RtlTimeToSecondsSince1970 | 1540 | RtlTimeToSecondsSince1970 |
| ... | @@ -1262,8 +1551,11 @@ RtlTraceDatabaseValidate | ... | @@ -1262,8 +1551,11 @@ RtlTraceDatabaseValidate |
| 1262 | RtlTryAcquirePebLock | 1551 | RtlTryAcquirePebLock |
| 1263 | RtlTryAcquireSRWLockExclusive | 1552 | RtlTryAcquireSRWLockExclusive |
| 1264 | RtlTryAcquireSRWLockShared | 1553 | RtlTryAcquireSRWLockShared |
| 1554 | RtlTryConvertSRWLockSharedToExclusiveOrRelease | ||
| 1265 | RtlTryEnterCriticalSection | 1555 | RtlTryEnterCriticalSection |
| 1556 | RtlUTF8StringToUnicodeString | ||
| 1266 | RtlUTF8ToUnicodeN | 1557 | RtlUTF8ToUnicodeN |
| 1558 | RtlUdiv128 | ||
| 1267 | RtlUmsThreadYield | 1559 | RtlUmsThreadYield |
| 1268 | RtlUnhandledExceptionFilter | 1560 | RtlUnhandledExceptionFilter |
| 1269 | RtlUnhandledExceptionFilter2 | 1561 | RtlUnhandledExceptionFilter2 |
| ... | @@ -1273,6 +1565,7 @@ RtlUnicodeStringToCountedOemString | ... | @@ -1273,6 +1565,7 @@ RtlUnicodeStringToCountedOemString |
| 1273 | RtlUnicodeStringToInteger | 1565 | RtlUnicodeStringToInteger |
| 1274 | RtlUnicodeStringToOemSize | 1566 | RtlUnicodeStringToOemSize |
| 1275 | RtlUnicodeStringToOemString | 1567 | RtlUnicodeStringToOemString |
| 1568 | RtlUnicodeStringToUTF8String | ||
| 1276 | RtlUnicodeToCustomCPN | 1569 | RtlUnicodeToCustomCPN |
| 1277 | RtlUnicodeToMultiByteN | 1570 | RtlUnicodeToMultiByteN |
| 1278 | RtlUnicodeToMultiByteSize | 1571 | RtlUnicodeToMultiByteSize |
| ... | @@ -1286,6 +1579,9 @@ RtlUnlockMemoryBlockLookaside | ... | @@ -1286,6 +1579,9 @@ RtlUnlockMemoryBlockLookaside |
| 1286 | RtlUnlockMemoryStreamRegion | 1579 | RtlUnlockMemoryStreamRegion |
| 1287 | RtlUnlockMemoryZone | 1580 | RtlUnlockMemoryZone |
| 1288 | RtlUnlockModuleSection | 1581 | RtlUnlockModuleSection |
| 1582 | RtlUnsubscribeWnfNotificationWaitForCompletion | ||
| 1583 | RtlUnsubscribeWnfNotificationWithCompletionCallback | ||
| 1584 | RtlUnsubscribeWnfStateChangeNotification | ||
| 1289 | RtlUnwind | 1585 | RtlUnwind |
| 1290 | RtlUnwindEx | 1586 | RtlUnwindEx |
| 1291 | RtlUpcaseUnicodeChar | 1587 | RtlUpcaseUnicodeChar |
| ... | @@ -1302,31 +1598,56 @@ RtlUpdateTimer | ... | @@ -1302,31 +1598,56 @@ RtlUpdateTimer |
| 1302 | RtlUpperChar | 1598 | RtlUpperChar |
| 1303 | RtlUpperString | 1599 | RtlUpperString |
| 1304 | RtlUsageHeap | 1600 | RtlUsageHeap |
| 1601 | RtlUserFiberStart | ||
| 1305 | RtlUserThreadStart | 1602 | RtlUserThreadStart |
| 1306 | RtlValidAcl | 1603 | RtlValidAcl |
| 1604 | RtlValidProcessProtection | ||
| 1307 | RtlValidRelativeSecurityDescriptor | 1605 | RtlValidRelativeSecurityDescriptor |
| 1308 | RtlValidSecurityDescriptor | 1606 | RtlValidSecurityDescriptor |
| 1309 | RtlValidSid | 1607 | RtlValidSid |
| 1608 | RtlValidateCorrelationVector | ||
| 1310 | RtlValidateHeap | 1609 | RtlValidateHeap |
| 1311 | RtlValidateProcessHeaps | 1610 | RtlValidateProcessHeaps |
| 1312 | RtlValidateUnicodeString | 1611 | RtlValidateUnicodeString |
| 1313 | RtlVerifyVersionInfo | 1612 | RtlVerifyVersionInfo |
| 1314 | RtlVirtualUnwind | 1613 | RtlVirtualUnwind |
| 1614 | RtlWaitForWnfMetaNotification | ||
| 1615 | RtlWaitOnAddress | ||
| 1616 | RtlWakeAddressAll | ||
| 1617 | RtlWakeAddressAllNoFence | ||
| 1618 | RtlWakeAddressSingle | ||
| 1619 | RtlWakeAddressSingleNoFence | ||
| 1315 | RtlWakeAllConditionVariable | 1620 | RtlWakeAllConditionVariable |
| 1316 | RtlWakeConditionVariable | 1621 | RtlWakeConditionVariable |
| 1317 | RtlWalkFrameChain | 1622 | RtlWalkFrameChain |
| 1318 | RtlWalkHeap | 1623 | RtlWalkHeap |
| 1319 | RtlWeaklyEnumerateEntryHashTable | 1624 | RtlWeaklyEnumerateEntryHashTable |
| 1320 | RtlWerpReportException | 1625 | RtlWerpReportException |
| 1626 | RtlWnfCompareChangeStamp | ||
| 1627 | RtlWnfDllUnloadCallback | ||
| 1321 | RtlWow64CallFunction64 | 1628 | RtlWow64CallFunction64 |
| 1322 | RtlWow64EnableFsRedirection | 1629 | RtlWow64EnableFsRedirection |
| 1323 | RtlWow64EnableFsRedirectionEx | 1630 | RtlWow64EnableFsRedirectionEx |
| 1631 | RtlWow64GetCpuAreaInfo | ||
| 1632 | RtlWow64GetCurrentCpuArea | ||
| 1633 | RtlWow64GetCurrentMachine | ||
| 1634 | RtlWow64GetEquivalentMachineCHPE | ||
| 1635 | RtlWow64GetProcessMachines | ||
| 1636 | RtlWow64GetSharedInfoProcess | ||
| 1324 | RtlWow64GetThreadContext | 1637 | RtlWow64GetThreadContext |
| 1325 | RtlWow64GetThreadSelectorEntry | 1638 | RtlWow64GetThreadSelectorEntry |
| 1639 | RtlWow64IsWowGuestMachineSupported | ||
| 1326 | RtlWow64LogMessageInEventLogger | 1640 | RtlWow64LogMessageInEventLogger |
| 1641 | RtlWow64PopAllCrossProcessWorkFromWorkList | ||
| 1642 | RtlWow64PopCrossProcessWorkFromFreeList | ||
| 1643 | RtlWow64PushCrossProcessWorkOntoFreeList | ||
| 1644 | RtlWow64PushCrossProcessWorkOntoWorkList | ||
| 1645 | RtlWow64RequestCrossProcessHeavyFlush | ||
| 1327 | RtlWow64SetThreadContext | 1646 | RtlWow64SetThreadContext |
| 1647 | RtlWow64SuspendProcess | ||
| 1328 | RtlWow64SuspendThread | 1648 | RtlWow64SuspendThread |
| 1329 | RtlWriteMemoryStream | 1649 | RtlWriteMemoryStream |
| 1650 | RtlWriteNonVolatileMemory | ||
| 1330 | RtlWriteRegistryValue | 1651 | RtlWriteRegistryValue |
| 1331 | RtlZeroHeap | 1652 | RtlZeroHeap |
| 1332 | RtlZeroMemory | 1653 | RtlZeroMemory |
| ... | @@ -1334,11 +1655,15 @@ RtlZombifyActivationContext | ... | @@ -1334,11 +1655,15 @@ RtlZombifyActivationContext |
| 1334 | RtlpApplyLengthFunction | 1655 | RtlpApplyLengthFunction |
| 1335 | RtlpCheckDynamicTimeZoneInformation | 1656 | RtlpCheckDynamicTimeZoneInformation |
| 1336 | RtlpCleanupRegistryKeys | 1657 | RtlpCleanupRegistryKeys |
| 1658 | RtlpConvertAbsoluteToRelativeSecurityAttribute | ||
| 1337 | RtlpConvertCultureNamesToLCIDs | 1659 | RtlpConvertCultureNamesToLCIDs |
| 1338 | RtlpConvertLCIDsToCultureNames | 1660 | RtlpConvertLCIDsToCultureNames |
| 1661 | RtlpConvertRelativeToAbsoluteSecurityAttribute | ||
| 1339 | RtlpCreateProcessRegistryInfo | 1662 | RtlpCreateProcessRegistryInfo |
| 1340 | RtlpEnsureBufferSize | 1663 | RtlpEnsureBufferSize |
| 1341 | RtlpExecuteUmsThread | 1664 | RtlpExecuteUmsThread |
| 1665 | RtlpFreezeTimeBias | ||
| 1666 | RtlpGetDeviceFamilyInfoEnum | ||
| 1342 | RtlpGetLCIDFromLangInfoNode | 1667 | RtlpGetLCIDFromLangInfoNode |
| 1343 | RtlpGetNameFromLangInfoNode | 1668 | RtlpGetNameFromLangInfoNode |
| 1344 | RtlpGetSystemDefaultUILanguage | 1669 | RtlpGetSystemDefaultUILanguage |
| ... | @@ -1347,6 +1672,7 @@ RtlpInitializeLangRegistryInfo | ... | @@ -1347,6 +1672,7 @@ RtlpInitializeLangRegistryInfo |
| 1347 | RtlpIsQualifiedLanguage | 1672 | RtlpIsQualifiedLanguage |
| 1348 | RtlpLoadMachineUIByPolicy | 1673 | RtlpLoadMachineUIByPolicy |
| 1349 | RtlpLoadUserUIByPolicy | 1674 | RtlpLoadUserUIByPolicy |
| 1675 | RtlpMergeSecurityAttributeInformation | ||
| 1350 | RtlpMuiFreeLangRegistryInfo | 1676 | RtlpMuiFreeLangRegistryInfo |
| 1351 | RtlpMuiRegCreateRegistryInfo | 1677 | RtlpMuiRegCreateRegistryInfo |
| 1352 | RtlpMuiRegFreeRegistryInfo | 1678 | RtlpMuiRegFreeRegistryInfo |
| ... | @@ -1360,15 +1686,21 @@ RtlpNtQueryValueKey | ... | @@ -1360,15 +1686,21 @@ RtlpNtQueryValueKey |
| 1360 | RtlpNtSetValueKey | 1686 | RtlpNtSetValueKey |
| 1361 | RtlpQueryDefaultUILanguage | 1687 | RtlpQueryDefaultUILanguage |
| 1362 | RtlpQueryProcessDebugInformationFromWow64 | 1688 | RtlpQueryProcessDebugInformationFromWow64 |
| 1689 | RtlpQueryProcessDebugInformationRemote | ||
| 1363 | RtlpRefreshCachedUILanguage | 1690 | RtlpRefreshCachedUILanguage |
| 1364 | RtlpSetInstallLanguage | 1691 | RtlpSetInstallLanguage |
| 1365 | RtlpSetPreferredUILanguages | 1692 | RtlpSetPreferredUILanguages |
| 1366 | RtlpSetUserPreferredUILanguages | 1693 | RtlpSetUserPreferredUILanguages |
| 1694 | RtlpTimeFieldsToTime | ||
| 1695 | RtlpTimeToTimeFields | ||
| 1367 | RtlpUmsExecuteYieldThreadEnd | 1696 | RtlpUmsExecuteYieldThreadEnd |
| 1368 | RtlpUmsThreadYield | 1697 | RtlpUmsThreadYield |
| 1369 | RtlpUnWaitCriticalSection | 1698 | RtlpUnWaitCriticalSection |
| 1370 | RtlpVerifyAndCommitUILanguageSettings | 1699 | RtlpVerifyAndCommitUILanguageSettings |
| 1371 | RtlpWaitForCriticalSection | 1700 | RtlpWaitForCriticalSection |
| 1701 | RtlpWow64CtxFromAmd64 | ||
| 1702 | RtlpWow64GetContextOnAmd64 | ||
| 1703 | RtlpWow64SetContextOnAmd64 | ||
| 1372 | RtlxAnsiStringToUnicodeSize | 1704 | RtlxAnsiStringToUnicodeSize |
| 1373 | RtlxOemStringToUnicodeSize | 1705 | RtlxOemStringToUnicodeSize |
| 1374 | RtlxUnicodeStringToAnsiSize | 1706 | RtlxUnicodeStringToAnsiSize |
| ... | @@ -1383,17 +1715,21 @@ TpAllocAlpcCompletion | ... | @@ -1383,17 +1715,21 @@ TpAllocAlpcCompletion |
| 1383 | TpAllocAlpcCompletionEx | 1715 | TpAllocAlpcCompletionEx |
| 1384 | TpAllocCleanupGroup | 1716 | TpAllocCleanupGroup |
| 1385 | TpAllocIoCompletion | 1717 | TpAllocIoCompletion |
| 1718 | TpAllocJobNotification | ||
| 1386 | TpAllocPool | 1719 | TpAllocPool |
| 1387 | TpAllocTimer | 1720 | TpAllocTimer |
| 1388 | TpAllocWait | 1721 | TpAllocWait |
| 1389 | TpAllocWork | 1722 | TpAllocWork |
| 1390 | TpAlpcRegisterCompletionList | 1723 | TpAlpcRegisterCompletionList |
| 1391 | TpAlpcUnregisterCompletionList | 1724 | TpAlpcUnregisterCompletionList |
| 1725 | TpCallbackDetectedUnrecoverableError | ||
| 1392 | TpCallbackIndependent | 1726 | TpCallbackIndependent |
| 1393 | TpCallbackLeaveCriticalSectionOnCompletion | 1727 | TpCallbackLeaveCriticalSectionOnCompletion |
| 1394 | TpCallbackMayRunLong | 1728 | TpCallbackMayRunLong |
| 1395 | TpCallbackReleaseMutexOnCompletion | 1729 | TpCallbackReleaseMutexOnCompletion |
| 1396 | TpCallbackReleaseSemaphoreOnCompletion | 1730 | TpCallbackReleaseSemaphoreOnCompletion |
| 1731 | TpCallbackSendAlpcMessageOnCompletion | ||
| 1732 | TpCallbackSendPendingAlpcMessage | ||
| 1397 | TpCallbackSetEventOnCompletion | 1733 | TpCallbackSetEventOnCompletion |
| 1398 | TpCallbackUnloadDllOnCompletion | 1734 | TpCallbackUnloadDllOnCompletion |
| 1399 | TpCancelAsyncIoOperation | 1735 | TpCancelAsyncIoOperation |
| ... | @@ -1412,6 +1748,7 @@ TpReleaseAlpcCompletion | ... | @@ -1412,6 +1748,7 @@ TpReleaseAlpcCompletion |
| 1412 | TpReleaseCleanupGroup | 1748 | TpReleaseCleanupGroup |
| 1413 | TpReleaseCleanupGroupMembers | 1749 | TpReleaseCleanupGroupMembers |
| 1414 | TpReleaseIoCompletion | 1750 | TpReleaseIoCompletion |
| 1751 | TpReleaseJobNotification | ||
| 1415 | TpReleasePool | 1752 | TpReleasePool |
| 1416 | TpReleaseTimer | 1753 | TpReleaseTimer |
| 1417 | TpReleaseWait | 1754 | TpReleaseWait |
| ... | @@ -1419,18 +1756,28 @@ TpReleaseWork | ... | @@ -1419,18 +1756,28 @@ TpReleaseWork |
| 1419 | TpSetDefaultPoolMaxThreads | 1756 | TpSetDefaultPoolMaxThreads |
| 1420 | TpSetDefaultPoolStackInformation | 1757 | TpSetDefaultPoolStackInformation |
| 1421 | TpSetPoolMaxThreads | 1758 | TpSetPoolMaxThreads |
| 1759 | TpSetPoolMaxThreadsSoftLimit | ||
| 1422 | TpSetPoolMinThreads | 1760 | TpSetPoolMinThreads |
| 1423 | TpSetPoolStackInformation | 1761 | TpSetPoolStackInformation |
| 1762 | TpSetPoolThreadBasePriority | ||
| 1763 | TpSetPoolThreadCpuSets | ||
| 1764 | TpSetPoolWorkerThreadIdleTimeout | ||
| 1424 | TpSetTimer | 1765 | TpSetTimer |
| 1766 | TpSetTimerEx | ||
| 1425 | TpSetWait | 1767 | TpSetWait |
| 1768 | TpSetWaitEx | ||
| 1426 | TpSimpleTryPost | 1769 | TpSimpleTryPost |
| 1427 | TpStartAsyncIoOperation | 1770 | TpStartAsyncIoOperation |
| 1771 | TpTimerOutstandingCallbackCount | ||
| 1772 | TpTrimPools | ||
| 1428 | TpWaitForAlpcCompletion | 1773 | TpWaitForAlpcCompletion |
| 1429 | TpWaitForIoCompletion | 1774 | TpWaitForIoCompletion |
| 1775 | TpWaitForJobNotification | ||
| 1430 | TpWaitForTimer | 1776 | TpWaitForTimer |
| 1431 | TpWaitForWait | 1777 | TpWaitForWait |
| 1432 | TpWaitForWork | 1778 | TpWaitForWork |
| 1433 | VerSetConditionMask | 1779 | VerSetConditionMask |
| 1780 | WerReportExceptionWorker | ||
| 1434 | WerReportSQMEvent | 1781 | WerReportSQMEvent |
| 1435 | WinSqmAddToAverageDWORD | 1782 | WinSqmAddToAverageDWORD |
| 1436 | WinSqmAddToStream | 1783 | WinSqmAddToStream |
| ... | @@ -1452,6 +1799,7 @@ WinSqmGetInstrumentationProperty | ... | @@ -1452,6 +1799,7 @@ WinSqmGetInstrumentationProperty |
| 1452 | WinSqmIncrementDWORD | 1799 | WinSqmIncrementDWORD |
| 1453 | WinSqmIsOptedIn | 1800 | WinSqmIsOptedIn |
| 1454 | WinSqmIsOptedInEx | 1801 | WinSqmIsOptedInEx |
| 1802 | WinSqmIsSessionDisabled | ||
| 1455 | WinSqmSetDWORD | 1803 | WinSqmSetDWORD |
| 1456 | WinSqmSetDWORD64 | 1804 | WinSqmSetDWORD64 |
| 1457 | WinSqmSetEscalationInfo | 1805 | WinSqmSetEscalationInfo |
| ... | @@ -1459,6 +1807,8 @@ WinSqmSetIfMaxDWORD | ... | @@ -1459,6 +1807,8 @@ WinSqmSetIfMaxDWORD |
| 1459 | WinSqmSetIfMinDWORD | 1807 | WinSqmSetIfMinDWORD |
| 1460 | WinSqmSetString | 1808 | WinSqmSetString |
| 1461 | WinSqmStartSession | 1809 | WinSqmStartSession |
| 1810 | WinSqmStartSessionForPartner | ||
| 1811 | WinSqmStartSqmOptinListener | ||
| 1462 | ZwAcceptConnectPort | 1812 | ZwAcceptConnectPort |
| 1463 | ZwAccessCheck | 1813 | ZwAccessCheck |
| 1464 | ZwAccessCheckAndAuditAlarm | 1814 | ZwAccessCheckAndAuditAlarm |
| ... | @@ -1467,21 +1817,28 @@ ZwAccessCheckByTypeAndAuditAlarm | ... | @@ -1467,21 +1817,28 @@ ZwAccessCheckByTypeAndAuditAlarm |
| 1467 | ZwAccessCheckByTypeResultList | 1817 | ZwAccessCheckByTypeResultList |
| 1468 | ZwAccessCheckByTypeResultListAndAuditAlarm | 1818 | ZwAccessCheckByTypeResultListAndAuditAlarm |
| 1469 | ZwAccessCheckByTypeResultListAndAuditAlarmByHandle | 1819 | ZwAccessCheckByTypeResultListAndAuditAlarmByHandle |
| 1820 | ZwAcquireProcessActivityReference | ||
| 1470 | ZwAddAtom | 1821 | ZwAddAtom |
| 1822 | ZwAddAtomEx | ||
| 1471 | ZwAddBootEntry | 1823 | ZwAddBootEntry |
| 1472 | ZwAddDriverEntry | 1824 | ZwAddDriverEntry |
| 1473 | ZwAdjustGroupsToken | 1825 | ZwAdjustGroupsToken |
| 1474 | ZwAdjustPrivilegesToken | 1826 | ZwAdjustPrivilegesToken |
| 1827 | ZwAdjustTokenClaimsAndDeviceGroups | ||
| 1475 | ZwAlertResumeThread | 1828 | ZwAlertResumeThread |
| 1476 | ZwAlertThread | 1829 | ZwAlertThread |
| 1830 | ZwAlertThreadByThreadId | ||
| 1477 | ZwAllocateLocallyUniqueId | 1831 | ZwAllocateLocallyUniqueId |
| 1478 | ZwAllocateReserveObject | 1832 | ZwAllocateReserveObject |
| 1479 | ZwAllocateUserPhysicalPages | 1833 | ZwAllocateUserPhysicalPages |
| 1834 | ZwAllocateUserPhysicalPagesEx | ||
| 1480 | ZwAllocateUuids | 1835 | ZwAllocateUuids |
| 1481 | ZwAllocateVirtualMemory | 1836 | ZwAllocateVirtualMemory |
| 1837 | ZwAllocateVirtualMemoryEx | ||
| 1482 | ZwAlpcAcceptConnectPort | 1838 | ZwAlpcAcceptConnectPort |
| 1483 | ZwAlpcCancelMessage | 1839 | ZwAlpcCancelMessage |
| 1484 | ZwAlpcConnectPort | 1840 | ZwAlpcConnectPort |
| 1841 | ZwAlpcConnectPortEx | ||
| 1485 | ZwAlpcCreatePort | 1842 | ZwAlpcCreatePort |
| 1486 | ZwAlpcCreatePortSection | 1843 | ZwAlpcCreatePortSection |
| 1487 | ZwAlpcCreateResourceReserve | 1844 | ZwAlpcCreateResourceReserve |
| ... | @@ -1492,6 +1849,7 @@ ZwAlpcDeleteResourceReserve | ... | @@ -1492,6 +1849,7 @@ ZwAlpcDeleteResourceReserve |
| 1492 | ZwAlpcDeleteSectionView | 1849 | ZwAlpcDeleteSectionView |
| 1493 | ZwAlpcDeleteSecurityContext | 1850 | ZwAlpcDeleteSecurityContext |
| 1494 | ZwAlpcDisconnectPort | 1851 | ZwAlpcDisconnectPort |
| 1852 | ZwAlpcImpersonateClientContainerOfPort | ||
| 1495 | ZwAlpcImpersonateClientOfPort | 1853 | ZwAlpcImpersonateClientOfPort |
| 1496 | ZwAlpcOpenSenderProcess | 1854 | ZwAlpcOpenSenderProcess |
| 1497 | ZwAlpcOpenSenderThread | 1855 | ZwAlpcOpenSenderThread |
| ... | @@ -1503,58 +1861,78 @@ ZwAlpcSetInformation | ... | @@ -1503,58 +1861,78 @@ ZwAlpcSetInformation |
| 1503 | ZwApphelpCacheControl | 1861 | ZwApphelpCacheControl |
| 1504 | ZwAreMappedFilesTheSame | 1862 | ZwAreMappedFilesTheSame |
| 1505 | ZwAssignProcessToJobObject | 1863 | ZwAssignProcessToJobObject |
| 1864 | ZwAssociateWaitCompletionPacket | ||
| 1865 | ZwCallEnclave | ||
| 1506 | ZwCallbackReturn | 1866 | ZwCallbackReturn |
| 1507 | ZwCancelDeviceWakeupRequest | 1867 | ZwCancelDeviceWakeupRequest |
| 1508 | ZwCancelIoFile | 1868 | ZwCancelIoFile |
| 1509 | ZwCancelIoFileEx | 1869 | ZwCancelIoFileEx |
| 1510 | ZwCancelSynchronousIoFile | 1870 | ZwCancelSynchronousIoFile |
| 1511 | ZwCancelTimer | 1871 | ZwCancelTimer |
| 1872 | ZwCancelTimer2 | ||
| 1873 | ZwCancelWaitCompletionPacket | ||
| 1512 | ZwClearEvent | 1874 | ZwClearEvent |
| 1513 | ZwClose | 1875 | ZwClose |
| 1514 | ZwCloseObjectAuditAlarm | 1876 | ZwCloseObjectAuditAlarm |
| 1515 | ZwCommitComplete | 1877 | ZwCommitComplete |
| 1516 | ZwCommitEnlistment | 1878 | ZwCommitEnlistment |
| 1879 | ZwCommitRegistryTransaction | ||
| 1517 | ZwCommitTransaction | 1880 | ZwCommitTransaction |
| 1518 | ZwCompactKeys | 1881 | ZwCompactKeys |
| 1882 | ZwCompareObjects | ||
| 1883 | ZwCompareSigningLevels | ||
| 1519 | ZwCompareTokens | 1884 | ZwCompareTokens |
| 1520 | ZwCompleteConnectPort | 1885 | ZwCompleteConnectPort |
| 1521 | ZwCompressKey | 1886 | ZwCompressKey |
| 1522 | ZwConnectPort | 1887 | ZwConnectPort |
| 1523 | ZwContinue | 1888 | ZwContinue |
| 1889 | ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter | ||
| 1890 | ZwCreateCrossVmEvent | ||
| 1524 | ZwCreateDebugObject | 1891 | ZwCreateDebugObject |
| 1525 | ZwCreateDirectoryObject | 1892 | ZwCreateDirectoryObject |
| 1893 | ZwCreateDirectoryObjectEx | ||
| 1894 | ZwCreateEnclave | ||
| 1526 | ZwCreateEnlistment | 1895 | ZwCreateEnlistment |
| 1527 | ZwCreateEvent | 1896 | ZwCreateEvent |
| 1528 | ZwCreateEventPair | 1897 | ZwCreateEventPair |
| 1529 | ZwCreateFile | 1898 | ZwCreateFile |
| 1899 | ZwCreateIRTimer | ||
| 1530 | ZwCreateIoCompletion | 1900 | ZwCreateIoCompletion |
| 1531 | ZwCreateJobObject | 1901 | ZwCreateJobObject |
| 1532 | ZwCreateJobSet | 1902 | ZwCreateJobSet |
| 1533 | ZwCreateKey | 1903 | ZwCreateKey |
| 1534 | ZwCreateKeyTransacted | 1904 | ZwCreateKeyTransacted |
| 1535 | ZwCreateKeyedEvent | 1905 | ZwCreateKeyedEvent |
| 1906 | ZwCreateLowBoxToken | ||
| 1536 | ZwCreateMailslotFile | 1907 | ZwCreateMailslotFile |
| 1537 | ZwCreateMutant | 1908 | ZwCreateMutant |
| 1538 | ZwCreateNamedPipeFile | 1909 | ZwCreateNamedPipeFile |
| 1539 | ZwCreatePagingFile | 1910 | ZwCreatePagingFile |
| 1911 | ZwCreatePartition | ||
| 1540 | ZwCreatePort | 1912 | ZwCreatePort |
| 1541 | ZwCreatePrivateNamespace | 1913 | ZwCreatePrivateNamespace |
| 1542 | ZwCreateProcess | 1914 | ZwCreateProcess |
| 1543 | ZwCreateProcessEx | 1915 | ZwCreateProcessEx |
| 1544 | ZwCreateProfile | 1916 | ZwCreateProfile |
| 1545 | ZwCreateProfileEx | 1917 | ZwCreateProfileEx |
| 1918 | ZwCreateRegistryTransaction | ||
| 1546 | ZwCreateResourceManager | 1919 | ZwCreateResourceManager |
| 1547 | ZwCreateSection | 1920 | ZwCreateSection |
| 1921 | ZwCreateSectionEx | ||
| 1548 | ZwCreateSemaphore | 1922 | ZwCreateSemaphore |
| 1549 | ZwCreateSymbolicLinkObject | 1923 | ZwCreateSymbolicLinkObject |
| 1550 | ZwCreateThread | 1924 | ZwCreateThread |
| 1551 | ZwCreateThreadEx | 1925 | ZwCreateThreadEx |
| 1552 | ZwCreateTimer | 1926 | ZwCreateTimer |
| 1927 | ZwCreateTimer2 | ||
| 1553 | ZwCreateToken | 1928 | ZwCreateToken |
| 1929 | ZwCreateTokenEx | ||
| 1554 | ZwCreateTransaction | 1930 | ZwCreateTransaction |
| 1555 | ZwCreateTransactionManager | 1931 | ZwCreateTransactionManager |
| 1556 | ZwCreateUserProcess | 1932 | ZwCreateUserProcess |
| 1933 | ZwCreateWaitCompletionPacket | ||
| 1557 | ZwCreateWaitablePort | 1934 | ZwCreateWaitablePort |
| 1935 | ZwCreateWnfStateName | ||
| 1558 | ZwCreateWorkerFactory | 1936 | ZwCreateWorkerFactory |
| 1559 | ZwDebugActiveProcess | 1937 | ZwDebugActiveProcess |
| 1560 | ZwDebugContinue | 1938 | ZwDebugContinue |
| ... | @@ -1567,6 +1945,8 @@ ZwDeleteKey | ... | @@ -1567,6 +1945,8 @@ ZwDeleteKey |
| 1567 | ZwDeleteObjectAuditAlarm | 1945 | ZwDeleteObjectAuditAlarm |
| 1568 | ZwDeletePrivateNamespace | 1946 | ZwDeletePrivateNamespace |
| 1569 | ZwDeleteValueKey | 1947 | ZwDeleteValueKey |
| 1948 | ZwDeleteWnfStateData | ||
| 1949 | ZwDeleteWnfStateName | ||
| 1570 | ZwDeviceIoControlFile | 1950 | ZwDeviceIoControlFile |
| 1571 | ZwDisableLastKnownGood | 1951 | ZwDisableLastKnownGood |
| 1572 | ZwDisplayString | 1952 | ZwDisplayString |
| ... | @@ -1581,9 +1961,12 @@ ZwEnumerateSystemEnvironmentValuesEx | ... | @@ -1581,9 +1961,12 @@ ZwEnumerateSystemEnvironmentValuesEx |
| 1581 | ZwEnumerateTransactionObject | 1961 | ZwEnumerateTransactionObject |
| 1582 | ZwEnumerateValueKey | 1962 | ZwEnumerateValueKey |
| 1583 | ZwExtendSection | 1963 | ZwExtendSection |
| 1964 | ZwFilterBootOption | ||
| 1584 | ZwFilterToken | 1965 | ZwFilterToken |
| 1966 | ZwFilterTokenEx | ||
| 1585 | ZwFindAtom | 1967 | ZwFindAtom |
| 1586 | ZwFlushBuffersFile | 1968 | ZwFlushBuffersFile |
| 1969 | ZwFlushBuffersFileEx | ||
| 1587 | ZwFlushInstallUILanguage | 1970 | ZwFlushInstallUILanguage |
| 1588 | ZwFlushInstructionCache | 1971 | ZwFlushInstructionCache |
| 1589 | ZwFlushKey | 1972 | ZwFlushKey |
| ... | @@ -1595,8 +1978,11 @@ ZwFreeVirtualMemory | ... | @@ -1595,8 +1978,11 @@ ZwFreeVirtualMemory |
| 1595 | ZwFreezeRegistry | 1978 | ZwFreezeRegistry |
| 1596 | ZwFreezeTransactions | 1979 | ZwFreezeTransactions |
| 1597 | ZwFsControlFile | 1980 | ZwFsControlFile |
| 1981 | ZwGetCachedSigningLevel | ||
| 1982 | ZwGetCompleteWnfStateSubscription | ||
| 1598 | ZwGetContextThread | 1983 | ZwGetContextThread |
| 1599 | ZwGetCurrentProcessorNumber | 1984 | ZwGetCurrentProcessorNumber |
| 1985 | ZwGetCurrentProcessorNumberEx | ||
| 1600 | ZwGetDevicePowerState | 1986 | ZwGetDevicePowerState |
| 1601 | ZwGetMUIRegistryInfo | 1987 | ZwGetMUIRegistryInfo |
| 1602 | ZwGetNextProcess | 1988 | ZwGetNextProcess |
| ... | @@ -1608,6 +1994,7 @@ ZwGetWriteWatch | ... | @@ -1608,6 +1994,7 @@ ZwGetWriteWatch |
| 1608 | ZwImpersonateAnonymousToken | 1994 | ZwImpersonateAnonymousToken |
| 1609 | ZwImpersonateClientOfPort | 1995 | ZwImpersonateClientOfPort |
| 1610 | ZwImpersonateThread | 1996 | ZwImpersonateThread |
| 1997 | ZwInitializeEnclave | ||
| 1611 | ZwInitializeNlsFiles | 1998 | ZwInitializeNlsFiles |
| 1612 | ZwInitializeRegistry | 1999 | ZwInitializeRegistry |
| 1613 | ZwInitiatePowerAction | 2000 | ZwInitiatePowerAction |
| ... | @@ -1616,6 +2003,7 @@ ZwIsSystemResumeAutomatic | ... | @@ -1616,6 +2003,7 @@ ZwIsSystemResumeAutomatic |
| 1616 | ZwIsUILanguageComitted | 2003 | ZwIsUILanguageComitted |
| 1617 | ZwListenPort | 2004 | ZwListenPort |
| 1618 | ZwLoadDriver | 2005 | ZwLoadDriver |
| 2006 | ZwLoadEnclaveData | ||
| 1619 | ZwLoadKey | 2007 | ZwLoadKey |
| 1620 | ZwLoadKey2 | 2008 | ZwLoadKey2 |
| 1621 | ZwLoadKeyEx | 2009 | ZwLoadKeyEx |
| ... | @@ -1625,13 +2013,17 @@ ZwLockRegistryKey | ... | @@ -1625,13 +2013,17 @@ ZwLockRegistryKey |
| 1625 | ZwLockVirtualMemory | 2013 | ZwLockVirtualMemory |
| 1626 | ZwMakePermanentObject | 2014 | ZwMakePermanentObject |
| 1627 | ZwMakeTemporaryObject | 2015 | ZwMakeTemporaryObject |
| 2016 | ZwManageHotPatch | ||
| 2017 | ZwManagePartition | ||
| 1628 | ZwMapCMFModule | 2018 | ZwMapCMFModule |
| 1629 | ZwMapUserPhysicalPages | 2019 | ZwMapUserPhysicalPages |
| 1630 | ZwMapUserPhysicalPagesScatter | 2020 | ZwMapUserPhysicalPagesScatter |
| 1631 | ZwMapViewOfSection | 2021 | ZwMapViewOfSection |
| 2022 | ZwMapViewOfSectionEx | ||
| 1632 | ZwModifyBootEntry | 2023 | ZwModifyBootEntry |
| 1633 | ZwModifyDriverEntry | 2024 | ZwModifyDriverEntry |
| 1634 | ZwNotifyChangeDirectoryFile | 2025 | ZwNotifyChangeDirectoryFile |
| 2026 | ZwNotifyChangeDirectoryFileEx | ||
| 1635 | ZwNotifyChangeKey | 2027 | ZwNotifyChangeKey |
| 1636 | ZwNotifyChangeMultipleKeys | 2028 | ZwNotifyChangeMultipleKeys |
| 1637 | ZwNotifyChangeSession | 2029 | ZwNotifyChangeSession |
| ... | @@ -1649,10 +2041,12 @@ ZwOpenKeyTransactedEx | ... | @@ -1649,10 +2041,12 @@ ZwOpenKeyTransactedEx |
| 1649 | ZwOpenKeyedEvent | 2041 | ZwOpenKeyedEvent |
| 1650 | ZwOpenMutant | 2042 | ZwOpenMutant |
| 1651 | ZwOpenObjectAuditAlarm | 2043 | ZwOpenObjectAuditAlarm |
| 2044 | ZwOpenPartition | ||
| 1652 | ZwOpenPrivateNamespace | 2045 | ZwOpenPrivateNamespace |
| 1653 | ZwOpenProcess | 2046 | ZwOpenProcess |
| 1654 | ZwOpenProcessToken | 2047 | ZwOpenProcessToken |
| 1655 | ZwOpenProcessTokenEx | 2048 | ZwOpenProcessTokenEx |
| 2049 | ZwOpenRegistryTransaction | ||
| 1656 | ZwOpenResourceManager | 2050 | ZwOpenResourceManager |
| 1657 | ZwOpenSection | 2051 | ZwOpenSection |
| 1658 | ZwOpenSemaphore | 2052 | ZwOpenSemaphore |
| ... | @@ -1676,20 +2070,24 @@ ZwPrivilegedServiceAuditAlarm | ... | @@ -1676,20 +2070,24 @@ ZwPrivilegedServiceAuditAlarm |
| 1676 | ZwPropagationComplete | 2070 | ZwPropagationComplete |
| 1677 | ZwPropagationFailed | 2071 | ZwPropagationFailed |
| 1678 | ZwProtectVirtualMemory | 2072 | ZwProtectVirtualMemory |
| 2073 | ZwPssCaptureVaSpaceBulk | ||
| 1679 | ZwPulseEvent | 2074 | ZwPulseEvent |
| 1680 | ZwQueryAttributesFile | 2075 | ZwQueryAttributesFile |
| 2076 | ZwQueryAuxiliaryCounterFrequency | ||
| 1681 | ZwQueryBootEntryOrder | 2077 | ZwQueryBootEntryOrder |
| 1682 | ZwQueryBootOptions | 2078 | ZwQueryBootOptions |
| 1683 | ZwQueryDebugFilterState | 2079 | ZwQueryDebugFilterState |
| 1684 | ZwQueryDefaultLocale | 2080 | ZwQueryDefaultLocale |
| 1685 | ZwQueryDefaultUILanguage | 2081 | ZwQueryDefaultUILanguage |
| 1686 | ZwQueryDirectoryFile | 2082 | ZwQueryDirectoryFile |
| 2083 | ZwQueryDirectoryFileEx | ||
| 1687 | ZwQueryDirectoryObject | 2084 | ZwQueryDirectoryObject |
| 1688 | ZwQueryDriverEntryOrder | 2085 | ZwQueryDriverEntryOrder |
| 1689 | ZwQueryEaFile | 2086 | ZwQueryEaFile |
| 1690 | ZwQueryEvent | 2087 | ZwQueryEvent |
| 1691 | ZwQueryFullAttributesFile | 2088 | ZwQueryFullAttributesFile |
| 1692 | ZwQueryInformationAtom | 2089 | ZwQueryInformationAtom |
| 2090 | ZwQueryInformationByName | ||
| 1693 | ZwQueryInformationEnlistment | 2091 | ZwQueryInformationEnlistment |
| 1694 | ZwQueryInformationFile | 2092 | ZwQueryInformationFile |
| 1695 | ZwQueryInformationJobObject | 2093 | ZwQueryInformationJobObject |
| ... | @@ -1717,6 +2115,7 @@ ZwQueryQuotaInformationFile | ... | @@ -1717,6 +2115,7 @@ ZwQueryQuotaInformationFile |
| 1717 | ZwQuerySection | 2115 | ZwQuerySection |
| 1718 | ZwQuerySecurityAttributesToken | 2116 | ZwQuerySecurityAttributesToken |
| 1719 | ZwQuerySecurityObject | 2117 | ZwQuerySecurityObject |
| 2118 | ZwQuerySecurityPolicy | ||
| 1720 | ZwQuerySemaphore | 2119 | ZwQuerySemaphore |
| 1721 | ZwQuerySymbolicLinkObject | 2120 | ZwQuerySymbolicLinkObject |
| 1722 | ZwQuerySystemEnvironmentValue | 2121 | ZwQuerySystemEnvironmentValue |
| ... | @@ -1729,6 +2128,8 @@ ZwQueryTimerResolution | ... | @@ -1729,6 +2128,8 @@ ZwQueryTimerResolution |
| 1729 | ZwQueryValueKey | 2128 | ZwQueryValueKey |
| 1730 | ZwQueryVirtualMemory | 2129 | ZwQueryVirtualMemory |
| 1731 | ZwQueryVolumeInformationFile | 2130 | ZwQueryVolumeInformationFile |
| 2131 | ZwQueryWnfStateData | ||
| 2132 | ZwQueryWnfStateNameInformation | ||
| 1732 | ZwQueueApcThread | 2133 | ZwQueueApcThread |
| 1733 | ZwQueueApcThreadEx | 2134 | ZwQueueApcThreadEx |
| 1734 | ZwRaiseException | 2135 | ZwRaiseException |
| ... | @@ -1767,8 +2168,10 @@ ZwResetWriteWatch | ... | @@ -1767,8 +2168,10 @@ ZwResetWriteWatch |
| 1767 | ZwRestoreKey | 2168 | ZwRestoreKey |
| 1768 | ZwResumeProcess | 2169 | ZwResumeProcess |
| 1769 | ZwResumeThread | 2170 | ZwResumeThread |
| 2171 | ZwRevertContainerImpersonation | ||
| 1770 | ZwRollbackComplete | 2172 | ZwRollbackComplete |
| 1771 | ZwRollbackEnlistment | 2173 | ZwRollbackEnlistment |
| 2174 | ZwRollbackRegistryTransaction | ||
| 1772 | ZwRollbackTransaction | 2175 | ZwRollbackTransaction |
| 1773 | ZwRollforwardTransactionManager | 2176 | ZwRollforwardTransactionManager |
| 1774 | ZwSaveKey | 2177 | ZwSaveKey |
| ... | @@ -1778,6 +2181,8 @@ ZwSecureConnectPort | ... | @@ -1778,6 +2181,8 @@ ZwSecureConnectPort |
| 1778 | ZwSerializeBoot | 2181 | ZwSerializeBoot |
| 1779 | ZwSetBootEntryOrder | 2182 | ZwSetBootEntryOrder |
| 1780 | ZwSetBootOptions | 2183 | ZwSetBootOptions |
| 2184 | ZwSetCachedSigningLevel | ||
| 2185 | ZwSetCachedSigningLevel2 | ||
| 1781 | ZwSetContextThread | 2186 | ZwSetContextThread |
| 1782 | ZwSetDebugFilterState | 2187 | ZwSetDebugFilterState |
| 1783 | ZwSetDefaultHardErrorPort | 2188 | ZwSetDefaultHardErrorPort |
| ... | @@ -1789,6 +2194,7 @@ ZwSetEvent | ... | @@ -1789,6 +2194,7 @@ ZwSetEvent |
| 1789 | ZwSetEventBoostPriority | 2194 | ZwSetEventBoostPriority |
| 1790 | ZwSetHighEventPair | 2195 | ZwSetHighEventPair |
| 1791 | ZwSetHighWaitLowEventPair | 2196 | ZwSetHighWaitLowEventPair |
| 2197 | ZwSetIRTimer | ||
| 1792 | ZwSetInformationDebugObject | 2198 | ZwSetInformationDebugObject |
| 1793 | ZwSetInformationEnlistment | 2199 | ZwSetInformationEnlistment |
| 1794 | ZwSetInformationFile | 2200 | ZwSetInformationFile |
| ... | @@ -1797,10 +2203,12 @@ ZwSetInformationKey | ... | @@ -1797,10 +2203,12 @@ ZwSetInformationKey |
| 1797 | ZwSetInformationObject | 2203 | ZwSetInformationObject |
| 1798 | ZwSetInformationProcess | 2204 | ZwSetInformationProcess |
| 1799 | ZwSetInformationResourceManager | 2205 | ZwSetInformationResourceManager |
| 2206 | ZwSetInformationSymbolicLink | ||
| 1800 | ZwSetInformationThread | 2207 | ZwSetInformationThread |
| 1801 | ZwSetInformationToken | 2208 | ZwSetInformationToken |
| 1802 | ZwSetInformationTransaction | 2209 | ZwSetInformationTransaction |
| 1803 | ZwSetInformationTransactionManager | 2210 | ZwSetInformationTransactionManager |
| 2211 | ZwSetInformationVirtualMemory | ||
| 1804 | ZwSetInformationWorkerFactory | 2212 | ZwSetInformationWorkerFactory |
| 1805 | ZwSetIntervalProfile | 2213 | ZwSetIntervalProfile |
| 1806 | ZwSetIoCompletion | 2214 | ZwSetIoCompletion |
| ... | @@ -1817,20 +2225,24 @@ ZwSetSystemPowerState | ... | @@ -1817,20 +2225,24 @@ ZwSetSystemPowerState |
| 1817 | ZwSetSystemTime | 2225 | ZwSetSystemTime |
| 1818 | ZwSetThreadExecutionState | 2226 | ZwSetThreadExecutionState |
| 1819 | ZwSetTimer | 2227 | ZwSetTimer |
| 2228 | ZwSetTimer2 | ||
| 1820 | ZwSetTimerEx | 2229 | ZwSetTimerEx |
| 1821 | ZwSetTimerResolution | 2230 | ZwSetTimerResolution |
| 1822 | ZwSetUuidSeed | 2231 | ZwSetUuidSeed |
| 1823 | ZwSetValueKey | 2232 | ZwSetValueKey |
| 1824 | ZwSetVolumeInformationFile | 2233 | ZwSetVolumeInformationFile |
| 2234 | ZwSetWnfProcessNotificationEvent | ||
| 1825 | ZwShutdownSystem | 2235 | ZwShutdownSystem |
| 1826 | ZwShutdownWorkerFactory | 2236 | ZwShutdownWorkerFactory |
| 1827 | ZwSignalAndWaitForSingleObject | 2237 | ZwSignalAndWaitForSingleObject |
| 1828 | ZwSinglePhaseReject | 2238 | ZwSinglePhaseReject |
| 1829 | ZwStartProfile | 2239 | ZwStartProfile |
| 1830 | ZwStopProfile | 2240 | ZwStopProfile |
| 2241 | ZwSubscribeWnfStateChange | ||
| 1831 | ZwSuspendProcess | 2242 | ZwSuspendProcess |
| 1832 | ZwSuspendThread | 2243 | ZwSuspendThread |
| 1833 | ZwSystemDebugControl | 2244 | ZwSystemDebugControl |
| 2245 | ZwTerminateEnclave | ||
| 1834 | ZwTerminateJobObject | 2246 | ZwTerminateJobObject |
| 1835 | ZwTerminateProcess | 2247 | ZwTerminateProcess |
| 1836 | ZwTerminateThread | 2248 | ZwTerminateThread |
| ... | @@ -1848,7 +2260,11 @@ ZwUnloadKeyEx | ... | @@ -1848,7 +2260,11 @@ ZwUnloadKeyEx |
| 1848 | ZwUnlockFile | 2260 | ZwUnlockFile |
| 1849 | ZwUnlockVirtualMemory | 2261 | ZwUnlockVirtualMemory |
| 1850 | ZwUnmapViewOfSection | 2262 | ZwUnmapViewOfSection |
| 2263 | ZwUnmapViewOfSectionEx | ||
| 2264 | ZwUnsubscribeWnfStateChange | ||
| 2265 | ZwUpdateWnfStateData | ||
| 1851 | ZwVdmControl | 2266 | ZwVdmControl |
| 2267 | ZwWaitForAlertByThreadId | ||
| 1852 | ZwWaitForDebugEvent | 2268 | ZwWaitForDebugEvent |
| 1853 | ZwWaitForKeyedEvent | 2269 | ZwWaitForKeyedEvent |
| 1854 | ZwWaitForMultipleObjects | 2270 | ZwWaitForMultipleObjects |
| ... | @@ -1863,175 +2279,3 @@ ZwWriteFileGather | ... | @@ -1863,175 +2279,3 @@ ZwWriteFileGather |
| 1863 | ZwWriteRequestData | 2279 | ZwWriteRequestData |
| 1864 | ZwWriteVirtualMemory | 2280 | ZwWriteVirtualMemory |
| 1865 | ZwYieldExecution | 2281 | ZwYieldExecution |
| 1866 | __C_specific_handler | ||
| 1867 | ;__chkstk | ||
| 1868 | __isascii | ||
| 1869 | __iscsym | ||
| 1870 | __iscsymf | ||
| 1871 | __misaligned_access | ||
| 1872 | __toascii | ||
| 1873 | _atoi64 | ||
| 1874 | _fltused DATA | ||
| 1875 | _i64toa | ||
| 1876 | _i64toa_s | ||
| 1877 | _i64tow | ||
| 1878 | _i64tow_s | ||
| 1879 | _itoa | ||
| 1880 | _itoa_s | ||
| 1881 | _itow | ||
| 1882 | _itow_s | ||
| 1883 | _lfind | ||
| 1884 | _local_unwind | ||
| 1885 | _ltoa | ||
| 1886 | _ltoa_s | ||
| 1887 | _ltow | ||
| 1888 | _ltow_s | ||
| 1889 | _makepath_s | ||
| 1890 | _memccpy | ||
| 1891 | _memicmp | ||
| 1892 | _setjmp | ||
| 1893 | _setjmpex | ||
| 1894 | _snprintf | ||
| 1895 | _snprintf_s | ||
| 1896 | _snscanf_s | ||
| 1897 | _snwprintf | ||
| 1898 | _snwprintf_s | ||
| 1899 | _snwscanf_s | ||
| 1900 | _splitpath | ||
| 1901 | _splitpath_s | ||
| 1902 | _strcmpi | ||
| 1903 | _stricmp | ||
| 1904 | _strlwr | ||
| 1905 | _strnicmp | ||
| 1906 | _strnset_s | ||
| 1907 | _strset_s | ||
| 1908 | _strupr | ||
| 1909 | _tolower | ||
| 1910 | _toupper | ||
| 1911 | _swprintf | ||
| 1912 | _ui64toa | ||
| 1913 | _ui64toa_s | ||
| 1914 | _ui64tow | ||
| 1915 | _ui64tow_s | ||
| 1916 | _ultoa | ||
| 1917 | _ultoa_s | ||
| 1918 | _ultow | ||
| 1919 | _ultow_s | ||
| 1920 | _vscwprintf | ||
| 1921 | _vsnprintf | ||
| 1922 | _vsnprintf_s | ||
| 1923 | _vsnwprintf | ||
| 1924 | _vsnwprintf_s | ||
| 1925 | _vswprintf | ||
| 1926 | _wcsicmp | ||
| 1927 | _wcslwr | ||
| 1928 | _wcsnicmp | ||
| 1929 | _wcsnset_s | ||
| 1930 | _wcsset_s | ||
| 1931 | _wcstoui64 | ||
| 1932 | _wcsupr | ||
| 1933 | _wmakepath_s | ||
| 1934 | _wsplitpath_s | ||
| 1935 | _wtoi | ||
| 1936 | _wtoi64 | ||
| 1937 | _wtol | ||
| 1938 | abs | ||
| 1939 | atan DATA | ||
| 1940 | atoi | ||
| 1941 | atol | ||
| 1942 | bsearch | ||
| 1943 | ceil | ||
| 1944 | cos DATA | ||
| 1945 | fabs DATA | ||
| 1946 | floor DATA | ||
| 1947 | isalnum | ||
| 1948 | isalpha | ||
| 1949 | iscntrl | ||
| 1950 | isdigit | ||
| 1951 | isgraph | ||
| 1952 | islower | ||
| 1953 | isprint | ||
| 1954 | ispunct | ||
| 1955 | isspace | ||
| 1956 | isupper | ||
| 1957 | iswalpha | ||
| 1958 | iswctype | ||
| 1959 | iswdigit | ||
| 1960 | iswlower | ||
| 1961 | iswspace | ||
| 1962 | iswxdigit | ||
| 1963 | isxdigit | ||
| 1964 | labs | ||
| 1965 | log | ||
| 1966 | longjmp DATA | ||
| 1967 | mbstowcs | ||
| 1968 | memchr | ||
| 1969 | memcmp | ||
| 1970 | memcpy | ||
| 1971 | memcpy_s | ||
| 1972 | memmove | ||
| 1973 | memmove_s | ||
| 1974 | memset | ||
| 1975 | pow | ||
| 1976 | qsort | ||
| 1977 | sin | ||
| 1978 | sprintf | ||
| 1979 | sprintf_s | ||
| 1980 | sqrt | ||
| 1981 | sscanf | ||
| 1982 | sscanf_s | ||
| 1983 | strcat | ||
| 1984 | strcat_s | ||
| 1985 | strchr | ||
| 1986 | strcmp | ||
| 1987 | strcpy | ||
| 1988 | strcpy_s | ||
| 1989 | strcspn | ||
| 1990 | strlen | ||
| 1991 | strncat | ||
| 1992 | strncat_s | ||
| 1993 | strncmp | ||
| 1994 | strncpy | ||
| 1995 | strncpy_s | ||
| 1996 | strnlen | ||
| 1997 | strpbrk | ||
| 1998 | strrchr | ||
| 1999 | strspn | ||
| 2000 | strstr | ||
| 2001 | strtok_s | ||
| 2002 | strtol | ||
| 2003 | strtoul | ||
| 2004 | swprintf | ||
| 2005 | swprintf_s | ||
| 2006 | swscanf_s | ||
| 2007 | tan | ||
| 2008 | tolower | ||
| 2009 | toupper | ||
| 2010 | towlower | ||
| 2011 | towupper | ||
| 2012 | vDbgPrintEx | ||
| 2013 | vDbgPrintExWithPrefix | ||
| 2014 | vsprintf | ||
| 2015 | vsprintf_s | ||
| 2016 | vswprintf_s | ||
| 2017 | wcscat | ||
| 2018 | wcscat_s | ||
| 2019 | wcschr | ||
| 2020 | wcscmp | ||
| 2021 | wcscpy | ||
| 2022 | wcscpy_s | ||
| 2023 | wcscspn | ||
| 2024 | wcslen | ||
| 2025 | wcsncat | ||
| 2026 | wcsncat_s | ||
| 2027 | wcsncmp | ||
| 2028 | wcsncpy | ||
| 2029 | wcsncpy_s | ||
| 2030 | wcsnlen | ||
| 2031 | wcspbrk | ||
| 2032 | wcsrchr | ||
| 2033 | wcsspn | ||
| 2034 | wcsstr | ||
| 2035 | wcstol | ||
| 2036 | wcstombs | ||
| 2037 | wcstoul |
lib/libc/mingw/lib64/urlmon.def deleted-96| ... | @@ -1,96 +0,0 @@ | ||
| 1 | ; | ||
| 2 | ; Exports of file urlmon.dll | ||
| 3 | ; | ||
| 4 | ; Autogenerated by gen_exportdef | ||
| 5 | ; Written by Kai Tietz, 2007 | ||
| 6 | ; | ||
| 7 | LIBRARY urlmon.dll | ||
| 8 | EXPORTS | ||
| 9 | AsyncGetClassBits | ||
| 10 | AsyncInstallDistributionUnit | ||
| 11 | BindAsyncMoniker | ||
| 12 | CDLGetLongPathNameA | ||
| 13 | CDLGetLongPathNameW | ||
| 14 | CoGetClassObjectFromURL | ||
| 15 | CoInstall | ||
| 16 | CoInternetCombineUrl | ||
| 17 | CoInternetCompareUrl | ||
| 18 | CoInternetCreateSecurityManager | ||
| 19 | CoInternetCreateZoneManager | ||
| 20 | CoInternetFeatureSettingsChanged | ||
| 21 | CoInternetGetProtocolFlags | ||
| 22 | CoInternetGetSecurityUrl | ||
| 23 | CoInternetGetSession | ||
| 24 | CoInternetIsFeatureEnabled | ||
| 25 | CoInternetIsFeatureEnabledForUrl | ||
| 26 | CoInternetIsFeatureZoneElevationEnabled | ||
| 27 | CoInternetParseUrl | ||
| 28 | CoInternetQueryInfo | ||
| 29 | CoInternetSetFeatureEnabled | ||
| 30 | CompareSecurityIds | ||
| 31 | CompatFlagsFromClsid | ||
| 32 | CopyBindInfo | ||
| 33 | CopyStgMedium | ||
| 34 | CreateAsyncBindCtx | ||
| 35 | CreateAsyncBindCtxEx | ||
| 36 | CreateFormatEnumerator | ||
| 37 | CreateURLMoniker | ||
| 38 | CreateURLMonikerEx | ||
| 39 | DllCanUnloadNow | ||
| 40 | DllGetClassObject | ||
| 41 | DllInstall | ||
| 42 | DllRegisterServer | ||
| 43 | DllRegisterServerEx | ||
| 44 | DllUnregisterServer | ||
| 45 | Extract | ||
| 46 | FaultInIEFeature | ||
| 47 | FindMediaType | ||
| 48 | FindMediaTypeClass | ||
| 49 | FindMimeFromData | ||
| 50 | GetAddSitesFileUrl | ||
| 51 | GetClassFileOrMime | ||
| 52 | GetClassURL | ||
| 53 | GetComponentIDFromCLSSPEC | ||
| 54 | GetMarkOfTheWeb | ||
| 55 | GetSoftwareUpdateInfo | ||
| 56 | HlinkGoBack | ||
| 57 | HlinkGoForward | ||
| 58 | HlinkNavigateMoniker | ||
| 59 | HlinkNavigateString | ||
| 60 | HlinkSimpleNavigateToMoniker | ||
| 61 | HlinkSimpleNavigateToString | ||
| 62 | InstallFlash | ||
| 63 | IsAsyncMoniker | ||
| 64 | IsJITInProgress | ||
| 65 | IsLoggingEnabledA | ||
| 66 | IsLoggingEnabledW | ||
| 67 | IsValidURL | ||
| 68 | MkParseDisplayNameEx | ||
| 69 | ObtainUserAgentString | ||
| 70 | PrivateCoInstall | ||
| 71 | RegisterBindStatusCallback | ||
| 72 | RegisterFormatEnumerator | ||
| 73 | RegisterMediaTypeClass | ||
| 74 | RegisterMediaTypes | ||
| 75 | ReleaseBindInfo | ||
| 76 | RevokeBindStatusCallback | ||
| 77 | RevokeFormatEnumerator | ||
| 78 | SetSoftwareUpdateAdvertisementState | ||
| 79 | ShowTrustAlertDialog | ||
| 80 | URLDownloadA | ||
| 81 | URLDownloadToCacheFileA | ||
| 82 | URLDownloadToCacheFileW | ||
| 83 | URLDownloadToFileA | ||
| 84 | URLDownloadToFileW | ||
| 85 | URLDownloadW | ||
| 86 | URLOpenBlockingStreamA | ||
| 87 | URLOpenBlockingStreamW | ||
| 88 | URLOpenPullStreamA | ||
| 89 | URLOpenPullStreamW | ||
| 90 | URLOpenStreamA | ||
| 91 | URLOpenStreamW | ||
| 92 | UrlMkBuildVersion | ||
| 93 | UrlMkGetSessionOption | ||
| 94 | UrlMkSetSessionOption | ||
| 95 | WriteHitLogging | ||
| 96 | ZonesReInit | ||
lib/libc/mingw/libarm32/mswsock.def deleted-70| ... | @@ -1,70 +0,0 @@ | ||
| 1 | ; | ||
| 2 | ; Definition file of MSWSOCK.dll | ||
| 3 | ; Automatic generated by gendef | ||
| 4 | ; written by Kai Tietz 2008-2014 | ||
| 5 | ; | ||
| 6 | LIBRARY "MSWSOCK.dll" | ||
| 7 | EXPORTS | ||
| 8 | AcceptEx | ||
| 9 | EnumProtocolsA | ||
| 10 | EnumProtocolsW | ||
| 11 | GetAcceptExSockaddrs | ||
| 12 | GetAddressByNameA | ||
| 13 | GetAddressByNameW | ||
| 14 | GetNameByTypeA | ||
| 15 | GetNameByTypeW | ||
| 16 | GetServiceA | ||
| 17 | GetServiceW | ||
| 18 | GetSocketErrorMessageW | ||
| 19 | GetTypeByNameA | ||
| 20 | GetTypeByNameW | ||
| 21 | MigrateWinsockConfiguration | ||
| 22 | MigrateWinsockConfigurationEx | ||
| 23 | NPLoadNameSpaces | ||
| 24 | NSPStartup | ||
| 25 | SetServiceA | ||
| 26 | SetServiceW | ||
| 27 | StartWsdpService | ||
| 28 | StopWsdpService | ||
| 29 | Tcpip4_WSHAddressToString | ||
| 30 | Tcpip4_WSHEnumProtocols | ||
| 31 | Tcpip4_WSHGetBroadcastSockaddr | ||
| 32 | Tcpip4_WSHGetProviderGuid | ||
| 33 | Tcpip4_WSHGetSockaddrType | ||
| 34 | Tcpip4_WSHGetSocketInformation | ||
| 35 | Tcpip4_WSHGetWSAProtocolInfo | ||
| 36 | Tcpip4_WSHGetWildcardSockaddr | ||
| 37 | Tcpip4_WSHGetWinsockMapping | ||
| 38 | Tcpip4_WSHIoctl | ||
| 39 | Tcpip4_WSHJoinLeaf | ||
| 40 | Tcpip4_WSHNotify | ||
| 41 | Tcpip4_WSHOpenSocket | ||
| 42 | Tcpip4_WSHOpenSocket2 | ||
| 43 | Tcpip4_WSHSetSocketInformation | ||
| 44 | Tcpip4_WSHStringToAddress | ||
| 45 | Tcpip6_WSHAddressToString | ||
| 46 | Tcpip6_WSHEnumProtocols | ||
| 47 | Tcpip6_WSHGetProviderGuid | ||
| 48 | Tcpip6_WSHGetSockaddrType | ||
| 49 | Tcpip6_WSHGetSocketInformation | ||
| 50 | Tcpip6_WSHGetWSAProtocolInfo | ||
| 51 | Tcpip6_WSHGetWildcardSockaddr | ||
| 52 | Tcpip6_WSHGetWinsockMapping | ||
| 53 | Tcpip6_WSHIoctl | ||
| 54 | Tcpip6_WSHJoinLeaf | ||
| 55 | Tcpip6_WSHNotify | ||
| 56 | Tcpip6_WSHOpenSocket | ||
| 57 | Tcpip6_WSHOpenSocket2 | ||
| 58 | Tcpip6_WSHSetSocketInformation | ||
| 59 | Tcpip6_WSHStringToAddress | ||
| 60 | TransmitFile | ||
| 61 | WSARecvEx | ||
| 62 | WSPStartup | ||
| 63 | dn_expand | ||
| 64 | getnetbyname | ||
| 65 | inet_network | ||
| 66 | rcmd | ||
| 67 | rexec | ||
| 68 | rresvport | ||
| 69 | s_perror | ||
| 70 | sethostname | ||
lib/libc/mingw/libarm32/ntdll.def+232-181| ... | @@ -32,6 +32,7 @@ AlpcRundownCompletionList | ... | @@ -32,6 +32,7 @@ AlpcRundownCompletionList |
| 32 | AlpcUnregisterCompletionList | 32 | AlpcUnregisterCompletionList |
| 33 | AlpcUnregisterCompletionListWorkerThread | 33 | AlpcUnregisterCompletionListWorkerThread |
| 34 | ApiSetQueryApiSetPresence | 34 | ApiSetQueryApiSetPresence |
| 35 | ApiSetQueryApiSetPresenceEx | ||
| 35 | CsrAllocateCaptureBuffer | 36 | CsrAllocateCaptureBuffer |
| 36 | CsrAllocateMessagePointer | 37 | CsrAllocateMessagePointer |
| 37 | CsrCaptureMessageBuffer | 38 | CsrCaptureMessageBuffer |
| ... | @@ -55,6 +56,7 @@ DbgSetDebugFilterState | ... | @@ -55,6 +56,7 @@ DbgSetDebugFilterState |
| 55 | DbgUiConnectToDbg | 56 | DbgUiConnectToDbg |
| 56 | DbgUiContinue | 57 | DbgUiContinue |
| 57 | DbgUiConvertStateChangeStructure | 58 | DbgUiConvertStateChangeStructure |
| 59 | DbgUiConvertStateChangeStructureEx | ||
| 58 | DbgUiDebugActiveProcess | 60 | DbgUiDebugActiveProcess |
| 59 | DbgUiGetThreadDebugObject | 61 | DbgUiGetThreadDebugObject |
| 60 | DbgUiIssueRemoteBreakin | 62 | DbgUiIssueRemoteBreakin |
| ... | @@ -63,6 +65,7 @@ DbgUiSetThreadDebugObject | ... | @@ -63,6 +65,7 @@ DbgUiSetThreadDebugObject |
| 63 | DbgUiStopDebugging | 65 | DbgUiStopDebugging |
| 64 | DbgUiWaitStateChange | 66 | DbgUiWaitStateChange |
| 65 | DbgUserBreakPoint | 67 | DbgUserBreakPoint |
| 68 | EtwCheckCoverage | ||
| 66 | EtwCreateTraceInstanceId | 69 | EtwCreateTraceInstanceId |
| 67 | EtwDeliverDataBlock | 70 | EtwDeliverDataBlock |
| 68 | EtwEnumerateProcessRegGuids | 71 | EtwEnumerateProcessRegGuids |
| ... | @@ -108,6 +111,7 @@ ExpInterlockedPopEntrySListResume | ... | @@ -108,6 +111,7 @@ ExpInterlockedPopEntrySListResume |
| 108 | KiRaiseUserExceptionDispatcher | 111 | KiRaiseUserExceptionDispatcher |
| 109 | KiUserApcDispatcher | 112 | KiUserApcDispatcher |
| 110 | KiUserCallbackDispatcher | 113 | KiUserCallbackDispatcher |
| 114 | KiUserCallbackDispatcherReturn | ||
| 111 | KiUserExceptionDispatcher | 115 | KiUserExceptionDispatcher |
| 112 | KiUserInvertedFunctionTable DATA | 116 | KiUserInvertedFunctionTable DATA |
| 113 | LdrAccessResource | 117 | LdrAccessResource |
| ... | @@ -115,9 +119,14 @@ LdrAddDllDirectory | ... | @@ -115,9 +119,14 @@ LdrAddDllDirectory |
| 115 | LdrAddLoadAsDataTable | 119 | LdrAddLoadAsDataTable |
| 116 | LdrAddRefDll | 120 | LdrAddRefDll |
| 117 | LdrAppxHandleIntegrityFailure | 121 | LdrAppxHandleIntegrityFailure |
| 122 | LdrCallEnclave | ||
| 123 | LdrControlFlowGuardEnforced | ||
| 124 | LdrCreateEnclave | ||
| 125 | LdrDeleteEnclave | ||
| 118 | LdrDisableThreadCalloutsForDll | 126 | LdrDisableThreadCalloutsForDll |
| 119 | LdrEnumResources | 127 | LdrEnumResources |
| 120 | LdrEnumerateLoadedModules | 128 | LdrEnumerateLoadedModules |
| 129 | LdrFastFailInLoaderCallout | ||
| 121 | LdrFindEntryForAddress | 130 | LdrFindEntryForAddress |
| 122 | LdrFindResourceDirectory_U | 131 | LdrFindResourceDirectory_U |
| 123 | LdrFindResourceEx_U | 132 | LdrFindResourceEx_U |
| ... | @@ -132,16 +141,21 @@ LdrGetDllHandleEx | ... | @@ -132,16 +141,21 @@ LdrGetDllHandleEx |
| 132 | LdrGetDllPath | 141 | LdrGetDllPath |
| 133 | LdrGetFailureData | 142 | LdrGetFailureData |
| 134 | LdrGetFileNameFromLoadAsDataTable | 143 | LdrGetFileNameFromLoadAsDataTable |
| 144 | LdrGetKnownDllSectionHandle | ||
| 135 | LdrGetProcedureAddress | 145 | LdrGetProcedureAddress |
| 136 | LdrGetProcedureAddressEx | 146 | LdrGetProcedureAddressEx |
| 137 | LdrGetProcedureAddressForCaller | 147 | LdrGetProcedureAddressForCaller |
| 138 | LdrInitShimEngineDynamic | 148 | LdrInitShimEngineDynamic |
| 149 | LdrInitializeEnclave | ||
| 139 | LdrInitializeThunk | 150 | LdrInitializeThunk |
| 151 | LdrIsModuleSxsRedirected | ||
| 140 | LdrLoadAlternateResourceModule | 152 | LdrLoadAlternateResourceModule |
| 141 | LdrLoadAlternateResourceModuleEx | 153 | LdrLoadAlternateResourceModuleEx |
| 142 | LdrLoadDll | 154 | LdrLoadDll |
| 155 | LdrLoadEnclaveModule | ||
| 143 | LdrLockLoaderLock | 156 | LdrLockLoaderLock |
| 144 | LdrOpenImageFileOptionsKey | 157 | LdrOpenImageFileOptionsKey |
| 158 | LdrProcessInitializationComplete | ||
| 145 | LdrProcessRelocationBlock | 159 | LdrProcessRelocationBlock |
| 146 | LdrProcessRelocationBlockEx | 160 | LdrProcessRelocationBlockEx |
| 147 | LdrQueryImageFileExecutionOptions | 161 | LdrQueryImageFileExecutionOptions |
| ... | @@ -176,6 +190,7 @@ LdrUnloadAlternateResourceModuleEx | ... | @@ -176,6 +190,7 @@ LdrUnloadAlternateResourceModuleEx |
| 176 | LdrUnloadDll | 190 | LdrUnloadDll |
| 177 | LdrUnlockLoaderLock | 191 | LdrUnlockLoaderLock |
| 178 | LdrUnregisterDllNotification | 192 | LdrUnregisterDllNotification |
| 193 | LdrUpdatePackageSearchPath | ||
| 179 | LdrVerifyImageMatchesChecksum | 194 | LdrVerifyImageMatchesChecksum |
| 180 | LdrVerifyImageMatchesChecksumEx | 195 | LdrVerifyImageMatchesChecksumEx |
| 181 | LdrpResGetMappingSize | 196 | LdrpResGetMappingSize |
| ... | @@ -197,6 +212,7 @@ NtAccessCheckByTypeAndAuditAlarm | ... | @@ -197,6 +212,7 @@ NtAccessCheckByTypeAndAuditAlarm |
| 197 | NtAccessCheckByTypeResultList | 212 | NtAccessCheckByTypeResultList |
| 198 | NtAccessCheckByTypeResultListAndAuditAlarm | 213 | NtAccessCheckByTypeResultListAndAuditAlarm |
| 199 | NtAccessCheckByTypeResultListAndAuditAlarmByHandle | 214 | NtAccessCheckByTypeResultListAndAuditAlarmByHandle |
| 215 | NtAcquireProcessActivityReference | ||
| 200 | NtAddAtom | 216 | NtAddAtom |
| 201 | NtAddAtomEx | 217 | NtAddAtomEx |
| 202 | NtAddBootEntry | 218 | NtAddBootEntry |
| ... | @@ -210,8 +226,10 @@ NtAlertThreadByThreadId | ... | @@ -210,8 +226,10 @@ NtAlertThreadByThreadId |
| 210 | NtAllocateLocallyUniqueId | 226 | NtAllocateLocallyUniqueId |
| 211 | NtAllocateReserveObject | 227 | NtAllocateReserveObject |
| 212 | NtAllocateUserPhysicalPages | 228 | NtAllocateUserPhysicalPages |
| 229 | NtAllocateUserPhysicalPagesEx | ||
| 213 | NtAllocateUuids | 230 | NtAllocateUuids |
| 214 | NtAllocateVirtualMemory | 231 | NtAllocateVirtualMemory |
| 232 | NtAllocateVirtualMemoryEx | ||
| 215 | NtAlpcAcceptConnectPort | 233 | NtAlpcAcceptConnectPort |
| 216 | NtAlpcCancelMessage | 234 | NtAlpcCancelMessage |
| 217 | NtAlpcConnectPort | 235 | NtAlpcConnectPort |
| ... | @@ -226,6 +244,7 @@ NtAlpcDeleteResourceReserve | ... | @@ -226,6 +244,7 @@ NtAlpcDeleteResourceReserve |
| 226 | NtAlpcDeleteSectionView | 244 | NtAlpcDeleteSectionView |
| 227 | NtAlpcDeleteSecurityContext | 245 | NtAlpcDeleteSecurityContext |
| 228 | NtAlpcDisconnectPort | 246 | NtAlpcDisconnectPort |
| 247 | NtAlpcImpersonateClientContainerOfPort | ||
| 229 | NtAlpcImpersonateClientOfPort | 248 | NtAlpcImpersonateClientOfPort |
| 230 | NtAlpcOpenSenderProcess | 249 | NtAlpcOpenSenderProcess |
| 231 | NtAlpcOpenSenderThread | 250 | NtAlpcOpenSenderThread |
| ... | @@ -238,6 +257,7 @@ NtApphelpCacheControl | ... | @@ -238,6 +257,7 @@ NtApphelpCacheControl |
| 238 | NtAreMappedFilesTheSame | 257 | NtAreMappedFilesTheSame |
| 239 | NtAssignProcessToJobObject | 258 | NtAssignProcessToJobObject |
| 240 | NtAssociateWaitCompletionPacket | 259 | NtAssociateWaitCompletionPacket |
| 260 | NtCallEnclave | ||
| 241 | NtCallbackReturn | 261 | NtCallbackReturn |
| 242 | NtCancelIoFile | 262 | NtCancelIoFile |
| 243 | NtCancelIoFileEx | 263 | NtCancelIoFileEx |
| ... | @@ -250,16 +270,22 @@ NtClose | ... | @@ -250,16 +270,22 @@ NtClose |
| 250 | NtCloseObjectAuditAlarm | 270 | NtCloseObjectAuditAlarm |
| 251 | NtCommitComplete | 271 | NtCommitComplete |
| 252 | NtCommitEnlistment | 272 | NtCommitEnlistment |
| 273 | NtCommitRegistryTransaction | ||
| 253 | NtCommitTransaction | 274 | NtCommitTransaction |
| 254 | NtCompactKeys | 275 | NtCompactKeys |
| 276 | NtCompareObjects | ||
| 277 | NtCompareSigningLevels | ||
| 255 | NtCompareTokens | 278 | NtCompareTokens |
| 256 | NtCompleteConnectPort | 279 | NtCompleteConnectPort |
| 257 | NtCompressKey | 280 | NtCompressKey |
| 258 | NtConnectPort | 281 | NtConnectPort |
| 259 | NtContinue | 282 | NtContinue |
| 283 | NtConvertBetweenAuxiliaryCounterAndPerformanceCounter | ||
| 284 | NtCreateCrossVmEvent | ||
| 260 | NtCreateDebugObject | 285 | NtCreateDebugObject |
| 261 | NtCreateDirectoryObject | 286 | NtCreateDirectoryObject |
| 262 | NtCreateDirectoryObjectEx | 287 | NtCreateDirectoryObjectEx |
| 288 | NtCreateEnclave | ||
| 263 | NtCreateEnlistment | 289 | NtCreateEnlistment |
| 264 | NtCreateEvent | 290 | NtCreateEvent |
| 265 | NtCreateEventPair | 291 | NtCreateEventPair |
| ... | @@ -276,14 +302,17 @@ NtCreateMailslotFile | ... | @@ -276,14 +302,17 @@ NtCreateMailslotFile |
| 276 | NtCreateMutant | 302 | NtCreateMutant |
| 277 | NtCreateNamedPipeFile | 303 | NtCreateNamedPipeFile |
| 278 | NtCreatePagingFile | 304 | NtCreatePagingFile |
| 305 | NtCreatePartition | ||
| 279 | NtCreatePort | 306 | NtCreatePort |
| 280 | NtCreatePrivateNamespace | 307 | NtCreatePrivateNamespace |
| 281 | NtCreateProcess | 308 | NtCreateProcess |
| 282 | NtCreateProcessEx | 309 | NtCreateProcessEx |
| 283 | NtCreateProfile | 310 | NtCreateProfile |
| 284 | NtCreateProfileEx | 311 | NtCreateProfileEx |
| 312 | NtCreateRegistryTransaction | ||
| 285 | NtCreateResourceManager | 313 | NtCreateResourceManager |
| 286 | NtCreateSection | 314 | NtCreateSection |
| 315 | NtCreateSectionEx | ||
| 287 | NtCreateSemaphore | 316 | NtCreateSemaphore |
| 288 | NtCreateSymbolicLinkObject | 317 | NtCreateSymbolicLinkObject |
| 289 | NtCreateThread | 318 | NtCreateThread |
| ... | @@ -347,6 +376,7 @@ NtGetCachedSigningLevel | ... | @@ -347,6 +376,7 @@ NtGetCachedSigningLevel |
| 347 | NtGetCompleteWnfStateSubscription | 376 | NtGetCompleteWnfStateSubscription |
| 348 | NtGetContextThread | 377 | NtGetContextThread |
| 349 | NtGetCurrentProcessorNumber | 378 | NtGetCurrentProcessorNumber |
| 379 | NtGetCurrentProcessorNumberEx | ||
| 350 | NtGetDevicePowerState | 380 | NtGetDevicePowerState |
| 351 | NtGetMUIRegistryInfo | 381 | NtGetMUIRegistryInfo |
| 352 | NtGetNextProcess | 382 | NtGetNextProcess |
| ... | @@ -358,6 +388,7 @@ NtGetWriteWatch | ... | @@ -358,6 +388,7 @@ NtGetWriteWatch |
| 358 | NtImpersonateAnonymousToken | 388 | NtImpersonateAnonymousToken |
| 359 | NtImpersonateClientOfPort | 389 | NtImpersonateClientOfPort |
| 360 | NtImpersonateThread | 390 | NtImpersonateThread |
| 391 | NtInitializeEnclave | ||
| 361 | NtInitializeNlsFiles | 392 | NtInitializeNlsFiles |
| 362 | NtInitializeRegistry | 393 | NtInitializeRegistry |
| 363 | NtInitiatePowerAction | 394 | NtInitiatePowerAction |
| ... | @@ -366,6 +397,7 @@ NtIsSystemResumeAutomatic | ... | @@ -366,6 +397,7 @@ NtIsSystemResumeAutomatic |
| 366 | NtIsUILanguageComitted | 397 | NtIsUILanguageComitted |
| 367 | NtListenPort | 398 | NtListenPort |
| 368 | NtLoadDriver | 399 | NtLoadDriver |
| 400 | NtLoadEnclaveData | ||
| 369 | NtLoadKey | 401 | NtLoadKey |
| 370 | NtLoadKey2 | 402 | NtLoadKey2 |
| 371 | NtLoadKeyEx | 403 | NtLoadKeyEx |
| ... | @@ -375,13 +407,17 @@ NtLockRegistryKey | ... | @@ -375,13 +407,17 @@ NtLockRegistryKey |
| 375 | NtLockVirtualMemory | 407 | NtLockVirtualMemory |
| 376 | NtMakePermanentObject | 408 | NtMakePermanentObject |
| 377 | NtMakeTemporaryObject | 409 | NtMakeTemporaryObject |
| 410 | NtManageHotPatch | ||
| 411 | NtManagePartition | ||
| 378 | NtMapCMFModule | 412 | NtMapCMFModule |
| 379 | NtMapUserPhysicalPages | 413 | NtMapUserPhysicalPages |
| 380 | NtMapUserPhysicalPagesScatter | 414 | NtMapUserPhysicalPagesScatter |
| 381 | NtMapViewOfSection | 415 | NtMapViewOfSection |
| 416 | NtMapViewOfSectionEx | ||
| 382 | NtModifyBootEntry | 417 | NtModifyBootEntry |
| 383 | NtModifyDriverEntry | 418 | NtModifyDriverEntry |
| 384 | NtNotifyChangeDirectoryFile | 419 | NtNotifyChangeDirectoryFile |
| 420 | NtNotifyChangeDirectoryFileEx | ||
| 385 | NtNotifyChangeKey | 421 | NtNotifyChangeKey |
| 386 | NtNotifyChangeMultipleKeys | 422 | NtNotifyChangeMultipleKeys |
| 387 | NtNotifyChangeSession | 423 | NtNotifyChangeSession |
| ... | @@ -399,10 +435,12 @@ NtOpenKeyTransactedEx | ... | @@ -399,10 +435,12 @@ NtOpenKeyTransactedEx |
| 399 | NtOpenKeyedEvent | 435 | NtOpenKeyedEvent |
| 400 | NtOpenMutant | 436 | NtOpenMutant |
| 401 | NtOpenObjectAuditAlarm | 437 | NtOpenObjectAuditAlarm |
| 438 | NtOpenPartition | ||
| 402 | NtOpenPrivateNamespace | 439 | NtOpenPrivateNamespace |
| 403 | NtOpenProcess | 440 | NtOpenProcess |
| 404 | NtOpenProcessToken | 441 | NtOpenProcessToken |
| 405 | NtOpenProcessTokenEx | 442 | NtOpenProcessTokenEx |
| 443 | NtOpenRegistryTransaction | ||
| 406 | NtOpenResourceManager | 444 | NtOpenResourceManager |
| 407 | NtOpenSection | 445 | NtOpenSection |
| 408 | NtOpenSemaphore | 446 | NtOpenSemaphore |
| ... | @@ -426,20 +464,24 @@ NtPrivilegedServiceAuditAlarm | ... | @@ -426,20 +464,24 @@ NtPrivilegedServiceAuditAlarm |
| 426 | NtPropagationComplete | 464 | NtPropagationComplete |
| 427 | NtPropagationFailed | 465 | NtPropagationFailed |
| 428 | NtProtectVirtualMemory | 466 | NtProtectVirtualMemory |
| 467 | NtPssCaptureVaSpaceBulk | ||
| 429 | NtPulseEvent | 468 | NtPulseEvent |
| 430 | NtQueryAttributesFile | 469 | NtQueryAttributesFile |
| 470 | NtQueryAuxiliaryCounterFrequency | ||
| 431 | NtQueryBootEntryOrder | 471 | NtQueryBootEntryOrder |
| 432 | NtQueryBootOptions | 472 | NtQueryBootOptions |
| 433 | NtQueryDebugFilterState | 473 | NtQueryDebugFilterState |
| 434 | NtQueryDefaultLocale | 474 | NtQueryDefaultLocale |
| 435 | NtQueryDefaultUILanguage | 475 | NtQueryDefaultUILanguage |
| 436 | NtQueryDirectoryFile | 476 | NtQueryDirectoryFile |
| 477 | NtQueryDirectoryFileEx | ||
| 437 | NtQueryDirectoryObject | 478 | NtQueryDirectoryObject |
| 438 | NtQueryDriverEntryOrder | 479 | NtQueryDriverEntryOrder |
| 439 | NtQueryEaFile | 480 | NtQueryEaFile |
| 440 | NtQueryEvent | 481 | NtQueryEvent |
| 441 | NtQueryFullAttributesFile | 482 | NtQueryFullAttributesFile |
| 442 | NtQueryInformationAtom | 483 | NtQueryInformationAtom |
| 484 | NtQueryInformationByName | ||
| 443 | NtQueryInformationEnlistment | 485 | NtQueryInformationEnlistment |
| 444 | NtQueryInformationFile | 486 | NtQueryInformationFile |
| 445 | NtQueryInformationJobObject | 487 | NtQueryInformationJobObject |
| ... | @@ -467,6 +509,7 @@ NtQueryQuotaInformationFile | ... | @@ -467,6 +509,7 @@ NtQueryQuotaInformationFile |
| 467 | NtQuerySection | 509 | NtQuerySection |
| 468 | NtQuerySecurityAttributesToken | 510 | NtQuerySecurityAttributesToken |
| 469 | NtQuerySecurityObject | 511 | NtQuerySecurityObject |
| 512 | NtQuerySecurityPolicy | ||
| 470 | NtQuerySemaphore | 513 | NtQuerySemaphore |
| 471 | NtQuerySymbolicLinkObject | 514 | NtQuerySymbolicLinkObject |
| 472 | NtQuerySystemEnvironmentValue | 515 | NtQuerySystemEnvironmentValue |
| ... | @@ -517,8 +560,10 @@ NtResetWriteWatch | ... | @@ -517,8 +560,10 @@ NtResetWriteWatch |
| 517 | NtRestoreKey | 560 | NtRestoreKey |
| 518 | NtResumeProcess | 561 | NtResumeProcess |
| 519 | NtResumeThread | 562 | NtResumeThread |
| 563 | NtRevertContainerImpersonation | ||
| 520 | NtRollbackComplete | 564 | NtRollbackComplete |
| 521 | NtRollbackEnlistment | 565 | NtRollbackEnlistment |
| 566 | NtRollbackRegistryTransaction | ||
| 522 | NtRollbackTransaction | 567 | NtRollbackTransaction |
| 523 | NtRollforwardTransactionManager | 568 | NtRollforwardTransactionManager |
| 524 | NtSaveKey | 569 | NtSaveKey |
| ... | @@ -529,6 +574,7 @@ NtSerializeBoot | ... | @@ -529,6 +574,7 @@ NtSerializeBoot |
| 529 | NtSetBootEntryOrder | 574 | NtSetBootEntryOrder |
| 530 | NtSetBootOptions | 575 | NtSetBootOptions |
| 531 | NtSetCachedSigningLevel | 576 | NtSetCachedSigningLevel |
| 577 | NtSetCachedSigningLevel2 | ||
| 532 | NtSetContextThread | 578 | NtSetContextThread |
| 533 | NtSetDebugFilterState | 579 | NtSetDebugFilterState |
| 534 | NtSetDefaultHardErrorPort | 580 | NtSetDefaultHardErrorPort |
| ... | @@ -549,6 +595,7 @@ NtSetInformationKey | ... | @@ -549,6 +595,7 @@ NtSetInformationKey |
| 549 | NtSetInformationObject | 595 | NtSetInformationObject |
| 550 | NtSetInformationProcess | 596 | NtSetInformationProcess |
| 551 | NtSetInformationResourceManager | 597 | NtSetInformationResourceManager |
| 598 | NtSetInformationSymbolicLink | ||
| 552 | NtSetInformationThread | 599 | NtSetInformationThread |
| 553 | NtSetInformationToken | 600 | NtSetInformationToken |
| 554 | NtSetInformationTransaction | 601 | NtSetInformationTransaction |
| ... | @@ -587,6 +634,7 @@ NtSubscribeWnfStateChange | ... | @@ -587,6 +634,7 @@ NtSubscribeWnfStateChange |
| 587 | NtSuspendProcess | 634 | NtSuspendProcess |
| 588 | NtSuspendThread | 635 | NtSuspendThread |
| 589 | NtSystemDebugControl | 636 | NtSystemDebugControl |
| 637 | NtTerminateEnclave | ||
| 590 | NtTerminateJobObject | 638 | NtTerminateJobObject |
| 591 | NtTerminateProcess | 639 | NtTerminateProcess |
| 592 | NtTerminateThread | 640 | NtTerminateThread |
| ... | @@ -658,6 +706,7 @@ RtlAddAccessAllowedObjectAce | ... | @@ -658,6 +706,7 @@ RtlAddAccessAllowedObjectAce |
| 658 | RtlAddAccessDeniedAce | 706 | RtlAddAccessDeniedAce |
| 659 | RtlAddAccessDeniedAceEx | 707 | RtlAddAccessDeniedAceEx |
| 660 | RtlAddAccessDeniedObjectAce | 708 | RtlAddAccessDeniedObjectAce |
| 709 | RtlAddAccessFilterAce | ||
| 661 | RtlAddAce | 710 | RtlAddAce |
| 662 | RtlAddActionToRXact | 711 | RtlAddActionToRXact |
| 663 | RtlAddAtomToAtomTable | 712 | RtlAddAtomToAtomTable |
| ... | @@ -703,7 +752,9 @@ RtlAppxIsFileOwnedByTrustedInstaller | ... | @@ -703,7 +752,9 @@ RtlAppxIsFileOwnedByTrustedInstaller |
| 703 | RtlAreAllAccessesGranted | 752 | RtlAreAllAccessesGranted |
| 704 | RtlAreAnyAccessesGranted | 753 | RtlAreAnyAccessesGranted |
| 705 | RtlAreBitsClear | 754 | RtlAreBitsClear |
| 755 | RtlAreBitsClearEx | ||
| 706 | RtlAreBitsSet | 756 | RtlAreBitsSet |
| 757 | RtlAreLongPathsEnabled | ||
| 707 | RtlAssert | 758 | RtlAssert |
| 708 | RtlAvlInsertNodeEx | 759 | RtlAvlInsertNodeEx |
| 709 | RtlAvlRemoveNode | 760 | RtlAvlRemoveNode |
| ... | @@ -711,19 +762,28 @@ RtlBarrier | ... | @@ -711,19 +762,28 @@ RtlBarrier |
| 711 | RtlBarrierForDelete | 762 | RtlBarrierForDelete |
| 712 | RtlCancelTimer | 763 | RtlCancelTimer |
| 713 | RtlCanonicalizeDomainName | 764 | RtlCanonicalizeDomainName |
| 765 | RtlCapabilityCheck | ||
| 766 | RtlCapabilityCheckForSingleSessionSku | ||
| 714 | RtlCaptureContext | 767 | RtlCaptureContext |
| 715 | RtlCaptureStackBackTrace | 768 | RtlCaptureStackBackTrace |
| 716 | RtlCharToInteger | 769 | RtlCharToInteger |
| 770 | RtlCheckBootStatusIntegrity | ||
| 717 | RtlCheckForOrphanedCriticalSections | 771 | RtlCheckForOrphanedCriticalSections |
| 718 | RtlCheckPortableOperatingSystem | 772 | RtlCheckPortableOperatingSystem |
| 719 | RtlCheckRegistryKey | 773 | RtlCheckRegistryKey |
| 774 | RtlCheckSandboxedToken | ||
| 775 | RtlCheckSystemBootStatusIntegrity | ||
| 720 | RtlCheckTokenCapability | 776 | RtlCheckTokenCapability |
| 721 | RtlCheckTokenMembership | 777 | RtlCheckTokenMembership |
| 722 | RtlCheckTokenMembershipEx | 778 | RtlCheckTokenMembershipEx |
| 723 | RtlCleanUpTEBLangLists | 779 | RtlCleanUpTEBLangLists |
| 724 | RtlClearAllBits | 780 | RtlClearAllBits |
| 781 | RtlClearAllBitsEx | ||
| 725 | RtlClearBit | 782 | RtlClearBit |
| 783 | RtlClearBitEx | ||
| 726 | RtlClearBits | 784 | RtlClearBits |
| 785 | RtlClearBitsEx | ||
| 786 | RtlClearThreadWorkOnBehalfTicket | ||
| 727 | RtlCloneMemoryStream | 787 | RtlCloneMemoryStream |
| 728 | RtlCloneUserProcess | 788 | RtlCloneUserProcess |
| 729 | RtlCmDecodeMemIoResource | 789 | RtlCmDecodeMemIoResource |
| ... | @@ -737,15 +797,19 @@ RtlCompareMemoryUlong | ... | @@ -737,15 +797,19 @@ RtlCompareMemoryUlong |
| 737 | RtlCompareString | 797 | RtlCompareString |
| 738 | RtlCompareUnicodeString | 798 | RtlCompareUnicodeString |
| 739 | RtlCompareUnicodeStrings | 799 | RtlCompareUnicodeStrings |
| 800 | RtlCompleteProcessCloning | ||
| 740 | RtlCompressBuffer | 801 | RtlCompressBuffer |
| 741 | RtlComputeCrc32 | 802 | RtlComputeCrc32 |
| 742 | RtlComputeImportTableHash | 803 | RtlComputeImportTableHash |
| 743 | RtlComputePrivatizedDllName_U | 804 | RtlComputePrivatizedDllName_U |
| 744 | RtlConnectToSm | 805 | RtlConnectToSm |
| 745 | RtlConsoleMultiByteToUnicodeN | 806 | RtlConsoleMultiByteToUnicodeN |
| 807 | RtlConstructCrossVmEventPath | ||
| 746 | RtlContractHashTable | 808 | RtlContractHashTable |
| 809 | RtlConvertDeviceFamilyInfoToString | ||
| 747 | RtlConvertExclusiveToShared | 810 | RtlConvertExclusiveToShared |
| 748 | RtlConvertLCIDToString | 811 | RtlConvertLCIDToString |
| 812 | RtlConvertSRWLockExclusiveToShared | ||
| 749 | RtlConvertSharedToExclusive | 813 | RtlConvertSharedToExclusive |
| 750 | RtlConvertSidToUnicodeString | 814 | RtlConvertSidToUnicodeString |
| 751 | RtlConvertToAutoInheritSecurityObject | 815 | RtlConvertToAutoInheritSecurityObject |
| ... | @@ -780,6 +844,7 @@ RtlCreateMemoryBlockLookaside | ... | @@ -780,6 +844,7 @@ RtlCreateMemoryBlockLookaside |
| 780 | RtlCreateMemoryZone | 844 | RtlCreateMemoryZone |
| 781 | RtlCreateProcessParameters | 845 | RtlCreateProcessParameters |
| 782 | RtlCreateProcessParametersEx | 846 | RtlCreateProcessParametersEx |
| 847 | RtlCreateProcessParametersWithTemplate | ||
| 783 | RtlCreateProcessReflection | 848 | RtlCreateProcessReflection |
| 784 | RtlCreateQueryDebugBuffer | 849 | RtlCreateQueryDebugBuffer |
| 785 | RtlCreateRegistryKey | 850 | RtlCreateRegistryKey |
| ... | @@ -792,6 +857,7 @@ RtlCreateTimerQueue | ... | @@ -792,6 +857,7 @@ RtlCreateTimerQueue |
| 792 | RtlCreateUnicodeString | 857 | RtlCreateUnicodeString |
| 793 | RtlCreateUnicodeStringFromAsciiz | 858 | RtlCreateUnicodeStringFromAsciiz |
| 794 | RtlCreateUserProcess | 859 | RtlCreateUserProcess |
| 860 | RtlCreateUserProcessEx | ||
| 795 | RtlCreateUserSecurityObject | 861 | RtlCreateUserSecurityObject |
| 796 | RtlCreateUserStack | 862 | RtlCreateUserStack |
| 797 | RtlCreateUserThread | 863 | RtlCreateUserThread |
| ... | @@ -805,6 +871,7 @@ RtlDeactivateActivationContext | ... | @@ -805,6 +871,7 @@ RtlDeactivateActivationContext |
| 805 | RtlDeactivateActivationContextUnsafeFast | 871 | RtlDeactivateActivationContextUnsafeFast |
| 806 | RtlDebugPrintTimes | 872 | RtlDebugPrintTimes |
| 807 | RtlDecodePointer | 873 | RtlDecodePointer |
| 874 | RtlDecodeRemotePointer | ||
| 808 | RtlDecodeSystemPointer | 875 | RtlDecodeSystemPointer |
| 809 | RtlDecompressBuffer | 876 | RtlDecompressBuffer |
| 810 | RtlDecompressBufferEx | 877 | RtlDecompressBufferEx |
| ... | @@ -832,6 +899,7 @@ RtlDeleteTimerQueueEx | ... | @@ -832,6 +899,7 @@ RtlDeleteTimerQueueEx |
| 832 | RtlDeregisterSecureMemoryCacheCallback | 899 | RtlDeregisterSecureMemoryCacheCallback |
| 833 | RtlDeregisterWait | 900 | RtlDeregisterWait |
| 834 | RtlDeregisterWaitEx | 901 | RtlDeregisterWaitEx |
| 902 | RtlDeriveCapabilitySidsFromName | ||
| 835 | RtlDestroyAtomTable | 903 | RtlDestroyAtomTable |
| 836 | RtlDestroyEnvironment | 904 | RtlDestroyEnvironment |
| 837 | RtlDestroyHandleTable | 905 | RtlDestroyHandleTable |
| ... | @@ -846,7 +914,10 @@ RtlDisableThreadProfiling | ... | @@ -846,7 +914,10 @@ RtlDisableThreadProfiling |
| 846 | RtlDllShutdownInProgress | 914 | RtlDllShutdownInProgress |
| 847 | RtlDnsHostNameToComputerName | 915 | RtlDnsHostNameToComputerName |
| 848 | RtlDoesFileExists_U | 916 | RtlDoesFileExists_U |
| 917 | RtlDoesNameContainWildCards | ||
| 849 | RtlDosApplyFileIsolationRedirection_Ustr | 918 | RtlDosApplyFileIsolationRedirection_Ustr |
| 919 | RtlDosLongPathNameToNtPathName_U_WithStatus | ||
| 920 | RtlDosLongPathNameToRelativeNtPathName_U_WithStatus | ||
| 850 | RtlDosPathNameToNtPathName_U | 921 | RtlDosPathNameToNtPathName_U |
| 851 | RtlDosPathNameToNtPathName_U_WithStatus | 922 | RtlDosPathNameToNtPathName_U_WithStatus |
| 852 | RtlDosPathNameToRelativeNtPathName_U | 923 | RtlDosPathNameToRelativeNtPathName_U |
| ... | @@ -855,14 +926,17 @@ RtlDosSearchPath_U | ... | @@ -855,14 +926,17 @@ RtlDosSearchPath_U |
| 855 | RtlDosSearchPath_Ustr | 926 | RtlDosSearchPath_Ustr |
| 856 | RtlDowncaseUnicodeChar | 927 | RtlDowncaseUnicodeChar |
| 857 | RtlDowncaseUnicodeString | 928 | RtlDowncaseUnicodeString |
| 929 | RtlDrainNonVolatileFlush | ||
| 858 | RtlDumpResource | 930 | RtlDumpResource |
| 859 | RtlDuplicateUnicodeString | 931 | RtlDuplicateUnicodeString |
| 860 | RtlEmptyAtomTable | 932 | RtlEmptyAtomTable |
| 861 | RtlEnableEarlyCriticalSectionEventCreation | 933 | RtlEnableEarlyCriticalSectionEventCreation |
| 862 | RtlEnableThreadProfiling | 934 | RtlEnableThreadProfiling |
| 863 | RtlEncodePointer | 935 | RtlEncodePointer |
| 936 | RtlEncodeRemotePointer | ||
| 864 | RtlEncodeSystemPointer | 937 | RtlEncodeSystemPointer |
| 865 | RtlEndEnumerationHashTable | 938 | RtlEndEnumerationHashTable |
| 939 | RtlEndStrongEnumerationHashTable | ||
| 866 | RtlEndWeakEnumerationHashTable | 940 | RtlEndWeakEnumerationHashTable |
| 867 | RtlEnterCriticalSection | 941 | RtlEnterCriticalSection |
| 868 | RtlEnumProcessHeaps | 942 | RtlEnumProcessHeaps |
| ... | @@ -890,6 +964,7 @@ RtlExitUserThread | ... | @@ -890,6 +964,7 @@ RtlExitUserThread |
| 890 | RtlExpandEnvironmentStrings | 964 | RtlExpandEnvironmentStrings |
| 891 | RtlExpandEnvironmentStrings_U | 965 | RtlExpandEnvironmentStrings_U |
| 892 | RtlExpandHashTable | 966 | RtlExpandHashTable |
| 967 | RtlExtendCorrelationVector | ||
| 893 | RtlExtendMemoryBlockLookaside | 968 | RtlExtendMemoryBlockLookaside |
| 894 | RtlExtendMemoryZone | 969 | RtlExtendMemoryZone |
| 895 | RtlExtendedMagicDivide | 970 | RtlExtendedMagicDivide |
| ... | @@ -897,6 +972,7 @@ RtlExtractBitMap | ... | @@ -897,6 +972,7 @@ RtlExtractBitMap |
| 897 | RtlFillMemory | 972 | RtlFillMemory |
| 898 | RtlFillMemoryUlong | 973 | RtlFillMemoryUlong |
| 899 | RtlFillMemoryUlonglong | 974 | RtlFillMemoryUlonglong |
| 975 | RtlFillNonVolatileMemory | ||
| 900 | RtlFinalReleaseOutOfProcessMemoryStream | 976 | RtlFinalReleaseOutOfProcessMemoryStream |
| 901 | RtlFindAceByType | 977 | RtlFindAceByType |
| 902 | RtlFindActivationContextSectionGuid | 978 | RtlFindActivationContextSectionGuid |
| ... | @@ -904,8 +980,10 @@ RtlFindActivationContextSectionString | ... | @@ -904,8 +980,10 @@ RtlFindActivationContextSectionString |
| 904 | RtlFindCharInUnicodeString | 980 | RtlFindCharInUnicodeString |
| 905 | RtlFindClearBits | 981 | RtlFindClearBits |
| 906 | RtlFindClearBitsAndSet | 982 | RtlFindClearBitsAndSet |
| 983 | RtlFindClearBitsEx | ||
| 907 | RtlFindClearRuns | 984 | RtlFindClearRuns |
| 908 | RtlFindClosestEncodableLength | 985 | RtlFindClosestEncodableLength |
| 986 | RtlFindExportedRoutineByName | ||
| 909 | RtlFindLastBackwardRunClear | 987 | RtlFindLastBackwardRunClear |
| 910 | RtlFindLeastSignificantBit | 988 | RtlFindLeastSignificantBit |
| 911 | RtlFindLongestRunClear | 989 | RtlFindLongestRunClear |
| ... | @@ -914,11 +992,18 @@ RtlFindMostSignificantBit | ... | @@ -914,11 +992,18 @@ RtlFindMostSignificantBit |
| 914 | RtlFindNextForwardRunClear | 992 | RtlFindNextForwardRunClear |
| 915 | RtlFindSetBits | 993 | RtlFindSetBits |
| 916 | RtlFindSetBitsAndClear | 994 | RtlFindSetBitsAndClear |
| 995 | RtlFindSetBitsAndClearEx | ||
| 996 | RtlFindSetBitsEx | ||
| 997 | RtlFindUnicodeSubstring | ||
| 917 | RtlFirstEntrySList | 998 | RtlFirstEntrySList |
| 918 | RtlFirstFreeAce | 999 | RtlFirstFreeAce |
| 919 | RtlFlsAlloc | 1000 | RtlFlsAlloc |
| 920 | RtlFlsFree | 1001 | RtlFlsFree |
| 1002 | RtlFlsGetValue | ||
| 1003 | RtlFlsSetValue | ||
| 921 | RtlFlushHeaps | 1004 | RtlFlushHeaps |
| 1005 | RtlFlushNonVolatileMemory | ||
| 1006 | RtlFlushNonVolatileMemoryRanges | ||
| 922 | RtlFlushSecureMemoryCache | 1007 | RtlFlushSecureMemoryCache |
| 923 | RtlFormatCurrentUserKeyPath | 1008 | RtlFormatCurrentUserKeyPath |
| 924 | RtlFormatMessage | 1009 | RtlFormatMessage |
| ... | @@ -928,33 +1013,40 @@ RtlFreeAnsiString | ... | @@ -928,33 +1013,40 @@ RtlFreeAnsiString |
| 928 | RtlFreeHandle | 1013 | RtlFreeHandle |
| 929 | RtlFreeHeap | 1014 | RtlFreeHeap |
| 930 | RtlFreeMemoryBlockLookaside | 1015 | RtlFreeMemoryBlockLookaside |
| 1016 | RtlFreeNonVolatileToken | ||
| 931 | RtlFreeOemString | 1017 | RtlFreeOemString |
| 932 | RtlFreeSid | 1018 | RtlFreeSid |
| 933 | RtlFreeThreadActivationContextStack | 1019 | RtlFreeThreadActivationContextStack |
| 1020 | RtlFreeUTF8String | ||
| 934 | RtlFreeUnicodeString | 1021 | RtlFreeUnicodeString |
| 935 | RtlFreeUserStack | 1022 | RtlFreeUserStack |
| 936 | RtlGUIDFromString | 1023 | RtlGUIDFromString |
| 937 | RtlGenerate8dot3Name | 1024 | RtlGenerate8dot3Name |
| 938 | RtlGetAce | 1025 | RtlGetAce |
| 939 | RtlGetActiveActivationContext | 1026 | RtlGetActiveActivationContext |
| 1027 | RtlGetActiveConsoleId | ||
| 940 | RtlGetAppContainerNamedObjectPath | 1028 | RtlGetAppContainerNamedObjectPath |
| 941 | RtlGetAppContainerParent | 1029 | RtlGetAppContainerParent |
| 942 | RtlGetAppContainerSidType | 1030 | RtlGetAppContainerSidType |
| 943 | RtlGetCallersAddress | 1031 | RtlGetCallersAddress |
| 944 | RtlGetCompressionWorkSpaceSize | 1032 | RtlGetCompressionWorkSpaceSize |
| 1033 | RtlGetConsoleSessionForegroundProcessId | ||
| 945 | RtlGetControlSecurityDescriptor | 1034 | RtlGetControlSecurityDescriptor |
| 946 | RtlGetCriticalSectionRecursionCount | 1035 | RtlGetCriticalSectionRecursionCount |
| 947 | RtlGetCurrentDirectory_U | 1036 | RtlGetCurrentDirectory_U |
| 948 | RtlGetCurrentPeb | 1037 | RtlGetCurrentPeb |
| 949 | RtlGetCurrentProcessorNumber | 1038 | RtlGetCurrentProcessorNumber |
| 950 | RtlGetCurrentProcessorNumberEx | 1039 | RtlGetCurrentProcessorNumberEx |
| 1040 | RtlGetCurrentServiceSessionId | ||
| 951 | RtlGetCurrentTransaction | 1041 | RtlGetCurrentTransaction |
| 952 | RtlGetDaclSecurityDescriptor | 1042 | RtlGetDaclSecurityDescriptor |
| 1043 | RtlGetDeviceFamilyInfoEnum | ||
| 953 | RtlGetElementGenericTable | 1044 | RtlGetElementGenericTable |
| 954 | RtlGetElementGenericTableAvl | 1045 | RtlGetElementGenericTableAvl |
| 955 | RtlGetEnabledExtendedFeatures | 1046 | RtlGetEnabledExtendedFeatures |
| 956 | RtlGetExePath | 1047 | RtlGetExePath |
| 957 | RtlGetExtendedContextLength | 1048 | RtlGetExtendedContextLength |
| 1049 | RtlGetExtendedContextLength2 | ||
| 958 | RtlGetExtendedFeaturesMask | 1050 | RtlGetExtendedFeaturesMask |
| 959 | RtlGetFileMUIPath | 1051 | RtlGetFileMUIPath |
| 960 | RtlGetFrame | 1052 | RtlGetFrame |
| ... | @@ -964,31 +1056,42 @@ RtlGetFullPathName_UstrEx | ... | @@ -964,31 +1056,42 @@ RtlGetFullPathName_UstrEx |
| 964 | RtlGetFunctionTableListHead | 1056 | RtlGetFunctionTableListHead |
| 965 | RtlGetGroupSecurityDescriptor | 1057 | RtlGetGroupSecurityDescriptor |
| 966 | RtlGetIntegerAtom | 1058 | RtlGetIntegerAtom |
| 1059 | RtlGetInterruptTimePrecise | ||
| 967 | RtlGetLastNtStatus | 1060 | RtlGetLastNtStatus |
| 968 | RtlGetLastWin32Error | 1061 | RtlGetLastWin32Error |
| 969 | RtlGetLengthWithoutLastFullDosOrNtPathElement | 1062 | RtlGetLengthWithoutLastFullDosOrNtPathElement |
| 970 | RtlGetLengthWithoutTrailingPathSeperators | 1063 | RtlGetLengthWithoutTrailingPathSeperators |
| 971 | RtlGetLocaleFileMappingAddress | 1064 | RtlGetLocaleFileMappingAddress |
| 972 | RtlGetLongestNtPathLength | 1065 | RtlGetLongestNtPathLength |
| 1066 | RtlGetMultiTimePrecise | ||
| 973 | RtlGetNativeSystemInformation | 1067 | RtlGetNativeSystemInformation |
| 974 | RtlGetNextEntryHashTable | 1068 | RtlGetNextEntryHashTable |
| 1069 | RtlGetNonVolatileToken | ||
| 975 | RtlGetNtGlobalFlags | 1070 | RtlGetNtGlobalFlags |
| 976 | RtlGetNtProductType | 1071 | RtlGetNtProductType |
| 1072 | RtlGetNtSystemRoot | ||
| 977 | RtlGetNtVersionNumbers | 1073 | RtlGetNtVersionNumbers |
| 978 | RtlGetOwnerSecurityDescriptor | 1074 | RtlGetOwnerSecurityDescriptor |
| 979 | RtlGetParentLocaleName | 1075 | RtlGetParentLocaleName |
| 1076 | RtlGetPersistedStateLocation | ||
| 980 | RtlGetProcessHeaps | 1077 | RtlGetProcessHeaps |
| 981 | RtlGetProcessPreferredUILanguages | 1078 | RtlGetProcessPreferredUILanguages |
| 982 | RtlGetProductInfo | 1079 | RtlGetProductInfo |
| 983 | RtlGetSaclSecurityDescriptor | 1080 | RtlGetSaclSecurityDescriptor |
| 984 | RtlGetSearchPath | 1081 | RtlGetSearchPath |
| 985 | RtlGetSecurityDescriptorRMControl | 1082 | RtlGetSecurityDescriptorRMControl |
| 1083 | RtlGetSessionProperties | ||
| 986 | RtlGetSetBootStatusData | 1084 | RtlGetSetBootStatusData |
| 1085 | RtlGetSuiteMask | ||
| 1086 | RtlGetSystemBootStatus | ||
| 1087 | RtlGetSystemBootStatusEx | ||
| 987 | RtlGetSystemPreferredUILanguages | 1088 | RtlGetSystemPreferredUILanguages |
| 988 | RtlGetSystemTimePrecise | 1089 | RtlGetSystemTimePrecise |
| 989 | RtlGetThreadErrorMode | 1090 | RtlGetThreadErrorMode |
| 990 | RtlGetThreadLangIdByIndex | 1091 | RtlGetThreadLangIdByIndex |
| 991 | RtlGetThreadPreferredUILanguages | 1092 | RtlGetThreadPreferredUILanguages |
| 1093 | RtlGetThreadWorkOnBehalfTicket | ||
| 1094 | RtlGetTokenNamedObjectPath | ||
| 992 | RtlGetUILanguageInfo | 1095 | RtlGetUILanguageInfo |
| 993 | RtlGetUnloadEventTrace | 1096 | RtlGetUnloadEventTrace |
| 994 | RtlGetUnloadEventTraceEx | 1097 | RtlGetUnloadEventTraceEx |
| ... | @@ -996,6 +1099,7 @@ RtlGetUserInfoHeap | ... | @@ -996,6 +1099,7 @@ RtlGetUserInfoHeap |
| 996 | RtlGetUserPreferredUILanguages | 1099 | RtlGetUserPreferredUILanguages |
| 997 | RtlGetVersion | 1100 | RtlGetVersion |
| 998 | RtlGrowFunctionTable | 1101 | RtlGrowFunctionTable |
| 1102 | RtlGuardCheckLongJumpTarget | ||
| 999 | RtlHashUnicodeString | 1103 | RtlHashUnicodeString |
| 1000 | RtlHeapTrkInitialize | 1104 | RtlHeapTrkInitialize |
| 1001 | RtlIdentifierAuthoritySid | 1105 | RtlIdentifierAuthoritySid |
| ... | @@ -1009,6 +1113,7 @@ RtlImageRvaToSection | ... | @@ -1009,6 +1113,7 @@ RtlImageRvaToSection |
| 1009 | RtlImageRvaToVa | 1113 | RtlImageRvaToVa |
| 1010 | RtlImpersonateSelf | 1114 | RtlImpersonateSelf |
| 1011 | RtlImpersonateSelfEx | 1115 | RtlImpersonateSelfEx |
| 1116 | RtlIncrementCorrelationVector | ||
| 1012 | RtlInitAnsiString | 1117 | RtlInitAnsiString |
| 1013 | RtlInitAnsiStringEx | 1118 | RtlInitAnsiStringEx |
| 1014 | RtlInitBarrier | 1119 | RtlInitBarrier |
| ... | @@ -1018,17 +1123,24 @@ RtlInitMemoryStream | ... | @@ -1018,17 +1123,24 @@ RtlInitMemoryStream |
| 1018 | RtlInitNlsTables | 1123 | RtlInitNlsTables |
| 1019 | RtlInitOutOfProcessMemoryStream | 1124 | RtlInitOutOfProcessMemoryStream |
| 1020 | RtlInitString | 1125 | RtlInitString |
| 1126 | RtlInitStringEx | ||
| 1127 | RtlInitStrongEnumerationHashTable | ||
| 1128 | RtlInitUTF8String | ||
| 1129 | RtlInitUTF8StringEx | ||
| 1021 | RtlInitUnicodeString | 1130 | RtlInitUnicodeString |
| 1022 | RtlInitUnicodeStringEx | 1131 | RtlInitUnicodeStringEx |
| 1023 | RtlInitWeakEnumerationHashTable | 1132 | RtlInitWeakEnumerationHashTable |
| 1024 | RtlInitializeAtomPackage | 1133 | RtlInitializeAtomPackage |
| 1025 | RtlInitializeBitMap | 1134 | RtlInitializeBitMap |
| 1135 | RtlInitializeBitMapEx | ||
| 1026 | RtlInitializeConditionVariable | 1136 | RtlInitializeConditionVariable |
| 1027 | RtlInitializeContext | 1137 | RtlInitializeContext |
| 1138 | RtlInitializeCorrelationVector | ||
| 1028 | RtlInitializeCriticalSection | 1139 | RtlInitializeCriticalSection |
| 1029 | RtlInitializeCriticalSectionAndSpinCount | 1140 | RtlInitializeCriticalSectionAndSpinCount |
| 1030 | RtlInitializeCriticalSectionEx | 1141 | RtlInitializeCriticalSectionEx |
| 1031 | RtlInitializeExtendedContext | 1142 | RtlInitializeExtendedContext |
| 1143 | RtlInitializeExtendedContext2 | ||
| 1032 | RtlInitializeGenericTable | 1144 | RtlInitializeGenericTable |
| 1033 | RtlInitializeGenericTableAvl | 1145 | RtlInitializeGenericTableAvl |
| 1034 | RtlInitializeHandleTable | 1146 | RtlInitializeHandleTable |
| ... | @@ -1038,6 +1150,7 @@ RtlInitializeResource | ... | @@ -1038,6 +1150,7 @@ RtlInitializeResource |
| 1038 | RtlInitializeSListHead | 1150 | RtlInitializeSListHead |
| 1039 | RtlInitializeSRWLock | 1151 | RtlInitializeSRWLock |
| 1040 | RtlInitializeSid | 1152 | RtlInitializeSid |
| 1153 | RtlInitializeSidEx | ||
| 1041 | RtlInsertElementGenericTable | 1154 | RtlInsertElementGenericTable |
| 1042 | RtlInsertElementGenericTableAvl | 1155 | RtlInsertElementGenericTableAvl |
| 1043 | RtlInsertElementGenericTableFull | 1156 | RtlInsertElementGenericTableFull |
| ... | @@ -1074,17 +1187,30 @@ RtlIpv6StringToAddressExW | ... | @@ -1074,17 +1187,30 @@ RtlIpv6StringToAddressExW |
| 1074 | RtlIpv6StringToAddressW | 1187 | RtlIpv6StringToAddressW |
| 1075 | RtlIsActivationContextActive | 1188 | RtlIsActivationContextActive |
| 1076 | RtlIsCapabilitySid | 1189 | RtlIsCapabilitySid |
| 1190 | RtlIsCloudFilesPlaceholder | ||
| 1077 | RtlIsCriticalSectionLocked | 1191 | RtlIsCriticalSectionLocked |
| 1078 | RtlIsCriticalSectionLockedByThread | 1192 | RtlIsCriticalSectionLockedByThread |
| 1193 | RtlIsCurrentProcess | ||
| 1194 | RtlIsCurrentThread | ||
| 1079 | RtlIsCurrentThreadAttachExempt | 1195 | RtlIsCurrentThreadAttachExempt |
| 1080 | RtlIsDosDeviceName_U | 1196 | RtlIsDosDeviceName_U |
| 1197 | RtlIsElevatedRid | ||
| 1081 | RtlIsGenericTableEmpty | 1198 | RtlIsGenericTableEmpty |
| 1082 | RtlIsGenericTableEmptyAvl | 1199 | RtlIsGenericTableEmptyAvl |
| 1200 | RtlIsMultiSessionSku | ||
| 1201 | RtlIsMultiUsersInSessionSku | ||
| 1083 | RtlIsNameInExpression | 1202 | RtlIsNameInExpression |
| 1203 | RtlIsNameInUnUpcasedExpression | ||
| 1084 | RtlIsNameLegalDOS8Dot3 | 1204 | RtlIsNameLegalDOS8Dot3 |
| 1205 | RtlIsNonEmptyDirectoryReparsePointAllowed | ||
| 1085 | RtlIsNormalizedString | 1206 | RtlIsNormalizedString |
| 1086 | RtlIsPackageSid | 1207 | RtlIsPackageSid |
| 1087 | RtlIsParentOfChildAppContainer | 1208 | RtlIsParentOfChildAppContainer |
| 1209 | RtlIsPartialPlaceholder | ||
| 1210 | RtlIsPartialPlaceholderFileHandle | ||
| 1211 | RtlIsPartialPlaceholderFileInfo | ||
| 1212 | RtlIsProcessorFeaturePresent | ||
| 1213 | RtlIsStateSeparationEnabled | ||
| 1088 | RtlIsTextUnicode | 1214 | RtlIsTextUnicode |
| 1089 | RtlIsThreadWithinLoaderCallout | 1215 | RtlIsThreadWithinLoaderCallout |
| 1090 | RtlIsUntrustedObject | 1216 | RtlIsUntrustedObject |
| ... | @@ -1092,6 +1218,7 @@ RtlIsValidHandle | ... | @@ -1092,6 +1218,7 @@ RtlIsValidHandle |
| 1092 | RtlIsValidIndexHandle | 1218 | RtlIsValidIndexHandle |
| 1093 | RtlIsValidLocaleName | 1219 | RtlIsValidLocaleName |
| 1094 | RtlIsValidProcessTrustLabelSid | 1220 | RtlIsValidProcessTrustLabelSid |
| 1221 | RtlIsZeroMemory | ||
| 1095 | RtlKnownExceptionFilter | 1222 | RtlKnownExceptionFilter |
| 1096 | RtlLCIDToCultureName | 1223 | RtlLCIDToCultureName |
| 1097 | RtlLargeIntegerToChar | 1224 | RtlLargeIntegerToChar |
| ... | @@ -1105,6 +1232,7 @@ RtlLoadString | ... | @@ -1105,6 +1232,7 @@ RtlLoadString |
| 1105 | RtlLocalTimeToSystemTime | 1232 | RtlLocalTimeToSystemTime |
| 1106 | RtlLocaleNameToLcid | 1233 | RtlLocaleNameToLcid |
| 1107 | RtlLocateExtendedFeature | 1234 | RtlLocateExtendedFeature |
| 1235 | RtlLocateExtendedFeature2 | ||
| 1108 | RtlLocateLegacyContext | 1236 | RtlLocateLegacyContext |
| 1109 | RtlLockBootStatusData | 1237 | RtlLockBootStatusData |
| 1110 | RtlLockCurrentThread | 1238 | RtlLockCurrentThread |
| ... | @@ -1120,6 +1248,7 @@ RtlLookupElementGenericTableAvl | ... | @@ -1120,6 +1248,7 @@ RtlLookupElementGenericTableAvl |
| 1120 | RtlLookupElementGenericTableFull | 1248 | RtlLookupElementGenericTableFull |
| 1121 | RtlLookupElementGenericTableFullAvl | 1249 | RtlLookupElementGenericTableFullAvl |
| 1122 | RtlLookupEntryHashTable | 1250 | RtlLookupEntryHashTable |
| 1251 | RtlLookupFirstMatchingElementGenericTableAvl | ||
| 1123 | RtlLookupFunctionEntry | 1252 | RtlLookupFunctionEntry |
| 1124 | RtlLookupFunctionTable | 1253 | RtlLookupFunctionTable |
| 1125 | RtlMakeSelfRelativeSD | 1254 | RtlMakeSelfRelativeSD |
| ... | @@ -1137,27 +1266,33 @@ RtlNewSecurityObject | ... | @@ -1137,27 +1266,33 @@ RtlNewSecurityObject |
| 1137 | RtlNewSecurityObjectEx | 1266 | RtlNewSecurityObjectEx |
| 1138 | RtlNewSecurityObjectWithMultipleInheritance | 1267 | RtlNewSecurityObjectWithMultipleInheritance |
| 1139 | RtlNormalizeProcessParams | 1268 | RtlNormalizeProcessParams |
| 1269 | RtlNormalizeSecurityDescriptor | ||
| 1140 | RtlNormalizeString | 1270 | RtlNormalizeString |
| 1141 | RtlNtPathNameToDosPathName | 1271 | RtlNtPathNameToDosPathName |
| 1142 | RtlNtStatusToDosError | 1272 | RtlNtStatusToDosError |
| 1143 | RtlNtStatusToDosErrorNoTeb | 1273 | RtlNtStatusToDosErrorNoTeb |
| 1274 | RtlNtdllName | ||
| 1144 | RtlNumberGenericTableElements | 1275 | RtlNumberGenericTableElements |
| 1145 | RtlNumberGenericTableElementsAvl | 1276 | RtlNumberGenericTableElementsAvl |
| 1146 | RtlNumberOfClearBits | 1277 | RtlNumberOfClearBits |
| 1278 | RtlNumberOfClearBitsEx | ||
| 1147 | RtlNumberOfClearBitsInRange | 1279 | RtlNumberOfClearBitsInRange |
| 1148 | RtlNumberOfSetBits | 1280 | RtlNumberOfSetBits |
| 1281 | RtlNumberOfSetBitsEx | ||
| 1149 | RtlNumberOfSetBitsInRange | 1282 | RtlNumberOfSetBitsInRange |
| 1150 | RtlNumberOfSetBitsUlongPtr | 1283 | RtlNumberOfSetBitsUlongPtr |
| 1151 | RtlOemStringToUnicodeSize | 1284 | RtlOemStringToUnicodeSize |
| 1152 | RtlOemStringToUnicodeString | 1285 | RtlOemStringToUnicodeString |
| 1153 | RtlOemToUnicodeN | 1286 | RtlOemToUnicodeN |
| 1154 | RtlOpenCurrentUser | 1287 | RtlOpenCurrentUser |
| 1288 | RtlOsDeploymentState | ||
| 1155 | RtlOwnerAcesPresent | 1289 | RtlOwnerAcesPresent |
| 1156 | RtlPcToFileHeader | 1290 | RtlPcToFileHeader |
| 1157 | RtlPinAtomInAtomTable | 1291 | RtlPinAtomInAtomTable |
| 1158 | RtlPopFrame | 1292 | RtlPopFrame |
| 1159 | RtlPrefixString | 1293 | RtlPrefixString |
| 1160 | RtlPrefixUnicodeString | 1294 | RtlPrefixUnicodeString |
| 1295 | RtlPrepareForProcessCloning | ||
| 1161 | RtlProcessFlsData | 1296 | RtlProcessFlsData |
| 1162 | RtlProtectHeap | 1297 | RtlProtectHeap |
| 1163 | RtlPublishWnfStateData | 1298 | RtlPublishWnfStateData |
| ... | @@ -1171,11 +1306,13 @@ RtlQueryElevationFlags | ... | @@ -1171,11 +1306,13 @@ RtlQueryElevationFlags |
| 1171 | RtlQueryEnvironmentVariable | 1306 | RtlQueryEnvironmentVariable |
| 1172 | RtlQueryEnvironmentVariable_U | 1307 | RtlQueryEnvironmentVariable_U |
| 1173 | RtlQueryHeapInformation | 1308 | RtlQueryHeapInformation |
| 1309 | RtlQueryImageMitigationPolicy | ||
| 1174 | RtlQueryInformationAcl | 1310 | RtlQueryInformationAcl |
| 1175 | RtlQueryInformationActivationContext | 1311 | RtlQueryInformationActivationContext |
| 1176 | RtlQueryInformationActiveActivationContext | 1312 | RtlQueryInformationActiveActivationContext |
| 1177 | RtlQueryInterfaceMemoryStream | 1313 | RtlQueryInterfaceMemoryStream |
| 1178 | RtlQueryModuleInformation | 1314 | RtlQueryModuleInformation |
| 1315 | RtlQueryPackageClaims | ||
| 1179 | RtlQueryPackageIdentity | 1316 | RtlQueryPackageIdentity |
| 1180 | RtlQueryPackageIdentityEx | 1317 | RtlQueryPackageIdentityEx |
| 1181 | RtlQueryPerformanceCounter | 1318 | RtlQueryPerformanceCounter |
| ... | @@ -1184,13 +1321,18 @@ RtlQueryProcessBackTraceInformation | ... | @@ -1184,13 +1321,18 @@ RtlQueryProcessBackTraceInformation |
| 1184 | RtlQueryProcessDebugInformation | 1321 | RtlQueryProcessDebugInformation |
| 1185 | RtlQueryProcessHeapInformation | 1322 | RtlQueryProcessHeapInformation |
| 1186 | RtlQueryProcessLockInformation | 1323 | RtlQueryProcessLockInformation |
| 1324 | RtlQueryProcessPlaceholderCompatibilityMode | ||
| 1325 | RtlQueryProtectedPolicy | ||
| 1326 | RtlQueryRegistryValueWithFallback | ||
| 1187 | RtlQueryRegistryValues | 1327 | RtlQueryRegistryValues |
| 1188 | RtlQueryRegistryValuesEx | 1328 | RtlQueryRegistryValuesEx |
| 1189 | RtlQueryResourcePolicy | 1329 | RtlQueryResourcePolicy |
| 1190 | RtlQuerySecurityObject | 1330 | RtlQuerySecurityObject |
| 1191 | RtlQueryTagHeap | 1331 | RtlQueryTagHeap |
| 1332 | RtlQueryThreadPlaceholderCompatibilityMode | ||
| 1192 | RtlQueryThreadProfiling | 1333 | RtlQueryThreadProfiling |
| 1193 | RtlQueryTimeZoneInformation | 1334 | RtlQueryTimeZoneInformation |
| 1335 | RtlQueryTokenHostIdAsUlong64 | ||
| 1194 | RtlQueryUnbiasedInterruptTime | 1336 | RtlQueryUnbiasedInterruptTime |
| 1195 | RtlQueryValidationRunlevel | 1337 | RtlQueryValidationRunlevel |
| 1196 | RtlQueryWnfMetaNotification | 1338 | RtlQueryWnfMetaNotification |
| ... | @@ -1198,6 +1340,7 @@ RtlQueryWnfStateData | ... | @@ -1198,6 +1340,7 @@ RtlQueryWnfStateData |
| 1198 | RtlQueryWnfStateDataWithExplicitScope | 1340 | RtlQueryWnfStateDataWithExplicitScope |
| 1199 | RtlQueueApcWow64Thread | 1341 | RtlQueueApcWow64Thread |
| 1200 | RtlQueueWorkItem | 1342 | RtlQueueWorkItem |
| 1343 | RtlRaiseCustomSystemEventTrigger | ||
| 1201 | RtlRaiseException | 1344 | RtlRaiseException |
| 1202 | RtlRaiseStatus | 1345 | RtlRaiseStatus |
| 1203 | RtlRandom | 1346 | RtlRandom |
| ... | @@ -1229,15 +1372,20 @@ RtlRemovePrivileges | ... | @@ -1229,15 +1372,20 @@ RtlRemovePrivileges |
| 1229 | RtlRemoveVectoredContinueHandler | 1372 | RtlRemoveVectoredContinueHandler |
| 1230 | RtlRemoveVectoredExceptionHandler | 1373 | RtlRemoveVectoredExceptionHandler |
| 1231 | RtlReplaceSidInSd | 1374 | RtlReplaceSidInSd |
| 1375 | RtlReplaceSystemDirectoryInPath | ||
| 1232 | RtlReportException | 1376 | RtlReportException |
| 1377 | RtlReportExceptionEx | ||
| 1233 | RtlReportSilentProcessExit | 1378 | RtlReportSilentProcessExit |
| 1234 | RtlReportSqmEscalation | 1379 | RtlReportSqmEscalation |
| 1235 | RtlResetMemoryBlockLookaside | 1380 | RtlResetMemoryBlockLookaside |
| 1236 | RtlResetMemoryZone | 1381 | RtlResetMemoryZone |
| 1237 | RtlResetNtUserPfn | 1382 | RtlResetNtUserPfn |
| 1238 | RtlResetRtlTranslations | 1383 | RtlResetRtlTranslations |
| 1384 | RtlRestoreBootStatusDefaults | ||
| 1239 | RtlRestoreContext | 1385 | RtlRestoreContext |
| 1240 | RtlRestoreLastWin32Error | 1386 | RtlRestoreLastWin32Error |
| 1387 | RtlRestoreSystemBootStatusDefaults | ||
| 1388 | RtlRestoreThreadPreferredUILanguages | ||
| 1241 | RtlRetrieveNtUserPfn | 1389 | RtlRetrieveNtUserPfn |
| 1242 | RtlRevertMemoryStream | 1390 | RtlRevertMemoryStream |
| 1243 | RtlRunDecodeUnicodeString | 1391 | RtlRunDecodeUnicodeString |
| ... | @@ -1253,9 +1401,12 @@ RtlSelfRelativeToAbsoluteSD | ... | @@ -1253,9 +1401,12 @@ RtlSelfRelativeToAbsoluteSD |
| 1253 | RtlSelfRelativeToAbsoluteSD2 | 1401 | RtlSelfRelativeToAbsoluteSD2 |
| 1254 | RtlSendMsgToSm | 1402 | RtlSendMsgToSm |
| 1255 | RtlSetAllBits | 1403 | RtlSetAllBits |
| 1404 | RtlSetAllBitsEx | ||
| 1256 | RtlSetAttributesSecurityDescriptor | 1405 | RtlSetAttributesSecurityDescriptor |
| 1257 | RtlSetBit | 1406 | RtlSetBit |
| 1407 | RtlSetBitEx | ||
| 1258 | RtlSetBits | 1408 | RtlSetBits |
| 1409 | RtlSetBitsEx | ||
| 1259 | RtlSetControlSecurityDescriptor | 1410 | RtlSetControlSecurityDescriptor |
| 1260 | RtlSetCriticalSectionSpinCount | 1411 | RtlSetCriticalSectionSpinCount |
| 1261 | RtlSetCurrentDirectory_U | 1412 | RtlSetCurrentDirectory_U |
| ... | @@ -1269,6 +1420,7 @@ RtlSetEnvironmentVariable | ... | @@ -1269,6 +1420,7 @@ RtlSetEnvironmentVariable |
| 1269 | RtlSetExtendedFeaturesMask | 1420 | RtlSetExtendedFeaturesMask |
| 1270 | RtlSetGroupSecurityDescriptor | 1421 | RtlSetGroupSecurityDescriptor |
| 1271 | RtlSetHeapInformation | 1422 | RtlSetHeapInformation |
| 1423 | RtlSetImageMitigationPolicy | ||
| 1272 | RtlSetInformationAcl | 1424 | RtlSetInformationAcl |
| 1273 | RtlSetIoCompletionCallback | 1425 | RtlSetIoCompletionCallback |
| 1274 | RtlSetLastWin32Error | 1426 | RtlSetLastWin32Error |
| ... | @@ -1278,16 +1430,25 @@ RtlSetOwnerSecurityDescriptor | ... | @@ -1278,16 +1430,25 @@ RtlSetOwnerSecurityDescriptor |
| 1278 | RtlSetPortableOperatingSystem | 1430 | RtlSetPortableOperatingSystem |
| 1279 | RtlSetProcessDebugInformation | 1431 | RtlSetProcessDebugInformation |
| 1280 | RtlSetProcessIsCritical | 1432 | RtlSetProcessIsCritical |
| 1433 | RtlSetProcessPlaceholderCompatibilityMode | ||
| 1281 | RtlSetProcessPreferredUILanguages | 1434 | RtlSetProcessPreferredUILanguages |
| 1435 | RtlSetProtectedPolicy | ||
| 1436 | RtlSetProxiedProcessId | ||
| 1282 | RtlSetSaclSecurityDescriptor | 1437 | RtlSetSaclSecurityDescriptor |
| 1283 | RtlSetSearchPathMode | 1438 | RtlSetSearchPathMode |
| 1284 | RtlSetSecurityDescriptorRMControl | 1439 | RtlSetSecurityDescriptorRMControl |
| 1285 | RtlSetSecurityObject | 1440 | RtlSetSecurityObject |
| 1286 | RtlSetSecurityObjectEx | 1441 | RtlSetSecurityObjectEx |
| 1442 | RtlSetSystemBootStatus | ||
| 1443 | RtlSetSystemBootStatusEx | ||
| 1287 | RtlSetThreadErrorMode | 1444 | RtlSetThreadErrorMode |
| 1288 | RtlSetThreadIsCritical | 1445 | RtlSetThreadIsCritical |
| 1446 | RtlSetThreadPlaceholderCompatibilityMode | ||
| 1289 | RtlSetThreadPoolStartFunc | 1447 | RtlSetThreadPoolStartFunc |
| 1290 | RtlSetThreadPreferredUILanguages | 1448 | RtlSetThreadPreferredUILanguages |
| 1449 | RtlSetThreadPreferredUILanguages2 | ||
| 1450 | RtlSetThreadSubProcessTag | ||
| 1451 | RtlSetThreadWorkOnBehalfTicket | ||
| 1291 | RtlSetTimeZoneInformation | 1452 | RtlSetTimeZoneInformation |
| 1292 | RtlSetTimer | 1453 | RtlSetTimer |
| 1293 | RtlSetUnhandledExceptionFilter | 1454 | RtlSetUnhandledExceptionFilter |
| ... | @@ -1307,14 +1468,17 @@ RtlStartRXact | ... | @@ -1307,14 +1468,17 @@ RtlStartRXact |
| 1307 | RtlStatMemoryStream | 1468 | RtlStatMemoryStream |
| 1308 | RtlStringFromGUID | 1469 | RtlStringFromGUID |
| 1309 | RtlStringFromGUIDEx | 1470 | RtlStringFromGUIDEx |
| 1471 | RtlStronglyEnumerateEntryHashTable | ||
| 1310 | RtlSubAuthorityCountSid | 1472 | RtlSubAuthorityCountSid |
| 1311 | RtlSubAuthoritySid | 1473 | RtlSubAuthoritySid |
| 1312 | RtlSubscribeWnfStateChangeNotification | 1474 | RtlSubscribeWnfStateChangeNotification |
| 1313 | RtlSubtreePredecessor | 1475 | RtlSubtreePredecessor |
| 1314 | RtlSubtreeSuccessor | 1476 | RtlSubtreeSuccessor |
| 1477 | RtlSwitchedVVI | ||
| 1315 | RtlSystemTimeToLocalTime | 1478 | RtlSystemTimeToLocalTime |
| 1316 | RtlTestAndPublishWnfStateData | 1479 | RtlTestAndPublishWnfStateData |
| 1317 | RtlTestBit | 1480 | RtlTestBit |
| 1481 | RtlTestBitEx | ||
| 1318 | RtlTestProtectedAccess | 1482 | RtlTestProtectedAccess |
| 1319 | RtlTimeFieldsToTime | 1483 | RtlTimeFieldsToTime |
| 1320 | RtlTimeToElapsedTimeFields | 1484 | RtlTimeToElapsedTimeFields |
| ... | @@ -1334,7 +1498,9 @@ RtlTryAcquireSRWLockExclusive | ... | @@ -1334,7 +1498,9 @@ RtlTryAcquireSRWLockExclusive |
| 1334 | RtlTryAcquireSRWLockShared | 1498 | RtlTryAcquireSRWLockShared |
| 1335 | RtlTryConvertSRWLockSharedToExclusiveOrRelease | 1499 | RtlTryConvertSRWLockSharedToExclusiveOrRelease |
| 1336 | RtlTryEnterCriticalSection | 1500 | RtlTryEnterCriticalSection |
| 1501 | RtlUTF8StringToUnicodeString | ||
| 1337 | RtlUTF8ToUnicodeN | 1502 | RtlUTF8ToUnicodeN |
| 1503 | RtlUdiv128 | ||
| 1338 | RtlUlongByteSwap | 1504 | RtlUlongByteSwap |
| 1339 | RtlUlonglongByteSwap | 1505 | RtlUlonglongByteSwap |
| 1340 | RtlUnhandledExceptionFilter | 1506 | RtlUnhandledExceptionFilter |
| ... | @@ -1345,6 +1511,7 @@ RtlUnicodeStringToCountedOemString | ... | @@ -1345,6 +1511,7 @@ RtlUnicodeStringToCountedOemString |
| 1345 | RtlUnicodeStringToInteger | 1511 | RtlUnicodeStringToInteger |
| 1346 | RtlUnicodeStringToOemSize | 1512 | RtlUnicodeStringToOemSize |
| 1347 | RtlUnicodeStringToOemString | 1513 | RtlUnicodeStringToOemString |
| 1514 | RtlUnicodeStringToUTF8String | ||
| 1348 | RtlUnicodeToCustomCPN | 1515 | RtlUnicodeToCustomCPN |
| 1349 | RtlUnicodeToMultiByteN | 1516 | RtlUnicodeToMultiByteN |
| 1350 | RtlUnicodeToMultiByteSize | 1517 | RtlUnicodeToMultiByteSize |
| ... | @@ -1376,6 +1543,7 @@ RtlUpdateClonedSRWLock | ... | @@ -1376,6 +1543,7 @@ RtlUpdateClonedSRWLock |
| 1376 | RtlUpdateTimer | 1543 | RtlUpdateTimer |
| 1377 | RtlUpperChar | 1544 | RtlUpperChar |
| 1378 | RtlUpperString | 1545 | RtlUpperString |
| 1546 | RtlUserFiberStart | ||
| 1379 | RtlUserThreadStart | 1547 | RtlUserThreadStart |
| 1380 | RtlUshortByteSwap | 1548 | RtlUshortByteSwap |
| 1381 | RtlValidAcl | 1549 | RtlValidAcl |
| ... | @@ -1383,6 +1551,7 @@ RtlValidProcessProtection | ... | @@ -1383,6 +1551,7 @@ RtlValidProcessProtection |
| 1383 | RtlValidRelativeSecurityDescriptor | 1551 | RtlValidRelativeSecurityDescriptor |
| 1384 | RtlValidSecurityDescriptor | 1552 | RtlValidSecurityDescriptor |
| 1385 | RtlValidSid | 1553 | RtlValidSid |
| 1554 | RtlValidateCorrelationVector | ||
| 1386 | RtlValidateHeap | 1555 | RtlValidateHeap |
| 1387 | RtlValidateProcessHeaps | 1556 | RtlValidateProcessHeaps |
| 1388 | RtlValidateUnicodeString | 1557 | RtlValidateUnicodeString |
| ... | @@ -1405,7 +1574,26 @@ RtlWnfDllUnloadCallback | ... | @@ -1405,7 +1574,26 @@ RtlWnfDllUnloadCallback |
| 1405 | RtlWow64CallFunction64 | 1574 | RtlWow64CallFunction64 |
| 1406 | RtlWow64EnableFsRedirection | 1575 | RtlWow64EnableFsRedirection |
| 1407 | RtlWow64EnableFsRedirectionEx | 1576 | RtlWow64EnableFsRedirectionEx |
| 1577 | RtlWow64GetCpuAreaInfo | ||
| 1578 | RtlWow64GetCurrentCpuArea | ||
| 1579 | RtlWow64GetCurrentMachine | ||
| 1580 | RtlWow64GetEquivalentMachineCHPE | ||
| 1581 | RtlWow64GetProcessMachines | ||
| 1582 | RtlWow64GetSharedInfoProcess | ||
| 1583 | RtlWow64GetThreadContext | ||
| 1584 | RtlWow64GetThreadSelectorEntry | ||
| 1585 | RtlWow64IsWowGuestMachineSupported | ||
| 1586 | RtlWow64LogMessageInEventLogger | ||
| 1587 | RtlWow64PopAllCrossProcessWorkFromWorkList | ||
| 1588 | RtlWow64PopCrossProcessWorkFromFreeList | ||
| 1589 | RtlWow64PushCrossProcessWorkOntoFreeList | ||
| 1590 | RtlWow64PushCrossProcessWorkOntoWorkList | ||
| 1591 | RtlWow64RequestCrossProcessHeavyFlush | ||
| 1592 | RtlWow64SetThreadContext | ||
| 1593 | RtlWow64SuspendProcess | ||
| 1594 | RtlWow64SuspendThread | ||
| 1408 | RtlWriteMemoryStream | 1595 | RtlWriteMemoryStream |
| 1596 | RtlWriteNonVolatileMemory | ||
| 1409 | RtlWriteRegistryValue | 1597 | RtlWriteRegistryValue |
| 1410 | RtlZeroHeap | 1598 | RtlZeroHeap |
| 1411 | RtlZeroMemory | 1599 | RtlZeroMemory |
| ... | @@ -1420,6 +1608,7 @@ RtlpConvertRelativeToAbsoluteSecurityAttribute | ... | @@ -1420,6 +1608,7 @@ RtlpConvertRelativeToAbsoluteSecurityAttribute |
| 1420 | RtlpCreateProcessRegistryInfo | 1608 | RtlpCreateProcessRegistryInfo |
| 1421 | RtlpEnsureBufferSize | 1609 | RtlpEnsureBufferSize |
| 1422 | RtlpFreezeTimeBias DATA | 1610 | RtlpFreezeTimeBias DATA |
| 1611 | RtlpGetDeviceFamilyInfoEnum | ||
| 1423 | RtlpGetLCIDFromLangInfoNode | 1612 | RtlpGetLCIDFromLangInfoNode |
| 1424 | RtlpGetNameFromLangInfoNode | 1613 | RtlpGetNameFromLangInfoNode |
| 1425 | RtlpGetSystemDefaultUILanguage | 1614 | RtlpGetSystemDefaultUILanguage |
| ... | @@ -1441,13 +1630,18 @@ RtlpNtOpenKey | ... | @@ -1441,13 +1630,18 @@ RtlpNtOpenKey |
| 1441 | RtlpNtQueryValueKey | 1630 | RtlpNtQueryValueKey |
| 1442 | RtlpNtSetValueKey | 1631 | RtlpNtSetValueKey |
| 1443 | RtlpQueryDefaultUILanguage | 1632 | RtlpQueryDefaultUILanguage |
| 1633 | RtlpQueryProcessDebugInformationFromWow64 | ||
| 1634 | RtlpQueryProcessDebugInformationRemote | ||
| 1444 | RtlpRefreshCachedUILanguage | 1635 | RtlpRefreshCachedUILanguage |
| 1445 | RtlpSetInstallLanguage | 1636 | RtlpSetInstallLanguage |
| 1446 | RtlpSetPreferredUILanguages | 1637 | RtlpSetPreferredUILanguages |
| 1447 | RtlpSetUserPreferredUILanguages | 1638 | RtlpSetUserPreferredUILanguages |
| 1639 | RtlpTimeFieldsToTime | ||
| 1640 | RtlpTimeToTimeFields | ||
| 1448 | RtlpUnWaitCriticalSection | 1641 | RtlpUnWaitCriticalSection |
| 1449 | RtlpVerifyAndCommitUILanguageSettings | 1642 | RtlpVerifyAndCommitUILanguageSettings |
| 1450 | RtlpWaitForCriticalSection | 1643 | RtlpWaitForCriticalSection |
| 1644 | RtlpWow64CtxFromArm64 | ||
| 1451 | RtlxAnsiStringToUnicodeSize | 1645 | RtlxAnsiStringToUnicodeSize |
| 1452 | RtlxOemStringToUnicodeSize | 1646 | RtlxOemStringToUnicodeSize |
| 1453 | RtlxUnicodeStringToAnsiSize | 1647 | RtlxUnicodeStringToAnsiSize |
| ... | @@ -1501,9 +1695,12 @@ TpReleaseWork | ... | @@ -1501,9 +1695,12 @@ TpReleaseWork |
| 1501 | TpSetDefaultPoolMaxThreads | 1695 | TpSetDefaultPoolMaxThreads |
| 1502 | TpSetDefaultPoolStackInformation | 1696 | TpSetDefaultPoolStackInformation |
| 1503 | TpSetPoolMaxThreads | 1697 | TpSetPoolMaxThreads |
| 1698 | TpSetPoolMaxThreadsSoftLimit | ||
| 1504 | TpSetPoolMinThreads | 1699 | TpSetPoolMinThreads |
| 1505 | TpSetPoolStackInformation | 1700 | TpSetPoolStackInformation |
| 1506 | TpSetPoolThreadBasePriority | 1701 | TpSetPoolThreadBasePriority |
| 1702 | TpSetPoolThreadCpuSets | ||
| 1703 | TpSetPoolWorkerThreadIdleTimeout | ||
| 1507 | TpSetTimer | 1704 | TpSetTimer |
| 1508 | TpSetTimerEx | 1705 | TpSetTimerEx |
| 1509 | TpSetWait | 1706 | TpSetWait |
| ... | @@ -1519,6 +1716,7 @@ TpWaitForTimer | ... | @@ -1519,6 +1716,7 @@ TpWaitForTimer |
| 1519 | TpWaitForWait | 1716 | TpWaitForWait |
| 1520 | TpWaitForWork | 1717 | TpWaitForWork |
| 1521 | VerSetConditionMask | 1718 | VerSetConditionMask |
| 1719 | WerReportExceptionWorker | ||
| 1522 | WerReportSQMEvent | 1720 | WerReportSQMEvent |
| 1523 | WinSqmAddToAverageDWORD | 1721 | WinSqmAddToAverageDWORD |
| 1524 | WinSqmAddToStream | 1722 | WinSqmAddToStream |
| ... | @@ -1549,6 +1747,7 @@ WinSqmSetIfMinDWORD | ... | @@ -1549,6 +1747,7 @@ WinSqmSetIfMinDWORD |
| 1549 | WinSqmSetString | 1747 | WinSqmSetString |
| 1550 | WinSqmStartSession | 1748 | WinSqmStartSession |
| 1551 | WinSqmStartSessionForPartner | 1749 | WinSqmStartSessionForPartner |
| 1750 | WinSqmStartSqmOptinListener | ||
| 1552 | ZwAcceptConnectPort | 1751 | ZwAcceptConnectPort |
| 1553 | ZwAccessCheck | 1752 | ZwAccessCheck |
| 1554 | ZwAccessCheckAndAuditAlarm | 1753 | ZwAccessCheckAndAuditAlarm |
| ... | @@ -1557,6 +1756,7 @@ ZwAccessCheckByTypeAndAuditAlarm | ... | @@ -1557,6 +1756,7 @@ ZwAccessCheckByTypeAndAuditAlarm |
| 1557 | ZwAccessCheckByTypeResultList | 1756 | ZwAccessCheckByTypeResultList |
| 1558 | ZwAccessCheckByTypeResultListAndAuditAlarm | 1757 | ZwAccessCheckByTypeResultListAndAuditAlarm |
| 1559 | ZwAccessCheckByTypeResultListAndAuditAlarmByHandle | 1758 | ZwAccessCheckByTypeResultListAndAuditAlarmByHandle |
| 1759 | ZwAcquireProcessActivityReference | ||
| 1560 | ZwAddAtom | 1760 | ZwAddAtom |
| 1561 | ZwAddAtomEx | 1761 | ZwAddAtomEx |
| 1562 | ZwAddBootEntry | 1762 | ZwAddBootEntry |
| ... | @@ -1570,8 +1770,10 @@ ZwAlertThreadByThreadId | ... | @@ -1570,8 +1770,10 @@ ZwAlertThreadByThreadId |
| 1570 | ZwAllocateLocallyUniqueId | 1770 | ZwAllocateLocallyUniqueId |
| 1571 | ZwAllocateReserveObject | 1771 | ZwAllocateReserveObject |
| 1572 | ZwAllocateUserPhysicalPages | 1772 | ZwAllocateUserPhysicalPages |
| 1773 | ZwAllocateUserPhysicalPagesEx | ||
| 1573 | ZwAllocateUuids | 1774 | ZwAllocateUuids |
| 1574 | ZwAllocateVirtualMemory | 1775 | ZwAllocateVirtualMemory |
| 1776 | ZwAllocateVirtualMemoryEx | ||
| 1575 | ZwAlpcAcceptConnectPort | 1777 | ZwAlpcAcceptConnectPort |
| 1576 | ZwAlpcCancelMessage | 1778 | ZwAlpcCancelMessage |
| 1577 | ZwAlpcConnectPort | 1779 | ZwAlpcConnectPort |
| ... | @@ -1586,6 +1788,7 @@ ZwAlpcDeleteResourceReserve | ... | @@ -1586,6 +1788,7 @@ ZwAlpcDeleteResourceReserve |
| 1586 | ZwAlpcDeleteSectionView | 1788 | ZwAlpcDeleteSectionView |
| 1587 | ZwAlpcDeleteSecurityContext | 1789 | ZwAlpcDeleteSecurityContext |
| 1588 | ZwAlpcDisconnectPort | 1790 | ZwAlpcDisconnectPort |
| 1791 | ZwAlpcImpersonateClientContainerOfPort | ||
| 1589 | ZwAlpcImpersonateClientOfPort | 1792 | ZwAlpcImpersonateClientOfPort |
| 1590 | ZwAlpcOpenSenderProcess | 1793 | ZwAlpcOpenSenderProcess |
| 1591 | ZwAlpcOpenSenderThread | 1794 | ZwAlpcOpenSenderThread |
| ... | @@ -1598,6 +1801,7 @@ ZwApphelpCacheControl | ... | @@ -1598,6 +1801,7 @@ ZwApphelpCacheControl |
| 1598 | ZwAreMappedFilesTheSame | 1801 | ZwAreMappedFilesTheSame |
| 1599 | ZwAssignProcessToJobObject | 1802 | ZwAssignProcessToJobObject |
| 1600 | ZwAssociateWaitCompletionPacket | 1803 | ZwAssociateWaitCompletionPacket |
| 1804 | ZwCallEnclave | ||
| 1601 | ZwCallbackReturn | 1805 | ZwCallbackReturn |
| 1602 | ZwCancelIoFile | 1806 | ZwCancelIoFile |
| 1603 | ZwCancelIoFileEx | 1807 | ZwCancelIoFileEx |
| ... | @@ -1610,16 +1814,22 @@ ZwClose | ... | @@ -1610,16 +1814,22 @@ ZwClose |
| 1610 | ZwCloseObjectAuditAlarm | 1814 | ZwCloseObjectAuditAlarm |
| 1611 | ZwCommitComplete | 1815 | ZwCommitComplete |
| 1612 | ZwCommitEnlistment | 1816 | ZwCommitEnlistment |
| 1817 | ZwCommitRegistryTransaction | ||
| 1613 | ZwCommitTransaction | 1818 | ZwCommitTransaction |
| 1614 | ZwCompactKeys | 1819 | ZwCompactKeys |
| 1820 | ZwCompareObjects | ||
| 1821 | ZwCompareSigningLevels | ||
| 1615 | ZwCompareTokens | 1822 | ZwCompareTokens |
| 1616 | ZwCompleteConnectPort | 1823 | ZwCompleteConnectPort |
| 1617 | ZwCompressKey | 1824 | ZwCompressKey |
| 1618 | ZwConnectPort | 1825 | ZwConnectPort |
| 1619 | ZwContinue | 1826 | ZwContinue |
| 1827 | ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter | ||
| 1828 | ZwCreateCrossVmEvent | ||
| 1620 | ZwCreateDebugObject | 1829 | ZwCreateDebugObject |
| 1621 | ZwCreateDirectoryObject | 1830 | ZwCreateDirectoryObject |
| 1622 | ZwCreateDirectoryObjectEx | 1831 | ZwCreateDirectoryObjectEx |
| 1832 | ZwCreateEnclave | ||
| 1623 | ZwCreateEnlistment | 1833 | ZwCreateEnlistment |
| 1624 | ZwCreateEvent | 1834 | ZwCreateEvent |
| 1625 | ZwCreateEventPair | 1835 | ZwCreateEventPair |
| ... | @@ -1636,14 +1846,17 @@ ZwCreateMailslotFile | ... | @@ -1636,14 +1846,17 @@ ZwCreateMailslotFile |
| 1636 | ZwCreateMutant | 1846 | ZwCreateMutant |
| 1637 | ZwCreateNamedPipeFile | 1847 | ZwCreateNamedPipeFile |
| 1638 | ZwCreatePagingFile | 1848 | ZwCreatePagingFile |
| 1849 | ZwCreatePartition | ||
| 1639 | ZwCreatePort | 1850 | ZwCreatePort |
| 1640 | ZwCreatePrivateNamespace | 1851 | ZwCreatePrivateNamespace |
| 1641 | ZwCreateProcess | 1852 | ZwCreateProcess |
| 1642 | ZwCreateProcessEx | 1853 | ZwCreateProcessEx |
| 1643 | ZwCreateProfile | 1854 | ZwCreateProfile |
| 1644 | ZwCreateProfileEx | 1855 | ZwCreateProfileEx |
| 1856 | ZwCreateRegistryTransaction | ||
| 1645 | ZwCreateResourceManager | 1857 | ZwCreateResourceManager |
| 1646 | ZwCreateSection | 1858 | ZwCreateSection |
| 1859 | ZwCreateSectionEx | ||
| 1647 | ZwCreateSemaphore | 1860 | ZwCreateSemaphore |
| 1648 | ZwCreateSymbolicLinkObject | 1861 | ZwCreateSymbolicLinkObject |
| 1649 | ZwCreateThread | 1862 | ZwCreateThread |
| ... | @@ -1707,6 +1920,7 @@ ZwGetCachedSigningLevel | ... | @@ -1707,6 +1920,7 @@ ZwGetCachedSigningLevel |
| 1707 | ZwGetCompleteWnfStateSubscription | 1920 | ZwGetCompleteWnfStateSubscription |
| 1708 | ZwGetContextThread | 1921 | ZwGetContextThread |
| 1709 | ZwGetCurrentProcessorNumber | 1922 | ZwGetCurrentProcessorNumber |
| 1923 | ZwGetCurrentProcessorNumberEx | ||
| 1710 | ZwGetDevicePowerState | 1924 | ZwGetDevicePowerState |
| 1711 | ZwGetMUIRegistryInfo | 1925 | ZwGetMUIRegistryInfo |
| 1712 | ZwGetNextProcess | 1926 | ZwGetNextProcess |
| ... | @@ -1717,6 +1931,7 @@ ZwGetWriteWatch | ... | @@ -1717,6 +1931,7 @@ ZwGetWriteWatch |
| 1717 | ZwImpersonateAnonymousToken | 1931 | ZwImpersonateAnonymousToken |
| 1718 | ZwImpersonateClientOfPort | 1932 | ZwImpersonateClientOfPort |
| 1719 | ZwImpersonateThread | 1933 | ZwImpersonateThread |
| 1934 | ZwInitializeEnclave | ||
| 1720 | ZwInitializeNlsFiles | 1935 | ZwInitializeNlsFiles |
| 1721 | ZwInitializeRegistry | 1936 | ZwInitializeRegistry |
| 1722 | ZwInitiatePowerAction | 1937 | ZwInitiatePowerAction |
| ... | @@ -1725,6 +1940,7 @@ ZwIsSystemResumeAutomatic | ... | @@ -1725,6 +1940,7 @@ ZwIsSystemResumeAutomatic |
| 1725 | ZwIsUILanguageComitted | 1940 | ZwIsUILanguageComitted |
| 1726 | ZwListenPort | 1941 | ZwListenPort |
| 1727 | ZwLoadDriver | 1942 | ZwLoadDriver |
| 1943 | ZwLoadEnclaveData | ||
| 1728 | ZwLoadKey | 1944 | ZwLoadKey |
| 1729 | ZwLoadKey2 | 1945 | ZwLoadKey2 |
| 1730 | ZwLoadKeyEx | 1946 | ZwLoadKeyEx |
| ... | @@ -1734,13 +1950,17 @@ ZwLockRegistryKey | ... | @@ -1734,13 +1950,17 @@ ZwLockRegistryKey |
| 1734 | ZwLockVirtualMemory | 1950 | ZwLockVirtualMemory |
| 1735 | ZwMakePermanentObject | 1951 | ZwMakePermanentObject |
| 1736 | ZwMakeTemporaryObject | 1952 | ZwMakeTemporaryObject |
| 1953 | ZwManageHotPatch | ||
| 1954 | ZwManagePartition | ||
| 1737 | ZwMapCMFModule | 1955 | ZwMapCMFModule |
| 1738 | ZwMapUserPhysicalPages | 1956 | ZwMapUserPhysicalPages |
| 1739 | ZwMapUserPhysicalPagesScatter | 1957 | ZwMapUserPhysicalPagesScatter |
| 1740 | ZwMapViewOfSection | 1958 | ZwMapViewOfSection |
| 1959 | ZwMapViewOfSectionEx | ||
| 1741 | ZwModifyBootEntry | 1960 | ZwModifyBootEntry |
| 1742 | ZwModifyDriverEntry | 1961 | ZwModifyDriverEntry |
| 1743 | ZwNotifyChangeDirectoryFile | 1962 | ZwNotifyChangeDirectoryFile |
| 1963 | ZwNotifyChangeDirectoryFileEx | ||
| 1744 | ZwNotifyChangeKey | 1964 | ZwNotifyChangeKey |
| 1745 | ZwNotifyChangeMultipleKeys | 1965 | ZwNotifyChangeMultipleKeys |
| 1746 | ZwNotifyChangeSession | 1966 | ZwNotifyChangeSession |
| ... | @@ -1758,10 +1978,12 @@ ZwOpenKeyTransactedEx | ... | @@ -1758,10 +1978,12 @@ ZwOpenKeyTransactedEx |
| 1758 | ZwOpenKeyedEvent | 1978 | ZwOpenKeyedEvent |
| 1759 | ZwOpenMutant | 1979 | ZwOpenMutant |
| 1760 | ZwOpenObjectAuditAlarm | 1980 | ZwOpenObjectAuditAlarm |
| 1981 | ZwOpenPartition | ||
| 1761 | ZwOpenPrivateNamespace | 1982 | ZwOpenPrivateNamespace |
| 1762 | ZwOpenProcess | 1983 | ZwOpenProcess |
| 1763 | ZwOpenProcessToken | 1984 | ZwOpenProcessToken |
| 1764 | ZwOpenProcessTokenEx | 1985 | ZwOpenProcessTokenEx |
| 1986 | ZwOpenRegistryTransaction | ||
| 1765 | ZwOpenResourceManager | 1987 | ZwOpenResourceManager |
| 1766 | ZwOpenSection | 1988 | ZwOpenSection |
| 1767 | ZwOpenSemaphore | 1989 | ZwOpenSemaphore |
| ... | @@ -1785,20 +2007,24 @@ ZwPrivilegedServiceAuditAlarm | ... | @@ -1785,20 +2007,24 @@ ZwPrivilegedServiceAuditAlarm |
| 1785 | ZwPropagationComplete | 2007 | ZwPropagationComplete |
| 1786 | ZwPropagationFailed | 2008 | ZwPropagationFailed |
| 1787 | ZwProtectVirtualMemory | 2009 | ZwProtectVirtualMemory |
| 2010 | ZwPssCaptureVaSpaceBulk | ||
| 1788 | ZwPulseEvent | 2011 | ZwPulseEvent |
| 1789 | ZwQueryAttributesFile | 2012 | ZwQueryAttributesFile |
| 2013 | ZwQueryAuxiliaryCounterFrequency | ||
| 1790 | ZwQueryBootEntryOrder | 2014 | ZwQueryBootEntryOrder |
| 1791 | ZwQueryBootOptions | 2015 | ZwQueryBootOptions |
| 1792 | ZwQueryDebugFilterState | 2016 | ZwQueryDebugFilterState |
| 1793 | ZwQueryDefaultLocale | 2017 | ZwQueryDefaultLocale |
| 1794 | ZwQueryDefaultUILanguage | 2018 | ZwQueryDefaultUILanguage |
| 1795 | ZwQueryDirectoryFile | 2019 | ZwQueryDirectoryFile |
| 2020 | ZwQueryDirectoryFileEx | ||
| 1796 | ZwQueryDirectoryObject | 2021 | ZwQueryDirectoryObject |
| 1797 | ZwQueryDriverEntryOrder | 2022 | ZwQueryDriverEntryOrder |
| 1798 | ZwQueryEaFile | 2023 | ZwQueryEaFile |
| 1799 | ZwQueryEvent | 2024 | ZwQueryEvent |
| 1800 | ZwQueryFullAttributesFile | 2025 | ZwQueryFullAttributesFile |
| 1801 | ZwQueryInformationAtom | 2026 | ZwQueryInformationAtom |
| 2027 | ZwQueryInformationByName | ||
| 1802 | ZwQueryInformationEnlistment | 2028 | ZwQueryInformationEnlistment |
| 1803 | ZwQueryInformationFile | 2029 | ZwQueryInformationFile |
| 1804 | ZwQueryInformationJobObject | 2030 | ZwQueryInformationJobObject |
| ... | @@ -1826,6 +2052,7 @@ ZwQueryQuotaInformationFile | ... | @@ -1826,6 +2052,7 @@ ZwQueryQuotaInformationFile |
| 1826 | ZwQuerySection | 2052 | ZwQuerySection |
| 1827 | ZwQuerySecurityAttributesToken | 2053 | ZwQuerySecurityAttributesToken |
| 1828 | ZwQuerySecurityObject | 2054 | ZwQuerySecurityObject |
| 2055 | ZwQuerySecurityPolicy | ||
| 1829 | ZwQuerySemaphore | 2056 | ZwQuerySemaphore |
| 1830 | ZwQuerySymbolicLinkObject | 2057 | ZwQuerySymbolicLinkObject |
| 1831 | ZwQuerySystemEnvironmentValue | 2058 | ZwQuerySystemEnvironmentValue |
| ... | @@ -1876,8 +2103,10 @@ ZwResetWriteWatch | ... | @@ -1876,8 +2103,10 @@ ZwResetWriteWatch |
| 1876 | ZwRestoreKey | 2103 | ZwRestoreKey |
| 1877 | ZwResumeProcess | 2104 | ZwResumeProcess |
| 1878 | ZwResumeThread | 2105 | ZwResumeThread |
| 2106 | ZwRevertContainerImpersonation | ||
| 1879 | ZwRollbackComplete | 2107 | ZwRollbackComplete |
| 1880 | ZwRollbackEnlistment | 2108 | ZwRollbackEnlistment |
| 2109 | ZwRollbackRegistryTransaction | ||
| 1881 | ZwRollbackTransaction | 2110 | ZwRollbackTransaction |
| 1882 | ZwRollforwardTransactionManager | 2111 | ZwRollforwardTransactionManager |
| 1883 | ZwSaveKey | 2112 | ZwSaveKey |
| ... | @@ -1888,6 +2117,7 @@ ZwSerializeBoot | ... | @@ -1888,6 +2117,7 @@ ZwSerializeBoot |
| 1888 | ZwSetBootEntryOrder | 2117 | ZwSetBootEntryOrder |
| 1889 | ZwSetBootOptions | 2118 | ZwSetBootOptions |
| 1890 | ZwSetCachedSigningLevel | 2119 | ZwSetCachedSigningLevel |
| 2120 | ZwSetCachedSigningLevel2 | ||
| 1891 | ZwSetContextThread | 2121 | ZwSetContextThread |
| 1892 | ZwSetDebugFilterState | 2122 | ZwSetDebugFilterState |
| 1893 | ZwSetDefaultHardErrorPort | 2123 | ZwSetDefaultHardErrorPort |
| ... | @@ -1908,6 +2138,7 @@ ZwSetInformationKey | ... | @@ -1908,6 +2138,7 @@ ZwSetInformationKey |
| 1908 | ZwSetInformationObject | 2138 | ZwSetInformationObject |
| 1909 | ZwSetInformationProcess | 2139 | ZwSetInformationProcess |
| 1910 | ZwSetInformationResourceManager | 2140 | ZwSetInformationResourceManager |
| 2141 | ZwSetInformationSymbolicLink | ||
| 1911 | ZwSetInformationThread | 2142 | ZwSetInformationThread |
| 1912 | ZwSetInformationToken | 2143 | ZwSetInformationToken |
| 1913 | ZwSetInformationTransaction | 2144 | ZwSetInformationTransaction |
| ... | @@ -1946,6 +2177,7 @@ ZwSubscribeWnfStateChange | ... | @@ -1946,6 +2177,7 @@ ZwSubscribeWnfStateChange |
| 1946 | ZwSuspendProcess | 2177 | ZwSuspendProcess |
| 1947 | ZwSuspendThread | 2178 | ZwSuspendThread |
| 1948 | ZwSystemDebugControl | 2179 | ZwSystemDebugControl |
| 2180 | ZwTerminateEnclave | ||
| 1949 | ZwTerminateJobObject | 2181 | ZwTerminateJobObject |
| 1950 | ZwTerminateProcess | 2182 | ZwTerminateProcess |
| 1951 | ZwTerminateThread | 2183 | ZwTerminateThread |
| ... | @@ -1982,184 +2214,3 @@ ZwWriteFileGather | ... | @@ -1982,184 +2214,3 @@ ZwWriteFileGather |
| 1982 | ZwWriteRequestData | 2214 | ZwWriteRequestData |
| 1983 | ZwWriteVirtualMemory | 2215 | ZwWriteVirtualMemory |
| 1984 | ZwYieldExecution | 2216 | ZwYieldExecution |
| 1985 | __C_specific_handler | ||
| 1986 | __chkstk | ||
| 1987 | __isascii | ||
| 1988 | __iscsym | ||
| 1989 | __iscsymf | ||
| 1990 | __jump_unwind | ||
| 1991 | __toascii | ||
| 1992 | _atoi64 | ||
| 1993 | _errno | ||
| 1994 | _fltused DATA | ||
| 1995 | _i64toa | ||
| 1996 | _i64toa_s | ||
| 1997 | _i64tow | ||
| 1998 | _i64tow_s | ||
| 1999 | _itoa | ||
| 2000 | _itoa_s | ||
| 2001 | _itow | ||
| 2002 | _itow_s | ||
| 2003 | _lfind | ||
| 2004 | _ltoa | ||
| 2005 | _ltoa_s | ||
| 2006 | _ltow | ||
| 2007 | _ltow_s | ||
| 2008 | _makepath_s | ||
| 2009 | _memccpy | ||
| 2010 | _memicmp | ||
| 2011 | _setjmp | ||
| 2012 | _setjmpex | ||
| 2013 | _snprintf | ||
| 2014 | _snprintf_s | ||
| 2015 | _snscanf_s | ||
| 2016 | _snwprintf | ||
| 2017 | _snwprintf_s | ||
| 2018 | _snwscanf_s | ||
| 2019 | _splitpath | ||
| 2020 | _splitpath_s | ||
| 2021 | _strcmpi | ||
| 2022 | _stricmp | ||
| 2023 | _strlwr | ||
| 2024 | _strlwr_s | ||
| 2025 | _strnicmp | ||
| 2026 | _strnset_s | ||
| 2027 | _strset_s | ||
| 2028 | _strupr | ||
| 2029 | _strupr_s | ||
| 2030 | _swprintf | ||
| 2031 | _ui64toa | ||
| 2032 | _ui64toa_s | ||
| 2033 | _ui64tow | ||
| 2034 | _ui64tow_s | ||
| 2035 | _ultoa | ||
| 2036 | _ultoa_s | ||
| 2037 | _ultow | ||
| 2038 | _ultow_s | ||
| 2039 | _vscwprintf | ||
| 2040 | _vsnprintf | ||
| 2041 | _vsnprintf_s | ||
| 2042 | _vsnwprintf | ||
| 2043 | _vsnwprintf_s | ||
| 2044 | _vswprintf | ||
| 2045 | _wcsicmp | ||
| 2046 | _wcslwr | ||
| 2047 | _wcslwr_s | ||
| 2048 | _wcsnicmp | ||
| 2049 | _wcsnset_s | ||
| 2050 | _wcsset_s | ||
| 2051 | _wcstoi64 | ||
| 2052 | _wcstoui64 | ||
| 2053 | _wcsupr | ||
| 2054 | _wcsupr_s | ||
| 2055 | _wmakepath_s | ||
| 2056 | _wsplitpath_s | ||
| 2057 | _wtoi | ||
| 2058 | _wtoi64 | ||
| 2059 | _wtol | ||
| 2060 | abs | ||
| 2061 | atan | ||
| 2062 | atoi | ||
| 2063 | atol | ||
| 2064 | bsearch | ||
| 2065 | ceil | ||
| 2066 | cos | ||
| 2067 | fabs | ||
| 2068 | floor | ||
| 2069 | isalnum | ||
| 2070 | isalpha | ||
| 2071 | iscntrl | ||
| 2072 | isdigit | ||
| 2073 | isgraph | ||
| 2074 | islower | ||
| 2075 | isprint | ||
| 2076 | ispunct | ||
| 2077 | isspace | ||
| 2078 | isupper | ||
| 2079 | iswalnum | ||
| 2080 | iswalpha | ||
| 2081 | iswascii | ||
| 2082 | iswctype | ||
| 2083 | iswdigit | ||
| 2084 | iswgraph | ||
| 2085 | iswlower | ||
| 2086 | iswprint | ||
| 2087 | iswspace | ||
| 2088 | iswxdigit | ||
| 2089 | isxdigit | ||
| 2090 | labs | ||
| 2091 | log | ||
| 2092 | longjmp | ||
| 2093 | mbstowcs | ||
| 2094 | memchr | ||
| 2095 | memcmp | ||
| 2096 | memcpy | ||
| 2097 | memcpy_s | ||
| 2098 | memmove | ||
| 2099 | memmove_s | ||
| 2100 | memset | ||
| 2101 | pow | ||
| 2102 | qsort | ||
| 2103 | qsort_s | ||
| 2104 | sin | ||
| 2105 | sprintf | ||
| 2106 | sprintf_s | ||
| 2107 | sqrt | ||
| 2108 | sscanf | ||
| 2109 | sscanf_s | ||
| 2110 | strcat | ||
| 2111 | strcat_s | ||
| 2112 | strchr | ||
| 2113 | strcmp | ||
| 2114 | strcpy | ||
| 2115 | strcpy_s | ||
| 2116 | strcspn | ||
| 2117 | strlen | ||
| 2118 | strncat | ||
| 2119 | strncat_s | ||
| 2120 | strncmp | ||
| 2121 | strncpy | ||
| 2122 | strncpy_s | ||
| 2123 | strnlen | ||
| 2124 | strpbrk | ||
| 2125 | strrchr | ||
| 2126 | strspn | ||
| 2127 | strstr | ||
| 2128 | strtok_s | ||
| 2129 | strtol | ||
| 2130 | strtoul | ||
| 2131 | swprintf | ||
| 2132 | swprintf_s | ||
| 2133 | swscanf_s | ||
| 2134 | tan | ||
| 2135 | tolower | ||
| 2136 | toupper | ||
| 2137 | towlower | ||
| 2138 | towupper | ||
| 2139 | vDbgPrintEx | ||
| 2140 | vDbgPrintExWithPrefix | ||
| 2141 | vsprintf | ||
| 2142 | vsprintf_s | ||
| 2143 | vswprintf_s | ||
| 2144 | wcscat | ||
| 2145 | wcscat_s | ||
| 2146 | wcschr | ||
| 2147 | wcscmp | ||
| 2148 | wcscpy | ||
| 2149 | wcscpy_s | ||
| 2150 | wcscspn | ||
| 2151 | wcslen | ||
| 2152 | wcsncat | ||
| 2153 | wcsncat_s | ||
| 2154 | wcsncmp | ||
| 2155 | wcsncpy | ||
| 2156 | wcsncpy_s | ||
| 2157 | wcsnlen | ||
| 2158 | wcspbrk | ||
| 2159 | wcsrchr | ||
| 2160 | wcsspn | ||
| 2161 | wcsstr | ||
| 2162 | wcstok_s | ||
| 2163 | wcstol | ||
| 2164 | wcstombs | ||
| 2165 | wcstoul |
lib/libc/mingw/libarm32/urlmon.def deleted-292| ... | @@ -1,292 +0,0 @@ | ||
| 1 | ; | ||
| 2 | ; Definition file of urlmon.dll | ||
| 3 | ; Automatic generated by gendef | ||
| 4 | ; written by Kai Tietz 2008-2014 | ||
| 5 | ; | ||
| 6 | LIBRARY "urlmon.dll" | ||
| 7 | EXPORTS | ||
| 8 | ord_100 @100 | ||
| 9 | ord_101 @101 | ||
| 10 | ord_102 @102 | ||
| 11 | ord_103 @103 | ||
| 12 | ord_104 @104 | ||
| 13 | ord_105 @105 | ||
| 14 | ord_106 @106 | ||
| 15 | ord_107 @107 | ||
| 16 | ord_108 @108 | ||
| 17 | FileBearsMarkOfTheWeb | ||
| 18 | GetPortFromUrlScheme | ||
| 19 | ord_111 @111 | ||
| 20 | ord_112 @112 | ||
| 21 | ord_113 @113 | ||
| 22 | ord_114 @114 | ||
| 23 | ord_115 @115 | ||
| 24 | ord_116 @116 | ||
| 25 | ord_117 @117 | ||
| 26 | GetPropertyFromName | ||
| 27 | GetPropertyName | ||
| 28 | IsDWORDProperty | ||
| 29 | IsStringProperty | ||
| 30 | AsyncGetClassBits | ||
| 31 | AsyncInstallDistributionUnit | ||
| 32 | BindAsyncMoniker | ||
| 33 | CDLGetLongPathNameA | ||
| 34 | CDLGetLongPathNameW | ||
| 35 | CORPolicyProvider | ||
| 36 | CoGetClassObjectFromURL | ||
| 37 | CoInstall | ||
| 38 | CoInternetCanonicalizeIUri | ||
| 39 | CoInternetCombineIUri | ||
| 40 | CoInternetCombineUrl | ||
| 41 | CoInternetCombineUrlEx | ||
| 42 | CoInternetCompareUrl | ||
| 43 | CoInternetCreateSecurityManager | ||
| 44 | CoInternetCreateZoneManager | ||
| 45 | CoInternetFeatureSettingsChanged | ||
| 46 | CoInternetGetProtocolFlags | ||
| 47 | CoInternetGetSecurityUrl | ||
| 48 | CoInternetGetSecurityUrlEx | ||
| 49 | CoInternetGetSession | ||
| 50 | CoInternetIsFeatureEnabled | ||
| 51 | CoInternetIsFeatureEnabledForIUri | ||
| 52 | CoInternetIsFeatureEnabledForUrl | ||
| 53 | CoInternetIsFeatureZoneElevationEnabled | ||
| 54 | CoInternetParseIUri | ||
| 55 | CoInternetParseUrl | ||
| 56 | CoInternetQueryInfo | ||
| 57 | CoInternetSetFeatureEnabled | ||
| 58 | CompareSecurityIds | ||
| 59 | CompatFlagsFromClsid | ||
| 60 | CopyBindInfo | ||
| 61 | CopyStgMedium | ||
| 62 | CreateAsyncBindCtx | ||
| 63 | CreateAsyncBindCtxEx | ||
| 64 | CreateFormatEnumerator | ||
| 65 | CreateIUriBuilder | ||
| 66 | CreateURLMoniker | ||
| 67 | CreateURLMonikerEx | ||
| 68 | CreateURLMonikerEx2 | ||
| 69 | CreateUri | ||
| 70 | CreateUriFromMultiByteString | ||
| 71 | CreateUriPriv | ||
| 72 | CreateUriWithFragment | ||
| 73 | Extract | ||
| 74 | FaultInIEFeature | ||
| 75 | FindMediaType | ||
| 76 | FindMediaTypeClass | ||
| 77 | FindMimeFromData | ||
| 78 | GetAddSitesFileUrl | ||
| 79 | GetClassFileOrMime | ||
| 80 | GetClassURL | ||
| 81 | GetComponentIDFromCLSSPEC | ||
| 82 | GetIDNFlagsForUri | ||
| 83 | GetIUriPriv | ||
| 84 | GetIUriPriv2 | ||
| 85 | GetLabelsFromNamedHost | ||
| 86 | GetMarkOfTheWeb | ||
| 87 | GetSoftwareUpdateInfo | ||
| 88 | GetUrlmonThreadNotificationHwnd | ||
| 89 | GetZoneFromAlternateDataStreamEx | ||
| 90 | HlinkGoBack | ||
| 91 | HlinkGoForward | ||
| 92 | HlinkNavigateMoniker | ||
| 93 | HlinkNavigateString | ||
| 94 | HlinkSimpleNavigateToMoniker | ||
| 95 | HlinkSimpleNavigateToString | ||
| 96 | IEDllLoader | ||
| 97 | IEGetUserPrivateNamespaceName | ||
| 98 | IEInstallScope | ||
| 99 | IntlPercentEncodeNormalize | ||
| 100 | IsAsyncMoniker | ||
| 101 | IsIntranetAvailable | ||
| 102 | IsJITInProgress | ||
| 103 | IsLoggingEnabledA | ||
| 104 | IsLoggingEnabledW | ||
| 105 | IsValidURL | ||
| 106 | MkParseDisplayNameEx | ||
| 107 | ObtainUserAgentString | ||
| 108 | PrivateCoInstall | ||
| 109 | QueryAssociations | ||
| 110 | QueryClsidAssociation | ||
| 111 | RegisterBindStatusCallback | ||
| 112 | RegisterFormatEnumerator | ||
| 113 | RegisterMediaTypeClass | ||
| 114 | RegisterMediaTypes | ||
| 115 | RegisterWebPlatformPermanentSecurityManager | ||
| 116 | ReleaseBindInfo | ||
| 117 | RevokeBindStatusCallback | ||
| 118 | RevokeFormatEnumerator | ||
| 119 | SetAccessForIEAppContainer | ||
| 120 | SetSoftwareUpdateAdvertisementState | ||
| 121 | ShouldDisplayPunycodeForUri | ||
| 122 | ShouldShowIntranetWarningSecband | ||
| 123 | ShowTrustAlertDialog | ||
| 124 | URLDownloadA | ||
| 125 | URLDownloadToCacheFileA | ||
| 126 | URLDownloadToCacheFileW | ||
| 127 | URLDownloadToFileA | ||
| 128 | URLDownloadToFileW | ||
| 129 | URLDownloadW | ||
| 130 | URLOpenBlockingStreamA | ||
| 131 | URLOpenBlockingStreamW | ||
| 132 | URLOpenPullStreamA | ||
| 133 | URLOpenPullStreamW | ||
| 134 | URLOpenStreamA | ||
| 135 | URLOpenStreamW | ||
| 136 | UnregisterWebPlatformPermanentSecurityManager | ||
| 137 | UrlMkBuildVersion | ||
| 138 | UrlMkGetSessionOption | ||
| 139 | UrlMkSetSessionOption | ||
| 140 | UrlmonCleanupCurrentThread | ||
| 141 | WriteHitLogging | ||
| 142 | ZonesReInit | ||
| 143 | ord_304 @304 | ||
| 144 | ord_305 @305 | ||
| 145 | ord_306 @306 | ||
| 146 | ord_307 @307 | ||
| 147 | ord_308 @308 | ||
| 148 | ord_309 @309 | ||
| 149 | ord_310 @310 | ||
| 150 | ord_311 @311 | ||
| 151 | ord_312 @312 | ||
| 152 | ord_313 @313 | ||
| 153 | ord_314 @314 | ||
| 154 | ord_315 @315 | ||
| 155 | ord_316 @316 | ||
| 156 | ord_318 @318 | ||
| 157 | ord_319 @319 | ||
| 158 | ord_320 @320 | ||
| 159 | ord_321 @321 | ||
| 160 | IECompatLogCSSFix | ||
| 161 | ord_323 @323 | ||
| 162 | ord_324 @324 | ||
| 163 | ord_395 @395 | ||
| 164 | ord_400 @400 | ||
| 165 | ord_401 @401 | ||
| 166 | ord_403 @403 | ||
| 167 | ord_404 @404 | ||
| 168 | ord_406 @406 | ||
| 169 | ord_407 @407 | ||
| 170 | ord_408 @408 | ||
| 171 | ord_409 @409 | ||
| 172 | ord_410 @410 | ||
| 173 | ord_411 @411 | ||
| 174 | ord_412 @412 | ||
| 175 | ord_413 @413 | ||
| 176 | ord_414 @414 | ||
| 177 | ord_415 @415 | ||
| 178 | ord_416 @416 | ||
| 179 | ord_417 @417 | ||
| 180 | ord_421 @421 | ||
| 181 | ord_422 @422 | ||
| 182 | ord_423 @423 | ||
| 183 | ord_430 @430 | ||
| 184 | ord_431 @431 | ||
| 185 | ord_432 @432 | ||
| 186 | ord_433 @433 | ||
| 187 | ord_434 @434 | ||
| 188 | ord_435 @435 | ||
| 189 | ord_436 @436 | ||
| 190 | ord_437 @437 | ||
| 191 | ord_438 @438 | ||
| 192 | ord_439 @439 | ||
| 193 | ord_440 @440 | ||
| 194 | ord_441 @441 | ||
| 195 | ord_442 @442 | ||
| 196 | ord_443 @443 | ||
| 197 | ord_444 @444 | ||
| 198 | ord_445 @445 | ||
| 199 | ord_446 @446 | ||
| 200 | ord_447 @447 | ||
| 201 | ord_448 @448 | ||
| 202 | ord_449 @449 | ||
| 203 | ord_450 @450 | ||
| 204 | ord_451 @451 | ||
| 205 | ord_452 @452 | ||
| 206 | ord_453 @453 | ||
| 207 | ord_454 @454 | ||
| 208 | ord_455 @455 | ||
| 209 | ord_456 @456 | ||
| 210 | ord_457 @457 | ||
| 211 | ord_458 @458 | ||
| 212 | ord_460 @460 | ||
| 213 | ord_461 @461 | ||
| 214 | ord_462 @462 | ||
| 215 | ord_463 @463 | ||
| 216 | ord_470 @470 | ||
| 217 | ord_471 @471 | ||
| 218 | ord_473 @473 | ||
| 219 | ord_474 @474 | ||
| 220 | ord_475 @475 | ||
| 221 | ord_476 @476 | ||
| 222 | ord_477 @477 | ||
| 223 | ord_478 @478 | ||
| 224 | ord_479 @479 | ||
| 225 | ord_480 @480 | ||
| 226 | ord_481 @481 | ||
| 227 | ord_482 @482 | ||
| 228 | ord_483 @483 | ||
| 229 | ord_484 @484 | ||
| 230 | ord_485 @485 | ||
| 231 | ord_486 @486 | ||
| 232 | ord_487 @487 | ||
| 233 | ord_488 @488 | ||
| 234 | ord_489 @489 | ||
| 235 | ord_490 @490 | ||
| 236 | ord_491 @491 | ||
| 237 | ord_492 @492 | ||
| 238 | ord_494 @494 | ||
| 239 | ord_495 @495 | ||
| 240 | ord_496 @496 | ||
| 241 | ord_497 @497 | ||
| 242 | ord_498 @498 | ||
| 243 | ord_499 @499 | ||
| 244 | ord_500 @500 | ||
| 245 | ord_501 @501 | ||
| 246 | ord_502 @502 | ||
| 247 | ord_503 @503 | ||
| 248 | ord_504 @504 | ||
| 249 | ord_505 @505 | ||
| 250 | ord_506 @506 | ||
| 251 | ord_507 @507 | ||
| 252 | ord_508 @508 | ||
| 253 | ord_509 @509 | ||
| 254 | ord_510 @510 | ||
| 255 | ord_511 @511 | ||
| 256 | ord_512 @512 | ||
| 257 | ord_513 @513 | ||
| 258 | ord_514 @514 | ||
| 259 | ord_515 @515 | ||
| 260 | ord_516 @516 | ||
| 261 | ord_517 @517 | ||
| 262 | ord_518 @518 | ||
| 263 | ord_519 @519 | ||
| 264 | ord_520 @520 | ||
| 265 | ord_521 @521 | ||
| 266 | ord_522 @522 | ||
| 267 | ord_523 @523 | ||
| 268 | ord_524 @524 | ||
| 269 | ord_525 @525 | ||
| 270 | ord_526 @526 | ||
| 271 | ord_527 @527 | ||
| 272 | ord_528 @528 | ||
| 273 | ord_529 @529 | ||
| 274 | ord_530 @530 | ||
| 275 | ord_531 @531 | ||
| 276 | ord_532 @532 | ||
| 277 | ord_533 @533 | ||
| 278 | ord_534 @534 | ||
| 279 | ord_535 @535 | ||
| 280 | ord_536 @536 | ||
| 281 | ord_537 @537 | ||
| 282 | ord_538 @538 | ||
| 283 | ord_539 @539 | ||
| 284 | ord_540 @540 | ||
| 285 | ord_541 @541 | ||
| 286 | ord_542 @542 | ||
| 287 | ord_543 @543 | ||
| 288 | ord_544 @544 | ||
| 289 | ord_545 @545 | ||
| 290 | ord_546 @546 | ||
| 291 | ord_547 @547 | ||
| 292 | ord_548 @548 | ||
lib/libc/mingw/math/arm/ceil.S deleted-29| ... | @@ -1,29 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"ceil.S" | ||
| 9 | 	.text | ||
| 10 | 	.align 4 | ||
| 11 | 	.globl __MINGW_USYMBOL(ceil) | ||
| 12 | 	.def	__MINGW_USYMBOL(ceil);	.scl	2;	.type	32;	.endef | ||
| 13 | |||
| 14 | __MINGW_USYMBOL(ceil): | ||
| 15 | 	vmov	r2, r3, d0 | ||
| 16 | 	lsr		r3, r3, #20 | ||
| 17 | 	bic		r3, r3, #0x800 | ||
| 18 | 	movw	r2, #0x7ff | ||
| 19 | 	cmp		r2, r3 /* Check for INF/NAN, just return the input in those cases */ | ||
| 20 | 	it		eq | ||
| 21 | 	bxeq	lr | ||
| 22 | 	vmrs	r1, fpscr | ||
| 23 | 	bic		r0, r1, #0x00c00000 | ||
| 24 | 	orr		r0, r0, #0x00400000 /* Round towards Plus Infinity */ | ||
| 25 | 	vmsr	fpscr, r0 | ||
| 26 | 	vcvtr.s32.f64	s0, d0 | ||
| 27 | 	vcvt.f64.s32	d0, s0 | ||
| 28 | 	vmsr	fpscr, r1 | ||
| 29 | 	bx	lr | ||
lib/libc/mingw/math/arm/ceilf.S deleted-28| ... | @@ -1,28 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"ceilf.S" | ||
| 9 | 	.text | ||
| 10 | 	.align 4 | ||
| 11 | 	.globl __MINGW_USYMBOL(ceilf) | ||
| 12 | 	.def	__MINGW_USYMBOL(ceilf);	.scl	2;	.type	32;	.endef | ||
| 13 | |||
| 14 | __MINGW_USYMBOL(ceilf): | ||
| 15 | 	vmov	r2, s0 | ||
| 16 | 	lsr		r2, r2, #23 | ||
| 17 | 	bic		r2, r2, #0x100 | ||
| 18 | 	cmp		r2, #0xff /* Check for INF/NAN, just return the input in those cases */ | ||
| 19 | 	it		eq | ||
| 20 | 	bxeq	lr | ||
| 21 | 	vmrs	r1, fpscr | ||
| 22 | 	bic		r0, r1, #0x00c00000 | ||
| 23 | 	orr		r0, r0, #0x00400000 /* Round towards Plus Infinity */ | ||
| 24 | 	vmsr	fpscr, r0 | ||
| 25 | 	vcvtr.s32.f32	s0, s0 | ||
| 26 | 	vcvt.f32.s32	s0, s0 | ||
| 27 | 	vmsr	fpscr, r1 | ||
| 28 | 	bx	lr | ||
lib/libc/mingw/math/arm/ceill.S deleted-28| ... | @@ -1,28 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"ceill.S" | ||
| 9 | 	.text | ||
| 10 | 	.align 4 | ||
| 11 | 	.globl __MINGW_USYMBOL(ceill) | ||
| 12 | 	.def	__MINGW_USYMBOL(ceill);	.scl	2;	.type	32;	.endef | ||
| 13 | __MINGW_USYMBOL(ceill): | ||
| 14 | 	vmov	r2, r3, d0 | ||
| 15 | 	lsr		r3, r3, #20 | ||
| 16 | 	bic		r3, r3, #0x800 | ||
| 17 | 	movw	r2, #0x7ff | ||
| 18 | 	cmp		r2, r3 /* Check for INF/NAN, just return the input in those cases */ | ||
| 19 | 	it		eq | ||
| 20 | 	bxeq	lr | ||
| 21 | 	vmrs	r1, fpscr | ||
| 22 | 	bic		r0, r1, #0x00c00000 | ||
| 23 | 	orr		r0, r0, #0x00400000 /* Round towards Plus Infinity */ | ||
| 24 | 	vmsr	fpscr, r0 | ||
| 25 | 	vcvtr.s32.f64	s0, d0 | ||
| 26 | 	vcvt.f64.s32	d0, s0 | ||
| 27 | 	vmsr	fpscr, r1 | ||
| 28 | 	bx	lr | ||
lib/libc/mingw/math/arm/copysignl.c deleted-11| ... | @@ -1,11 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <math.h> | ||
| 7 | |||
| 8 | long double copysignl(long double x, long double y) | ||
| 9 | { | ||
| 10 | return copysign(x, y); | ||
| 11 | } | ||
lib/libc/mingw/math/arm/floor.S deleted-28| ... | @@ -1,28 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"floor.S" | ||
| 9 | 	.text | ||
| 10 | 	.p2align 4,,15 | ||
| 11 | 	.globl __MINGW_USYMBOL(floor) | ||
| 12 | 	.def	__MINGW_USYMBOL(floor);	.scl	2;	.type	32;	.endef | ||
| 13 | __MINGW_USYMBOL(floor): | ||
| 14 | 	vmov	r2, r3, d0 | ||
| 15 | 	lsr		r3, r3, #20 | ||
| 16 | 	bic		r3, r3, #0x800 | ||
| 17 | 	movw	r2, #0x7ff | ||
| 18 | 	cmp		r2, r3 /* Check for INF/NAN, just return the input in those cases */ | ||
| 19 | 	it		eq | ||
| 20 | 	bxeq	lr | ||
| 21 | 	vmrs	r1, fpscr | ||
| 22 | 	bic		r0, r1, #0x00c00000 | ||
| 23 | 	orr		r0, r0, #0x00800000 /* Round towards Minus Infinity */ | ||
| 24 | 	vmsr	fpscr, r0 | ||
| 25 | 	vcvtr.s32.f64	s0, d0 | ||
| 26 | 	vcvt.f64.s32	d0, s0 | ||
| 27 | 	vmsr	fpscr, r1 | ||
| 28 | 	bx	lr | ||
lib/libc/mingw/math/arm/floorf.S deleted-27| ... | @@ -1,27 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"floorf.S" | ||
| 9 | 	.text | ||
| 10 | 	.p2align 4,,15 | ||
| 11 | 	.globl __MINGW_USYMBOL(floorf) | ||
| 12 | 	.def	__MINGW_USYMBOL(floorf);	.scl	2;	.type	32;	.endef | ||
| 13 | __MINGW_USYMBOL(floorf): | ||
| 14 | 	vmov	r2, s0 | ||
| 15 | 	lsr		r2, r2, #23 | ||
| 16 | 	bic		r2, r2, #0x100 | ||
| 17 | 	cmp		r2, #0xff /* Check for INF/NAN, just return the input in those cases */ | ||
| 18 | 	it		eq | ||
| 19 | 	bxeq	lr | ||
| 20 | 	vmrs	r1, fpscr | ||
| 21 | 	bic		r0, r1, #0x00c00000 | ||
| 22 | 	orr		r0, r0, #0x00800000 /* Round towards Minus Infinity */ | ||
| 23 | 	vmsr	fpscr, r0 | ||
| 24 | 	vcvtr.s32.f32	s0, s0 | ||
| 25 | 	vcvt.f32.s32	s0, s0 | ||
| 26 | 	vmsr	fpscr, r1 | ||
| 27 | 	bx	lr | ||
lib/libc/mingw/math/arm/floorl.S deleted-28| ... | @@ -1,28 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"floorl.S" | ||
| 9 | 	.text | ||
| 10 | 	.align 4 | ||
| 11 | 	.globl __MINGW_USYMBOL(floorl) | ||
| 12 | 	.def	__MINGW_USYMBOL(floorl);	.scl	2;	.type	32;	.endef | ||
| 13 | __MINGW_USYMBOL(floorl): | ||
| 14 | 	vmov	r2, r3, d0 | ||
| 15 | 	lsr		r3, r3, #20 | ||
| 16 | 	bic		r3, r3, #0x800 | ||
| 17 | 	movw	r2, #0x7ff | ||
| 18 | 	cmp		r2, r3 /* Check for INF/NAN, just return the input in those cases */ | ||
| 19 | 	it		eq | ||
| 20 | 	bxeq	lr | ||
| 21 | 	vmrs	r1, fpscr | ||
| 22 | 	bic		r0, r1, #0x00c00000 | ||
| 23 | 	orr		r0, r0, #0x00800000 /* Round towards Minus Infinity */ | ||
| 24 | 	vmsr	fpscr, r0 | ||
| 25 | 	vcvtr.s32.f64	s0, d0 | ||
| 26 | 	vcvt.f64.s32	d0, s0 | ||
| 27 | 	vmsr	fpscr, r1 | ||
| 28 | 	bx	lr | ||
lib/libc/mingw/math/arm/ldexpl.c deleted-16| ... | @@ -1,16 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <math.h> | ||
| 8 | |||
| 9 | long double ldexpl(long double x, int n) | ||
| 10 | { | ||
| 11 | #if defined(__arm__) || defined(_ARM_) | ||
| 12 | return ldexp(x, n); | ||
| 13 | #else | ||
| 14 | #error Not supported on your platform yet | ||
| 15 | #endif | ||
| 16 | } | ||
lib/libc/mingw/math/arm/log2.c deleted-64| ... | @@ -1,64 +0,0 @@ | ||
| 1 | /* | ||
| 2 | This Software is provided under the Zope Public License (ZPL) Version 2.1. | ||
| 3 | |||
| 4 | Copyright (c) 2014 by the mingw-w64 project | ||
| 5 | |||
| 6 | See the AUTHORS file for the list of contributors to the mingw-w64 project. | ||
| 7 | |||
| 8 | This license has been certified as open source. It has also been designated | ||
| 9 | as GPL compatible by the Free Software Foundation (FSF). | ||
| 10 | |||
| 11 | Redistribution and use in source and binary forms, with or without | ||
| 12 | modification, are permitted provided that the following conditions are met: | ||
| 13 | |||
| 14 | 1. Redistributions in source code must retain the accompanying copyright | ||
| 15 | notice, this list of conditions, and the following disclaimer. | ||
| 16 | 2. Redistributions in binary form must reproduce the accompanying | ||
| 17 | copyright notice, this list of conditions, and the following disclaimer | ||
| 18 | in the documentation and/or other materials provided with the | ||
| 19 | distribution. | ||
| 20 | 3. Names of the copyright holders must not be used to endorse or promote | ||
| 21 | products derived from this software without prior written permission | ||
| 22 | from the copyright holders. | ||
| 23 | 4. The right to distribute this software or to use it for any purpose does | ||
| 24 | not give you the right to use Servicemarks (sm) or Trademarks (tm) of | ||
| 25 | the copyright holders. Use of them is covered by separate agreement | ||
| 26 | with the copyright holders. | ||
| 27 | 5. If any files are modified, you must cause the modified files to carry | ||
| 28 | prominent notices stating that you changed the files and the date of | ||
| 29 | any change. | ||
| 30 | |||
| 31 | Disclaimer | ||
| 32 | |||
| 33 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED | ||
| 34 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
| 35 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | ||
| 36 | EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 37 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
| 38 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, | ||
| 39 | OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
| 40 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
| 41 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, | ||
| 42 | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 43 | */ | ||
| 44 | |||
| 45 | #include <math.h> | ||
| 46 | |||
| 47 | double log2(double x) | ||
| 48 | { | ||
| 49 | return log(x) / 0.69314718246459960938; | ||
| 50 | } | ||
| 51 | |||
| 52 | float log2f(float x) | ||
| 53 | { | ||
| 54 | return logf(x) / 0.69314718246459960938f; | ||
| 55 | } | ||
| 56 | |||
| 57 | long double log2l(long double x) | ||
| 58 | { | ||
| 59 | #if defined(__arm__) || defined(_ARM_) | ||
| 60 | return log2(x); | ||
| 61 | #else | ||
| 62 | #error Not supported on your platform yet | ||
| 63 | #endif | ||
| 64 | } | ||
lib/libc/mingw/math/arm/scalbn.c deleted-64| ... | @@ -1,64 +0,0 @@ | ||
| 1 | /* | ||
| 2 | This Software is provided under the Zope Public License (ZPL) Version 2.1. | ||
| 3 | |||
| 4 | Copyright (c) 2014 by the mingw-w64 project | ||
| 5 | |||
| 6 | See the AUTHORS file for the list of contributors to the mingw-w64 project. | ||
| 7 | |||
| 8 | This license has been certified as open source. It has also been designated | ||
| 9 | as GPL compatible by the Free Software Foundation (FSF). | ||
| 10 | |||
| 11 | Redistribution and use in source and binary forms, with or without | ||
| 12 | modification, are permitted provided that the following conditions are met: | ||
| 13 | |||
| 14 | 1. Redistributions in source code must retain the accompanying copyright | ||
| 15 | notice, this list of conditions, and the following disclaimer. | ||
| 16 | 2. Redistributions in binary form must reproduce the accompanying | ||
| 17 | copyright notice, this list of conditions, and the following disclaimer | ||
| 18 | in the documentation and/or other materials provided with the | ||
| 19 | distribution. | ||
| 20 | 3. Names of the copyright holders must not be used to endorse or promote | ||
| 21 | products derived from this software without prior written permission | ||
| 22 | from the copyright holders. | ||
| 23 | 4. The right to distribute this software or to use it for any purpose does | ||
| 24 | not give you the right to use Servicemarks (sm) or Trademarks (tm) of | ||
| 25 | the copyright holders. Use of them is covered by separate agreement | ||
| 26 | with the copyright holders. | ||
| 27 | 5. If any files are modified, you must cause the modified files to carry | ||
| 28 | prominent notices stating that you changed the files and the date of | ||
| 29 | any change. | ||
| 30 | |||
| 31 | Disclaimer | ||
| 32 | |||
| 33 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED | ||
| 34 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
| 35 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | ||
| 36 | EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 37 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
| 38 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, | ||
| 39 | OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
| 40 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
| 41 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, | ||
| 42 | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 43 | */ | ||
| 44 | |||
| 45 | #include <math.h> | ||
| 46 | |||
| 47 | double scalbn(double x, int exp) | ||
| 48 | { | ||
| 49 | return x * exp2(exp); | ||
| 50 | } | ||
| 51 | |||
| 52 | float scalbnf(float x, int exp) | ||
| 53 | { | ||
| 54 | return x * exp2f(exp); | ||
| 55 | } | ||
| 56 | |||
| 57 | long double scalbnl(long double x, int exp) | ||
| 58 | { | ||
| 59 | #if defined(__arm__) || defined(_ARM_) | ||
| 60 | return scalbn(x, exp); | ||
| 61 | #else | ||
| 62 | #error Not supported on your platform yet | ||
| 63 | #endif | ||
| 64 | } | ||
lib/libc/mingw/math/arm/sincos.c deleted-29| ... | @@ -1,29 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <math.h> | ||
| 8 | |||
| 9 | void sincos (double __x, double *p_sin, double *p_cos) | ||
| 10 | { | ||
| 11 | *p_sin = sin(__x); | ||
| 12 | *p_cos = cos(__x); | ||
| 13 | } | ||
| 14 | |||
| 15 | void sincosf (float __x, float *p_sin, float *p_cos) | ||
| 16 | { | ||
| 17 | *p_sin = sinf(__x); | ||
| 18 | *p_cos = cosf(__x); | ||
| 19 | } | ||
| 20 | |||
| 21 | void sincosl (long double __x, long double *p_sin, long double *p_cos) | ||
| 22 | { | ||
| 23 | #if defined(__arm__) || defined(_ARM_) | ||
| 24 | *p_sin = sin(__x); | ||
| 25 | *p_cos = cos(__x); | ||
| 26 | #else | ||
| 27 | #error Not supported on your platform yet | ||
| 28 | #endif | ||
| 29 | } | ||
lib/libc/mingw/math/arm64/ceil.S deleted-16| ... | @@ -1,16 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"ceil.S" | ||
| 9 | 	.text | ||
| 10 | 	.align 2 | ||
| 11 | 	.globl __MINGW_USYMBOL(ceil) | ||
| 12 | 	.def	__MINGW_USYMBOL(ceil);	.scl	2;	.type	32;	.endef | ||
| 13 | |||
| 14 | __MINGW_USYMBOL(ceil): | ||
| 15 | 	frintp	d0, d0 | ||
| 16 | 	ret | ||
lib/libc/mingw/math/arm64/ceilf.S deleted-16| ... | @@ -1,16 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"ceilf.S" | ||
| 9 | 	.text | ||
| 10 | 	.align 2 | ||
| 11 | 	.globl __MINGW_USYMBOL(ceilf) | ||
| 12 | 	.def	__MINGW_USYMBOL(ceilf);	.scl	2;	.type	32;	.endef | ||
| 13 | |||
| 14 | __MINGW_USYMBOL(ceilf): | ||
| 15 | 	frintp	s0, s0 | ||
| 16 | 	ret | ||
lib/libc/mingw/math/arm64/ceill.S deleted-15| ... | @@ -1,15 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"ceill.S" | ||
| 9 | 	.text | ||
| 10 | 	.align 2 | ||
| 11 | 	.globl __MINGW_USYMBOL(ceill) | ||
| 12 | 	.def	__MINGW_USYMBOL(ceill);	.scl	2;	.type	32;	.endef | ||
| 13 | __MINGW_USYMBOL(ceill): | ||
| 14 | 	frintp	d0, d0 | ||
| 15 | 	ret | ||
lib/libc/mingw/math/arm64/copysignl.c deleted-11| ... | @@ -1,11 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <math.h> | ||
| 7 | |||
| 8 | long double copysignl(long double x, long double y) | ||
| 9 | { | ||
| 10 | return copysign(x, y); | ||
| 11 | } | ||
lib/libc/mingw/math/arm64/floor.S deleted-15| ... | @@ -1,15 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"floor.S" | ||
| 9 | 	.text | ||
| 10 | 	.p2align 2 | ||
| 11 | 	.globl __MINGW_USYMBOL(floor) | ||
| 12 | 	.def	__MINGW_USYMBOL(floor);	.scl	2;	.type	32;	.endef | ||
| 13 | __MINGW_USYMBOL(floor): | ||
| 14 | 	frintm	d0, d0 | ||
| 15 | 	ret | ||
lib/libc/mingw/math/arm64/floorf.S deleted-15| ... | @@ -1,15 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"floorf.S" | ||
| 9 | 	.text | ||
| 10 | 	.p2align 2 | ||
| 11 | 	.globl __MINGW_USYMBOL(floorf) | ||
| 12 | 	.def	__MINGW_USYMBOL(floorf);	.scl	2;	.type	32;	.endef | ||
| 13 | __MINGW_USYMBOL(floorf): | ||
| 14 | 	frintm	s0, s0 | ||
| 15 | 	ret | ||
lib/libc/mingw/math/arm64/floorl.S deleted-15| ... | @@ -1,15 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | 	.file	"floorl.S" | ||
| 9 | 	.text | ||
| 10 | 	.align 2 | ||
| 11 | 	.globl __MINGW_USYMBOL(floorl) | ||
| 12 | 	.def	__MINGW_USYMBOL(floorl);	.scl	2;	.type	32;	.endef | ||
| 13 | __MINGW_USYMBOL(floorl): | ||
| 14 | 	frintm	d0, d0 | ||
| 15 | 	ret | ||
lib/libc/mingw/math/arm64/ldexpl.c deleted-16| ... | @@ -1,16 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <math.h> | ||
| 8 | |||
| 9 | long double ldexpl(long double x, int n) | ||
| 10 | { | ||
| 11 | #if defined(__aarch64__) || defined(_ARM64_) | ||
| 12 | return ldexp(x, n); | ||
| 13 | #else | ||
| 14 | #error Not supported on your platform yet | ||
| 15 | #endif | ||
| 16 | } | ||
lib/libc/mingw/math/arm64/log2.c deleted-26| ... | @@ -1,26 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <math.h> | ||
| 8 | |||
| 9 | double log2(double x) | ||
| 10 | { | ||
| 11 | return log(x) / 0.69314718246459960938; | ||
| 12 | } | ||
| 13 | |||
| 14 | float log2f(float x) | ||
| 15 | { | ||
| 16 | return logf(x) / 0.69314718246459960938f; | ||
| 17 | } | ||
| 18 | |||
| 19 | long double log2l(long double x) | ||
| 20 | { | ||
| 21 | #if defined(__aarch64__) || defined(_ARM64_) | ||
| 22 | return log2(x); | ||
| 23 | #else | ||
| 24 | #error Not supported on your platform yet | ||
| 25 | #endif | ||
| 26 | } | ||
lib/libc/mingw/math/arm64/scalbn.c deleted-26| ... | @@ -1,26 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <math.h> | ||
| 8 | |||
| 9 | double scalbn(double x, int exp) | ||
| 10 | { | ||
| 11 | return x * exp2(exp); | ||
| 12 | } | ||
| 13 | |||
| 14 | float scalbnf(float x, int exp) | ||
| 15 | { | ||
| 16 | return x * exp2f(exp); | ||
| 17 | } | ||
| 18 | |||
| 19 | long double scalbnl(long double x, int exp) | ||
| 20 | { | ||
| 21 | #if defined(__aarch64__) || defined(_ARM64_) | ||
| 22 | return scalbn(x, exp); | ||
| 23 | #else | ||
| 24 | #error Not supported on your platform yet | ||
| 25 | #endif | ||
| 26 | } | ||
lib/libc/mingw/math/arm64/sincos.c deleted-29| ... | @@ -1,29 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <math.h> | ||
| 8 | |||
| 9 | void sincos (double __x, double *p_sin, double *p_cos) | ||
| 10 | { | ||
| 11 | *p_sin = sin(__x); | ||
| 12 | *p_cos = cos(__x); | ||
| 13 | } | ||
| 14 | |||
| 15 | void sincosf (float __x, float *p_sin, float *p_cos) | ||
| 16 | { | ||
| 17 | *p_sin = sinf(__x); | ||
| 18 | *p_cos = cosf(__x); | ||
| 19 | } | ||
| 20 | |||
| 21 | void sincosl (long double __x, long double *p_sin, long double *p_cos) | ||
| 22 | { | ||
| 23 | #if defined(__aarch64__) || defined(_ARM64_) | ||
| 24 | *p_sin = sin(__x); | ||
| 25 | *p_cos = cos(__x); | ||
| 26 | #else | ||
| 27 | #error Not supported on your platform yet | ||
| 28 | #endif | ||
| 29 | } | ||
lib/libc/mingw/math/coshl.c+11-1| ... | @@ -5,6 +5,15 @@ | ... | @@ -5,6 +5,15 @@ |
| 5 | */ | 5 | */ |
| 6 | #include "cephes_mconf.h" | 6 | #include "cephes_mconf.h" |
| 7 | 7 | ||
| 8 | #if defined(_ARM_) || defined(__arm__) || defined(_ARM64_) || defined(__aarch64__) | ||
| 9 | #include <math.h> | ||
| 10 | |||
| 11 | long double coshl(long double x) | ||
| 12 | { | ||
| 13 | return cosh(x); | ||
| 14 | } | ||
| 15 | #else | ||
| 16 | |||
| 8 | #ifndef _SET_ERRNO | 17 | #ifndef _SET_ERRNO |
| 9 | #define _SET_ERRNO(x) | 18 | #define _SET_ERRNO(x) |
| 10 | #endif | 19 | #endif |
| ... | @@ -21,7 +30,7 @@ long double coshl(long double x) | ... | @@ -21,7 +30,7 @@ long double coshl(long double x) |
| 21 | else if (x_class == FP_INFINITE) | 30 | else if (x_class == FP_INFINITE) |
| 22 | { | 31 | { |
| 23 | errno = ERANGE; | 32 | errno = ERANGE; |
| 24 | return x; | 33 | return INFINITY; |
| 25 | } | 34 | } |
| 26 | x = fabsl (x); | 35 | x = fabsl (x); |
| 27 | if (x > (MAXLOGL + LOGE2L)) | 36 | if (x > (MAXLOGL + LOGE2L)) |
| ... | @@ -43,3 +52,4 @@ long double coshl(long double x) | ... | @@ -43,3 +52,4 @@ long double coshl(long double x) |
| 43 | y = 0.5L * (y + 1.0L / y); | 52 | y = 0.5L * (y + 1.0L / y); |
| 44 | return y; | 53 | return y; |
| 45 | } | 54 | } |
| 55 | #endif |
lib/libc/mingw/math/erfl.c+15| ... | @@ -108,6 +108,17 @@ Copyright 1984, 1995 by Stephen L. Moshier | ... | @@ -108,6 +108,17 @@ Copyright 1984, 1995 by Stephen L. Moshier |
| 108 | 108 | ||
| 109 | long double erfl(long double x); | 109 | long double erfl(long double x); |
| 110 | 110 | ||
| 111 | #if defined(__arm__) || defined(_ARM_) || defined(__aarch64__) || defined(_ARM64_) | ||
| 112 | long double erfcl(long double x) | ||
| 113 | { | ||
| 114 | 	return erfc(x); | ||
| 115 | } | ||
| 116 | |||
| 117 | long double erfl(long double x) | ||
| 118 | { | ||
| 119 | 	return erf(x); | ||
| 120 | } | ||
| 121 | #else | ||
| 111 | /* erfc(x) = exp(-x^2) P(1/x)/Q(1/x) | 122 | /* erfc(x) = exp(-x^2) P(1/x)/Q(1/x) |
| 112 | 1/8 <= 1/x <= 1 | 123 | 1/8 <= 1/x <= 1 |
| 113 | Peak relative error 5.8e-21 */ | 124 | Peak relative error 5.8e-21 */ |
| ... | @@ -243,6 +254,9 @@ long double erfcl(long double a) | ... | @@ -243,6 +254,9 @@ long double erfcl(long double a) |
| 243 | 	if (isinf (a)) | 254 | 	if (isinf (a)) |
| 244 | 		return (signbit(a) ? 2.0 : 0.0); | 255 | 		return (signbit(a) ? 2.0 : 0.0); |
| 245 | 256 | ||
| 257 | 	if (isnan (a)) | ||
| 258 | 		return (a); | ||
| 259 | |||
| 246 | 	x = fabsl (a); | 260 | 	x = fabsl (a); |
| 247 | 261 | ||
| 248 | 	if (x < 1.0L) | 262 | 	if (x < 1.0L) |
| ... | @@ -301,3 +315,4 @@ long double erfl(long double x) | ... | @@ -301,3 +315,4 @@ long double erfl(long double x) |
| 301 | 	y = x * polevll(z, T, 6) / p1evll(z, U, 6); | 315 | 	y = x * polevll(z, T, 6) / p1evll(z, U, 6); |
| 302 | 	return (y); | 316 | 	return (y); |
| 303 | } | 317 | } |
| 318 | #endif |
lib/libc/mingw/math/fp_constsl.c+5| ... | @@ -4,6 +4,7 @@ | ... | @@ -4,6 +4,7 @@ |
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| 5 | */ | 5 | */ |
| 6 | #include "fp_consts.h" | 6 | #include "fp_consts.h" |
| 7 | #include <math.h> | ||
| 7 | 8 | ||
| 8 | const union _ieee_rep __QNANL = { __LONG_DOUBLE_QNAN_REP }; | 9 | const union _ieee_rep __QNANL = { __LONG_DOUBLE_QNAN_REP }; |
| 9 | const union _ieee_rep __SNANL = { __LONG_DOUBLE_SNAN_REP }; | 10 | const union _ieee_rep __SNANL = { __LONG_DOUBLE_SNAN_REP }; |
| ... | @@ -15,6 +16,10 @@ const union _ieee_rep __DENORML = { __LONG_DOUBLE_DENORM_REP }; | ... | @@ -15,6 +16,10 @@ const union _ieee_rep __DENORML = { __LONG_DOUBLE_DENORM_REP }; |
| 15 | long double nanl (const char *); | 16 | long double nanl (const char *); |
| 16 | long double nanl (const char * tagp __attribute__((unused)) ) | 17 | long double nanl (const char * tagp __attribute__((unused)) ) |
| 17 | { | 18 | { |
| 19 | #if defined(__arm__) || defined(_ARM_) || defined(__aarch64__) || defined(_ARM64_) | ||
| 20 | return nan(""); | ||
| 21 | #else | ||
| 18 | return __QNANL.ldouble_val; | 22 | return __QNANL.ldouble_val; |
| 23 | #endif | ||
| 19 | } | 24 | } |
| 20 | 25 |
lib/libc/mingw/math/fpclassifyl.c+6-6| ... | @@ -7,20 +7,20 @@ | ... | @@ -7,20 +7,20 @@ |
| 7 | 7 | ||
| 8 | int __fpclassifyl (long double _x){ | 8 | int __fpclassifyl (long double _x){ |
| 9 | #if defined(__x86_64__) || defined(_AMD64_) | 9 | #if defined(__x86_64__) || defined(_AMD64_) |
| 10 | __mingw_fp_types_t hlp; | 10 | __mingw_ldbl_type_t hlp; |
| 11 | unsigned int e; | 11 | unsigned int e; |
| 12 | hlp.ld = &_x; | 12 | hlp.x = _x; |
| 13 | e = hlp.ldt->lh.sign_exponent & 0x7fff; | 13 | e = hlp.lh.sign_exponent & 0x7fff; |
| 14 | if (!e) | 14 | if (!e) |
| 15 | { | 15 | { |
| 16 | unsigned int h = hlp.ldt->lh.high; | 16 | unsigned int h = hlp.lh.high; |
| 17 | if (!(hlp.ldt->lh.low | h)) | 17 | if (!(hlp.lh.low | h)) |
| 18 | return FP_ZERO; | 18 | return FP_ZERO; |
| 19 | else if (!(h & 0x80000000)) | 19 | else if (!(h & 0x80000000)) |
| 20 | return FP_SUBNORMAL; | 20 | return FP_SUBNORMAL; |
| 21 | } | 21 | } |
| 22 | else if (e == 0x7fff) | 22 | else if (e == 0x7fff) |
| 23 | return (((hlp.ldt->lh.high & 0x7fffffff) | hlp.ldt->lh.low) == 0 ? | 23 | return (((hlp.lh.high & 0x7fffffff) | hlp.lh.low) == 0 ? |
| 24 | 	 FP_INFINITE : FP_NAN); | 24 | 	 FP_INFINITE : FP_NAN); |
| 25 | return FP_NORMAL; | 25 | return FP_NORMAL; |
| 26 | #elif defined(__arm__) || defined(_ARM_) || defined(__aarch64__) || defined(_ARM64_) | 26 | #elif defined(__arm__) || defined(_ARM_) || defined(__aarch64__) || defined(_ARM64_) |
lib/libc/mingw/math/hypotl.c+2-3| ... | @@ -23,7 +23,6 @@ Direct inquiries to 30 Frost Street, Cambridge, MA 02140 | ... | @@ -23,7 +23,6 @@ Direct inquiries to 30 Frost Street, Cambridge, MA 02140 |
| 23 | by scalbnl to avoid duplicated range checks. | 23 | by scalbnl to avoid duplicated range checks. |
| 24 | */ | 24 | */ |
| 25 | 25 | ||
| 26 | extern long double __INFL; | ||
| 27 | #define PRECL 32 | 26 | #define PRECL 32 |
| 28 | 27 | ||
| 29 | long double | 28 | long double |
| ... | @@ -38,7 +37,7 @@ hypotl (long double x, long double y) | ... | @@ -38,7 +37,7 @@ hypotl (long double x, long double y) |
| 38 | { | 37 | { |
| 39 | /* Annex F.9.4.3, hypot returns +infinity if | 38 | /* Annex F.9.4.3, hypot returns +infinity if |
| 40 | either component is an infinity, even when the | 39 | either component is an infinity, even when the |
| 41 | other compoent is NaN. */ | 40 | other component is NaN. */ |
| 42 | return (isinf(xx) || isinf(yy)) ? INFINITY : NAN; | 41 | return (isinf(xx) || isinf(yy)) ? INFINITY : NAN; |
| 43 | } | 42 | } |
| 44 | 43 | ||
| ... | @@ -73,7 +72,7 @@ hypotl (long double x, long double y) | ... | @@ -73,7 +72,7 @@ hypotl (long double x, long double y) |
| 73 | if (exx > LDBL_MAX_EXP) | 72 | if (exx > LDBL_MAX_EXP) |
| 74 | { | 73 | { |
| 75 | errno = ERANGE; | 74 | errno = ERANGE; |
| 76 | return __INFL; | 75 | return INFINITY; |
| 77 | } | 76 | } |
| 78 | if (exx < LDBL_MIN_EXP) | 77 | if (exx < LDBL_MIN_EXP) |
| 79 | return 0.0L; | 78 | return 0.0L; |
lib/libc/mingw/math/isnanl.c+4-4| ... | @@ -9,12 +9,12 @@ int | ... | @@ -9,12 +9,12 @@ int |
| 9 | __isnanl (long double _x) | 9 | __isnanl (long double _x) |
| 10 | { | 10 | { |
| 11 | #if defined(__x86_64__) || defined(_AMD64_) | 11 | #if defined(__x86_64__) || defined(_AMD64_) |
| 12 | __mingw_fp_types_t ld; | 12 | __mingw_ldbl_type_t ld; |
| 13 | int xx, signexp; | 13 | int xx, signexp; |
| 14 | 14 | ||
| 15 | ld.ld = &_x; | 15 | ld.x = _x; |
| 16 | signexp = (ld.ldt->lh.sign_exponent & 0x7fff) << 1; | 16 | signexp = (ld.lh.sign_exponent & 0x7fff) << 1; |
| 17 | xx = (int) (ld.ldt->lh.low | (ld.ldt->lh.high & 0x7fffffffu)); /* explicit */ | 17 | xx = (int) (ld.lh.low | (ld.lh.high & 0x7fffffffu)); /* explicit */ |
| 18 | signexp |= (unsigned int) (xx | (-xx)) >> 31; | 18 | signexp |= (unsigned int) (xx | (-xx)) >> 31; |
| 19 | signexp = 0xfffe - signexp; | 19 | signexp = 0xfffe - signexp; |
| 20 | return (int) ((unsigned int) signexp) >> 16; | 20 | return (int) ((unsigned int) signexp) >> 16; |
lib/libc/mingw/math/lgammaf.c+1-1| ... | @@ -52,7 +52,7 @@ float __lgammaf_r(float x, int* sgngamf) | ... | @@ -52,7 +52,7 @@ float __lgammaf_r(float x, int* sgngamf) |
| 52 | 52 | ||
| 53 | #ifdef INFINITIES | 53 | #ifdef INFINITIES |
| 54 | 	if (!isfinite(x)) | 54 | 	if (!isfinite(x)) |
| 55 | 		return (x); | 55 | 		return (INFINITY); |
| 56 | #endif | 56 | #endif |
| 57 | 57 | ||
| 58 | 	if (x < 0.0) | 58 | 	if (x < 0.0) |
lib/libc/mingw/math/lgammal.c+11-2| ... | @@ -5,6 +5,15 @@ | ... | @@ -5,6 +5,15 @@ |
| 5 | */ | 5 | */ |
| 6 | #include "cephes_mconf.h" | 6 | #include "cephes_mconf.h" |
| 7 | 7 | ||
| 8 | #if defined(__arm__) || defined(_ARM_) || defined(__aarch64__) || defined(_ARM64_) | ||
| 9 | double lgamma(double x); | ||
| 10 | |||
| 11 | long double lgammal(long double x) | ||
| 12 | { | ||
| 13 | 	return lgamma(x); | ||
| 14 | } | ||
| 15 | #else | ||
| 16 | |||
| 8 | #if UNK | 17 | #if UNK |
| 9 | static uLD S[9] = { | 18 | static uLD S[9] = { |
| 10 | { { -1.193945051381510095614E-3L } }, | 19 | { { -1.193945051381510095614E-3L } }, |
| ... | @@ -216,7 +225,7 @@ long double __lgammal_r(long double x, int* sgngaml) | ... | @@ -216,7 +225,7 @@ long double __lgammal_r(long double x, int* sgngaml) |
| 216 | 	*sgngaml = 1; | 225 | 	*sgngaml = 1; |
| 217 | #ifdef NANS | 226 | #ifdef NANS |
| 218 | 	if (isnanl(x)) | 227 | 	if (isnanl(x)) |
| 219 | 		return(NANL); | 228 | 		return x; |
| 220 | #endif | 229 | #endif |
| 221 | #ifdef INFINITIES | 230 | #ifdef INFINITIES |
| 222 | 	if (!isfinitel(x)) | 231 | 	if (!isfinitel(x)) |
| ... | @@ -334,4 +343,4 @@ long double lgammal(long double x) | ... | @@ -334,4 +343,4 @@ long double lgammal(long double x) |
| 334 | { | 343 | { |
| 335 | 	return (__lgammal_r (x, &signgam)); | 344 | 	return (__lgammal_r (x, &signgam)); |
| 336 | } | 345 | } |
| 337 | 346 | #endif |
lib/libc/mingw/math/llrint.c+17-2| ... | @@ -19,8 +19,23 @@ long long llrint (double x) | ... | @@ -19,8 +19,23 @@ long long llrint (double x) |
| 19 | retval = (long long)ceil(x); | 19 | retval = (long long)ceil(x); |
| 20 | else if (mode == FE_TOWARDZERO) | 20 | else if (mode == FE_TOWARDZERO) |
| 21 | retval = x >= 0 ? (long long)floor(x) : (long long)ceil(x); | 21 | retval = x >= 0 ? (long long)floor(x) : (long long)ceil(x); |
| 22 | else | 22 | else { |
| 23 | retval = x >= 0 ? (long long)floor(x + 0.5) : (long long)ceil(x - 0.5); | 23 | // Break `x` into integral and fractional parts. |
| 24 | double intg, frac; | ||
| 25 | frac = modf(x, &intg); | ||
| 26 | frac = fabs(frac); | ||
| 27 | // Convert the truncated integral part to an integer. | ||
| 28 | retval = intg; | ||
| 29 | if (frac < 0.5) { | ||
| 30 | // Round towards zero. | ||
| 31 | } else if (frac > 0.5) { | ||
| 32 | // Round towards infinities. | ||
| 33 | retval += signbit(x) ? -1 : 1; | ||
| 34 | } else { | ||
| 35 | // Round to the nearest even number. | ||
| 36 | retval += retval % 2; | ||
| 37 | } | ||
| 38 | } | ||
| 24 | #endif | 39 | #endif |
| 25 | return retval; | 40 | return retval; |
| 26 | } | 41 | } |
lib/libc/mingw/math/llrintf.c+17-2| ... | @@ -19,8 +19,23 @@ long long llrintf (float x) | ... | @@ -19,8 +19,23 @@ long long llrintf (float x) |
| 19 | retval = (long long)ceilf(x); | 19 | retval = (long long)ceilf(x); |
| 20 | else if (mode == FE_TOWARDZERO) | 20 | else if (mode == FE_TOWARDZERO) |
| 21 | retval = x >= 0 ? (long long)floorf(x) : (long long)ceilf(x); | 21 | retval = x >= 0 ? (long long)floorf(x) : (long long)ceilf(x); |
| 22 | else | 22 | else { |
| 23 | retval = x >= 0 ? (long long)floorf(x + 0.5) : (long long)ceilf(x - 0.5); | 23 | // Break `x` into integral and fractional parts. |
| 24 | float intg, frac; | ||
| 25 | frac = modff(x, &intg); | ||
| 26 | frac = fabsf(frac); | ||
| 27 | // Convert the truncated integral part to an integer. | ||
| 28 | retval = intg; | ||
| 29 | if (frac < 0.5) { | ||
| 30 | // Round towards zero. | ||
| 31 | } else if (frac > 0.5) { | ||
| 32 | // Round towards infinities. | ||
| 33 | retval += signbit(x) ? -1 : 1; | ||
| 34 | } else { | ||
| 35 | // Round to the nearest even number. | ||
| 36 | retval += retval % 2; | ||
| 37 | } | ||
| 38 | } | ||
| 24 | #endif | 39 | #endif |
| 25 | return retval; | 40 | return retval; |
| 26 | } | 41 | } |
lib/libc/mingw/math/llrintl.c+17-2| ... | @@ -19,8 +19,23 @@ long long llrintl (long double x) | ... | @@ -19,8 +19,23 @@ long long llrintl (long double x) |
| 19 | retval = (long long)ceil(x); | 19 | retval = (long long)ceil(x); |
| 20 | else if (mode == FE_TOWARDZERO) | 20 | else if (mode == FE_TOWARDZERO) |
| 21 | retval = x >= 0 ? (long long)floor(x) : (long long)ceil(x); | 21 | retval = x >= 0 ? (long long)floor(x) : (long long)ceil(x); |
| 22 | else | 22 | else { |
| 23 | retval = x >= 0 ? (long long)floor(x + 0.5) : (long long)ceil(x - 0.5); | 23 | // Break `x` into integral and fractional parts. |
| 24 | long double intg, frac; | ||
| 25 | frac = modfl(x, &intg); | ||
| 26 | frac = fabsl(frac); | ||
| 27 | // Convert the truncated integral part to an integer. | ||
| 28 | retval = intg; | ||
| 29 | if (frac < 0.5) { | ||
| 30 | // Round towards zero. | ||
| 31 | } else if (frac > 0.5) { | ||
| 32 | // Round towards infinities. | ||
| 33 | retval += signbit(x) ? -1 : 1; | ||
| 34 | } else { | ||
| 35 | // Round to the nearest even number. | ||
| 36 | retval += retval % 2; | ||
| 37 | } | ||
| 38 | } | ||
| 24 | #endif | 39 | #endif |
| 25 | return retval; | 40 | return retval; |
| 26 | } | 41 | } |
lib/libc/mingw/math/signbitl.c+4-21| ... | @@ -3,33 +3,16 @@ | ... | @@ -3,33 +3,16 @@ |
| 3 | * No warranty is given; refer to the file DISCLAIMER within this package. | 3 | * No warranty is given; refer to the file DISCLAIMER within this package. |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | typedef union __mingw_ldbl_type_t | 6 | #include <math.h> |
| 7 | { | ||
| 8 | long double x; | ||
| 9 | __extension__ struct { | ||
| 10 | unsigned int low, high; | ||
| 11 | int sign_exponent : 16; | ||
| 12 | int res1 : 16; | ||
| 13 | int res0 : 32; | ||
| 14 | } lh; | ||
| 15 | } __mingw_ldbl_type_t; | ||
| 16 | |||
| 17 | typedef union __mingw_fp_types_t | ||
| 18 | { | ||
| 19 | long double *ld; | ||
| 20 | __mingw_ldbl_type_t *ldt; | ||
| 21 | } __mingw_fp_types_t; | ||
| 22 | 7 | ||
| 23 | #define __FP_SIGNBIT 0x0200 | 8 | #define __FP_SIGNBIT 0x0200 |
| 24 | extern int __signbit (double x); | ||
| 25 | int __signbitl (long double x); | ||
| 26 | 9 | ||
| 27 | 10 | ||
| 28 | int __signbitl (long double x) { | 11 | int __signbitl (long double x) { |
| 29 | #if defined(__x86_64__) || defined(_AMD64_) | 12 | #if defined(__x86_64__) || defined(_AMD64_) |
| 30 | __mingw_fp_types_t ld; | 13 | __mingw_ldbl_type_t ld; |
| 31 | ld.ld = &x; | 14 | ld.x = x; |
| 32 | return ((ld.ldt->lh.sign_exponent & 0x8000) != 0); | 15 | return ((ld.lh.sign_exponent & 0x8000) != 0); |
| 33 | #elif defined(__arm__) || defined(_ARM_) || defined(__aarch64__) || defined(_ARM64_) | 16 | #elif defined(__arm__) || defined(_ARM_) || defined(__aarch64__) || defined(_ARM64_) |
| 34 | return __signbit(x); | 17 | return __signbit(x); |
| 35 | #elif defined(__i386__) || defined(_X86_) | 18 | #elif defined(__i386__) || defined(_X86_) |
lib/libc/mingw/math/sinhl.c+10-1| ... | @@ -6,6 +6,15 @@ | ... | @@ -6,6 +6,15 @@ |
| 6 | #include "cephes_mconf.h" | 6 | #include "cephes_mconf.h" |
| 7 | #include <errno.h> | 7 | #include <errno.h> |
| 8 | 8 | ||
| 9 | #if defined(_ARM_) || defined(__arm__) || defined(_ARM64_) || defined(__aarch64__) | ||
| 10 | #include <math.h> | ||
| 11 | |||
| 12 | long double sinhl(long double x) | ||
| 13 | { | ||
| 14 | return sinh(x); | ||
| 15 | } | ||
| 16 | #else | ||
| 17 | |||
| 9 | #ifdef UNK | 18 | #ifdef UNK |
| 10 | static uLD P[] = { | 19 | static uLD P[] = { |
| 11 | { { 1.7550769032975377032681E-6L } }, | 20 | { { 1.7550769032975377032681E-6L } }, |
| ... | @@ -97,4 +106,4 @@ long double sinhl(long double x) | ... | @@ -97,4 +106,4 @@ long double sinhl(long double x) |
| 97 | a *= a; | 106 | a *= a; |
| 98 | return (x + x * a * (polevll(a,P,3)/polevll(a,Q,4))); | 107 | return (x + x * a * (polevll(a,P,3)/polevll(a,Q,4))); |
| 99 | } | 108 | } |
| 100 | 109 | #endif |
lib/libc/mingw/math/tanhl.c+10-1| ... | @@ -8,6 +8,15 @@ | ... | @@ -8,6 +8,15 @@ |
| 8 | #define _SET_ERRNO(x) | 8 | #define _SET_ERRNO(x) |
| 9 | #endif | 9 | #endif |
| 10 | 10 | ||
| 11 | #if defined(_ARM_) || defined(__arm__) || defined(_ARM64_) || defined(__aarch64__) | ||
| 12 | #include <math.h> | ||
| 13 | |||
| 14 | long double tanhl(long double x) | ||
| 15 | { | ||
| 16 | return tanh(x); | ||
| 17 | } | ||
| 18 | #else | ||
| 19 | |||
| 11 | #ifdef UNK | 20 | #ifdef UNK |
| 12 | static uLD P[] = { | 21 | static uLD P[] = { |
| 13 | { { -6.8473739392677100872869E-5L } }, | 22 | { { -6.8473739392677100872869E-5L } }, |
| ... | @@ -89,4 +98,4 @@ long double tanhl(long double x) | ... | @@ -89,4 +98,4 @@ long double tanhl(long double x) |
| 89 | } | 98 | } |
| 90 | return (z); | 99 | return (z); |
| 91 | } | 100 | } |
| 92 | 101 | #endif |
lib/libc/mingw/math/tgamma.c+5-2| ... | @@ -168,6 +168,9 @@ double __tgamma_r(double x, int *sgngam) | ... | @@ -168,6 +168,9 @@ double __tgamma_r(double x, int *sgngam) |
| 168 | 		return (x); | 168 | 		return (x); |
| 169 | #endif | 169 | #endif |
| 170 | #endif | 170 | #endif |
| 171 | 	if (x == 0.0) | ||
| 172 | 		return copysign(HUGE_VAL, x); | ||
| 173 | |||
| 171 | 	q = fabs(x); | 174 | 	q = fabs(x); |
| 172 | 175 | ||
| 173 | 	if (q > 33.0) | 176 | 	if (q > 33.0) |
| ... | @@ -180,8 +183,8 @@ double __tgamma_r(double x, int *sgngam) | ... | @@ -180,8 +183,8 @@ double __tgamma_r(double x, int *sgngam) |
| 180 | gsing: | 183 | gsing: |
| 181 | 				_SET_ERRNO(EDOM); | 184 | 				_SET_ERRNO(EDOM); |
| 182 | 				mtherr("tgamma", SING); | 185 | 				mtherr("tgamma", SING); |
| 183 | #ifdef INFINITIES | 186 | #ifdef NANS |
| 184 | 				return (INFINITY); | 187 | 				return (NAN); |
| 185 | #else | 188 | #else |
| 186 | 				return (MAXNUM); | 189 | 				return (MAXNUM); |
| 187 | #endif | 190 | #endif |
lib/libc/mingw/math/tgammaf.c+4-2| ... | @@ -82,6 +82,8 @@ float __tgammaf_r( float x, int* sgngamf) | ... | @@ -82,6 +82,8 @@ float __tgammaf_r( float x, int* sgngamf) |
| 82 | 		return (x); | 82 | 		return (x); |
| 83 | #endif | 83 | #endif |
| 84 | #endif | 84 | #endif |
| 85 | 	if (x == 0.0) | ||
| 86 | 		return copysignf(HUGE_VALF, x); | ||
| 85 | 87 | ||
| 86 | 	*sgngamf = 1; | 88 | 	*sgngamf = 1; |
| 87 | 	negative = 0; | 89 | 	negative = 0; |
| ... | @@ -96,8 +98,8 @@ float __tgammaf_r( float x, int* sgngamf) | ... | @@ -96,8 +98,8 @@ float __tgammaf_r( float x, int* sgngamf) |
| 96 | gsing: | 98 | gsing: |
| 97 | 			_SET_ERRNO(EDOM); | 99 | 			_SET_ERRNO(EDOM); |
| 98 | 			mtherr("tgammaf", SING); | 100 | 			mtherr("tgammaf", SING); |
| 99 | #ifdef INFINITIES | 101 | #ifdef NANS |
| 100 | 			return (INFINITYF); | 102 | 			return (NAN); |
| 101 | #else | 103 | #else |
| 102 | 			return (MAXNUMF); | 104 | 			return (MAXNUMF); |
| 103 | #endif | 105 | #endif |
lib/libc/mingw/math/tgammal.c+15-4| ... | @@ -5,6 +5,14 @@ | ... | @@ -5,6 +5,14 @@ |
| 5 | */ | 5 | */ |
| 6 | #include "cephes_mconf.h" | 6 | #include "cephes_mconf.h" |
| 7 | 7 | ||
| 8 | #if defined(__arm__) || defined(_ARM_) || defined(__aarch64__) || defined(_ARM64_) | ||
| 9 | double tgamma(double x); | ||
| 10 | |||
| 11 | long double tgammal(long double x) | ||
| 12 | { | ||
| 13 | 	return tgamma(x); | ||
| 14 | } | ||
| 15 | #else | ||
| 8 | /* | 16 | /* |
| 9 | gamma(x+2) = gamma(x+2) P(x)/Q(x) | 17 | gamma(x+2) = gamma(x+2) P(x)/Q(x) |
| 10 | 0 <= x <= 1 | 18 | 0 <= x <= 1 |
| ... | @@ -272,7 +280,7 @@ long double __tgammal_r(long double x, int* sgngaml) | ... | @@ -272,7 +280,7 @@ long double __tgammal_r(long double x, int* sgngaml) |
| 272 | 	*sgngaml = 1; | 280 | 	*sgngaml = 1; |
| 273 | #ifdef NANS | 281 | #ifdef NANS |
| 274 | 	if (isnanl(x)) | 282 | 	if (isnanl(x)) |
| 275 | 		return (NANL); | 283 | 		return x; |
| 276 | #endif | 284 | #endif |
| 277 | #ifdef INFINITIES | 285 | #ifdef INFINITIES |
| 278 | #ifdef NANS | 286 | #ifdef NANS |
| ... | @@ -285,6 +293,9 @@ long double __tgammal_r(long double x, int* sgngaml) | ... | @@ -285,6 +293,9 @@ long double __tgammal_r(long double x, int* sgngaml) |
| 285 | 		return (x); | 293 | 		return (x); |
| 286 | #endif | 294 | #endif |
| 287 | #endif | 295 | #endif |
| 296 | 	if (x == 0.0L) | ||
| 297 | 		return copysignl(HUGE_VALL, x); | ||
| 298 | |||
| 288 | 	q = fabsl(x); | 299 | 	q = fabsl(x); |
| 289 | 300 | ||
| 290 | 	if (q > 13.0L) | 301 | 	if (q > 13.0L) |
| ... | @@ -299,8 +310,8 @@ long double __tgammal_r(long double x, int* sgngaml) | ... | @@ -299,8 +310,8 @@ long double __tgammal_r(long double x, int* sgngaml) |
| 299 | gsing: | 310 | gsing: |
| 300 | 				_SET_ERRNO(EDOM); | 311 | 				_SET_ERRNO(EDOM); |
| 301 | 				mtherr("tgammal", SING); | 312 | 				mtherr("tgammal", SING); |
| 302 | #ifdef INFINITIES | 313 | #ifdef NANS |
| 303 | 				return (INFINITYL); | 314 | 				return (NAN); |
| 304 | #else | 315 | #else |
| 305 | 				return (*sgngaml * MAXNUML); | 316 | 				return (*sgngaml * MAXNUML); |
| 306 | #endif | 317 | #endif |
| ... | @@ -390,4 +401,4 @@ long double tgammal(long double x) | ... | @@ -390,4 +401,4 @@ long double tgammal(long double x) |
| 390 | 	int local_sgngaml = 0; | 401 | 	int local_sgngaml = 0; |
| 391 | 	return (__tgammal_r(x, &local_sgngaml)); | 402 | 	return (__tgammal_r(x, &local_sgngaml)); |
| 392 | } | 403 | } |
| 393 | 404 | #endif |
lib/libc/mingw/math/x86/acosh.def.h+7-3| ... | @@ -50,15 +50,19 @@ __FLT_TYPE | ... | @@ -50,15 +50,19 @@ __FLT_TYPE |
| 50 | __FLT_ABI(acosh) (__FLT_TYPE x) | 50 | __FLT_ABI(acosh) (__FLT_TYPE x) |
| 51 | { | 51 | { |
| 52 | int x_class = fpclassify (x); | 52 | int x_class = fpclassify (x); |
| 53 | if (x_class == FP_NAN || x < __FLT_CST(1.0)) | 53 | if (x_class == FP_NAN) |
| 54 | { | ||
| 55 | __FLT_RPT_DOMAIN ("acosh", x, 0.0, x); | ||
| 56 | return x; | ||
| 57 | } | ||
| 58 | else if (x < __FLT_CST(1.0)) | ||
| 54 | { | 59 | { |
| 55 | __FLT_RPT_DOMAIN ("acosh", x, 0.0, __FLT_NAN); | 60 | __FLT_RPT_DOMAIN ("acosh", x, 0.0, __FLT_NAN); |
| 56 | return __FLT_NAN; | 61 | return __FLT_NAN; |
| 57 | } | 62 | } |
| 58 | else if (x_class == FP_INFINITE) | 63 | else if (x_class == FP_INFINITE) |
| 59 | { | 64 | { |
| 60 | __FLT_RPT_DOMAIN ("acosh", x, 0.0, __FLT_NAN); | 65 | return INFINITY; |
| 61 | return __FLT_NAN; | ||
| 62 | } | 66 | } |
| 63 | 67 | ||
| 64 | if (x > __FLT_CST(0x1p32)) | 68 | if (x > __FLT_CST(0x1p32)) |
lib/libc/mingw/math/x86/frexpl.S deleted-130| ... | @@ -1,130 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <_mingw_mac.h> | ||
| 7 | |||
| 8 | /* | ||
| 9 | * frexpl(long double x, int* expnt) extracts the exponent from x. | ||
| 10 | * It returns an integer power of two to expnt and the significand | ||
| 11 | * between 0.5 and 1 to y. Thus x = y * 2**expn. | ||
| 12 | */ | ||
| 13 | #ifdef __x86_64__ | ||
| 14 | 	.align 8 | ||
| 15 | #else | ||
| 16 | 	.align 2 | ||
| 17 | #endif | ||
| 18 | .globl __MINGW_USYMBOL(frexpl) | ||
| 19 | __MINGW_USYMBOL(frexpl): | ||
| 20 | #ifdef __x86_64__ | ||
| 21 | 	pushq %rbp | ||
| 22 | 	movq %rsp,%rbp | ||
| 23 | 	subq $48,%rsp | ||
| 24 | 	pushq %rsi | ||
| 25 | 	fldt (%rdx) | ||
| 26 | 	movq %rcx,%r9 | ||
| 27 | 	fld %st(0) | ||
| 28 | 	fstpt -12(%rbp) | ||
| 29 | 	leaq -4(%rbp),%rcx | ||
| 30 | 	movw -4(%rbp),%dx | ||
| 31 | 	andl $32767,%edx | ||
| 32 | 	jne L25 | ||
| 33 | 	fldz | ||
| 34 | 	fucompp | ||
| 35 | 	fnstsw %ax | ||
| 36 | 	andb $68,%ah | ||
| 37 | 	xorb $64,%ah | ||
| 38 | 	jne L21 | ||
| 39 | 	movl $0,(%r8) | ||
| 40 | 	fldz | ||
| 41 | 	jmp L24 | ||
| 42 | 	.align 4,0x90 | ||
| 43 | 	.align 4,0x90 | ||
| 44 | L21: | ||
| 45 | 	fldt -12(%rbp) | ||
| 46 | 	fadd %st(0),%st | ||
| 47 | 	fstpt -12(%rbp) | ||
| 48 | 	decl %edx | ||
| 49 | 	movw (%rcx),%si | ||
| 50 | 	andl $32767,%esi | ||
| 51 | 	jne L22 | ||
| 52 | 	cmpl $-66,%edx | ||
| 53 | 	jg L21 | ||
| 54 | L22: | ||
| 55 | 	add %esi,%edx | ||
| 56 | 	jmp L19 | ||
| 57 | 	.align 2,0x90 | ||
| 58 | L25: | ||
| 59 | 	fstp %st(0) | ||
| 60 | L19: | ||
| 61 | 	addl $-16382,%edx | ||
| 62 | 	movl %edx,(%r8) | ||
| 63 | 	movw (%rcx),%ax | ||
| 64 | 	andl $-32768,%eax | ||
| 65 | 	orl $16382,%eax | ||
| 66 | 	movw %ax,(%rcx) | ||
| 67 | 	fldt -12(%rbp) | ||
| 68 | L24: | ||
| 69 | 	popq %rsi | ||
| 70 | 	movq	%r9,%rax | ||
| 71 | 	movq	$0,8(%r9) | ||
| 72 | 	fstpt	(%r9) | ||
| 73 | 	leave | ||
| 74 | 	ret | ||
| 75 | #else | ||
| 76 | 	pushl %ebp | ||
| 77 | 	movl %esp,%ebp | ||
| 78 | 	subl $24,%esp | ||
| 79 | 	pushl %esi | ||
| 80 | 	pushl %ebx | ||
| 81 | 	fldt 8(%ebp) | ||
| 82 | 	movl 20(%ebp),%ebx | ||
| 83 | 	fld %st(0) | ||
| 84 | 	fstpt -12(%ebp) | ||
| 85 | 	leal -4(%ebp),%ecx | ||
| 86 | 	movw -4(%ebp),%dx | ||
| 87 | 	andl $32767,%edx | ||
| 88 | 	jne L25 | ||
| 89 | 	fldz | ||
| 90 | 	fucompp | ||
| 91 | 	fnstsw %ax | ||
| 92 | 	andb $68,%ah | ||
| 93 | 	xorb $64,%ah | ||
| 94 | 	jne L21 | ||
| 95 | 	movl $0,(%ebx) | ||
| 96 | 	fldz | ||
| 97 | 	jmp L24 | ||
| 98 | 	.align 2,0x90 | ||
| 99 | 	.align 2,0x90 | ||
| 100 | L21: | ||
| 101 | 	fldt -12(%ebp) | ||
| 102 | 	fadd %st(0),%st | ||
| 103 | 	fstpt -12(%ebp) | ||
| 104 | 	decl %edx | ||
| 105 | 	movw (%ecx),%si | ||
| 106 | 	andl $32767,%esi | ||
| 107 | 	jne L22 | ||
| 108 | 	cmpl $-66,%edx | ||
| 109 | 	jg L21 | ||
| 110 | L22: | ||
| 111 | 	addl %esi,%edx | ||
| 112 | 	jmp L19 | ||
| 113 | 	.align 2,0x90 | ||
| 114 | L25: | ||
| 115 | 	fstp %st(0) | ||
| 116 | L19: | ||
| 117 | 	addl $-16382,%edx | ||
| 118 | 	movl %edx,(%ebx) | ||
| 119 | 	movw (%ecx),%ax | ||
| 120 | 	andl $-32768,%eax | ||
| 121 | 	orl $16382,%eax | ||
| 122 | 	movw %ax,(%ecx) | ||
| 123 | 	fldt -12(%ebp) | ||
| 124 | L24: | ||
| 125 | 	leal -32(%ebp),%esp | ||
| 126 | 	popl %ebx | ||
| 127 | 	popl %esi | ||
| 128 | 	leave | ||
| 129 | 	ret | ||
| 130 | #endif | ||
lib/libc/mingw/math/x86/ilogb.S+4-10| ... | @@ -45,9 +45,7 @@ ilogb (double x) | ... | @@ -45,9 +45,7 @@ ilogb (double x) |
| 45 | if (hx < 0x7ff00000) | 45 | if (hx < 0x7ff00000) |
| 46 | return (hx >> 20) - 1023; | 46 | return (hx >> 20) - 1023; |
| 47 | lx = hlp.lh.low; | 47 | lx = hlp.lh.low; |
| 48 | if (((hx ^ 0x7ff00000) | lx) == 0) | 48 | return 0x7fffffff; |
| 49 | return 0x7fffffff; | ||
| 50 | return 0x80000000; | ||
| 51 | } */ | 49 | } */ |
| 52 | subq $24, %rsp | 50 | subq $24, %rsp |
| 53 | .seh_stackalloc 24 | 51 | .seh_stackalloc 24 |
| ... | @@ -80,13 +78,7 @@ ilogb (double x) | ... | @@ -80,13 +78,7 @@ ilogb (double x) |
| 80 | .L2: | 78 | .L2: |
| 81 | cmpl $2146435071, %edx | 79 | cmpl $2146435071, %edx |
| 82 | jle .L13 | 80 | jle .L13 |
| 83 | movsd %xmm0, 8(%rsp) | 81 | movl $2147483647, %eax |
| 84 | movq 8(%rsp), %rax | ||
| 85 | xorl $2146435072, %edx | ||
| 86 | orl %eax, %edx | ||
| 87 | cmpl $1, %edx | ||
| 88 | sbbl %eax, %eax | ||
| 89 | addl $-2147483648, %eax | ||
| 90 | .L3: | 82 | .L3: |
| 91 | addq $24, %rsp | 83 | addq $24, %rsp |
| 92 | ret | 84 | ret |
| ... | @@ -126,6 +118,8 @@ ilogb (double x) | ... | @@ -126,6 +118,8 @@ ilogb (double x) |
| 126 | 	andb %ah, %dh | 118 | 	andb %ah, %dh |
| 127 | 	cmpb $0x05, %dh | 119 | 	cmpb $0x05, %dh |
| 128 | 	je 1f		/* Is +-Inf, jump. */ | 120 | 	je 1f		/* Is +-Inf, jump. */ |
| 121 | 	cmpb $0x01, %dh | ||
| 122 | 	je 1f		/* Is NaN, jump. */ | ||
| 129 | 123 | ||
| 130 | 	fxtract | 124 | 	fxtract |
| 131 | 	pushl	%eax | 125 | 	pushl	%eax |
lib/libc/mingw/math/x86/ilogbf.S+3-6| ... | @@ -34,9 +34,7 @@ ilogbf (float x) | ... | @@ -34,9 +34,7 @@ ilogbf (float x) |
| 34 | } | 34 | } |
| 35 | if (hx < 0x7f800000) | 35 | if (hx < 0x7f800000) |
| 36 | return (hx >> 23) - 127; | 36 | return (hx >> 23) - 127; |
| 37 | if (hx == 0x7f800000) | 37 | return 0x7fffffff; |
| 38 | return 0x7fffffff; | ||
| 39 | return 0x80000000; | ||
| 40 | } */ | 38 | } */ |
| 41 | subq $24, %rsp | 39 | subq $24, %rsp |
| 42 | .seh_stackalloc 24 | 40 | .seh_stackalloc 24 |
| ... | @@ -65,10 +63,7 @@ ilogbf (float x) | ... | @@ -65,10 +63,7 @@ ilogbf (float x) |
| 65 | .L2: | 63 | .L2: |
| 66 | cmpl $2139095039, %edx | 64 | cmpl $2139095039, %edx |
| 67 | jle .L10 | 65 | jle .L10 |
| 68 | cmpl $2139095040, %edx | ||
| 69 | movl $2147483647, %eax | 66 | movl $2147483647, %eax |
| 70 | movl $-2147483648, %edx | ||
| 71 | cmovne %edx, %eax | ||
| 72 | addq $24, %rsp | 67 | addq $24, %rsp |
| 73 | ret | 68 | ret |
| 74 | .p2align 4,,10 | 69 | .p2align 4,,10 |
| ... | @@ -92,6 +87,8 @@ ilogbf (float x) | ... | @@ -92,6 +87,8 @@ ilogbf (float x) |
| 92 | 	andb %ah, %dh | 87 | 	andb %ah, %dh |
| 93 | 	cmpb $0x05, %dh | 88 | 	cmpb $0x05, %dh |
| 94 | 	je 1f		/* Is +-Inf, jump. */ | 89 | 	je 1f		/* Is +-Inf, jump. */ |
| 90 | 	cmpb $0x01, %dh | ||
| 91 | 	je 1f		/* Is Nan, jump. */ | ||
| 95 | 92 | ||
| 96 | 	fxtract | 93 | 	fxtract |
| 97 | 	pushl	%eax | 94 | 	pushl	%eax |
lib/libc/mingw/math/x86/ilogbl.S+4| ... | @@ -23,6 +23,8 @@ __MINGW_USYMBOL(ilogbl): | ... | @@ -23,6 +23,8 @@ __MINGW_USYMBOL(ilogbl): |
| 23 | 	andb %ah, %dh | 23 | 	andb %ah, %dh |
| 24 | 	cmpb $0x05, %dh | 24 | 	cmpb $0x05, %dh |
| 25 | 	je 1f		/* Is +-Inf, jump. */ | 25 | 	je 1f		/* Is +-Inf, jump. */ |
| 26 | 	cmpb $0x01, %dh | ||
| 27 | 	je 1f		/* Is NaN, jump. */ | ||
| 26 | 28 | ||
| 27 | 	fxtract | 29 | 	fxtract |
| 28 | 	pushq	%rax | 30 | 	pushq	%rax |
| ... | @@ -48,6 +50,8 @@ __MINGW_USYMBOL(ilogbl): | ... | @@ -48,6 +50,8 @@ __MINGW_USYMBOL(ilogbl): |
| 48 | 	andb %ah, %dh | 50 | 	andb %ah, %dh |
| 49 | 	cmpb $0x05, %dh | 51 | 	cmpb $0x05, %dh |
| 50 | 	je 1f		/* Is +-Inf, jump. */ | 52 | 	je 1f		/* Is +-Inf, jump. */ |
| 53 | 	cmpb $0x01, %dh | ||
| 54 | 	je 1f		/* Is NaN, jump. */ | ||
| 51 | 55 | ||
| 52 | 	fxtract | 56 | 	fxtract |
| 53 | 	pushl	%eax | 57 | 	pushl	%eax |
lib/libc/mingw/math/x86/log.def.h+2-2| ... | @@ -56,6 +56,8 @@ __FLT_ABI(log) (__FLT_TYPE x) | ... | @@ -56,6 +56,8 @@ __FLT_ABI(log) (__FLT_TYPE x) |
| 56 | __FLT_RPT_ERANGE ("log", x, 0.0, -__FLT_HUGE_VAL, 1); | 56 | __FLT_RPT_ERANGE ("log", x, 0.0, -__FLT_HUGE_VAL, 1); |
| 57 | return -__FLT_HUGE_VAL; | 57 | return -__FLT_HUGE_VAL; |
| 58 | } | 58 | } |
| 59 | else if (x_class == FP_NAN) | ||
| 60 | return x; | ||
| 59 | else if (signbit (x)) | 61 | else if (signbit (x)) |
| 60 | { | 62 | { |
| 61 | __FLT_RPT_DOMAIN ("log", x, 0.0, __FLT_NAN); | 63 | __FLT_RPT_DOMAIN ("log", x, 0.0, __FLT_NAN); |
| ... | @@ -63,7 +65,5 @@ __FLT_ABI(log) (__FLT_TYPE x) | ... | @@ -63,7 +65,5 @@ __FLT_ABI(log) (__FLT_TYPE x) |
| 63 | } | 65 | } |
| 64 | else if (x_class == FP_INFINITE) | 66 | else if (x_class == FP_INFINITE) |
| 65 | return __FLT_HUGE_VAL; | 67 | return __FLT_HUGE_VAL; |
| 66 | else if (x_class == FP_NAN) | ||
| 67 | return __FLT_NAN; | ||
| 68 | return (__FLT_TYPE) __logl_internal ((long double) x); | 68 | return (__FLT_TYPE) __logl_internal ((long double) x); |
| 69 | } | 69 | } |
lib/libc/mingw/math/x86/logb.c+4-2| ... | @@ -25,8 +25,10 @@ logb (double x) | ... | @@ -25,8 +25,10 @@ logb (double x) |
| 25 | return -1.0 / fabs (x); | 25 | return -1.0 / fabs (x); |
| 26 | if (hx >= 0x7ff00000) | 26 | if (hx >= 0x7ff00000) |
| 27 | return x * x; | 27 | return x * x; |
| 28 | if ((hx >>= 20) == 0) /* IEEE 754 logb */ | 28 | if ((hx >>= 20) == 0) { |
| 29 | return -1022.0; | 29 | unsigned long long mantissa = hlp.val & 0xfffffffffffffULL; |
| 30 | return -1023.0 - (__builtin_clzll(mantissa) - 12); | ||
| 31 | } | ||
| 30 | return (double) (hx - 1023); | 32 | return (double) (hx - 1023); |
| 31 | #else | 33 | #else |
| 32 | double res = 0.0; | 34 | double res = 0.0; |
lib/libc/mingw/math/x86/logbf.c+2-2| ... | @@ -24,8 +24,8 @@ logbf (float x) | ... | @@ -24,8 +24,8 @@ logbf (float x) |
| 24 | return (float)-1.0 / fabsf (x); | 24 | return (float)-1.0 / fabsf (x); |
| 25 | if (v >= 0x7f800000) | 25 | if (v >= 0x7f800000) |
| 26 | return x * x; | 26 | return x * x; |
| 27 | if ((v >>= 23) == 0) /* IEEE 754 logb */ | 27 | if ((v >>= 23) == 0) |
| 28 | return -126.0; | 28 | return -127.0 - (__builtin_clzl(hlp.val & 0x7fffff) - 9); |
| 29 | return (float) (v - 127); | 29 | return (float) (v - 127); |
| 30 | #else | 30 | #else |
| 31 | float res = 0.0F; | 31 | float res = 0.0F; |
lib/libc/mingw/math/x86/pow.def.h+7-3| ... | @@ -121,9 +121,13 @@ __FLT_ABI(pow) (__FLT_TYPE x, __FLT_TYPE y) | ... | @@ -121,9 +121,13 @@ __FLT_ABI(pow) (__FLT_TYPE x, __FLT_TYPE y) |
| 121 | return __FLT_CST(1.0); | 121 | return __FLT_CST(1.0); |
| 122 | else if (x_class == FP_NAN || y_class == FP_NAN) | 122 | else if (x_class == FP_NAN || y_class == FP_NAN) |
| 123 | { | 123 | { |
| 124 | rslt = (signbit(x) ? -__FLT_NAN : __FLT_NAN); | 124 | if (x_class == FP_NAN) { |
| 125 | __FLT_RPT_DOMAIN ("pow", x, y, rslt); | 125 | __FLT_RPT_DOMAIN ("pow", x, y, x); |
| 126 | return rslt; | 126 | return x; |
| 127 | } else { | ||
| 128 | __FLT_RPT_DOMAIN ("pow", x, y, y); | ||
| 129 | return y; | ||
| 130 | } | ||
| 127 | } | 131 | } |
| 128 | else if (x_class == FP_ZERO) | 132 | else if (x_class == FP_ZERO) |
| 129 | { | 133 | { |
lib/libc/mingw/misc/assert.c deleted-31| ... | @@ -1,31 +0,0 @@ | ||
| 1 | /** | ||
| 2 | * This file has no copyright assigned and is placed in the Public Domain. | ||
| 3 | * This file is part of the mingw-w64 runtime package. | ||
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||
| 5 | */ | ||
| 6 | #include <windows.h> | ||
| 7 | #include <stdio.h> | ||
| 8 | #include <stdlib.h> | ||
| 9 | #include <wchar.h> | ||
| 10 | #include <signal.h> | ||
| 11 | |||
| 12 | void __cdecl _wassert (const wchar_t *, const wchar_t *,unsigned); | ||
| 13 | void __cdecl _assert (const char *, const char *, unsigned); | ||
| 14 | |||
| 15 | void __cdecl | ||
| 16 | _assert (const char *_Message, const char *_File, unsigned _Line) | ||
| 17 | { | ||
| 18 | wchar_t *m, *f; | ||
| 19 | int i; | ||
| 20 | m = (wchar_t *) malloc ((strlen (_Message) + 1) * sizeof (wchar_t)); | ||
| 21 | f = (wchar_t *) malloc ((strlen (_File) + 1) * sizeof (wchar_t)); | ||
| 22 | for (i = 0; _Message[i] != 0; i++) | ||
| 23 | m[i] = ((wchar_t) _Message[i]) & 0xff; | ||
| 24 | m[i] = 0; | ||
| 25 | for (i = 0; _File[i] != 0; i++) | ||
| 26 | f[i] = ((wchar_t) _File[i]) & 0xff; | ||
| 27 | f[i] = 0; | ||
| 28 | _wassert (m, f, _Line); | ||
| 29 | free (m); | ||
| 30 | free (f); | ||
| 31 | } | ||
lib/libc/mingw/misc/difftime.c deleted-21| ... | @@ -1,21 +0,0 @@ | ||
| 1 | #define __CRT__NO_INLINE | ||
| 2 | #include <time.h> | ||
| 3 | #include <memory.h> | ||
| 4 | |||
| 5 | /* FIXME: Relying on _USE_32BIT_TIME_T, which is a user-macro, | ||
| 6 | during CRT compilation is plainly broken. Need an appropriate | ||
| 7 | implementation to provide users the ability of compiling the | ||
| 8 | CRT only with 32-bit time_t behavior. */ | ||
| 9 | |||
| 10 | #ifndef _USE_32BIT_TIME_T | ||
| 11 | double __cdecl difftime(time_t _Time1,time_t _Time2) | ||
| 12 | { | ||
| 13 | return _difftime64(_Time1,_Time2); | ||
| 14 | } | ||
| 15 | #else | ||
| 16 | double __cdecl difftime(time_t _Time1,time_t _Time2) | ||
| 17 | { | ||
| 18 | return _difftime32(_Time1,_Time2); | ||
| 19 | } | ||
| 20 | #endif | ||
| 21 | |||
lib/libc/mingw/misc/difftime32.c deleted-9| ... | @@ -1,9 +0,0 @@ | ||
| 1 | #include <time.h> | ||
| 2 | |||
| 3 | double __cdecl _difftime32(__time32_t _Time1,__time32_t _Time2) | ||
| 4 | { | ||
| 5 | __time32_t r = _Time1 - _Time2; | ||
| 6 | if (r > _Time1) | ||
| 7 | return -((double) (_Time2 - _Time1)); | ||
| 8 | return (double) r; | ||
| 9 | } | ||
lib/libc/mingw/misc/difftime64.c deleted-9| ... | @@ -1,9 +0,0 @@ | ||
| 1 | #include <time.h> | ||
| 2 | |||
| 3 | double __cdecl _difftime64(__time64_t _Time1,__time64_t _Time2) | ||
| 4 | { | ||
| 5 | __time64_t r = _Time1 - _Time2; | ||
| 6 | if (r > _Time1) | ||
| 7 | return -((double) (_Time2 - _Time1)); | ||
| 8 | return (double) r; | ||
| 9 | } | ||
lib/libc/mingw/misc/execv.c deleted-6| ... | @@ -1,6 +0,0 @@ | ||
| 1 | #include <process.h> | ||
| 2 | |||
| 3 | int __cdecl execv(const char *_Filename,char *const _ArgList[]) | ||
| 4 | { | ||
| 5 | return _execv (_Filename, (const char *const *)_ArgList); | ||
| 6 | } | ||
lib/libc/mingw/misc/execve.c deleted-6| ... | @@ -1,6 +0,0 @@ | ||
| 1 | #include <process.h> | ||
| 2 | |||
| 3 | int __cdecl execve(const char *_Filename,char *const _ArgList[],char *const _Env[]) | ||
| 4 | { | ||
| 5 | return _execve (_Filename, (const char *const *)_ArgList, (const char * const *)_Env); | ||
| 6 | } | ||
lib/libc/mingw/misc/execvp.c deleted-6| ... | @@ -1,6 +0,0 @@ | ||
| 1 | #include <process.h> | ||
| 2 | |||
| 3 | int __cdecl execvp(const char *_Filename,char *const _ArgList[]) | ||
| 4 | { | ||
| 5 | return _execvp (_Filename, (const char *const *)_ArgList); | ||
| 6 | } | ||
lib/libc/mingw/misc/execvpe.c deleted-6| ... | @@ -1,6 +0,0 @@ | ||
| 1 | #include <process.h> | ||
| 2 | |||
| 3 | int __cdecl execvpe(const char *_Filename,char *const _ArgList[],char *const _Env[]) | ||
| 4 | { | ||
| 5 | return _execvpe (_Filename, (const char *const *)_ArgList, (const char *const *)_Env); | ||
| 6 | } | ||
lib/libc/mingw/misc/fesetenv.c+5-4| ... | @@ -52,7 +52,7 @@ int fesetenv (const fenv_t * envp) | ... | @@ -52,7 +52,7 @@ int fesetenv (const fenv_t * envp) |
| 52 | else if (envp == FE_PC53_ENV) | 52 | else if (envp == FE_PC53_ENV) |
| 53 | /* | 53 | /* |
| 54 | * MS _fpreset() does same *except* it sets control word | 54 | * MS _fpreset() does same *except* it sets control word |
| 55 | * to 0x27f (53-bit precison). | 55 | * to 0x27f (53-bit precision). |
| 56 | * We force calling _fpreset in msvcrt.dll | 56 | * We force calling _fpreset in msvcrt.dll |
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| ... | @@ -65,16 +65,17 @@ int fesetenv (const fenv_t * envp) | ... | @@ -65,16 +65,17 @@ int fesetenv (const fenv_t * envp) |
| 65 | else | 65 | else |
| 66 | { | 66 | { |
| 67 | fenv_t env = *envp; | 67 | fenv_t env = *envp; |
| 68 | int has_sse = __mingw_has_sse (); | ||
| 68 | int _mxcsr; | 69 | int _mxcsr; |
| 69 | __asm__ ("fnstenv %0\n" | ||
| 70 | "stmxcsr %1" : "=m" (*&env), "=m" (*&_mxcsr)); | ||
| 71 | /*_mxcsr = ((int)envp->__unused0 << 16) | (int)envp->__unused1; *//* mxcsr low and high */ | 70 | /*_mxcsr = ((int)envp->__unused0 << 16) | (int)envp->__unused1; *//* mxcsr low and high */ |
| 71 | if (has_sse) | ||
| 72 | __asm__ ("stmxcsr %0" : "=m" (*&_mxcsr)); | ||
| 72 | env.__unused0 = 0xffff; | 73 | env.__unused0 = 0xffff; |
| 73 | env.__unused1 = 0xffff; | 74 | env.__unused1 = 0xffff; |
| 74 | __asm__ volatile ("fldenv %0" : : "m" (env) | 75 | __asm__ volatile ("fldenv %0" : : "m" (env) |
| 75 | 			: "st", "st(1)", "st(2)", "st(3)", "st(4)", | 76 | 			: "st", "st(1)", "st(2)", "st(3)", "st(4)", |
| 76 | 			"st(5)", "st(6)", "st(7)"); | 77 | 			"st(5)", "st(6)", "st(7)"); |
| 77 | if (__mingw_has_sse ()) | 78 | if (has_sse) |
| 78 | __asm__ volatile ("ldmxcsr %0" : : "m" (*&_mxcsr)); | 79 | __asm__ volatile ("ldmxcsr %0" : : "m" (*&_mxcsr)); |
| 79 | } | 80 | } |
| 80 | 81 |
lib/libc/mingw/misc/feupdateenv.c+1-1| ... | @@ -19,7 +19,7 @@ int feupdateenv (const fenv_t * envp) | ... | @@ -19,7 +19,7 @@ int feupdateenv (const fenv_t * envp) |
| 19 | { | 19 | { |
| 20 | unsigned int _fexcept = fetestexcept (FE_ALL_EXCEPT); /*save excepts */ | 20 | unsigned int _fexcept = fetestexcept (FE_ALL_EXCEPT); /*save excepts */ |
| 21 | fesetenv (envp); /* install the env */ | 21 | fesetenv (envp); /* install the env */ |
| 22 | feraiseexcept (_fexcept); /* raise the execept */ | 22 | feraiseexcept (_fexcept); /* raise the except */ |
| 23 | return 0; | 23 | return 0; |
| 24 | } | 24 | } |
| 25 | 25 |
lib/libc/mingw/misc/mbrtowc.c+2-5| ... | @@ -137,13 +137,10 @@ mbsrtowcs (wchar_t* __restrict__ dst, const char ** __restrict__ src, | ... | @@ -137,13 +137,10 @@ mbsrtowcs (wchar_t* __restrict__ dst, const char ** __restrict__ src, |
| 137 | else | 137 | else |
| 138 | { | 138 | { |
| 139 | wchar_t byte_bucket = 0; | 139 | wchar_t byte_bucket = 0; |
| 140 | while ((ret = __mbrtowc_cp (&byte_bucket, *src, mb_max, | 140 | while ((ret = __mbrtowc_cp (&byte_bucket, *src + n, mb_max, |
| 141 | 				 internal_ps, cp, mb_max)) | 141 | 				 internal_ps, cp, mb_max)) |
| 142 | 		 > 0) | 142 | 		 > 0) |
| 143 | 	{ | 143 | 	n += ret; |
| 144 | 	 *src += ret; | ||
| 145 | 	 n += ret; | ||
| 146 | 	} | ||
| 147 | } | 144 | } |
| 148 | return n; | 145 | return n; |
| 149 | } | 146 | } |
lib/libc/mingw/misc/mingw_getsp.S-122| ... | @@ -28,125 +28,3 @@ __MINGW_USYMBOL(mingw_getsp): | ... | @@ -28,125 +28,3 @@ __MINGW_USYMBOL(mingw_getsp): |
| 28 | 	mov	x0, sp | 28 | 	mov	x0, sp |
| 29 | 	ret | 29 | 	ret |
| 30 | #endif | 30 | #endif |
| 31 | |||
| 32 | /* On ARM: | ||
| 33 | * Error: cannot represent BFD_RELOC_32_PCREL relocation in this object file format | ||
| 34 | * But anyway, nothing is needed here as libarm32/libmsvcrt.a is exporting longjmp | ||
| 35 | ldr ip, 1f | ||
| 36 | ldr pc, [pc, ip] | ||
| 37 | 1: .long __imp_longjmp - (1b + 4) | ||
| 38 | */ | ||
| 39 | #if !(defined(_ARM_) || defined(__arm__) || defined(_ARM64_) || defined(__aarch64__)) | ||
| 40 | 	.globl __MINGW_USYMBOL(longjmp) | ||
| 41 | 	.def	__MINGW_USYMBOL(longjmp);	.scl	2;	.type	32;	.endef | ||
| 42 | __MINGW_USYMBOL(longjmp): | ||
| 43 | #if defined(_AMD64_) || defined(__x86_64__) | ||
| 44 | #ifndef __SEH__ | ||
| 45 | xorq %rax,%rax | ||
| 46 | movq %rax, (%rcx) | ||
| 47 | #endif | ||
| 48 | leaq __MINGW_IMP_LSYMBOL(longjmp)(%rip), %rax | ||
| 49 | jmpq *(%rax) | ||
| 50 | #elif defined(_X86_) || defined(__i386__) | ||
| 51 | jmp *__imp__longjmp | ||
| 52 | #endif | ||
| 53 | #endif /* !(defined(_ARM_) || defined(__arm__)) */ | ||
| 54 | |||
| 55 | #if defined(_ARM_) || defined(__arm__) || defined(_ARM64_) || defined(__aarch64__) | ||
| 56 | 	.globl __MINGW_USYMBOL(__mingw_setjmp) | ||
| 57 | 	.def	__MINGW_USYMBOL(__mingw_setjmp);	.scl	2;	.type	32;	.endef | ||
| 58 | __MINGW_USYMBOL(__mingw_setjmp): | ||
| 59 | #if defined(_ARM_) || defined(__arm__) | ||
| 60 | 	mov r1, #0 | ||
| 61 | 	str r1, [r0] /* jmp_buf->Frame */ | ||
| 62 | 	str r4, [r0, #0x4] /* jmp_buf->R4 */ | ||
| 63 | 	str r5, [r0, #0x8] /* jmp_buf->R5 */ | ||
| 64 | 	str r6, [r0, #0xc] /* jmp_buf->R6 */ | ||
| 65 | 	str r7, [r0, #0x10] /* jmp_buf->R7 */ | ||
| 66 | 	str r8, [r0, #0x14] /* jmp_buf->R8 */ | ||
| 67 | 	str r9, [r0, #0x18] /* jmp_buf->R9 */ | ||
| 68 | 	str r10, [r0, #0x1c] /* jmp_buf->R10 */ | ||
| 69 | 	str r11, [r0, #0x20] /* jmp_buf->R11 */ | ||
| 70 | 	str sp, [r0, #0x24] /* jmp_buf->Sp */ | ||
| 71 | 	str lr, [r0, #0x28] /* jmp_buf->Pc */ | ||
| 72 | 	vmrs r2, fpscr | ||
| 73 | 	str r2, [r0, #0x2c] /* jmp_buf->Fpscr */ | ||
| 74 | 	vstr d8, [r0, #0x30] /* jmp_buf->D[0] */ | ||
| 75 | 	vstr d9, [r0, #0x38] /* jmp_buf->D[1] */ | ||
| 76 | 	vstr d10, [r0, #0x40] /* jmp_buf->D[2] */ | ||
| 77 | 	vstr d11, [r0, #0x48] /* jmp_buf->D[3] */ | ||
| 78 | 	vstr d12, [r0, #0x50] /* jmp_buf->D[4] */ | ||
| 79 | 	vstr d13, [r0, #0x58] /* jmp_buf->D[5] */ | ||
| 80 | 	vstr d14, [r0, #0x60] /* jmp_buf->D[6] */ | ||
| 81 | 	vstr d15, [r0, #0x68] /* jmp_buf->D[7] */ | ||
| 82 | 	mov r0, #0 | ||
| 83 | 	bx lr | ||
| 84 | #elif defined(_ARM64_) || defined(__aarch64__) | ||
| 85 | 	str xzr, [x0] /* jmp_buf->Frame */ | ||
| 86 | 	stp x19, x20, [x0, #0x10] /* jmp_buf->X19, X20 */ | ||
| 87 | 	stp x21, x22, [x0, #0x20] /* jmp_buf->X21, X22 */ | ||
| 88 | 	stp x23, x24, [x0, #0x30] /* jmp_buf->X23, X24 */ | ||
| 89 | 	stp x25, x26, [x0, #0x40] /* jmp_buf->X25, X26 */ | ||
| 90 | 	stp x27, x28, [x0, #0x50] /* jmp_buf->X27, X28 */ | ||
| 91 | 	stp x29, x30, [x0, #0x60] /* jmp_buf->Fp, Lr */ | ||
| 92 | 	mov x2, sp | ||
| 93 | 	str x2, [x0, #0x70] /* jmp_buf->Sp */ | ||
| 94 | 	mrs x2, fpcr | ||
| 95 | 	str w2, [x0, #0x78] /* jmp_buf->Fpcr */ | ||
| 96 | 	mrs x2, fpsr | ||
| 97 | 	str w2, [x0, #0x7c] /* jmp_buf->Fpsr */ | ||
| 98 | 	stp d8, d9, [x0, #0x80] /* jmp_buf->D[0-1] */ | ||
| 99 | 	stp d10, d11, [x0, #0x90] /* jmp_buf->D[2-3] */ | ||
| 100 | 	stp d12, d13, [x0, #0xa0] /* jmp_buf->D[4-5] */ | ||
| 101 | 	stp d14, d15, [x0, #0xb0] /* jmp_buf->D[6-7] */ | ||
| 102 | 	mov x0, #0 | ||
| 103 | 	ret | ||
| 104 | #endif | ||
| 105 | |||
| 106 | 	.globl __MINGW_USYMBOL(__mingw_longjmp) | ||
| 107 | 	.def	__MINGW_USYMBOL(__mingw_longjmp);	.scl	2;	.type	32;	.endef | ||
| 108 | __MINGW_USYMBOL(__mingw_longjmp): | ||
| 109 | #if defined(_ARM_) || defined(__arm__) | ||
| 110 | 	ldr r4, [r0, #0x4] /* jmp_buf->R4 */ | ||
| 111 | 	ldr r5, [r0, #0x8] /* jmp_buf->R5 */ | ||
| 112 | 	ldr r6, [r0, #0xc] /* jmp_buf->R6 */ | ||
| 113 | 	ldr r7, [r0, #0x10] /* jmp_buf->R7 */ | ||
| 114 | 	ldr r8, [r0, #0x14] /* jmp_buf->R8 */ | ||
| 115 | 	ldr r9, [r0, #0x18] /* jmp_buf->R9 */ | ||
| 116 | 	ldr r10, [r0, #0x1c] /* jmp_buf->R10 */ | ||
| 117 | 	ldr r11, [r0, #0x20] /* jmp_buf->R11 */ | ||
| 118 | 	ldr sp, [r0, #0x24] /* jmp_buf->Sp */ | ||
| 119 | 	ldr r2, [r0, #0x28] /* jmp_buf->Pc */ | ||
| 120 | 	ldr r3, [r0, #0x2c] /* jmp_buf->Fpscr */ | ||
| 121 | 	vmsr fpscr, r3 | ||
| 122 | 	vldr d8, [r0, #0x30] /* jmp_buf->D[0] */ | ||
| 123 | 	vldr d9, [r0, #0x38] /* jmp_buf->D[1] */ | ||
| 124 | 	vldr d10, [r0, #0x40] /* jmp_buf->D[2] */ | ||
| 125 | 	vldr d11, [r0, #0x48] /* jmp_buf->D[3] */ | ||
| 126 | 	vldr d12, [r0, #0x50] /* jmp_buf->D[4] */ | ||
| 127 | 	vldr d13, [r0, #0x58] /* jmp_buf->D[5] */ | ||
| 128 | 	vldr d14, [r0, #0x60] /* jmp_buf->D[6] */ | ||
| 129 | 	vldr d15, [r0, #0x68] /* jmp_buf->D[7] */ | ||
| 130 | 	mov r0, r1 /* retval */ | ||
| 131 | 	bx r2 | ||
| 132 | #elif defined(_ARM64_) || defined(__aarch64__) | ||
| 133 | 	ldp x19, x20, [x0, #0x10] /* jmp_buf->X19, X20 */ | ||
| 134 | 	ldp x21, x22, [x0, #0x20] /* jmp_buf->X21, X22 */ | ||
| 135 | 	ldp x23, x24, [x0, #0x30] /* jmp_buf->X23, X24 */ | ||
| 136 | 	ldp x25, x26, [x0, #0x40] /* jmp_buf->X25, X26 */ | ||
| 137 | 	ldp x27, x28, [x0, #0x50] /* jmp_buf->X27, X28 */ | ||
| 138 | 	ldp x29, x30, [x0, #0x60] /* jmp_buf->Fp, Lr */ | ||
| 139 | 	ldr x2, [x0, #0x70] /* jmp_buf->Sp */ | ||
| 140 | 	mov sp, x2 | ||
| 141 | 	ldr w2, [x0, #0x78] /* jmp_buf->Fpcr */ | ||
| 142 | 	msr fpcr, x2 | ||
| 143 | 	ldr w2, [x0, #0x7c] /* jmp_buf->Fpsr */ | ||
| 144 | 	msr fpsr, x2 | ||
| 145 | 	ldp d8, d9, [x0, #0x80] /* jmp_buf->D[0-1] */ | ||
| 146 | 	ldp d10, d11, [x0, #0x90] /* jmp_buf->D[2-3] */ | ||
| 147 | 	ldp d12, d13, [x0, #0xa0] /* jmp_buf->D[4-5] */ | ||
| 148 | 	ldp d14, d15, [x0, #0xb0] /* jmp_buf->D[6-7] */ | ||
| 149 | 	mov x0, x1 /* retval */ | ||
| 150 | 	ret | ||
| 151 | #endif | ||
| 152 | #endif |
lib/libc/mingw/misc/spawnv.c deleted-6| ... | @@ -1,6 +0,0 @@ | ||
| 1 | #include <process.h> | ||
| 2 | |||
| 3 | intptr_t __cdecl spawnv(int mode,const char *_Filename,char *const _ArgList[]) | ||
| 4 | { | ||
| 5 | return _spawnv(mode, _Filename,(const char *const *)_ArgList); | ||
| 6 | } | ||
lib/libc/mingw/misc/spawnve.c deleted-6| ... | @@ -1,6 +0,0 @@ | ||
| 1 | #include <process.h> | ||
| 2 | |||
| 3 | intptr_t __cdecl spawnve(int mode,const char *_Filename,char *const _ArgList[],char *const _Env[]) | ||
| 4 | { | ||
| 5 | return _spawnve(mode, _Filename,(const char *const *)_ArgList,(const char *const *)_Env); | ||
| 6 | } | ||
lib/libc/mingw/misc/spawnvp.c deleted-6| ... | @@ -1,6 +0,0 @@ | ||
| 1 | #include <process.h> | ||
| 2 | |||
| 3 | intptr_t __cdecl spawnvp(int mode,const char *_Filename,char *const _ArgList[]) | ||
| 4 | { | ||
| 5 | return _spawnvp(mode, _Filename,(const char *const *)_ArgList); | ||
| 6 | } | ||
lib/libc/mingw/misc/spawnvpe.c deleted-6| ... | @@ -1,6 +0,0 @@ | ||
| 1 | #include <process.h> | ||
| 2 | |||
| 3 | intptr_t __cdecl spawnvpe(int mode,const char *_Filename,char *const _ArgList[],char *const _Env[]) | ||
| 4 | { | ||
| 5 | return _spawnvpe(mode, _Filename,(const char *const *)_ArgList,(const char *const *)_Env); | ||
| 6 | } | ||
lib/libc/mingw/misc/wassert.c+36-36| ... | @@ -3,47 +3,47 @@ | ... | @@ -3,47 +3,47 @@ |
| 3 | * This file is part of the mingw-w64 runtime package. | 3 | * This file is part of the mingw-w64 runtime package. |
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| 5 | */ | 5 | */ |
| 6 | #include <windows.h> | ||
| 7 | #include <stdio.h> | ||
| 8 | #include <stdlib.h> | ||
| 9 | #include <wchar.h> | ||
| 10 | #include <signal.h> | ||
| 11 | 6 | ||
| 12 | extern int mingw_app_type; | 7 | #include <assert.h> |
| 13 | 8 | #include <stdlib.h> | |
| 14 | void __cdecl _wassert (const wchar_t *, const wchar_t *,unsigned); | 9 | #include <windows.h> |
| 15 | void __cdecl _assert (const char *, const char *, unsigned); | 10 | #include "msvcrt.h" |
| 16 | 11 | ||
| 17 | void __cdecl | 12 | /* _wassert is not available on XP, so forward it to _assert if needed */ |
| 18 | _wassert (const wchar_t *_Message, const wchar_t *_File, unsigned _Line) | 13 | static void __cdecl mingw_wassert(const wchar_t *_Message, const wchar_t *_File, unsigned _Line) |
| 19 | { | 14 | { |
| 20 | wchar_t *msgbuf = (wchar_t *) malloc (8192*sizeof(wchar_t)); | 15 | char *message = NULL, *file = NULL; |
| 21 | wchar_t fn[MAX_PATH + 1]; | 16 | size_t len; |
| 22 | DWORD nCode; | 17 | |
| 23 | 18 | if ((len = wcstombs(NULL, _Message, 0)) != (size_t)-1) | |
| 24 | if (!_File || _File[0] == 0) | ||
| 25 | _File = L"<unknown>"; | ||
| 26 | if (!_Message || _Message[0] == 0) | ||
| 27 | _Message = L"?"; | ||
| 28 | if (! GetModuleFileNameW (NULL, fn, MAX_PATH)) | ||
| 29 | wcscpy (fn, L"<unknown>"); | ||
| 30 | _snwprintf (msgbuf, 8191, L"Assertion failed!\n\nProgram: %ws\n" | ||
| 31 | 		 "File: %ws, Line %u\n\nExpression: %ws", | ||
| 32 | 		 fn, _File,_Line, _Message); | ||
| 33 | if (mingw_app_type == 0) | ||
| 34 | { | 19 | { |
| 35 | fwprintf (stderr, L"%ws\n", msgbuf); | 20 | message = malloc(len + 1); |
| 36 | abort (); | 21 | wcstombs(message, _Message, len + 1); |
| 37 | } | 22 | } |
| 38 | nCode = MessageBoxW (NULL, msgbuf, L"MinGW Runtime Assertion", MB_ABORTRETRYIGNORE| | 23 | |
| 39 | MB_ICONHAND|MB_SETFOREGROUND|MB_TASKMODAL); | 24 | if ((len = wcstombs(NULL, _File, 0)) != (size_t)-1) |
| 40 | if (nCode == IDABORT) | ||
| 41 | { | 25 | { |
| 42 | raise (SIGABRT); | 26 | file = malloc(len + 1); |
| 43 | _exit (3); | 27 | wcstombs(file, _File, len + 1); |
| 44 | abort (); | ||
| 45 | } | 28 | } |
| 46 | if (nCode == IDIGNORE) | 29 | |
| 47 | return; | 30 | _assert(message, file, _Line); |
| 48 | abort (); | 31 | |
| 32 | free(message); | ||
| 33 | free(file); | ||
| 34 | } | ||
| 35 | |||
| 36 | static void __cdecl init_wassert(const wchar_t *message, const wchar_t *file, unsigned line); | ||
| 37 | |||
| 38 | void (__cdecl *__MINGW_IMP_SYMBOL(_wassert))(const wchar_t*, const wchar_t*,unsigned) = init_wassert; | ||
| 39 | |||
| 40 | static void __cdecl init_wassert(const wchar_t *message, const wchar_t *file, unsigned line) | ||
| 41 | { | ||
| 42 | void *func; | ||
| 43 | |||
| 44 | func = (void*)GetProcAddress(__mingw_get_msvcrt_handle(), "_wassert"); | ||
| 45 | if(!func) | ||
| 46 | func = mingw_wassert; | ||
| 47 | |||
| 48 | return (__MINGW_IMP_SYMBOL(_wassert) = func)(message, file, line); | ||
| 49 | } | 49 | } |
lib/libc/mingw/secapi/_cgets_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/_cgetws_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/_cprintf_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/_cprintf_s_l.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/_cwprintf_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/_cwprintf_s_l.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/_vcprintf_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/_vcprintf_s_l.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/_vcwprintf_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/_vcwprintf_s_l.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/_vscprintf_p.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <sec_api/stdio_s.h> | 1 | #include <sec_api/stdio_s.h> |
| 3 | 2 | ||
| 4 | int __cdecl _vscprintf_p(const char *format, va_list arglist) | 3 | int __cdecl _vscprintf_p(const char *format, va_list arglist) |
lib/libc/mingw/secapi/_vscwprintf_p.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <sec_api/stdio_s.h> | 1 | #include <sec_api/stdio_s.h> |
| 3 | 2 | ||
| 4 | int __cdecl _vscwprintf_p(const wchar_t *format, va_list arglist) | 3 | int __cdecl _vscwprintf_p(const wchar_t *format, va_list arglist) |
lib/libc/mingw/secapi/_vswprintf_p.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <sec_api/stdio_s.h> | 1 | #include <sec_api/stdio_s.h> |
| 3 | 2 | ||
| 4 | int __cdecl _vswprintf_p(wchar_t *_DstBuf, size_t _MaxCount, const wchar_t *_Format, va_list _ArgList) | 3 | int __cdecl _vswprintf_p(wchar_t *_DstBuf, size_t _MaxCount, const wchar_t *_Format, va_list _ArgList) |
lib/libc/mingw/secapi/_waccess_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/_wmktemp_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/memmove_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/sprintf_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/strerror_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/vsprintf_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/wmemcpy_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/secapi/wmemmove_s.c-1| ... | @@ -1,4 +1,3 @@ | ... | @@ -1,4 +1,3 @@ |
| 1 | #define MINGW_HAS_SECURE_API 1 | ||
| 2 | #include <windows.h> | 1 | #include <windows.h> |
| 3 | #include <malloc.h> | 2 | #include <malloc.h> |
| 4 | #include <errno.h> | 3 | #include <errno.h> |
lib/libc/mingw/stdio/fseeko64.c-131| ... | @@ -76,33 +76,7 @@ static struct oserr_map local_errtab[] = { | ... | @@ -76,33 +76,7 @@ static struct oserr_map local_errtab[] = { |
| 76 | { ERROR_NOT_ENOUGH_QUOTA, ENOMEM }, { 0, -1 } | 76 | { ERROR_NOT_ENOUGH_QUOTA, ENOMEM }, { 0, -1 } |
| 77 | }; | 77 | }; |
| 78 | 78 | ||
| 79 | _CRTIMP __int64 __cdecl _lseeki64(int fh,__int64 pos,int mthd); | ||
| 80 | __int64 __cdecl _ftelli64(FILE *str); | ||
| 81 | void mingw_dosmaperr (unsigned long oserrno); | 79 | void mingw_dosmaperr (unsigned long oserrno); |
| 82 | int __cdecl _flush (FILE *str); | ||
| 83 | |||
| 84 | int __cdecl _flush (FILE *str) | ||
| 85 | { | ||
| 86 | FILE *stream; | ||
| 87 | int rc = 0; /* assume good return */ | ||
| 88 | __int64 nchar; | ||
| 89 | |||
| 90 | stream = str; | ||
| 91 | if ((stream->_flag & (_IOREAD | _IOWRT)) == _IOWRT && bigbuf(stream) | ||
| 92 | && (nchar = (__int64) (stream->_ptr - stream->_base)) > 0ll) | ||
| 93 | { | ||
| 94 | if ( _write(_fileno(stream), stream->_base, nchar) == nchar) { | ||
| 95 | if (_IORW & stream->_flag) | ||
| 96 | stream->_flag &= ~_IOWRT; | ||
| 97 | } else { | ||
| 98 | stream->_flag |= _IOERR; | ||
| 99 | rc = EOF; | ||
| 100 | } | ||
| 101 | } | ||
| 102 | stream->_ptr = stream->_base; | ||
| 103 | stream->_cnt = 0ll; | ||
| 104 | return rc; | ||
| 105 | } | ||
| 106 | 80 | ||
| 107 | int fseeko64 (FILE* stream, _off64_t offset, int whence) | 81 | int fseeko64 (FILE* stream, _off64_t offset, int whence) |
| 108 | { | 82 | { |
| ... | @@ -130,111 +104,6 @@ int fseeko64 (FILE* stream, _off64_t offset, int whence) | ... | @@ -130,111 +104,6 @@ int fseeko64 (FILE* stream, _off64_t offset, int whence) |
| 130 | return fsetpos (stream, &pos); | 104 | return fsetpos (stream, &pos); |
| 131 | } | 105 | } |
| 132 | 106 | ||
| 133 | int __cdecl _fseeki64(FILE *str,__int64 offset,int whence) | ||
| 134 | { | ||
| 135 | FILE *stream; | ||
| 136 | /* Init stream pointer */ | ||
| 137 | stream = str; | ||
| 138 | errno=0; | ||
| 139 | if(!stream || ((whence != SEEK_SET) && (whence != SEEK_CUR) && (whence != SEEK_END))) | ||
| 140 | 	{ | ||
| 141 | 	 errno=EINVAL; | ||
| 142 | 	 return -1; | ||
| 143 | } | ||
| 144 | /* Clear EOF flag */ | ||
| 145 | stream->_flag &= ~_IOEOF; | ||
| 146 | |||
| 147 | if (whence == SEEK_CUR) { | ||
| 148 | 	 offset += _ftelli64(stream); | ||
| 149 | 	 whence = SEEK_SET; | ||
| 150 | 	} | ||
| 151 | /* Flush buffer as necessary */ | ||
| 152 | _flush(stream); | ||
| 153 | |||
| 154 | /* If file opened for read/write, clear flags since we don't know | ||
| 155 | what the user is going to do next. If the file was opened for | ||
| 156 | read access only, decrease _bufsiz so that the next _filbuf | ||
| 157 | won't cost quite so much */ | ||
| 158 | |||
| 159 | if (stream->_flag & _IORW) | ||
| 160 | stream->_flag &= ~(_IOWRT|_IOREAD); | ||
| 161 | else if ( (stream->_flag & _IOREAD) && (stream->_flag & _IOMYBUF) && | ||
| 162 | !(stream->_flag & _IOSETVBUF) ) | ||
| 163 | stream->_bufsiz = _SMALL_BUFSIZ; | ||
| 164 | |||
| 165 | /* Seek to the desired locale and return. */ | ||
| 166 | |||
| 167 | return (_lseeki64(_fileno(stream), offset, whence) == -1ll ? -1 : 0); | ||
| 168 | } | ||
| 169 | |||
| 170 | __int64 __cdecl _ftelli64(FILE *str) | ||
| 171 | { | ||
| 172 | FILE *stream; | ||
| 173 | size_t offset; | ||
| 174 | __int64 filepos; | ||
| 175 | register char *p; | ||
| 176 | char *max; | ||
| 177 | int fd; | ||
| 178 | size_t rdcnt = 0; | ||
| 179 | |||
| 180 | 	errno=0; | ||
| 181 | stream = str; | ||
| 182 | fd = _fileno(stream); | ||
| 183 | if (stream->_cnt < 0ll) stream->_cnt = 0ll; | ||
| 184 | if ((filepos = _lseeki64(fd, 0ll, SEEK_CUR)) < 0L) | ||
| 185 | return -1ll; | ||
| 186 | |||
| 187 | if (!bigbuf(stream)) /* _IONBF or no buffering designated */ | ||
| 188 | return (filepos - (__int64) stream->_cnt); | ||
| 189 | |||
| 190 | offset = (size_t)(stream->_ptr - stream->_base); | ||
| 191 | |||
| 192 | if (stream->_flag & (_IOWRT|_IOREAD)) | ||
| 193 | { | ||
| 194 | if (_osfile(fd) & FTEXT) | ||
| 195 | for (p = stream->_base; p < stream->_ptr; p++) | ||
| 196 | if (*p == '\n') /* adjust for '\r' */ | ||
| 197 | offset++; | ||
| 198 | } | ||
| 199 | else if (!(stream->_flag & _IORW)) { | ||
| 200 | errno=EINVAL; | ||
| 201 | return -1ll; | ||
| 202 | } | ||
| 203 | if (filepos == 0ll) | ||
| 204 | return ((__int64)offset); | ||
| 205 | |||
| 206 | if (stream->_flag & _IOREAD) /* go to preceding sector */ | ||
| 207 | { | ||
| 208 | if (stream->_cnt == 0ll) /* filepos holds correct location */ | ||
| 209 | offset = 0ll; | ||
| 210 | else | ||
| 211 | { | ||
| 212 | 	 rdcnt = ((size_t) stream->_cnt) + ((size_t) (size_t)(stream->_ptr - stream->_base)); | ||
| 213 | 		 if (_osfile(fd) & FTEXT) { | ||
| 214 | 		 if (_lseeki64(fd, 0ll, SEEK_END) == filepos) { | ||
| 215 | 			 max = stream->_base + rdcnt; | ||
| 216 | 			 for (p = stream->_base; p < max; p++) | ||
| 217 | 			 if (*p == '\n') /* adjust for '\r' */ | ||
| 218 | 			 rdcnt++; | ||
| 219 | 			 if (stream->_flag & _IOCTRLZ) | ||
| 220 | 			 ++rdcnt; | ||
| 221 | 		 } else { | ||
| 222 | 		 _lseeki64(fd, filepos, SEEK_SET); | ||
| 223 | 		 if ( (rdcnt <= _SMALL_BUFSIZ) && (stream->_flag & _IOMYBUF) && | ||
| 224 | 		 !(stream->_flag & _IOSETVBUF)) | ||
| 225 | 			 rdcnt = _SMALL_BUFSIZ; | ||
| 226 | 		 else | ||
| 227 | 		 rdcnt = stream->_bufsiz; | ||
| 228 | 		 if (_osfile(fd) & FCRLF) | ||
| 229 | 		 ++rdcnt; | ||
| 230 | 		 } | ||
| 231 | 		 } /* end if FTEXT */ | ||
| 232 | 	 } | ||
| 233 | 	 filepos -= (__int64)rdcnt; | ||
| 234 | } /* end else stream->_cnt != 0 */ | ||
| 235 | return (filepos + (__int64)offset); | ||
| 236 | } | ||
| 237 | |||
| 238 | void mingw_dosmaperr (unsigned long oserrno) | 107 | void mingw_dosmaperr (unsigned long oserrno) |
| 239 | { | 108 | { |
| 240 | size_t i; | 109 | size_t i; |
lib/libc/mingw/stdio/mingw_pformat.c+2| ... | @@ -51,6 +51,8 @@ | ... | @@ -51,6 +51,8 @@ |
| 51 | * | 51 | * |
| 52 | */ | 52 | */ |
| 53 | 53 | ||
| 54 | #define __LARGE_MBSTATE_T | ||
| 55 | |||
| 54 | #ifdef HAVE_CONFIG_H | 56 | #ifdef HAVE_CONFIG_H |
| 55 | #include "config.h" | 57 | #include "config.h" |
| 56 | #endif | 58 | #endif |
lib/libc/mingw/stdio/mingw_vfscanf.c+2| ... | @@ -42,6 +42,8 @@ | ... | @@ -42,6 +42,8 @@ |
| 42 | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 42 | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 43 | */ | 43 | */ |
| 44 | 44 | ||
| 45 | #define __LARGE_MBSTATE_T | ||
| 46 | |||
| 45 | #include <limits.h> | 47 | #include <limits.h> |
| 46 | #include <stddef.h> | 48 | #include <stddef.h> |
| 47 | #include <stdarg.h> | 49 | #include <stdarg.h> |
lib/libc/mingw/stdio/mingw_wvfscanf.c+46-38| ... | @@ -42,6 +42,8 @@ | ... | @@ -42,6 +42,8 @@ |
| 42 | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 42 | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 43 | */ | 43 | */ |
| 44 | 44 | ||
| 45 | #define __LARGE_MBSTATE_T | ||
| 46 | |||
| 45 | #include <limits.h> | 47 | #include <limits.h> |
| 46 | #include <stddef.h> | 48 | #include <stddef.h> |
| 47 | #include <stdarg.h> | 49 | #include <stdarg.h> |
| ... | @@ -104,13 +106,19 @@ get_va_nth (va_list argp, unsigned int n) | ... | @@ -104,13 +106,19 @@ get_va_nth (va_list argp, unsigned int n) |
| 104 | } | 106 | } |
| 105 | 107 | ||
| 106 | static void | 108 | static void |
| 107 | optimize_alloc (int do_realloc, char **p, size_t sz, size_t need_sz, size_t typ_sz) | 109 | optimize_alloc (char **p, char *end, size_t alloc_sz) |
| 108 | { | 110 | { |
| 111 | size_t need_sz; | ||
| 109 | char *h; | 112 | char *h; |
| 110 | 113 | ||
| 111 | if (!do_realloc || sz == need_sz || !p || *p == NULL) | 114 | if (!p || !*p) |
| 115 | return; | ||
| 116 | |||
| 117 | need_sz = end - *p; | ||
| 118 | if (need_sz == alloc_sz) | ||
| 112 | return; | 119 | return; |
| 113 | if ((h = (char *) realloc (*p, need_sz * typ_sz)) != NULL) | 120 | |
| 121 | if ((h = (char *) realloc (*p, need_sz)) != NULL) | ||
| 114 | *p = h; | 122 | *p = h; |
| 115 | } | 123 | } |
| 116 | 124 | ||
| ... | @@ -237,7 +245,7 @@ release_ptrs (struct gcollect **pt, wchar_t **wbuf) | ... | @@ -237,7 +245,7 @@ release_ptrs (struct gcollect **pt, wchar_t **wbuf) |
| 237 | static int | 245 | static int |
| 238 | cleanup_return (int rval, struct gcollect **pfree, char **strp, wchar_t **wbuf) | 246 | cleanup_return (int rval, struct gcollect **pfree, char **strp, wchar_t **wbuf) |
| 239 | { | 247 | { |
| 240 | if (rval == WEOF) | 248 | if (rval == EOF) |
| 241 | release_ptrs (pfree, wbuf); | 249 | release_ptrs (pfree, wbuf); |
| 242 | else | 250 | else |
| 243 | { | 251 | { |
| ... | @@ -331,7 +339,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -331,7 +339,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 331 | if (!s || s->fp == NULL || !format) | 339 | if (!s || s->fp == NULL || !format) |
| 332 | { | 340 | { |
| 333 | errno = EINVAL; | 341 | errno = EINVAL; |
| 334 | return WEOF; | 342 | return EOF; |
| 335 | } | 343 | } |
| 336 | 344 | ||
| 337 | memset (&state, 0, sizeof(state)); | 345 | memset (&state, 0, sizeof(state)); |
| ... | @@ -351,7 +359,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -351,7 +359,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 351 | 	 else | 359 | 	 else |
| 352 | 	 { | 360 | 	 { |
| 353 | 	 if ((c = in_ch (s, &read_in)) == WEOF) | 361 | 	 if ((c = in_ch (s, &read_in)) == WEOF) |
| 354 | 		return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 362 | 		return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 355 | 363 | ||
| 356 | 	 if (ignore_ws) | 364 | 	 if (ignore_ws) |
| 357 | 		{ | 365 | 		{ |
| ... | @@ -361,7 +369,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -361,7 +369,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 361 | 		 do | 369 | 		 do |
| 362 | 			{ | 370 | 			{ |
| 363 | 			 if ((c = in_ch (s, &read_in)) == WEOF) | 371 | 			 if ((c = in_ch (s, &read_in)) == WEOF) |
| 364 | 			 return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 372 | 			 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 365 | 			} | 373 | 			} |
| 366 | 		 while (iswspace (c)); | 374 | 		 while (iswspace (c)); |
| 367 | 		 } | 375 | 		 } |
| ... | @@ -515,7 +523,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -515,7 +523,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 515 | 	 do | 523 | 	 do |
| 516 | 	 { | 524 | 	 { |
| 517 | 	 if ((c == WEOF || (c = in_ch (s, &read_in)) == WEOF) && errno == EINTR) | 525 | 	 if ((c == WEOF || (c = in_ch (s, &read_in)) == WEOF) && errno == EINTR) |
| 518 | 		return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 526 | 		return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 519 | 	 } | 527 | 	 } |
| 520 | 	 while (iswspace (c)); | 528 | 	 while (iswspace (c)); |
| 521 | 529 | ||
| ... | @@ -540,7 +548,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -540,7 +548,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 540 | 	{ | 548 | 	{ |
| 541 | 	case '%': | 549 | 	case '%': |
| 542 | 	 if ((c = in_ch (s, &read_in)) == WEOF) | 550 | 	 if ((c = in_ch (s, &read_in)) == WEOF) |
| 543 | 	 return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 551 | 	 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 544 | 	 if (c != fc) | 552 | 	 if (c != fc) |
| 545 | 	 { | 553 | 	 { |
| 546 | 	 back_ch (c, s, &read_in, 1); | 554 | 	 back_ch (c, s, &read_in, 1); |
| ... | @@ -581,7 +589,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -581,7 +589,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 581 | 		 return cleanup_return (rval, &gcollect, pstr, &wbuf); | 589 | 		 return cleanup_return (rval, &gcollect, pstr, &wbuf); |
| 582 | 		 str_sz = 100; | 590 | 		 str_sz = 100; |
| 583 | 		 if ((str = *pstr = (char *) malloc (100)) == NULL) | 591 | 		 if ((str = *pstr = (char *) malloc (100)) == NULL) |
| 584 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 592 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 585 | 		 gcollect = resize_gcollect (gcollect); | 593 | 		 gcollect = resize_gcollect (gcollect); |
| 586 | 		 gcollect->ptrs[gcollect->count++] = pstr; | 594 | 		 gcollect->ptrs[gcollect->count++] = pstr; |
| 587 | 		} | 595 | 		} |
| ... | @@ -596,7 +604,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -596,7 +604,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 596 | 		} | 604 | 		} |
| 597 | 	 } | 605 | 	 } |
| 598 | 	 if ((c = in_ch (s, &read_in)) == WEOF) | 606 | 	 if ((c = in_ch (s, &read_in)) == WEOF) |
| 599 | 	 return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 607 | 	 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 600 | 608 | ||
| 601 | 	 memset (&state, 0, sizeof (state)); | 609 | 	 memset (&state, 0, sizeof (state)); |
| 602 | 610 | ||
| ... | @@ -613,7 +621,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -613,7 +621,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 613 | 		 if (!nstr) | 621 | 		 if (!nstr) |
| 614 | 		 { | 622 | 		 { |
| 615 | 		 release_ptrs (&gcollect, &wbuf); | 623 | 		 release_ptrs (&gcollect, &wbuf); |
| 616 | 		 return WEOF; | 624 | 		 return EOF; |
| 617 | 		 } | 625 | 		 } |
| 618 | 		 *pstr = nstr; | 626 | 		 *pstr = nstr; |
| 619 | 		 str = nstr + str_len; | 627 | 		 str = nstr + str_len; |
| ... | @@ -622,14 +630,14 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -622,14 +630,14 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 622 | 630 | ||
| 623 | 	 n = wcrtomb ((flags & IS_SUPPRESSED) == 0 ? str : NULL, c, &state); | 631 | 	 n = wcrtomb ((flags & IS_SUPPRESSED) == 0 ? str : NULL, c, &state); |
| 624 | 	 if (n == (size_t) -1LL) | 632 | 	 if (n == (size_t) -1LL) |
| 625 | 		return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 633 | 		return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 626 | 	 str += n; | 634 | 	 str += n; |
| 627 | 	 } | 635 | 	 } |
| 628 | 	 while (--width > 0 && (c = in_ch (s, &read_in)) != WEOF); | 636 | 	 while (--width > 0 && (c = in_ch (s, &read_in)) != WEOF); |
| 629 | 637 | ||
| 630 | 	 if ((flags & IS_SUPPRESSED) == 0) | 638 | 	 if ((flags & IS_SUPPRESSED) == 0) |
| 631 | 	 { | 639 | 	 { |
| 632 | 	 optimize_alloc ((flags & IS_ALLOC_USED) != 0, pstr, str_sz, (str - *pstr), sizeof (char)); | 640 | 	 optimize_alloc (pstr, str, str_sz); |
| 633 | 	 pstr = NULL; | 641 | 	 pstr = NULL; |
| 634 | 	 ++rval; | 642 | 	 ++rval; |
| 635 | 	 } | 643 | 	 } |
| ... | @@ -654,7 +662,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -654,7 +662,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 654 | 		 str_sz = (width > 1024 ? 1024 : width); | 662 | 		 str_sz = (width > 1024 ? 1024 : width); |
| 655 | 		 *pstr = (char *) malloc (str_sz * sizeof (wchar_t)); | 663 | 		 *pstr = (char *) malloc (str_sz * sizeof (wchar_t)); |
| 656 | 		 if ((wstr = (wchar_t *) *pstr) == NULL) | 664 | 		 if ((wstr = (wchar_t *) *pstr) == NULL) |
| 657 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 665 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 658 | 666 | ||
| 659 | 		 if ((wstr = (wchar_t *) *pstr) != NULL) | 667 | 		 if ((wstr = (wchar_t *) *pstr) != NULL) |
| 660 | 		 { | 668 | 		 { |
| ... | @@ -674,7 +682,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -674,7 +682,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 674 | 	 } | 682 | 	 } |
| 675 | 683 | ||
| 676 | 	 if ((c = in_ch (s, &read_in)) == WEOF) | 684 | 	 if ((c = in_ch (s, &read_in)) == WEOF) |
| 677 | 	 return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 685 | 	 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 678 | 686 | ||
| 679 | 	 if ((flags & IS_SUPPRESSED) == 0) | 687 | 	 if ((flags & IS_SUPPRESSED) == 0) |
| 680 | 	 { | 688 | 	 { |
| ... | @@ -691,7 +699,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -691,7 +699,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 691 | 		 if (!wstr) | 699 | 		 if (!wstr) |
| 692 | 			{ | 700 | 			{ |
| 693 | 			 release_ptrs (&gcollect, &wbuf); | 701 | 			 release_ptrs (&gcollect, &wbuf); |
| 694 | 			 return WEOF; | 702 | 			 return EOF; |
| 695 | 			} | 703 | 			} |
| 696 | 		 *pstr = (char *) wstr; | 704 | 		 *pstr = (char *) wstr; |
| 697 | 		 wstr += str_sz; | 705 | 		 wstr += str_sz; |
| ... | @@ -708,7 +716,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -708,7 +716,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 708 | 716 | ||
| 709 | 	 if ((flags & IS_SUPPRESSED) == 0) | 717 | 	 if ((flags & IS_SUPPRESSED) == 0) |
| 710 | 	 { | 718 | 	 { |
| 711 | 	 optimize_alloc ((flags & IS_ALLOC_USED) != 0, pstr, str_sz, (wstr - (wchar_t *) *pstr), sizeof (wchar_t)); | 719 | 	 optimize_alloc (pstr, (char *) wstr, str_sz * sizeof (wchar_t)); |
| 712 | 	 pstr = NULL; | 720 | 	 pstr = NULL; |
| 713 | 	 ++rval; | 721 | 	 ++rval; |
| 714 | 	 } | 722 | 	 } |
| ... | @@ -728,7 +736,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -728,7 +736,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 728 | 		 return cleanup_return (rval, &gcollect, pstr, &wbuf); | 736 | 		 return cleanup_return (rval, &gcollect, pstr, &wbuf); |
| 729 | 		 str_sz = 100; | 737 | 		 str_sz = 100; |
| 730 | 		 if ((str = *pstr = (char *) malloc (100)) == NULL) | 738 | 		 if ((str = *pstr = (char *) malloc (100)) == NULL) |
| 731 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 739 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 732 | 		 gcollect = resize_gcollect (gcollect); | 740 | 		 gcollect = resize_gcollect (gcollect); |
| 733 | 		 gcollect->ptrs[gcollect->count++] = pstr; | 741 | 		 gcollect->ptrs[gcollect->count++] = pstr; |
| 734 | 		} | 742 | 		} |
| ... | @@ -744,7 +752,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -744,7 +752,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 744 | 	 } | 752 | 	 } |
| 745 | 753 | ||
| 746 | 	 if ((c = in_ch (s, &read_in)) == WEOF) | 754 | 	 if ((c = in_ch (s, &read_in)) == WEOF) |
| 747 | 	 return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 755 | 	 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 748 | 756 | ||
| 749 | 	 memset (&state, 0, sizeof (state)); | 757 | 	 memset (&state, 0, sizeof (state)); |
| 750 | 758 | ||
| ... | @@ -774,7 +782,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -774,7 +782,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 774 | 			 pstr = NULL; | 782 | 			 pstr = NULL; |
| 775 | 			 ++rval; | 783 | 			 ++rval; |
| 776 | 			 } | 784 | 			 } |
| 777 | 			return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 785 | 			return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 778 | 		 } | 786 | 		 } |
| 779 | 		 *pstr = nstr; | 787 | 		 *pstr = nstr; |
| 780 | 		 str = nstr + str_len; | 788 | 		 str = nstr + str_len; |
| ... | @@ -810,7 +818,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -810,7 +818,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 810 | 			 pstr = NULL; | 818 | 			 pstr = NULL; |
| 811 | 			 ++rval; | 819 | 			 ++rval; |
| 812 | 			} | 820 | 			} |
| 813 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 821 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 814 | 		 } | 822 | 		 } |
| 815 | 		 *pstr = nstr; | 823 | 		 *pstr = nstr; |
| 816 | 		 str = nstr + str_len; | 824 | 		 str = nstr + str_len; |
| ... | @@ -824,7 +832,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -824,7 +832,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 824 | 	 } | 832 | 	 } |
| 825 | 	 *str++ = 0; | 833 | 	 *str++ = 0; |
| 826 | 834 | ||
| 827 | 	 optimize_alloc ((flags & IS_ALLOC_USED) != 0, pstr, str_sz, (str - *pstr), sizeof (char)); | 835 | 	 optimize_alloc (pstr, str, str_sz); |
| 828 | 	 pstr = NULL; | 836 | 	 pstr = NULL; |
| 829 | 	 ++rval; | 837 | 	 ++rval; |
| 830 | 	 } | 838 | 	 } |
| ... | @@ -845,7 +853,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -845,7 +853,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 845 | 		 str_sz = 100; | 853 | 		 str_sz = 100; |
| 846 | 		 *pstr = (char *) malloc (100 * sizeof (wchar_t)); | 854 | 		 *pstr = (char *) malloc (100 * sizeof (wchar_t)); |
| 847 | 		 if ((wstr = (wchar_t *) *pstr) == NULL) | 855 | 		 if ((wstr = (wchar_t *) *pstr) == NULL) |
| 848 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 856 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 849 | 		 gcollect = resize_gcollect (gcollect); | 857 | 		 gcollect = resize_gcollect (gcollect); |
| 850 | 		 gcollect->ptrs[gcollect->count++] = pstr; | 858 | 		 gcollect->ptrs[gcollect->count++] = pstr; |
| 851 | 		} | 859 | 		} |
| ... | @@ -860,7 +868,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -860,7 +868,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 860 | 		} | 868 | 		} |
| 861 | 	 } | 869 | 	 } |
| 862 | 	 if ((c = in_ch (s, &read_in)) == WEOF) | 870 | 	 if ((c = in_ch (s, &read_in)) == WEOF) |
| 863 | 	 return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 871 | 	 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 864 | 872 | ||
| 865 | 	 do | 873 | 	 do |
| 866 | 	 { | 874 | 	 { |
| ... | @@ -889,7 +897,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -889,7 +897,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 889 | 			 pstr = NULL; | 897 | 			 pstr = NULL; |
| 890 | 			 ++rval; | 898 | 			 ++rval; |
| 891 | 			 } | 899 | 			 } |
| 892 | 			 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 900 | 			 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 893 | 			} | 901 | 			} |
| 894 | 		 *pstr = (char *) wstr; | 902 | 		 *pstr = (char *) wstr; |
| 895 | 		 wstr += str_sz; | 903 | 		 wstr += str_sz; |
| ... | @@ -903,7 +911,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -903,7 +911,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 903 | 	 { | 911 | 	 { |
| 904 | 	 *wstr++ = 0; | 912 | 	 *wstr++ = 0; |
| 905 | 913 | ||
| 906 | 	 optimize_alloc ((flags & IS_ALLOC_USED) != 0, pstr, str_sz, (wstr - (wchar_t *) *pstr), sizeof (wchar_t)); | 914 | 	 optimize_alloc (pstr, (char *) wstr, str_sz * sizeof (wchar_t)); |
| 907 | 	 pstr = NULL; | 915 | 	 pstr = NULL; |
| 908 | 	 ++rval; | 916 | 	 ++rval; |
| 909 | 	 } | 917 | 	 } |
| ... | @@ -943,7 +951,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -943,7 +951,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 943 | 	 } | 951 | 	 } |
| 944 | 952 | ||
| 945 | 	 if ((c = in_ch (s, &read_in)) == WEOF) | 953 | 	 if ((c = in_ch (s, &read_in)) == WEOF) |
| 946 | 	 return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 954 | 	 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 947 | 955 | ||
| 948 | 	 if (c == '+' || c == '-') | 956 | 	 if (c == '+' || c == '-') |
| 949 | 	 { | 957 | 	 { |
| ... | @@ -1084,7 +1092,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -1084,7 +1092,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 1084 | 	 if (width > 0) | 1092 | 	 if (width > 0) |
| 1085 | 	 --width; | 1093 | 	 --width; |
| 1086 | 	 if ((c = in_ch (s, &read_in)) == WEOF) | 1094 | 	 if ((c = in_ch (s, &read_in)) == WEOF) |
| 1087 | 	 return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 1095 | 	 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 1088 | 1096 | ||
| 1089 | 	 seen_dot = seen_exp = 0; | 1097 | 	 seen_dot = seen_exp = 0; |
| 1090 | 	 is_neg = (c == '-' ? 1 : 0); | 1098 | 	 is_neg = (c == '-' ? 1 : 0); |
| ... | @@ -1296,7 +1304,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -1296,7 +1304,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 1296 | 		 str_sz = 100; | 1304 | 		 str_sz = 100; |
| 1297 | 		 *pstr = (char *) malloc (100 * sizeof (wchar_t)); | 1305 | 		 *pstr = (char *) malloc (100 * sizeof (wchar_t)); |
| 1298 | 		 if ((wstr = (wchar_t *) *pstr) == NULL) | 1306 | 		 if ((wstr = (wchar_t *) *pstr) == NULL) |
| 1299 | 			return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 1307 | 			return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 1300 | 1308 | ||
| 1301 | 		 gcollect = resize_gcollect (gcollect); | 1309 | 		 gcollect = resize_gcollect (gcollect); |
| 1302 | 		 gcollect->ptrs[gcollect->count++] = pstr; | 1310 | 		 gcollect->ptrs[gcollect->count++] = pstr; |
| ... | @@ -1326,7 +1334,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -1326,7 +1334,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 1326 | 		 return cleanup_return (rval, &gcollect, pstr, &wbuf); | 1334 | 		 return cleanup_return (rval, &gcollect, pstr, &wbuf); |
| 1327 | 		 str_sz = 100; | 1335 | 		 str_sz = 100; |
| 1328 | 		 if ((str = *pstr = (char *) malloc (100)) == NULL) | 1336 | 		 if ((str = *pstr = (char *) malloc (100)) == NULL) |
| 1329 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 1337 | 		 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 1330 | 		 gcollect = resize_gcollect (gcollect); | 1338 | 		 gcollect = resize_gcollect (gcollect); |
| 1331 | 		 gcollect->ptrs[gcollect->count++] = pstr; | 1339 | 		 gcollect->ptrs[gcollect->count++] = pstr; |
| 1332 | 		} | 1340 | 		} |
| ... | @@ -1364,7 +1372,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -1364,7 +1372,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 1364 | 	 read_in_sv = read_in; | 1372 | 	 read_in_sv = read_in; |
| 1365 | 1373 | ||
| 1366 | 	 if ((c = in_ch (s, &read_in)) == WEOF) | 1374 | 	 if ((c = in_ch (s, &read_in)) == WEOF) |
| 1367 | 		return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 1375 | 		return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 1368 | 1376 | ||
| 1369 | 	 do | 1377 | 	 do |
| 1370 | 		{ | 1378 | 		{ |
| ... | @@ -1432,7 +1440,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -1432,7 +1440,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 1432 | 				 pstr = NULL; | 1440 | 				 pstr = NULL; |
| 1433 | 				 ++rval; | 1441 | 				 ++rval; |
| 1434 | 				} | 1442 | 				} |
| 1435 | 			 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 1443 | 			 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 1436 | 			 } | 1444 | 			 } |
| 1437 | 			 *pstr = (char *) wstr; | 1445 | 			 *pstr = (char *) wstr; |
| 1438 | 			 wstr += str_sz; | 1446 | 			 wstr += str_sz; |
| ... | @@ -1449,7 +1457,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -1449,7 +1457,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 1449 | 		{ | 1457 | 		{ |
| 1450 | 		 *wstr++ = 0; | 1458 | 		 *wstr++ = 0; |
| 1451 | 1459 | ||
| 1452 | 		 optimize_alloc ((flags & IS_ALLOC_USED) != 0, pstr, str_sz, (wstr - (wchar_t *) *pstr), sizeof (wchar_t)); | 1460 | 		 optimize_alloc (pstr, (char *) wstr, str_sz * sizeof (wchar_t)); |
| 1453 | 		 pstr = NULL; | 1461 | 		 pstr = NULL; |
| 1454 | 		 ++rval; | 1462 | 		 ++rval; |
| 1455 | 		} | 1463 | 		} |
| ... | @@ -1459,7 +1467,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -1459,7 +1467,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 1459 | 	 read_in_sv = read_in; | 1467 | 	 read_in_sv = read_in; |
| 1460 | 1468 | ||
| 1461 | 	 if ((c = in_ch (s, &read_in)) == WEOF) | 1469 | 	 if ((c = in_ch (s, &read_in)) == WEOF) |
| 1462 | 		return cleanup_return ((!rval ? WEOF : rval), &gcollect, pstr, &wbuf); | 1470 | 		return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf); |
| 1463 | 1471 | ||
| 1464 | 	 memset (&state, 0, sizeof (state)); | 1472 | 	 memset (&state, 0, sizeof (state)); |
| 1465 | 1473 | ||
| ... | @@ -1529,7 +1537,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -1529,7 +1537,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 1529 | 				 pstr = NULL; | 1537 | 				 pstr = NULL; |
| 1530 | 				 ++rval; | 1538 | 				 ++rval; |
| 1531 | 				} | 1539 | 				} |
| 1532 | 			 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 1540 | 			 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 1533 | 			 } | 1541 | 			 } |
| 1534 | 			 *pstr = nstr; | 1542 | 			 *pstr = nstr; |
| 1535 | 			 str = nstr + str_len; | 1543 | 			 str = nstr + str_len; |
| ... | @@ -1567,7 +1575,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -1567,7 +1575,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 1567 | 			 pstr = NULL; | 1575 | 			 pstr = NULL; |
| 1568 | 			 ++rval; | 1576 | 			 ++rval; |
| 1569 | 			 } | 1577 | 			 } |
| 1570 | 			 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? WEOF : rval), &gcollect, pstr, &wbuf); | 1578 | 			 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf); |
| 1571 | 			} | 1579 | 			} |
| 1572 | 		 *pstr = nstr; | 1580 | 		 *pstr = nstr; |
| 1573 | 		 str = nstr + str_len; | 1581 | 		 str = nstr + str_len; |
| ... | @@ -1581,7 +1589,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) | ... | @@ -1581,7 +1589,7 @@ __mingw_swformat (_IFP *s, const wchar_t *format, va_list argp) |
| 1581 | 		 } | 1589 | 		 } |
| 1582 | 		 *str++ = 0; | 1590 | 		 *str++ = 0; |
| 1583 | 1591 | ||
| 1584 | 		 optimize_alloc ((flags & IS_ALLOC_USED) != 0, pstr, str_sz, (str - *pstr), sizeof (char)); | 1592 | 		 optimize_alloc (pstr, str, str_sz); |
| 1585 | 		 pstr = NULL; | 1593 | 		 pstr = NULL; |
| 1586 | 		 ++rval; | 1594 | 		 ++rval; |
| 1587 | 		} | 1595 | 		} |
lib/libc/mingw/stdio/scanf.S+1| ... | @@ -164,6 +164,7 @@ __argtos: | ... | @@ -164,6 +164,7 @@ __argtos: |
| 164 | call *20(%ebp) | 164 | call *20(%ebp) |
| 165 | 165 | ||
| 166 | /* Restore stack. */ | 166 | /* Restore stack. */ |
| 167 | addl $(iOffset + iBytes), %esp | ||
| 167 | popl %edi | 168 | popl %edi |
| 168 | leave | 169 | leave |
| 169 | 170 |
src/link.cpp+1-35| ... | @@ -248,21 +248,13 @@ static const char *mingwex_generic_src[] = { | ... | @@ -248,21 +248,13 @@ static const char *mingwex_generic_src[] = { |
| 248 | "math" OS_SEP "tgammal.c", | 248 | "math" OS_SEP "tgammal.c", |
| 249 | "math" OS_SEP "truncl.c", | 249 | "math" OS_SEP "truncl.c", |
| 250 | "misc" OS_SEP "alarm.c", | 250 | "misc" OS_SEP "alarm.c", |
| 251 | "misc" OS_SEP "assert.c", | ||
| 252 | "misc" OS_SEP "basename.c", | 251 | "misc" OS_SEP "basename.c", |
| 253 | "misc" OS_SEP "btowc.c", | 252 | "misc" OS_SEP "btowc.c", |
| 254 | "misc" OS_SEP "delay-f.c", | 253 | "misc" OS_SEP "delay-f.c", |
| 255 | "misc" OS_SEP "delay-n.c", | 254 | "misc" OS_SEP "delay-n.c", |
| 256 | "misc" OS_SEP "delayimp.c", | 255 | "misc" OS_SEP "delayimp.c", |
| 257 | "misc" OS_SEP "difftime.c", | ||
| 258 | "misc" OS_SEP "difftime32.c", | ||
| 259 | "misc" OS_SEP "difftime64.c", | ||
| 260 | "misc" OS_SEP "dirent.c", | 256 | "misc" OS_SEP "dirent.c", |
| 261 | "misc" OS_SEP "dirname.c", | 257 | "misc" OS_SEP "dirname.c", |
| 262 | "misc" OS_SEP "execv.c", | ||
| 263 | "misc" OS_SEP "execve.c", | ||
| 264 | "misc" OS_SEP "execvp.c", | ||
| 265 | "misc" OS_SEP "execvpe.c", | ||
| 266 | "misc" OS_SEP "feclearexcept.c", | 258 | "misc" OS_SEP "feclearexcept.c", |
| 267 | "misc" OS_SEP "fegetenv.c", | 259 | "misc" OS_SEP "fegetenv.c", |
| 268 | "misc" OS_SEP "fegetexceptflag.c", | 260 | "misc" OS_SEP "fegetexceptflag.c", |
| ... | @@ -300,10 +292,6 @@ static const char *mingwex_generic_src[] = { | ... | @@ -300,10 +292,6 @@ static const char *mingwex_generic_src[] = { |
| 300 | "misc" OS_SEP "mkstemp.c", | 292 | "misc" OS_SEP "mkstemp.c", |
| 301 | "misc" OS_SEP "seterrno.c", | 293 | "misc" OS_SEP "seterrno.c", |
| 302 | "misc" OS_SEP "sleep.c", | 294 | "misc" OS_SEP "sleep.c", |
| 303 | "misc" OS_SEP "spawnv.c", | ||
| 304 | "misc" OS_SEP "spawnve.c", | ||
| 305 | "misc" OS_SEP "spawnvp.c", | ||
| 306 | "misc" OS_SEP "spawnvpe.c", | ||
| 307 | "misc" OS_SEP "strnlen.c", | 295 | "misc" OS_SEP "strnlen.c", |
| 308 | "misc" OS_SEP "strsafe.c", | 296 | "misc" OS_SEP "strsafe.c", |
| 309 | "misc" OS_SEP "strtoimax.c", | 297 | "misc" OS_SEP "strtoimax.c", |
| ... | @@ -463,7 +451,6 @@ static const char *mingwex_x86_src[] = { | ... | @@ -463,7 +451,6 @@ static const char *mingwex_x86_src[] = { |
| 463 | "math" OS_SEP "x86" OS_SEP "fmod.c", | 451 | "math" OS_SEP "x86" OS_SEP "fmod.c", |
| 464 | "math" OS_SEP "x86" OS_SEP "fmodf.c", | 452 | "math" OS_SEP "x86" OS_SEP "fmodf.c", |
| 465 | "math" OS_SEP "x86" OS_SEP "fmodl.c", | 453 | "math" OS_SEP "x86" OS_SEP "fmodl.c", |
| 466 | "math" OS_SEP "x86" OS_SEP "frexpl.S", | ||
| 467 | "math" OS_SEP "x86" OS_SEP "fucom.c", | 454 | "math" OS_SEP "x86" OS_SEP "fucom.c", |
| 468 | "math" OS_SEP "x86" OS_SEP "ilogbf.S", | 455 | "math" OS_SEP "x86" OS_SEP "ilogbf.S", |
| 469 | "math" OS_SEP "x86" OS_SEP "ilogbl.S", | 456 | "math" OS_SEP "x86" OS_SEP "ilogbl.S", |
| ... | @@ -509,43 +496,21 @@ static const char *mingwex_x86_src[] = { | ... | @@ -509,43 +496,21 @@ static const char *mingwex_x86_src[] = { |
| 509 | 496 | ||
| 510 | static const char *mingwex_arm32_src[] = { | 497 | static const char *mingwex_arm32_src[] = { |
| 511 | "math" OS_SEP "arm" OS_SEP "_chgsignl.S", | 498 | "math" OS_SEP "arm" OS_SEP "_chgsignl.S", |
| 512 | "math" OS_SEP "arm" OS_SEP "ceil.S", | ||
| 513 | "math" OS_SEP "arm" OS_SEP "ceilf.S", | ||
| 514 | "math" OS_SEP "arm" OS_SEP "ceill.S", | ||
| 515 | "math" OS_SEP "arm" OS_SEP "copysignl.c", | ||
| 516 | "math" OS_SEP "arm" OS_SEP "exp2.c", | 499 | "math" OS_SEP "arm" OS_SEP "exp2.c", |
| 517 | "math" OS_SEP "arm" OS_SEP "floor.S", | ||
| 518 | "math" OS_SEP "arm" OS_SEP "floorf.S", | ||
| 519 | "math" OS_SEP "arm" OS_SEP "floorl.S", | ||
| 520 | "math" OS_SEP "arm" OS_SEP "ldexpl.c", | ||
| 521 | "math" OS_SEP "arm" OS_SEP "log2.c", | ||
| 522 | "math" OS_SEP "arm" OS_SEP "nearbyint.S", | 500 | "math" OS_SEP "arm" OS_SEP "nearbyint.S", |
| 523 | "math" OS_SEP "arm" OS_SEP "nearbyintf.S", | 501 | "math" OS_SEP "arm" OS_SEP "nearbyintf.S", |
| 524 | "math" OS_SEP "arm" OS_SEP "nearbyintl.S", | 502 | "math" OS_SEP "arm" OS_SEP "nearbyintl.S", |
| 525 | "math" OS_SEP "arm" OS_SEP "scalbn.c", | ||
| 526 | "math" OS_SEP "arm" OS_SEP "sincos.c", | ||
| 527 | "math" OS_SEP "arm" OS_SEP "trunc.S", | 503 | "math" OS_SEP "arm" OS_SEP "trunc.S", |
| 528 | "math" OS_SEP "arm" OS_SEP "truncf.S", | 504 | "math" OS_SEP "arm" OS_SEP "truncf.S", |
| 529 | }; | 505 | }; |
| 530 | 506 | ||
| 531 | static const char *mingwex_arm64_src[] = { | 507 | static const char *mingwex_arm64_src[] = { |
| 532 | "math" OS_SEP "arm64" OS_SEP "ceilf.S", | ||
| 533 | "math" OS_SEP "arm64" OS_SEP "ceill.S", | ||
| 534 | "math" OS_SEP "arm64" OS_SEP "ceil.S", | ||
| 535 | "math" OS_SEP "arm64" OS_SEP "_chgsignl.S", | 508 | "math" OS_SEP "arm64" OS_SEP "_chgsignl.S", |
| 536 | "math" OS_SEP "arm64" OS_SEP "copysignl.c", | ||
| 537 | "math" OS_SEP "arm64" OS_SEP "exp2f.S", | 509 | "math" OS_SEP "arm64" OS_SEP "exp2f.S", |
| 538 | "math" OS_SEP "arm64" OS_SEP "exp2.S", | 510 | "math" OS_SEP "arm64" OS_SEP "exp2.S", |
| 539 | "math" OS_SEP "arm64" OS_SEP "floorf.S", | ||
| 540 | "math" OS_SEP "arm64" OS_SEP "floorl.S", | ||
| 541 | "math" OS_SEP "arm64" OS_SEP "floor.S", | ||
| 542 | "math" OS_SEP "arm64" OS_SEP "ldexpl.c", | ||
| 543 | "math" OS_SEP "arm64" OS_SEP "log2.c", | ||
| 544 | "math" OS_SEP "arm64" OS_SEP "nearbyintf.S", | 511 | "math" OS_SEP "arm64" OS_SEP "nearbyintf.S", |
| 545 | "math" OS_SEP "arm64" OS_SEP "nearbyintl.S", | 512 | "math" OS_SEP "arm64" OS_SEP "nearbyintl.S", |
| 546 | "math" OS_SEP "arm64" OS_SEP "nearbyint.S", | 513 | "math" OS_SEP "arm64" OS_SEP "nearbyint.S", |
| 547 | "math" OS_SEP "arm64" OS_SEP "scalbn.c", | ||
| 548 | "math" OS_SEP "arm64" OS_SEP "sincos.c", | ||
| 549 | "math" OS_SEP "arm64" OS_SEP "truncf.S", | 514 | "math" OS_SEP "arm64" OS_SEP "truncf.S", |
| 550 | "math" OS_SEP "arm64" OS_SEP "trunc.S", | 515 | "math" OS_SEP "arm64" OS_SEP "trunc.S", |
| 551 | }; | 516 | }; |
| ... | @@ -1216,6 +1181,7 @@ static const char *get_libc_crt_file(CodeGen *parent, const char *file, Stage2Pr | ... | @@ -1216,6 +1181,7 @@ static const char *get_libc_crt_file(CodeGen *parent, const char *file, Stage2Pr |
| 1216 | "mingw" OS_SEP "crt" OS_SEP "xncommod.c", | 1181 | "mingw" OS_SEP "crt" OS_SEP "xncommod.c", |
| 1217 | "mingw" OS_SEP "crt" OS_SEP "cinitexe.c", | 1182 | "mingw" OS_SEP "crt" OS_SEP "cinitexe.c", |
| 1218 | "mingw" OS_SEP "crt" OS_SEP "merr.c", | 1183 | "mingw" OS_SEP "crt" OS_SEP "merr.c", |
| 1184 | "mingw" OS_SEP "crt" OS_SEP "usermatherr.c", | ||
| 1219 | "mingw" OS_SEP "crt" OS_SEP "pesect.c", | 1185 | "mingw" OS_SEP "crt" OS_SEP "pesect.c", |
| 1220 | "mingw" OS_SEP "crt" OS_SEP "udllargc.c", | 1186 | "mingw" OS_SEP "crt" OS_SEP "udllargc.c", |
| 1221 | "mingw" OS_SEP "crt" OS_SEP "xthdloc.c", | 1187 | "mingw" OS_SEP "crt" OS_SEP "xthdloc.c", |