| author | |
| committer | |
| log | 6f4339be3a3f16489bef6de8bed581694c8ef304 |
| tree | 779efc40319f6b2e1b3d313caf881f7cf3afe5a0 |
| parent | d7f00c43897655e3bb6a9cddf1b1191a6c1381e0 |
54 files changed, 3113 insertions(+), 6181 deletions(-)
lib/libc/mingw/crt/crtdll.c-10| ... | ... | @@ -10,10 +10,6 @@ |
| 10 | 10 | #define _DLL |
| 11 | 11 | #endif |
| 12 | 12 | |
| 13 | #ifdef HAVE_CONFIG_H | |
| 14 | #include "config.h" | |
| 15 | #endif | |
| 16 | ||
| 17 | 13 | #include <oscalls.h> |
| 18 | 14 | #include <internal.h> |
| 19 | 15 | #include <stdlib.h> |
| ... | ... | @@ -44,12 +40,6 @@ extern _CRTALLOC(".CRT$XIZ") _PIFV __xi_z[]; |
| 44 | 40 | extern _CRTALLOC(".CRT$XCA") _PVFV __xc_a[]; |
| 45 | 41 | extern _CRTALLOC(".CRT$XCZ") _PVFV __xc_z[]; |
| 46 | 42 | |
| 47 | #ifndef HAVE_CTOR_LIST | |
| 48 | __attribute__ (( __section__ (".ctors"), __used__ , aligned(sizeof(void *)))) const void * __CTOR_LIST__ = (void *) -1; | |
| 49 | __attribute__ (( __section__ (".dtors"), __used__ , aligned(sizeof(void *)))) const void * __DTOR_LIST__ = (void *) -1; | |
| 50 | __attribute__ (( __section__ (".ctors.99999"), __used__ , aligned(sizeof(void *)))) const void * __CTOR_END__ = (void *) 0; | |
| 51 | __attribute__ (( __section__ (".dtors.99999"), __used__ , aligned(sizeof(void *)))) const void * __DTOR_END__ = (void *) 0; | |
| 52 | #endif | |
| 53 | 43 | |
| 54 | 44 | /* TLS initialization hook. */ |
| 55 | 45 | extern const PIMAGE_TLS_CALLBACK __dyn_tls_init_callback; |
lib/libc/mingw/crt/crtexe.c+1-13| ... | ... | @@ -9,10 +9,6 @@ |
| 9 | 9 | #define _DLL |
| 10 | 10 | #endif |
| 11 | 11 | |
| 12 | #ifdef HAVE_CONFIG_H | |
| 13 | #include "config.h" | |
| 14 | #endif | |
| 15 | ||
| 16 | 12 | #define SPECIAL_CRTEXE |
| 17 | 13 | |
| 18 | 14 | #include <oscalls.h> |
| ... | ... | @@ -34,7 +30,7 @@ extern wchar_t *** __MINGW_IMP_SYMBOL(__winitenv); |
| 34 | 30 | #define __winitenv (* __MINGW_IMP_SYMBOL(__winitenv)) |
| 35 | 31 | #endif |
| 36 | 32 | |
| 37 | #if !defined(__initenv) && !defined(__arm__) && !defined(__aarch64__) | |
| 33 | #if !defined(__initenv) | |
| 38 | 34 | extern char *** __MINGW_IMP_SYMBOL(__initenv); |
| 39 | 35 | #define __initenv (* __MINGW_IMP_SYMBOL(__initenv)) |
| 40 | 36 | #endif |
| ... | ... | @@ -66,12 +62,6 @@ extern _CRTALLOC(".CRT$XIZ") _PIFV __xi_z[]; |
| 66 | 62 | extern _CRTALLOC(".CRT$XCA") _PVFV __xc_a[]; |
| 67 | 63 | extern _CRTALLOC(".CRT$XCZ") _PVFV __xc_z[]; |
| 68 | 64 | |
| 69 | #ifndef HAVE_CTOR_LIST | |
| 70 | __attribute__ (( __section__ (".ctors"), __used__ , aligned(sizeof(void *)))) const void * __CTOR_LIST__ = (void *) -1; | |
| 71 | __attribute__ (( __section__ (".dtors"), __used__ , aligned(sizeof(void *)))) const void * __DTOR_LIST__ = (void *) -1; | |
| 72 | __attribute__ (( __section__ (".ctors.99999"), __used__ , aligned(sizeof(void *)))) const void * __CTOR_END__ = (void *) 0; | |
| 73 | __attribute__ (( __section__ (".dtors.99999"), __used__ , aligned(sizeof(void *)))) const void * __DTOR_END__ = (void *) 0; | |
| 74 | #endif | |
| 75 | 65 | |
| 76 | 66 | /* TLS initialization hook. */ |
| 77 | 67 | extern const PIMAGE_TLS_CALLBACK __dyn_tls_init_callback; |
| ... | ... | @@ -327,9 +317,7 @@ __tmainCRTStartup (void) |
| 327 | 317 | gcc inserts this call automatically for a function called main, but not for wmain. */ |
| 328 | 318 | mainret = wmain (argc, argv, envp); |
| 329 | 319 | #else |
| 330 | #if !defined(__arm__) && !defined(__aarch64__) | |
| 331 | 320 | __initenv = envp; |
| 332 | #endif | |
| 333 | 321 | mainret = main (argc, argv, envp); |
| 334 | 322 | #endif |
| 335 | 323 | if (!managedapp) |
lib/libc/mingw/crt/gccmain.c-25| ... | ... | @@ -8,10 +8,6 @@ |
| 8 | 8 | #include <stdlib.h> |
| 9 | 9 | #include <setjmp.h> |
| 10 | 10 | |
| 11 | #ifdef HAVE_CONFIG_H | |
| 12 | #include "config.h" | |
| 13 | #endif | |
| 14 | ||
| 15 | 11 | typedef void (*func_ptr) (void); |
| 16 | 12 | extern func_ptr __CTOR_LIST__[]; |
| 17 | 13 | extern func_ptr __DTOR_LIST__[]; |
| ... | ... | @@ -32,25 +28,6 @@ __do_global_dtors (void) |
| 32 | 28 | } |
| 33 | 29 | } |
| 34 | 30 | |
| 35 | #ifndef HAVE_CTOR_LIST | |
| 36 | // If the linker didn't provide __CTOR_LIST__, we provided it ourselves, | |
| 37 | // and then we also know we have __CTOR_END__ available. | |
| 38 | extern func_ptr __CTOR_END__[]; | |
| 39 | extern func_ptr __DTOR_END__[]; | |
| 40 | ||
| 41 | void __do_global_ctors (void) | |
| 42 | { | |
| 43 | static func_ptr *p = __CTOR_END__ - 1; | |
| 44 | while (*p != (func_ptr) -1) { | |
| 45 | (*(p))(); | |
| 46 | p--; | |
| 47 | } | |
| 48 | atexit (__do_global_dtors); | |
| 49 | } | |
| 50 | ||
| 51 | #else | |
| 52 | // old method that iterates the list twice because old linker scripts do not have __CTOR_END__ | |
| 53 | ||
| 54 | 31 | void |
| 55 | 32 | __do_global_ctors (void) |
| 56 | 33 | { |
| ... | ... | @@ -70,8 +47,6 @@ __do_global_ctors (void) |
| 70 | 47 | atexit (__do_global_dtors); |
| 71 | 48 | } |
| 72 | 49 | |
| 73 | #endif | |
| 74 | ||
| 75 | 50 | static int initialized = 0; |
| 76 | 51 | |
| 77 | 52 | void |
lib/libc/mingw/crt/tls_atexit.c+20-10| ... | ... | @@ -35,7 +35,7 @@ extern char __mingw_module_is_dll; |
| 35 | 35 | static CRITICAL_SECTION lock; |
| 36 | 36 | static int inited = 0; |
| 37 | 37 | static dtor_obj *global_dtors = NULL; |
| 38 | static __thread dtor_obj *tls_dtors = NULL; | |
| 38 | static DWORD tls_dtors_slot = TLS_OUT_OF_INDEXES; | |
| 39 | 39 | |
| 40 | 40 | int __mingw_cxa_atexit(dtor_fn dtor, void *obj, void *dso) { |
| 41 | 41 | if (!inited) |
| ... | ... | @@ -73,24 +73,29 @@ int __mingw_cxa_thread_atexit(dtor_fn dtor, void *obj, void *dso) { |
| 73 | 73 | return 1; |
| 74 | 74 | handler->dtor = dtor; |
| 75 | 75 | handler->obj = obj; |
| 76 | handler->next = tls_dtors; | |
| 77 | tls_dtors = handler; | |
| 76 | handler->next = (dtor_obj *)TlsGetValue(tls_dtors_slot); | |
| 77 | TlsSetValue(tls_dtors_slot, handler); | |
| 78 | 78 | return 0; |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | static void WINAPI tls_atexit_callback(HANDLE __UNUSED_PARAM(hDllHandle), DWORD dwReason, LPVOID __UNUSED_PARAM(lpReserved)) { |
| 82 | 82 | if (dwReason == DLL_PROCESS_DETACH) { |
| 83 | run_dtor_list(&tls_dtors); | |
| 83 | dtor_obj * p = (dtor_obj *)TlsGetValue(tls_dtors_slot); | |
| 84 | run_dtor_list(&p); | |
| 85 | TlsSetValue(tls_dtors_slot, p); | |
| 86 | TlsFree(tls_dtors_slot); | |
| 84 | 87 | run_dtor_list(&global_dtors); |
| 85 | 88 | } |
| 86 | 89 | } |
| 87 | 90 | |
| 88 | 91 | static void WINAPI tls_callback(HANDLE hDllHandle, DWORD dwReason, LPVOID __UNUSED_PARAM(lpReserved)) { |
| 92 | dtor_obj * p; | |
| 89 | 93 | switch (dwReason) { |
| 90 | 94 | case DLL_PROCESS_ATTACH: |
| 91 | 95 | if (inited == 0) { |
| 92 | 96 | InitializeCriticalSection(&lock); |
| 93 | 97 | __dso_handle = hDllHandle; |
| 98 | tls_dtors_slot = TlsAlloc(); | |
| 94 | 99 | /* |
| 95 | 100 | * We can only call _register_thread_local_exe_atexit_callback once |
| 96 | 101 | * in a process; if we call it a second time the process terminates. |
| ... | ... | @@ -124,16 +129,19 @@ static void WINAPI tls_callback(HANDLE hDllHandle, DWORD dwReason, LPVOID __UNUS |
| 124 | 129 | * main, or when a DLL is unloaded), and when exiting bypassing some of |
| 125 | 130 | * the cleanup, by calling _exit or ExitProcess. In the latter cases, |
| 126 | 131 | * destructors (both TLS and global) in loaded DLLs still get called, |
| 127 | * but only TLS destructors get called for the main executable, global | |
| 128 | * variables' destructors don't run. (This matches what MSVC does with | |
| 129 | * a dynamically linked CRT.) | |
| 132 | * but none get called for the main executable. This matches what the | |
| 133 | * standard says, but differs from what MSVC does with a dynamically | |
| 134 | * linked CRT (which still runs TLS destructors for the main thread). | |
| 130 | 135 | */ |
| 131 | run_dtor_list(&tls_dtors); | |
| 132 | 136 | if (__mingw_module_is_dll) { |
| 137 | p = (dtor_obj *)TlsGetValue(tls_dtors_slot); | |
| 138 | run_dtor_list(&p); | |
| 139 | TlsSetValue(tls_dtors_slot, p); | |
| 133 | 140 | /* For DLLs, run dtors when detached. For EXEs, run dtors via the |
| 134 | 141 | * thread local atexit callback, to make sure they don't run when |
| 135 | 142 | * exiting the process with _exit or ExitProcess. */ |
| 136 | 143 | run_dtor_list(&global_dtors); |
| 144 | TlsFree(tls_dtors_slot); | |
| 137 | 145 | } |
| 138 | 146 | if (inited == 1) { |
| 139 | 147 | inited = 0; |
| ... | ... | @@ -143,9 +151,11 @@ static void WINAPI tls_callback(HANDLE hDllHandle, DWORD dwReason, LPVOID __UNUS |
| 143 | 151 | case DLL_THREAD_ATTACH: |
| 144 | 152 | break; |
| 145 | 153 | case DLL_THREAD_DETACH: |
| 146 | run_dtor_list(&tls_dtors); | |
| 154 | p = (dtor_obj *)TlsGetValue(tls_dtors_slot); | |
| 155 | run_dtor_list(&p); | |
| 156 | TlsSetValue(tls_dtors_slot, p); | |
| 147 | 157 | break; |
| 148 | 158 | } |
| 149 | 159 | } |
| 150 | 160 | |
| 151 | _CRTALLOC(".CRT$XLE") PIMAGE_TLS_CALLBACK __xl_e = (PIMAGE_TLS_CALLBACK) tls_callback; | |
| 161 | _CRTALLOC(".CRT$XLB") PIMAGE_TLS_CALLBACK __xl_b = (PIMAGE_TLS_CALLBACK) tls_callback; |
lib/libc/mingw/include/internal.h+1-1| ... | ... | @@ -101,7 +101,7 @@ extern wchar_t *** __MINGW_IMP_SYMBOL(__winitenv); |
| 101 | 101 | #define __winitenv (* __MINGW_IMP_SYMBOL(__winitenv)) |
| 102 | 102 | #endif |
| 103 | 103 | |
| 104 | #if !defined(__initenv) && !defined(__arm__) | |
| 104 | #if !defined(__initenv) | |
| 105 | 105 | extern char *** __MINGW_IMP_SYMBOL(__initenv); |
| 106 | 106 | #define __initenv (* __MINGW_IMP_SYMBOL(__initenv)) |
| 107 | 107 | #endif |
lib/libc/mingw/lib-common/bcrypt.def+1| ... | ... | @@ -34,6 +34,7 @@ BCryptGenerateKeyPair |
| 34 | 34 | BCryptGenerateSymmetricKey |
| 35 | 35 | BCryptGetFipsAlgorithmMode |
| 36 | 36 | BCryptGetProperty |
| 37 | BCryptHash | |
| 37 | 38 | BCryptHashData |
| 38 | 39 | BCryptImportKey |
| 39 | 40 | BCryptImportKeyPair |
lib/libc/mingw/lib-common/dxgi.def+6| ... | ... | @@ -1,5 +1,6 @@ |
| 1 | 1 | LIBRARY "dxgi.dll" |
| 2 | 2 | EXPORTS |
| 3 | ApplyCompatResolutionQuirking | |
| 3 | 4 | CompatString |
| 4 | 5 | CompatValue |
| 5 | 6 | D3DKMTCloseAdapter |
| ... | ... | @@ -13,10 +14,14 @@ D3DKMTSignalSynchronizationObject |
| 13 | 14 | D3DKMTUnlock |
| 14 | 15 | D3DKMTWaitForSynchronizationObject |
| 15 | 16 | DXGIDumpJournal |
| 17 | PIXBeginCapture | |
| 18 | PIXEndCapture | |
| 19 | PIXGetCaptureState | |
| 16 | 20 | DXGIRevertToSxS |
| 17 | 21 | OpenAdapter10 |
| 18 | 22 | OpenAdapter10_2 |
| 19 | 23 | SetAppCompatStringPointer |
| 24 | UpdateHMDEmulationStatus | |
| 20 | 25 | CreateDXGIFactory |
| 21 | 26 | CreateDXGIFactory1 |
| 22 | 27 | CreateDXGIFactory2 |
| ... | ... | @@ -50,5 +55,6 @@ DXGID3D10CreateLayeredDevice |
| 50 | 55 | DXGID3D10ETWRundown |
| 51 | 56 | DXGID3D10GetLayeredDeviceSize |
| 52 | 57 | DXGID3D10RegisterLayers |
| 58 | DXGIDeclareAdapterRemovalSupport | |
| 53 | 59 | DXGIGetDebugInterface1 |
| 54 | 60 | DXGIReportAdapterConfiguration |
lib/libc/mingw/lib-common/mf.def+6| ... | ... | @@ -9,6 +9,11 @@ AppendPropVariant |
| 9 | 9 | ConvertPropVariant |
| 10 | 10 | CopyPropertyStore |
| 11 | 11 | CreateNamedPropertyStore |
| 12 | ; DllCanUnloadNow | |
| 13 | ; DllGetActivationFactory | |
| 14 | ; DllGetClassObject | |
| 15 | ; DllRegisterServer | |
| 16 | ; DllUnregisterServer | |
| 12 | 17 | ExtractPropVariant |
| 13 | 18 | MFCreate3GPMediaSink |
| 14 | 19 | MFCreateAC3MediaSink |
| ... | ... | @@ -36,6 +41,7 @@ MFCreateCredentialCache |
| 36 | 41 | MFCreateDeviceSource |
| 37 | 42 | MFCreateDeviceSourceActivate |
| 38 | 43 | MFCreateDrmNetNDSchemePlugin |
| 44 | MFCreateEncryptedMediaExtensionsStoreActivate | |
| 39 | 45 | MFCreateFMPEG4MediaSink |
| 40 | 46 | MFCreateFileBlockMap |
| 41 | 47 | MFCreateFileSchemePlugin |
lib/libc/mingw/lib-common/mfcore.def created+60| ... | ... | @@ -0,0 +1,60 @@ |
| 1 | ; | |
| 2 | ; Definition file of MFCORE.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008-2014 | |
| 5 | ; | |
| 6 | LIBRARY "MFCORE.dll" | |
| 7 | EXPORTS | |
| 8 | AppendPropVariant | |
| 9 | ConvertPropVariant | |
| 10 | CopyPropertyStore | |
| 11 | CreateNamedPropertyStore | |
| 12 | ; DllCanUnloadNow | |
| 13 | ; DllGetActivationFactory | |
| 14 | ; DllGetClassObject | |
| 15 | ; DllRegisterServer | |
| 16 | ; DllUnregisterServer | |
| 17 | ExtractPropVariant | |
| 18 | MFCopyMFMetadata | |
| 19 | MFCopyPropertyStore | |
| 20 | MFCopyStreamMetadata | |
| 21 | MFCreateAggregateSource | |
| 22 | MFCreateAppSourceProxy | |
| 23 | MFCreateAudioRenderer | |
| 24 | MFCreateAudioRendererActivate | |
| 25 | MFCreateDeviceSource | |
| 26 | MFCreateDeviceSourceActivate | |
| 27 | MFCreateEncryptedMediaExtensionsStoreActivate | |
| 28 | MFCreateExtendedCameraIntrinsicModel | |
| 29 | MFCreateExtendedCameraIntrinsics | |
| 30 | MFCreateFileSchemePlugin | |
| 31 | MFCreateMFMetadataOnPropertyStore | |
| 32 | MFCreateMediaProcessor | |
| 33 | MFCreateMediaSession | |
| 34 | MFCreatePMPHost | |
| 35 | MFCreatePMPMediaSession | |
| 36 | MFCreatePMPServer | |
| 37 | MFCreatePresentationClock | |
| 38 | MFCreatePresentationClockAsyncTimeSource | |
| 39 | MFCreateSampleCopierMFT | |
| 40 | MFCreateSampleGrabberSinkActivate | |
| 41 | MFCreateSequencerSegmentOffset | |
| 42 | MFCreateSequencerSource | |
| 43 | MFCreateSequencerSourceRemoteStream | |
| 44 | MFCreateSimpleTypeHandler | |
| 45 | MFCreateSoundEventSchemePlugin | |
| 46 | MFCreateStandardQualityManager | |
| 47 | MFCreateTopoLoader | |
| 48 | MFCreateTopology | |
| 49 | MFCreateTopologyNode | |
| 50 | MFCreateTransformWrapper | |
| 51 | MFCreateWMAEncoderActivate | |
| 52 | MFCreateWMVEncoderActivate | |
| 53 | MFEnumDeviceSources | |
| 54 | MFGetMultipleServiceProviders | |
| 55 | MFGetService | |
| 56 | MFGetTopoNodeCurrentType | |
| 57 | MFReadSequencerSegmentOffset | |
| 58 | MFRequireProtectedEnvironment | |
| 59 | MFShutdownObject | |
| 60 | MergePropertyStore |
lib/libc/mingw/lib-common/mfplat.def+45| ... | ... | @@ -1,3 +1,8 @@ |
| 1 | ; | |
| 2 | ; Definition file of MFPlat.DLL | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008 | |
| 5 | ; | |
| 1 | 6 | LIBRARY "MFPlat.DLL" |
| 2 | 7 | EXPORTS |
| 3 | 8 | FormatTagFromWfx |
| ... | ... | @@ -35,9 +40,15 @@ MFBeginUnregisterWorkQueueWithMMCSS |
| 35 | 40 | MFBlockThread |
| 36 | 41 | MFCalculateBitmapImageSize |
| 37 | 42 | MFCalculateImageSize |
| 43 | MFCallStackTracingClearSnapshot | |
| 44 | MFCallStackTracingLogSessionErrors | |
| 45 | MFCallStackTracingRestoreSnapshot | |
| 46 | MFCallStackTracingTakeSnapshot | |
| 38 | 47 | MFCancelCreateFile |
| 39 | 48 | MFCancelWorkItem |
| 49 | MFCheckEnabledViaAppService | |
| 40 | 50 | MFClearLocalMFTs |
| 51 | MFCombineSamples | |
| 41 | 52 | MFCompareFullToPartialMediaType |
| 42 | 53 | MFCompareSockaddrAddresses |
| 43 | 54 | MFConvertColorInfoFromDXVA |
| ... | ... | @@ -46,19 +57,27 @@ MFConvertFromFP16Array |
| 46 | 57 | MFConvertToFP16Array |
| 47 | 58 | MFCopyImage |
| 48 | 59 | MFCreate2DMediaBuffer |
| 60 | MFCreate2DMediaBufferOn1DMediaBuffer | |
| 49 | 61 | MFCreateAMMediaTypeFromMFMediaType |
| 50 | 62 | MFCreateAlignedMemoryBuffer |
| 63 | MFCreateAlignedSharedMemoryBuffer | |
| 51 | 64 | MFCreateAsyncResult |
| 52 | 65 | MFCreateAttributes |
| 53 | 66 | MFCreateAudioMediaType |
| 67 | MFCreateByteStreamHandlerAppServiceActivate | |
| 54 | 68 | MFCreateCollection |
| 69 | MFCreateContentDecryptorContext | |
| 70 | MFCreateContentProtectionDevice | |
| 71 | MFCreateD3D12SynchronizationObject | |
| 55 | 72 | MFCreateDXGIDeviceManager |
| 56 | 73 | MFCreateDXGISurfaceBuffer |
| 57 | 74 | MFCreateDXSurfaceBuffer |
| 75 | MFCreateEMEStoreObject | |
| 58 | 76 | MFCreateEventQueue |
| 59 | 77 | MFCreateFile |
| 60 | 78 | MFCreateFileFromHandle |
| 61 | 79 | MFCreateLegacyMediaBufferOnMFMediaBuffer |
| 80 | MFCreateMFByteStreamOnIStreamWithFlags | |
| 62 | 81 | MFCreateMFByteStreamOnStream |
| 63 | 82 | MFCreateMFByteStreamOnStreamEx |
| 64 | 83 | MFCreateMFByteStreamWrapper |
| ... | ... | @@ -69,30 +88,44 @@ MFCreateMediaEvent |
| 69 | 88 | MFCreateMediaEventResult |
| 70 | 89 | MFCreateMediaExtensionActivate |
| 71 | 90 | MFCreateMediaExtensionActivateNoInit |
| 91 | MFCreateMediaExtensionAppServiceActivate | |
| 92 | MFCreateMediaExtensionInprocActivate | |
| 72 | 93 | MFCreateMediaType |
| 73 | 94 | MFCreateMediaTypeFromProperties |
| 74 | 95 | MFCreateMediaTypeFromRepresentation |
| 75 | 96 | MFCreateMemoryBuffer |
| 97 | MFCreateMemoryBufferFromRawBuffer | |
| 76 | 98 | MFCreateMemoryStream |
| 99 | MFCreateMuxStreamAttributes | |
| 100 | MFCreateMuxStreamMediaType | |
| 101 | MFCreateMuxStreamSample | |
| 102 | MFCreateOOPMFTProxy | |
| 103 | MFCreateOOPMFTRemote | |
| 77 | 104 | MFCreatePathFromURL |
| 78 | 105 | MFCreatePresentationDescriptor |
| 79 | 106 | MFCreatePropertiesFromMediaType |
| 80 | 107 | MFCreateReusableByteStream |
| 108 | MFCreateReusableByteStreamWithSharedLock | |
| 81 | 109 | MFCreateSample |
| 110 | MFCreateSecureBufferAllocator | |
| 111 | MFCreateSharedMemoryMediaBufferFromMediaType | |
| 82 | 112 | MFCreateSocket |
| 83 | 113 | MFCreateSocketListener |
| 84 | 114 | MFCreateSourceResolver |
| 85 | 115 | MFCreateSourceResolverInternal |
| 116 | MFCreateStagingSurfaceWrapper | |
| 86 | 117 | MFCreateStreamDescriptor |
| 87 | 118 | MFCreateStreamOnMFByteStream |
| 88 | 119 | MFCreateStreamOnMFByteStreamEx |
| 89 | 120 | MFCreateSystemTimeSource |
| 90 | 121 | MFCreateSystemUnderlyingClock |
| 122 | MFCreateTelemetrySession | |
| 91 | 123 | MFCreateTempFile |
| 92 | 124 | MFCreateTrackedSample |
| 93 | 125 | MFCreateTransformActivate |
| 94 | 126 | MFCreateURLFromPath |
| 95 | 127 | MFCreateUdpSockets |
| 128 | MFCreateVideoDecryptorContext | |
| 96 | 129 | MFCreateVideoMediaType |
| 97 | 130 | MFCreateVideoMediaTypeFromBitMapInfoHeader |
| 98 | 131 | MFCreateVideoMediaTypeFromBitMapInfoHeaderEx |
| ... | ... | @@ -101,6 +134,7 @@ MFCreateVideoMediaTypeFromVideoInfoHeader |
| 101 | 134 | MFCreateVideoMediaTypeFromVideoInfoHeader2 |
| 102 | 135 | MFCreateVideoSampleAllocatorEx |
| 103 | 136 | MFCreateWICBitmapBuffer |
| 137 | MFCreateWICDecoderProxy | |
| 104 | 138 | MFCreateWaveFormatExFromMFMediaType |
| 105 | 139 | MFDeserializeAttributesFromStream |
| 106 | 140 | MFDeserializeEvent |
| ... | ... | @@ -115,6 +149,7 @@ MFFreeAdaptersAddresses |
| 115 | 149 | MFGetAdaptersAddresses |
| 116 | 150 | MFGetAttributesAsBlob |
| 117 | 151 | MFGetAttributesAsBlobSize |
| 152 | MFGetCallStackTracingWeakReference | |
| 118 | 153 | MFGetConfigurationDWORD |
| 119 | 154 | MFGetConfigurationPolicy |
| 120 | 155 | MFGetConfigurationStore |
| ... | ... | @@ -136,6 +171,8 @@ MFGetUncompressedVideoFormat |
| 136 | 171 | MFGetWorkQueueMMCSSClass |
| 137 | 172 | MFGetWorkQueueMMCSSPriority |
| 138 | 173 | MFGetWorkQueueMMCSSTaskId |
| 174 | MFHasLocallyRegisteredByteStreamHandlers | |
| 175 | MFHasLocallyRegisteredSchemeHandlers | |
| 139 | 176 | MFHeapAlloc |
| 140 | 177 | MFHeapFree |
| 141 | 178 | MFInitAMMediaTypeFromMFMediaType |
| ... | ... | @@ -149,10 +186,13 @@ MFInitMediaTypeFromVideoInfoHeader2 |
| 149 | 186 | MFInitMediaTypeFromWaveFormatEx |
| 150 | 187 | MFInitVideoFormat |
| 151 | 188 | MFInitVideoFormat_RGB |
| 189 | MFInvalidateMFTEnumCache | |
| 152 | 190 | MFInvokeCallback |
| 153 | 191 | MFJoinIoPort |
| 154 | 192 | MFIsBottomUpFormat |
| 193 | MFIsContentProtectionDeviceSupported | |
| 155 | 194 | MFIsLocallyRegisteredMimeType |
| 195 | MFIsLocallyRegisteredSchemeHandler | |
| 156 | 196 | MFJoinWorkQueue |
| 157 | 197 | MFLockDXGIDeviceManager |
| 158 | 198 | MFLockPlatform |
| ... | ... | @@ -176,11 +216,15 @@ MFSerializeAttributesToStream |
| 176 | 216 | MFSerializeEvent |
| 177 | 217 | MFSerializeMediaTypeToStream |
| 178 | 218 | MFSerializePresentationDescriptor |
| 219 | MFSetMinimumMemoryAlignment | |
| 179 | 220 | MFSetSockaddrAny |
| 221 | MFSetWindowForContentProtection | |
| 180 | 222 | MFShutdown |
| 223 | MFSplitSample | |
| 181 | 224 | MFStartup |
| 182 | 225 | MFStreamDescriptorProtectMediaType |
| 183 | 226 | MFTEnum |
| 227 | MFTEnum2 | |
| 184 | 228 | MFTEnumEx |
| 185 | 229 | MFTGetInfo |
| 186 | 230 | MFTRegister |
| ... | ... | @@ -200,6 +244,7 @@ MFUnregisterPlatformFromMMCSS |
| 200 | 244 | MFUnwrapMediaType |
| 201 | 245 | MFValidateMediaTypeSize |
| 202 | 246 | MFWrapMediaType |
| 247 | MFWrapSocket | |
| 203 | 248 | MFllMulDiv |
| 204 | 249 | PropVariantFromStream |
| 205 | 250 | PropVariantToStream |
lib/libc/mingw/lib-common/mfplay.def created+13| ... | ... | @@ -0,0 +1,13 @@ |
| 1 | ; | |
| 2 | ; Definition file of MFPlay.DLL | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008-2014 | |
| 5 | ; | |
| 6 | LIBRARY "MFPlay.DLL" | |
| 7 | EXPORTS | |
| 8 | ; DllCanUnloadNow | |
| 9 | ; DllGetClassObject | |
| 10 | ; DllRegisterServer | |
| 11 | ; DllUnregisterServer | |
| 12 | MFPCreateMediaPlayer | |
| 13 | MFPCreateMediaPlayerEx |
lib/libc/mingw/lib-common/msvcrt.def.in+2| ... | ... | @@ -1015,6 +1015,7 @@ _stricmp_l |
| 1015 | 1015 | _stricoll |
| 1016 | 1016 | _stricoll_l |
| 1017 | 1017 | _strlwr |
| 1018 | strlwr == _strlwr | |
| 1018 | 1019 | _strlwr_l |
| 1019 | 1020 | _strlwr_s |
| 1020 | 1021 | _strlwr_s_l |
| ... | ... | @@ -1161,6 +1162,7 @@ _wcsicmp_l |
| 1161 | 1162 | _wcsicoll |
| 1162 | 1163 | _wcsicoll_l |
| 1163 | 1164 | _wcslwr |
| 1165 | wcslwr == _wcslwr | |
| 1164 | 1166 | _wcslwr_l |
| 1165 | 1167 | _wcslwr_s |
| 1166 | 1168 | _wcslwr_s_l |
lib/libc/mingw/lib-common/ncrypt.def+20| ... | ... | @@ -38,6 +38,7 @@ BCryptGenerateKeyPair |
| 38 | 38 | BCryptGenerateSymmetricKey |
| 39 | 39 | BCryptGetFipsAlgorithmMode |
| 40 | 40 | BCryptGetProperty |
| 41 | BCryptHash | |
| 41 | 42 | BCryptHashData |
| 42 | 43 | BCryptImportKey |
| 43 | 44 | BCryptImportKeyPair |
| ... | ... | @@ -65,6 +66,7 @@ GetKeyStorageInterface |
| 65 | 66 | GetSChannelInterface |
| 66 | 67 | NCryptCloseKeyProtector |
| 67 | 68 | NCryptCloseProtectionDescriptor |
| 69 | NCryptCreateClaim | |
| 68 | 70 | NCryptCreatePersistedKey |
| 69 | 71 | NCryptCreateProtectionDescriptor |
| 70 | 72 | NCryptDecrypt |
| ... | ... | @@ -100,27 +102,45 @@ NCryptSignHash |
| 100 | 102 | NCryptStreamClose |
| 101 | 103 | NCryptStreamOpenToProtect |
| 102 | 104 | NCryptStreamOpenToUnprotect |
| 105 | NCryptStreamOpenToUnprotectEx | |
| 103 | 106 | NCryptStreamUpdate |
| 104 | 107 | NCryptTranslateHandle |
| 105 | 108 | NCryptUnprotectKey |
| 106 | 109 | NCryptUnprotectSecret |
| 110 | NCryptVerifyClaim | |
| 107 | 111 | NCryptVerifySignature |
| 108 | 112 | SslChangeNotify |
| 109 | 113 | SslComputeClientAuthHash |
| 110 | 114 | SslComputeEapKeyBlock |
| 111 | 115 | SslComputeFinishedHash |
| 116 | SslComputeSessionHash | |
| 112 | 117 | SslCreateClientAuthHash |
| 113 | 118 | SslCreateEphemeralKey |
| 114 | 119 | SslCreateHandshakeHash |
| 115 | 120 | SslDecrementProviderReferenceCount |
| 116 | 121 | SslDecryptPacket |
| 122 | SslDuplicateTranscriptHash | |
| 117 | 123 | SslEncryptPacket |
| 118 | 124 | SslEnumCipherSuites |
| 125 | SslEnumCipherSuitesEx | |
| 126 | SslEnumEccCurves | |
| 119 | 127 | SslEnumProtocolProviders |
| 128 | SslExpandBinderKey | |
| 129 | SslExpandExporterMasterKey | |
| 130 | SslExpandNextGenTrafficKey | |
| 131 | SslExpandPreSharedKey | |
| 132 | SslExpandResumptionMasterKey | |
| 133 | SslExpandTrafficKeys | |
| 134 | SslExpandWriteKey | |
| 120 | 135 | SslExportKey |
| 136 | SslExportKeyingMaterial | |
| 137 | SslExtractEarlyKey | |
| 138 | SslExtractHandshakeKey | |
| 139 | SslExtractMasterKey | |
| 121 | 140 | SslFreeBuffer |
| 122 | 141 | SslFreeObject |
| 123 | 142 | SslGenerateMasterKey |
| 143 | SslGeneratePreMasterKey | |
| 124 | 144 | SslGenerateSessionKeys |
| 125 | 145 | SslGetCipherSuitePRFHashAlgorithm |
| 126 | 146 | SslGetKeyProperty |
lib/libc/mingw/lib-common/ntdll.def.in created+2358| ... | ... | @@ -0,0 +1,2358 @@ |
| 1 | #include "func.def.in" | |
| 2 | ||
| 3 | LIBRARY "ntdll.dll" | |
| 4 | EXPORTS | |
| 5 | #ifdef DEF_X64 | |
| 6 | PropertyLengthAsVariant | |
| 7 | RtlConvertPropertyToVariant | |
| 8 | RtlConvertVariantToProperty | |
| 9 | #endif | |
| 10 | A_SHAFinal | |
| 11 | A_SHAInit | |
| 12 | A_SHAUpdate | |
| 13 | AlpcAdjustCompletionListConcurrencyCount | |
| 14 | AlpcFreeCompletionListMessage | |
| 15 | AlpcGetCompletionListLastMessageInformation | |
| 16 | AlpcGetCompletionListMessageAttributes | |
| 17 | AlpcGetHeaderSize | |
| 18 | AlpcGetMessageAttribute | |
| 19 | AlpcGetMessageFromCompletionList | |
| 20 | AlpcGetOutstandingCompletionListMessageCount | |
| 21 | AlpcInitializeMessageAttribute | |
| 22 | AlpcMaxAllowedMessageLength | |
| 23 | AlpcRegisterCompletionList | |
| 24 | AlpcRegisterCompletionListWorkerThread | |
| 25 | AlpcRundownCompletionList | |
| 26 | AlpcUnregisterCompletionList | |
| 27 | AlpcUnregisterCompletionListWorkerThread | |
| 28 | ApiSetQueryApiSetPresence | |
| 29 | ApiSetQueryApiSetPresenceEx | |
| 30 | CsrAllocateCaptureBuffer | |
| 31 | CsrAllocateMessagePointer | |
| 32 | CsrCaptureMessageBuffer | |
| 33 | CsrCaptureMessageMultiUnicodeStringsInPlace | |
| 34 | CsrCaptureMessageString | |
| 35 | CsrCaptureTimeout | |
| 36 | CsrClientCallServer | |
| 37 | CsrClientConnectToServer | |
| 38 | CsrFreeCaptureBuffer | |
| 39 | CsrGetProcessId | |
| 40 | CsrIdentifyAlertableThread | |
| 41 | #if defined(DEF_I386) || defined(DEF_X64) | |
| 42 | CsrNewThread | |
| 43 | CsrProbeForRead | |
| 44 | CsrProbeForWrite | |
| 45 | #endif | |
| 46 | CsrSetPriorityClass | |
| 47 | CsrVerifyRegion | |
| 48 | DbgBreakPoint | |
| 49 | DbgPrint | |
| 50 | DbgPrintEx | |
| 51 | DbgPrintReturnControlC | |
| 52 | DbgPrompt | |
| 53 | DbgQueryDebugFilterState | |
| 54 | DbgSetDebugFilterState | |
| 55 | DbgUiConnectToDbg | |
| 56 | DbgUiContinue | |
| 57 | DbgUiConvertStateChangeStructure | |
| 58 | DbgUiConvertStateChangeStructureEx | |
| 59 | DbgUiDebugActiveProcess | |
| 60 | DbgUiGetThreadDebugObject | |
| 61 | DbgUiIssueRemoteBreakin | |
| 62 | DbgUiRemoteBreakin | |
| 63 | DbgUiSetThreadDebugObject | |
| 64 | DbgUiStopDebugging | |
| 65 | DbgUiWaitStateChange | |
| 66 | DbgUserBreakPoint | |
| 67 | EtwCheckCoverage | |
| 68 | #ifdef DEF_X64 | |
| 69 | EtwControlTraceA | |
| 70 | EtwControlTraceW | |
| 71 | #endif | |
| 72 | EtwCreateTraceInstanceId | |
| 73 | #ifdef DEF_X64 | |
| 74 | EtwEnableTrace | |
| 75 | EtwEnumerateTraceGuids | |
| 76 | EtwFlushTraceA | |
| 77 | EtwFlushTraceW | |
| 78 | #endif | |
| 79 | EtwDeliverDataBlock | |
| 80 | EtwEnumerateProcessRegGuids | |
| 81 | EtwEventActivityIdControl | |
| 82 | EtwEventEnabled | |
| 83 | EtwEventProviderEnabled | |
| 84 | EtwEventRegister | |
| 85 | EtwEventSetInformation | |
| 86 | EtwEventUnregister | |
| 87 | EtwEventWrite | |
| 88 | EtwEventWriteEndScenario | |
| 89 | EtwEventWriteEx | |
| 90 | EtwEventWriteFull | |
| 91 | EtwEventWriteNoRegistration | |
| 92 | EtwEventWriteStartScenario | |
| 93 | EtwEventWriteString | |
| 94 | EtwEventWriteTransfer | |
| 95 | EtwGetTraceEnableFlags | |
| 96 | EtwGetTraceEnableLevel | |
| 97 | EtwGetTraceLoggerHandle | |
| 98 | #ifdef DEF_X64 | |
| 99 | EtwNotificationRegistrationA | |
| 100 | EtwNotificationRegistrationW | |
| 101 | EtwQueryAllTracesA | |
| 102 | EtwQueryAllTracesW | |
| 103 | EtwQueryTraceA | |
| 104 | EtwQueryTraceW | |
| 105 | EtwReceiveNotificationsA | |
| 106 | EtwReceiveNotificationsW | |
| 107 | #endif | |
| 108 | EtwLogTraceEvent | |
| 109 | EtwNotificationRegister | |
| 110 | EtwNotificationUnregister | |
| 111 | EtwProcessPrivateLoggerRequest | |
| 112 | EtwRegisterSecurityProvider | |
| 113 | EtwRegisterTraceGuidsA | |
| 114 | EtwRegisterTraceGuidsW | |
| 115 | #ifdef DEF_X64 | |
| 116 | EtwStartTraceA | |
| 117 | EtwStartTraceW | |
| 118 | EtwStopTraceA | |
| 119 | EtwStopTraceW | |
| 120 | EtwTraceEvent | |
| 121 | #endif | |
| 122 | EtwReplyNotification | |
| 123 | EtwSendNotification | |
| 124 | EtwSetMark | |
| 125 | EtwTraceEventInstance | |
| 126 | EtwTraceMessage | |
| 127 | EtwTraceMessageVa | |
| 128 | EtwUnregisterTraceGuids | |
| 129 | #ifdef DEF_X64 | |
| 130 | EtwUpdateTraceA | |
| 131 | EtwUpdateTraceW | |
| 132 | EtwpGetTraceBuffer | |
| 133 | EtwpSetHWConfigFunction | |
| 134 | #endif | |
| 135 | EtwWriteUMSecurityEvent | |
| 136 | EtwpCreateEtwThread | |
| 137 | EtwpGetCpuSpeed | |
| 138 | F_X64(EtwpNotificationThread) | |
| 139 | EvtIntReportAuthzEventAndSourceAsync | |
| 140 | EvtIntReportEventAndSourceAsync | |
| 141 | #ifndef DEF_ARM32 | |
| 142 | ExpInterlockedPopEntrySListEnd | |
| 143 | F_X64(ExpInterlockedPopEntrySListEnd16) | |
| 144 | ExpInterlockedPopEntrySListFault | |
| 145 | F_X64(ExpInterlockedPopEntrySListFault16) | |
| 146 | ExpInterlockedPopEntrySListResume | |
| 147 | F_X64(ExpInterlockedPopEntrySListResume16) | |
| 148 | #endif | |
| 149 | KiRaiseUserExceptionDispatcher | |
| 150 | KiUserApcDispatcher | |
| 151 | KiUserCallbackDispatcher | |
| 152 | F_ARM_ANY(KiUserCallbackDispatcherReturn) | |
| 153 | KiUserExceptionDispatcher | |
| 154 | KiUserInvertedFunctionTable F_ARM_ANY(DATA) | |
| 155 | F_X64(LdrAccessOutOfProcessResource) | |
| 156 | LdrAccessResource | |
| 157 | LdrAddDllDirectory | |
| 158 | LdrAddLoadAsDataTable | |
| 159 | LdrAddRefDll | |
| 160 | F_X86_ANY(LdrAlternateResourcesEnabled) | |
| 161 | LdrAppxHandleIntegrityFailure | |
| 162 | LdrCallEnclave | |
| 163 | LdrControlFlowGuardEnforced | |
| 164 | LdrCreateEnclave | |
| 165 | F_X64(LdrCreateOutOfProcessImage) | |
| 166 | LdrDeleteEnclave | |
| 167 | F_X64(LdrDestroyOutOfProcessImage) | |
| 168 | LdrDisableThreadCalloutsForDll | |
| 169 | LdrEnumResources | |
| 170 | LdrEnumerateLoadedModules | |
| 171 | LdrFastFailInLoaderCallout | |
| 172 | F_X64(LdrFindCreateProcessManifest) | |
| 173 | LdrFindEntryForAddress | |
| 174 | LdrFindResourceDirectory_U | |
| 175 | LdrFindResourceEx_U | |
| 176 | LdrFindResource_U | |
| 177 | LdrFlushAlternateResourceModules | |
| 178 | LdrGetDllDirectory | |
| 179 | LdrGetDllFullName | |
| 180 | LdrGetDllHandle | |
| 181 | LdrGetDllHandleByMapping | |
| 182 | LdrGetDllHandleByName | |
| 183 | LdrGetDllHandleEx | |
| 184 | LdrGetDllPath | |
| 185 | LdrGetFailureData | |
| 186 | LdrGetFileNameFromLoadAsDataTable | |
| 187 | F64(LdrGetKnownDllSectionHandle) | |
| 188 | LdrGetProcedureAddress | |
| 189 | LdrGetProcedureAddressEx | |
| 190 | LdrGetProcedureAddressForCaller | |
| 191 | F_X86_ANY(LdrHotPatchRoutine) | |
| 192 | LdrInitShimEngineDynamic | |
| 193 | LdrInitializeEnclave | |
| 194 | LdrInitializeThunk | |
| 195 | LdrIsModuleSxsRedirected | |
| 196 | LdrLoadAlternateResourceModule | |
| 197 | LdrLoadAlternateResourceModuleEx | |
| 198 | LdrLoadDll | |
| 199 | LdrLoadEnclaveModule | |
| 200 | LdrLockLoaderLock | |
| 201 | LdrOpenImageFileOptionsKey | |
| 202 | F64(LdrProcessInitializationComplete) | |
| 203 | LdrProcessRelocationBlock | |
| 204 | LdrProcessRelocationBlockEx | |
| 205 | LdrQueryImageFileExecutionOptions | |
| 206 | LdrQueryImageFileExecutionOptionsEx | |
| 207 | LdrQueryImageFileKeyOption | |
| 208 | LdrQueryModuleServiceTags | |
| 209 | LdrQueryOptionalDelayLoadedAPI | |
| 210 | LdrQueryProcessModuleInformation | |
| 211 | LdrRegisterDllNotification | |
| 212 | LdrRemoveDllDirectory | |
| 213 | LdrRemoveLoadAsDataTable | |
| 214 | LdrResFindResource | |
| 215 | LdrResFindResourceDirectory | |
| 216 | LdrResGetRCConfig | |
| 217 | LdrResRelease | |
| 218 | LdrResSearchResource | |
| 219 | LdrResolveDelayLoadedAPI | |
| 220 | LdrResolveDelayLoadsFromDll | |
| 221 | LdrRscIsTypeExist | |
| 222 | LdrSetAppCompatDllRedirectionCallback | |
| 223 | LdrSetDefaultDllDirectories | |
| 224 | LdrSetDllDirectory | |
| 225 | LdrSetDllManifestProber | |
| 226 | LdrSetImplicitPathOptions | |
| 227 | LdrSetMUICacheType | |
| 228 | LdrShutdownProcess | |
| 229 | LdrShutdownThread | |
| 230 | LdrStandardizeSystemPath | |
| 231 | LdrSystemDllInitBlock F_ARM_ANY(DATA) | |
| 232 | LdrUnloadAlternateResourceModule | |
| 233 | LdrUnloadAlternateResourceModuleEx | |
| 234 | LdrUnloadDll | |
| 235 | LdrUnlockLoaderLock | |
| 236 | LdrUnregisterDllNotification | |
| 237 | LdrUpdatePackageSearchPath | |
| 238 | LdrVerifyImageMatchesChecksum | |
| 239 | LdrVerifyImageMatchesChecksumEx | |
| 240 | LdrpResGetMappingSize | |
| 241 | LdrpResGetResourceDirectory | |
| 242 | MD4Final | |
| 243 | MD4Init | |
| 244 | MD4Update | |
| 245 | MD5Final | |
| 246 | MD5Init | |
| 247 | MD5Update | |
| 248 | NlsAnsiCodePage DATA | |
| 249 | NlsMbCodePageTag DATA | |
| 250 | NlsMbOemCodePageTag DATA | |
| 251 | NtAcceptConnectPort | |
| 252 | NtAccessCheck | |
| 253 | NtAccessCheckAndAuditAlarm | |
| 254 | NtAccessCheckByType | |
| 255 | NtAccessCheckByTypeAndAuditAlarm | |
| 256 | NtAccessCheckByTypeResultList | |
| 257 | NtAccessCheckByTypeResultListAndAuditAlarm | |
| 258 | NtAccessCheckByTypeResultListAndAuditAlarmByHandle | |
| 259 | NtAcquireProcessActivityReference | |
| 260 | NtAddAtom | |
| 261 | NtAddAtomEx | |
| 262 | NtAddBootEntry | |
| 263 | NtAddDriverEntry | |
| 264 | NtAdjustGroupsToken | |
| 265 | NtAdjustPrivilegesToken | |
| 266 | NtAdjustTokenClaimsAndDeviceGroups | |
| 267 | NtAlertResumeThread | |
| 268 | NtAlertThread | |
| 269 | NtAlertThreadByThreadId | |
| 270 | NtAllocateLocallyUniqueId | |
| 271 | NtAllocateReserveObject | |
| 272 | NtAllocateUserPhysicalPages | |
| 273 | F_X86_ANY(NtAllocateUserPhysicalPagesEx) | |
| 274 | NtAllocateUuids | |
| 275 | NtAllocateVirtualMemory | |
| 276 | NtAllocateVirtualMemoryEx | |
| 277 | NtAlpcAcceptConnectPort | |
| 278 | NtAlpcCancelMessage | |
| 279 | NtAlpcConnectPort | |
| 280 | NtAlpcConnectPortEx | |
| 281 | NtAlpcCreatePort | |
| 282 | NtAlpcCreatePortSection | |
| 283 | NtAlpcCreateResourceReserve | |
| 284 | NtAlpcCreateSectionView | |
| 285 | NtAlpcCreateSecurityContext | |
| 286 | NtAlpcDeletePortSection | |
| 287 | NtAlpcDeleteResourceReserve | |
| 288 | NtAlpcDeleteSectionView | |
| 289 | NtAlpcDeleteSecurityContext | |
| 290 | NtAlpcDisconnectPort | |
| 291 | NtAlpcImpersonateClientContainerOfPort | |
| 292 | NtAlpcImpersonateClientOfPort | |
| 293 | NtAlpcOpenSenderProcess | |
| 294 | NtAlpcOpenSenderThread | |
| 295 | NtAlpcQueryInformation | |
| 296 | NtAlpcQueryInformationMessage | |
| 297 | NtAlpcRevokeSecurityContext | |
| 298 | NtAlpcSendWaitReceivePort | |
| 299 | NtAlpcSetInformation | |
| 300 | NtApphelpCacheControl | |
| 301 | NtAreMappedFilesTheSame | |
| 302 | NtAssignProcessToJobObject | |
| 303 | NtAssociateWaitCompletionPacket | |
| 304 | NtCallEnclave | |
| 305 | NtCallbackReturn | |
| 306 | F_X86_ANY(NtCancelDeviceWakeupRequest) | |
| 307 | NtCancelIoFile | |
| 308 | NtCancelIoFileEx | |
| 309 | NtCancelSynchronousIoFile | |
| 310 | NtCancelTimer | |
| 311 | NtCancelTimer2 | |
| 312 | NtCancelWaitCompletionPacket | |
| 313 | NtClearEvent | |
| 314 | NtClose | |
| 315 | NtCloseObjectAuditAlarm | |
| 316 | NtCommitComplete | |
| 317 | NtCommitEnlistment | |
| 318 | NtCommitRegistryTransaction | |
| 319 | NtCommitTransaction | |
| 320 | NtCompactKeys | |
| 321 | NtCompareObjects | |
| 322 | NtCompareSigningLevels | |
| 323 | NtCompareTokens | |
| 324 | NtCompleteConnectPort | |
| 325 | NtCompressKey | |
| 326 | NtConnectPort | |
| 327 | NtContinue | |
| 328 | NtConvertBetweenAuxiliaryCounterAndPerformanceCounter | |
| 329 | NtCreateCrossVmEvent | |
| 330 | NtCreateDebugObject | |
| 331 | NtCreateDirectoryObject | |
| 332 | NtCreateDirectoryObjectEx | |
| 333 | NtCreateEnclave | |
| 334 | NtCreateEnlistment | |
| 335 | NtCreateEvent | |
| 336 | NtCreateEventPair | |
| 337 | NtCreateFile | |
| 338 | NtCreateIRTimer | |
| 339 | NtCreateIoCompletion | |
| 340 | NtCreateJobObject | |
| 341 | NtCreateJobSet | |
| 342 | NtCreateKey | |
| 343 | NtCreateKeyTransacted | |
| 344 | NtCreateKeyedEvent | |
| 345 | NtCreateLowBoxToken | |
| 346 | NtCreateMailslotFile | |
| 347 | NtCreateMutant | |
| 348 | NtCreateNamedPipeFile | |
| 349 | NtCreatePagingFile | |
| 350 | NtCreatePartition | |
| 351 | NtCreatePort | |
| 352 | NtCreatePrivateNamespace | |
| 353 | NtCreateProcess | |
| 354 | NtCreateProcessEx | |
| 355 | NtCreateProfile | |
| 356 | NtCreateProfileEx | |
| 357 | NtCreateRegistryTransaction | |
| 358 | NtCreateResourceManager | |
| 359 | NtCreateSection | |
| 360 | NtCreateSectionEx | |
| 361 | NtCreateSemaphore | |
| 362 | NtCreateSymbolicLinkObject | |
| 363 | NtCreateThread | |
| 364 | NtCreateThreadEx | |
| 365 | NtCreateTimer | |
| 366 | NtCreateTimer2 | |
| 367 | NtCreateToken | |
| 368 | NtCreateTokenEx | |
| 369 | NtCreateTransaction | |
| 370 | NtCreateTransactionManager | |
| 371 | NtCreateUserProcess | |
| 372 | NtCreateWaitCompletionPacket | |
| 373 | NtCreateWaitablePort | |
| 374 | NtCreateWnfStateName | |
| 375 | NtCreateWorkerFactory | |
| 376 | NtDebugActiveProcess | |
| 377 | NtDebugContinue | |
| 378 | NtDelayExecution | |
| 379 | NtDeleteAtom | |
| 380 | NtDeleteBootEntry | |
| 381 | NtDeleteDriverEntry | |
| 382 | NtDeleteFile | |
| 383 | NtDeleteKey | |
| 384 | NtDeleteObjectAuditAlarm | |
| 385 | NtDeletePrivateNamespace | |
| 386 | NtDeleteValueKey | |
| 387 | NtDeleteWnfStateData | |
| 388 | NtDeleteWnfStateName | |
| 389 | NtDeviceIoControlFile | |
| 390 | NtDisableLastKnownGood | |
| 391 | NtDisplayString | |
| 392 | NtDrawText | |
| 393 | NtDuplicateObject | |
| 394 | NtDuplicateToken | |
| 395 | NtEnableLastKnownGood | |
| 396 | NtEnumerateBootEntries | |
| 397 | NtEnumerateDriverEntries | |
| 398 | NtEnumerateKey | |
| 399 | NtEnumerateSystemEnvironmentValuesEx | |
| 400 | NtEnumerateTransactionObject | |
| 401 | NtEnumerateValueKey | |
| 402 | NtExtendSection | |
| 403 | NtFilterBootOption | |
| 404 | NtFilterToken | |
| 405 | NtFilterTokenEx | |
| 406 | NtFindAtom | |
| 407 | NtFlushBuffersFile | |
| 408 | NtFlushBuffersFileEx | |
| 409 | NtFlushInstallUILanguage | |
| 410 | NtFlushInstructionCache | |
| 411 | NtFlushKey | |
| 412 | NtFlushProcessWriteBuffers | |
| 413 | NtFlushVirtualMemory | |
| 414 | NtFlushWriteBuffer | |
| 415 | NtFreeUserPhysicalPages | |
| 416 | NtFreeVirtualMemory | |
| 417 | NtFreezeRegistry | |
| 418 | NtFreezeTransactions | |
| 419 | NtFsControlFile | |
| 420 | NtGetCachedSigningLevel | |
| 421 | NtGetCompleteWnfStateSubscription | |
| 422 | NtGetContextThread | |
| 423 | NtGetCurrentProcessorNumber | |
| 424 | NtGetCurrentProcessorNumberEx | |
| 425 | NtGetDevicePowerState | |
| 426 | NtGetMUIRegistryInfo | |
| 427 | NtGetNextProcess | |
| 428 | NtGetNextThread | |
| 429 | NtGetNlsSectionPtr | |
| 430 | NtGetNotificationResourceManager | |
| 431 | F_X86_ANY(NtGetPlugPlayEvent) | |
| 432 | NtGetTickCount | |
| 433 | NtGetWriteWatch | |
| 434 | NtImpersonateAnonymousToken | |
| 435 | NtImpersonateClientOfPort | |
| 436 | NtImpersonateThread | |
| 437 | NtInitializeEnclave | |
| 438 | NtInitializeNlsFiles | |
| 439 | NtInitializeRegistry | |
| 440 | NtInitiatePowerAction | |
| 441 | NtIsProcessInJob | |
| 442 | NtIsSystemResumeAutomatic | |
| 443 | NtIsUILanguageComitted | |
| 444 | NtListenPort | |
| 445 | NtLoadDriver | |
| 446 | NtLoadEnclaveData | |
| 447 | NtLoadKey | |
| 448 | NtLoadKey2 | |
| 449 | F_ARM_ANY(NtLoadKey3) | |
| 450 | NtLoadKeyEx | |
| 451 | NtLockFile | |
| 452 | NtLockProductActivationKeys | |
| 453 | NtLockRegistryKey | |
| 454 | NtLockVirtualMemory | |
| 455 | NtMakePermanentObject | |
| 456 | NtMakeTemporaryObject | |
| 457 | NtManageHotPatch | |
| 458 | NtManagePartition | |
| 459 | NtMapCMFModule | |
| 460 | NtMapUserPhysicalPages | |
| 461 | NtMapUserPhysicalPagesScatter | |
| 462 | NtMapViewOfSection | |
| 463 | NtMapViewOfSectionEx | |
| 464 | NtModifyBootEntry | |
| 465 | NtModifyDriverEntry | |
| 466 | NtNotifyChangeDirectoryFile | |
| 467 | NtNotifyChangeDirectoryFileEx | |
| 468 | NtNotifyChangeKey | |
| 469 | NtNotifyChangeMultipleKeys | |
| 470 | NtNotifyChangeSession | |
| 471 | NtOpenDirectoryObject | |
| 472 | NtOpenEnlistment | |
| 473 | NtOpenEvent | |
| 474 | NtOpenEventPair | |
| 475 | NtOpenFile | |
| 476 | NtOpenIoCompletion | |
| 477 | NtOpenJobObject | |
| 478 | NtOpenKey | |
| 479 | NtOpenKeyEx | |
| 480 | NtOpenKeyTransacted | |
| 481 | NtOpenKeyTransactedEx | |
| 482 | NtOpenKeyedEvent | |
| 483 | NtOpenMutant | |
| 484 | NtOpenObjectAuditAlarm | |
| 485 | NtOpenPartition | |
| 486 | NtOpenPrivateNamespace | |
| 487 | NtOpenProcess | |
| 488 | NtOpenProcessToken | |
| 489 | NtOpenProcessTokenEx | |
| 490 | NtOpenRegistryTransaction | |
| 491 | NtOpenResourceManager | |
| 492 | NtOpenSection | |
| 493 | NtOpenSemaphore | |
| 494 | NtOpenSession | |
| 495 | NtOpenSymbolicLinkObject | |
| 496 | NtOpenThread | |
| 497 | NtOpenThreadToken | |
| 498 | NtOpenThreadTokenEx | |
| 499 | NtOpenTimer | |
| 500 | NtOpenTransaction | |
| 501 | NtOpenTransactionManager | |
| 502 | NtPlugPlayControl | |
| 503 | NtPowerInformation | |
| 504 | NtPrePrepareComplete | |
| 505 | NtPrePrepareEnlistment | |
| 506 | NtPrepareComplete | |
| 507 | NtPrepareEnlistment | |
| 508 | NtPrivilegeCheck | |
| 509 | NtPrivilegeObjectAuditAlarm | |
| 510 | NtPrivilegedServiceAuditAlarm | |
| 511 | NtPropagationComplete | |
| 512 | NtPropagationFailed | |
| 513 | NtProtectVirtualMemory | |
| 514 | F_X86_ANY(NtPssCaptureVaSpaceBulk) | |
| 515 | NtPulseEvent | |
| 516 | NtQueryAttributesFile | |
| 517 | NtQueryAuxiliaryCounterFrequency | |
| 518 | NtQueryBootEntryOrder | |
| 519 | NtQueryBootOptions | |
| 520 | NtQueryDebugFilterState | |
| 521 | NtQueryDefaultLocale | |
| 522 | NtQueryDefaultUILanguage | |
| 523 | NtQueryDirectoryFile | |
| 524 | NtQueryDirectoryFileEx | |
| 525 | NtQueryDirectoryObject | |
| 526 | NtQueryDriverEntryOrder | |
| 527 | NtQueryEaFile | |
| 528 | NtQueryEvent | |
| 529 | NtQueryFullAttributesFile | |
| 530 | NtQueryInformationAtom | |
| 531 | NtQueryInformationByName | |
| 532 | NtQueryInformationEnlistment | |
| 533 | NtQueryInformationFile | |
| 534 | NtQueryInformationJobObject | |
| 535 | NtQueryInformationPort | |
| 536 | NtQueryInformationProcess | |
| 537 | NtQueryInformationResourceManager | |
| 538 | NtQueryInformationThread | |
| 539 | NtQueryInformationToken | |
| 540 | NtQueryInformationTransaction | |
| 541 | NtQueryInformationTransactionManager | |
| 542 | NtQueryInformationWorkerFactory | |
| 543 | NtQueryInstallUILanguage | |
| 544 | NtQueryIntervalProfile | |
| 545 | NtQueryIoCompletion | |
| 546 | NtQueryKey | |
| 547 | NtQueryLicenseValue | |
| 548 | NtQueryMultipleValueKey | |
| 549 | NtQueryMutant | |
| 550 | NtQueryObject | |
| 551 | NtQueryOpenSubKeys | |
| 552 | NtQueryOpenSubKeysEx | |
| 553 | NtQueryPerformanceCounter | |
| 554 | NtQueryPortInformationProcess | |
| 555 | NtQueryQuotaInformationFile | |
| 556 | NtQuerySection | |
| 557 | NtQuerySecurityAttributesToken | |
| 558 | NtQuerySecurityObject | |
| 559 | NtQuerySecurityPolicy | |
| 560 | NtQuerySemaphore | |
| 561 | NtQuerySymbolicLinkObject | |
| 562 | NtQuerySystemEnvironmentValue | |
| 563 | NtQuerySystemEnvironmentValueEx | |
| 564 | NtQuerySystemInformation | |
| 565 | NtQuerySystemInformationEx | |
| 566 | NtQuerySystemTime | |
| 567 | NtQueryTimer | |
| 568 | NtQueryTimerResolution | |
| 569 | NtQueryValueKey | |
| 570 | NtQueryVirtualMemory | |
| 571 | NtQueryVolumeInformationFile | |
| 572 | NtQueryWnfStateData | |
| 573 | NtQueryWnfStateNameInformation | |
| 574 | NtQueueApcThread | |
| 575 | NtQueueApcThreadEx | |
| 576 | NtRaiseException | |
| 577 | NtRaiseHardError | |
| 578 | NtReadFile | |
| 579 | NtReadFileScatter | |
| 580 | NtReadOnlyEnlistment | |
| 581 | NtReadRequestData | |
| 582 | NtReadVirtualMemory | |
| 583 | NtRecoverEnlistment | |
| 584 | NtRecoverResourceManager | |
| 585 | NtRecoverTransactionManager | |
| 586 | NtRegisterProtocolAddressInformation | |
| 587 | NtRegisterThreadTerminatePort | |
| 588 | NtReleaseKeyedEvent | |
| 589 | NtReleaseMutant | |
| 590 | NtReleaseSemaphore | |
| 591 | NtReleaseWorkerFactoryWorker | |
| 592 | NtRemoveIoCompletion | |
| 593 | NtRemoveIoCompletionEx | |
| 594 | NtRemoveProcessDebug | |
| 595 | NtRenameKey | |
| 596 | NtRenameTransactionManager | |
| 597 | NtReplaceKey | |
| 598 | NtReplacePartitionUnit | |
| 599 | NtReplyPort | |
| 600 | NtReplyWaitReceivePort | |
| 601 | NtReplyWaitReceivePortEx | |
| 602 | NtReplyWaitReplyPort | |
| 603 | F_X86_ANY(NtRequestDeviceWakeup) | |
| 604 | NtRequestPort | |
| 605 | NtRequestWaitReplyPort | |
| 606 | F_X86_ANY(NtRequestWakeupLatency) | |
| 607 | NtResetEvent | |
| 608 | NtResetWriteWatch | |
| 609 | NtRestoreKey | |
| 610 | NtResumeProcess | |
| 611 | NtResumeThread | |
| 612 | NtRevertContainerImpersonation | |
| 613 | NtRollbackComplete | |
| 614 | NtRollbackEnlistment | |
| 615 | NtRollbackRegistryTransaction | |
| 616 | NtRollbackTransaction | |
| 617 | NtRollforwardTransactionManager | |
| 618 | NtSaveKey | |
| 619 | NtSaveKeyEx | |
| 620 | NtSaveMergedKeys | |
| 621 | NtSecureConnectPort | |
| 622 | NtSerializeBoot | |
| 623 | NtSetBootEntryOrder | |
| 624 | NtSetBootOptions | |
| 625 | NtSetCachedSigningLevel | |
| 626 | NtSetCachedSigningLevel2 | |
| 627 | NtSetContextThread | |
| 628 | NtSetDebugFilterState | |
| 629 | NtSetDefaultHardErrorPort | |
| 630 | NtSetDefaultLocale | |
| 631 | NtSetDefaultUILanguage | |
| 632 | NtSetDriverEntryOrder | |
| 633 | NtSetEaFile | |
| 634 | NtSetEvent | |
| 635 | NtSetEventBoostPriority | |
| 636 | NtSetHighEventPair | |
| 637 | NtSetHighWaitLowEventPair | |
| 638 | NtSetIRTimer | |
| 639 | NtSetInformationDebugObject | |
| 640 | NtSetInformationEnlistment | |
| 641 | NtSetInformationFile | |
| 642 | NtSetInformationJobObject | |
| 643 | NtSetInformationKey | |
| 644 | NtSetInformationObject | |
| 645 | NtSetInformationProcess | |
| 646 | NtSetInformationResourceManager | |
| 647 | NtSetInformationSymbolicLink | |
| 648 | NtSetInformationThread | |
| 649 | NtSetInformationToken | |
| 650 | NtSetInformationTransaction | |
| 651 | NtSetInformationTransactionManager | |
| 652 | NtSetInformationVirtualMemory | |
| 653 | NtSetInformationWorkerFactory | |
| 654 | NtSetIntervalProfile | |
| 655 | NtSetIoCompletion | |
| 656 | NtSetIoCompletionEx | |
| 657 | NtSetLdtEntries | |
| 658 | NtSetLowEventPair | |
| 659 | NtSetLowWaitHighEventPair | |
| 660 | NtSetQuotaInformationFile | |
| 661 | NtSetSecurityObject | |
| 662 | NtSetSystemEnvironmentValue | |
| 663 | NtSetSystemEnvironmentValueEx | |
| 664 | NtSetSystemInformation | |
| 665 | NtSetSystemPowerState | |
| 666 | NtSetSystemTime | |
| 667 | NtSetThreadExecutionState | |
| 668 | NtSetTimer | |
| 669 | NtSetTimer2 | |
| 670 | NtSetTimerEx | |
| 671 | NtSetTimerResolution | |
| 672 | NtSetUuidSeed | |
| 673 | NtSetValueKey | |
| 674 | NtSetVolumeInformationFile | |
| 675 | NtSetWnfProcessNotificationEvent | |
| 676 | NtShutdownSystem | |
| 677 | NtShutdownWorkerFactory | |
| 678 | NtSignalAndWaitForSingleObject | |
| 679 | NtSinglePhaseReject | |
| 680 | NtStartProfile | |
| 681 | NtStopProfile | |
| 682 | NtSubscribeWnfStateChange | |
| 683 | NtSuspendProcess | |
| 684 | NtSuspendThread | |
| 685 | NtSystemDebugControl | |
| 686 | NtTerminateEnclave | |
| 687 | NtTerminateJobObject | |
| 688 | NtTerminateProcess | |
| 689 | NtTerminateThread | |
| 690 | NtTestAlert | |
| 691 | NtThawRegistry | |
| 692 | NtThawTransactions | |
| 693 | NtTraceControl | |
| 694 | NtTraceEvent | |
| 695 | NtTranslateFilePath | |
| 696 | NtUmsThreadYield | |
| 697 | NtUnloadDriver | |
| 698 | NtUnloadKey | |
| 699 | NtUnloadKey2 | |
| 700 | NtUnloadKeyEx | |
| 701 | NtUnlockFile | |
| 702 | NtUnlockVirtualMemory | |
| 703 | NtUnmapViewOfSection | |
| 704 | NtUnmapViewOfSectionEx | |
| 705 | NtUnsubscribeWnfStateChange | |
| 706 | NtUpdateWnfStateData | |
| 707 | NtVdmControl | |
| 708 | NtWaitForAlertByThreadId | |
| 709 | NtWaitForDebugEvent | |
| 710 | NtWaitForKeyedEvent | |
| 711 | NtWaitForMultipleObjects | |
| 712 | NtWaitForMultipleObjects32 | |
| 713 | NtWaitForSingleObject | |
| 714 | NtWaitForWorkViaWorkerFactory | |
| 715 | NtWaitHighEventPair | |
| 716 | NtWaitLowEventPair | |
| 717 | NtWorkerFactoryWorkerReady | |
| 718 | #ifdef DEF_ARM32 | |
| 719 | NtWow64AllocateVirtualMemory64 | |
| 720 | NtWow64CallFunction64 | |
| 721 | NtWow64CsrAllocateCaptureBuffer | |
| 722 | NtWow64CsrAllocateMessagePointer | |
| 723 | NtWow64CsrCaptureMessageBuffer | |
| 724 | NtWow64CsrCaptureMessageString | |
| 725 | NtWow64CsrClientCallServer | |
| 726 | NtWow64CsrClientConnectToServer | |
| 727 | NtWow64CsrFreeCaptureBuffer | |
| 728 | NtWow64CsrGetProcessId | |
| 729 | NtWow64CsrIdentifyAlertableThread | |
| 730 | NtWow64CsrVerifyRegion | |
| 731 | NtWow64DebuggerCall | |
| 732 | NtWow64GetCurrentProcessorNumberEx | |
| 733 | NtWow64GetNativeSystemInformation | |
| 734 | NtWow64IsProcessorFeaturePresent | |
| 735 | NtWow64QueryInformationProcess64 | |
| 736 | NtWow64ReadVirtualMemory64 | |
| 737 | NtWow64WriteVirtualMemory64 | |
| 738 | #endif | |
| 739 | NtWriteFile | |
| 740 | NtWriteFileGather | |
| 741 | NtWriteRequestData | |
| 742 | NtWriteVirtualMemory | |
| 743 | NtYieldExecution | |
| 744 | NtdllDefWindowProc_A | |
| 745 | NtdllDefWindowProc_W | |
| 746 | NtdllDialogWndProc_A | |
| 747 | NtdllDialogWndProc_W | |
| 748 | PfxFindPrefix | |
| 749 | PfxInitialize | |
| 750 | PfxInsertPrefix | |
| 751 | PfxRemovePrefix | |
| 752 | PssNtCaptureSnapshot | |
| 753 | PssNtDuplicateSnapshot | |
| 754 | PssNtFreeRemoteSnapshot | |
| 755 | PssNtFreeSnapshot | |
| 756 | PssNtFreeWalkMarker | |
| 757 | PssNtQuerySnapshot | |
| 758 | PssNtValidateDescriptor | |
| 759 | PssNtWalkSnapshot | |
| 760 | F_ARM32(ReadTimeStampCounter) | |
| 761 | RtlAbortRXact | |
| 762 | RtlAbsoluteToSelfRelativeSD | |
| 763 | RtlAcquirePebLock | |
| 764 | RtlAcquirePrivilege | |
| 765 | RtlAcquireReleaseSRWLockExclusive | |
| 766 | RtlAcquireResourceExclusive | |
| 767 | RtlAcquireResourceShared | |
| 768 | RtlAcquireSRWLockExclusive | |
| 769 | RtlAcquireSRWLockShared | |
| 770 | RtlActivateActivationContext | |
| 771 | RtlActivateActivationContextEx | |
| 772 | RtlActivateActivationContextUnsafeFast | |
| 773 | RtlAddAccessAllowedAce | |
| 774 | RtlAddAccessAllowedAceEx | |
| 775 | RtlAddAccessAllowedObjectAce | |
| 776 | RtlAddAccessDeniedAce | |
| 777 | RtlAddAccessDeniedAceEx | |
| 778 | RtlAddAccessDeniedObjectAce | |
| 779 | RtlAddAccessFilterAce | |
| 780 | RtlAddAce | |
| 781 | RtlAddActionToRXact | |
| 782 | RtlAddAtomToAtomTable | |
| 783 | RtlAddAttributeActionToRXact | |
| 784 | RtlAddAuditAccessAce | |
| 785 | RtlAddAuditAccessAceEx | |
| 786 | RtlAddAuditAccessObjectAce | |
| 787 | RtlAddCompoundAce | |
| 788 | RtlAddFunctionTable | |
| 789 | RtlAddGrowableFunctionTable | |
| 790 | RtlAddIntegrityLabelToBoundaryDescriptor | |
| 791 | RtlAddMandatoryAce | |
| 792 | RtlAddProcessTrustLabelAce | |
| 793 | RtlAddRefActivationContext | |
| 794 | RtlAddRefMemoryStream | |
| 795 | RtlAddResourceAttributeAce | |
| 796 | RtlAddSIDToBoundaryDescriptor | |
| 797 | RtlAddScopedPolicyIDAce | |
| 798 | RtlAddVectoredContinueHandler | |
| 799 | RtlAddVectoredExceptionHandler | |
| 800 | RtlAddressInSectionTable | |
| 801 | RtlAdjustPrivilege | |
| 802 | RtlAllocateActivationContextStack | |
| 803 | RtlAllocateAndInitializeSid | |
| 804 | RtlAllocateAndInitializeSidEx | |
| 805 | RtlAllocateHandle | |
| 806 | RtlAllocateHeap | |
| 807 | RtlAllocateMemoryBlockLookaside | |
| 808 | RtlAllocateMemoryZone | |
| 809 | RtlAllocateWnfSerializationGroup | |
| 810 | RtlAnsiCharToUnicodeChar | |
| 811 | RtlAnsiStringToUnicodeSize | |
| 812 | RtlAnsiStringToUnicodeString | |
| 813 | RtlAppendAsciizToString | |
| 814 | RtlAppendPathElement | |
| 815 | RtlAppendStringToString | |
| 816 | RtlAppendUnicodeStringToString | |
| 817 | RtlAppendUnicodeToString | |
| 818 | RtlApplicationVerifierStop | |
| 819 | RtlApplyRXact | |
| 820 | RtlApplyRXactNoFlush | |
| 821 | RtlAppxIsFileOwnedByTrustedInstaller | |
| 822 | RtlAreAllAccessesGranted | |
| 823 | RtlAreAnyAccessesGranted | |
| 824 | RtlAreBitsClear | |
| 825 | F_X64(RtlAreBitsClearEx) | |
| 826 | RtlAreBitsSet | |
| 827 | RtlAreLongPathsEnabled | |
| 828 | RtlAssert | |
| 829 | RtlAvlInsertNodeEx | |
| 830 | RtlAvlRemoveNode | |
| 831 | RtlBarrier | |
| 832 | RtlBarrierForDelete | |
| 833 | F_X64(RtlCallEnclaveReturn) | |
| 834 | RtlCancelTimer | |
| 835 | RtlCanonicalizeDomainName | |
| 836 | RtlCapabilityCheck | |
| 837 | RtlCapabilityCheckForSingleSessionSku | |
| 838 | RtlCaptureContext | |
| 839 | RtlCaptureStackBackTrace | |
| 840 | RtlCharToInteger | |
| 841 | RtlCheckBootStatusIntegrity | |
| 842 | RtlCheckForOrphanedCriticalSections | |
| 843 | RtlCheckPortableOperatingSystem | |
| 844 | F_X64(RtlCheckProcessParameters) | |
| 845 | RtlCheckRegistryKey | |
| 846 | RtlCheckSandboxedToken | |
| 847 | RtlCheckSystemBootStatusIntegrity | |
| 848 | RtlCheckTokenCapability | |
| 849 | RtlCheckTokenMembership | |
| 850 | RtlCheckTokenMembershipEx | |
| 851 | RtlCleanUpTEBLangLists | |
| 852 | RtlClearAllBits | |
| 853 | F_X64(RtlClearAllBitsEx) | |
| 854 | RtlClearBit | |
| 855 | F_X64(RtlClearBitEx) | |
| 856 | RtlClearBits | |
| 857 | F_X64(RtlClearBitsEx) | |
| 858 | RtlClearThreadWorkOnBehalfTicket | |
| 859 | RtlCloneMemoryStream | |
| 860 | RtlCloneUserProcess | |
| 861 | RtlCmDecodeMemIoResource | |
| 862 | RtlCmEncodeMemIoResource | |
| 863 | RtlCommitDebugInfo | |
| 864 | RtlCommitMemoryStream | |
| 865 | RtlCompactHeap | |
| 866 | RtlCompareAltitudes | |
| 867 | RtlCompareMemory | |
| 868 | RtlCompareMemoryUlong | |
| 869 | RtlCompareString | |
| 870 | RtlCompareUnicodeString | |
| 871 | RtlCompareUnicodeStrings | |
| 872 | F64(RtlCompleteProcessCloning) | |
| 873 | RtlCompressBuffer | |
| 874 | RtlComputeCrc32 | |
| 875 | RtlComputeImportTableHash | |
| 876 | RtlComputePrivatizedDllName_U | |
| 877 | RtlConnectToSm | |
| 878 | RtlConsoleMultiByteToUnicodeN | |
| 879 | RtlConstructCrossVmEventPath | |
| 880 | RtlContractHashTable | |
| 881 | RtlConvertDeviceFamilyInfoToString | |
| 882 | RtlConvertExclusiveToShared | |
| 883 | RtlConvertLCIDToString | |
| 884 | RtlConvertSRWLockExclusiveToShared | |
| 885 | RtlConvertSharedToExclusive | |
| 886 | RtlConvertSidToUnicodeString | |
| 887 | RtlConvertToAutoInheritSecurityObject | |
| 888 | F_X86_ANY(RtlConvertUiListToApiList) | |
| 889 | RtlCopyBitMap | |
| 890 | RtlCopyContext | |
| 891 | RtlCopyExtendedContext | |
| 892 | RtlCopyLuid | |
| 893 | RtlCopyLuidAndAttributesArray | |
| 894 | RtlCopyMappedMemory | |
| 895 | RtlCopyMemory | |
| 896 | F_X64(RtlCopyMemoryNonTemporal) | |
| 897 | RtlCopyMemoryStreamTo | |
| 898 | RtlCopyOutOfProcessMemoryStreamTo | |
| 899 | RtlCopySecurityDescriptor | |
| 900 | RtlCopySid | |
| 901 | RtlCopySidAndAttributesArray | |
| 902 | RtlCopyString | |
| 903 | RtlCopyUnicodeString | |
| 904 | RtlCrc32 | |
| 905 | RtlCrc64 | |
| 906 | RtlCreateAcl | |
| 907 | RtlCreateActivationContext | |
| 908 | RtlCreateAndSetSD | |
| 909 | RtlCreateAtomTable | |
| 910 | RtlCreateBootStatusDataFile | |
| 911 | RtlCreateBoundaryDescriptor | |
| 912 | RtlCreateEnvironment | |
| 913 | RtlCreateEnvironmentEx | |
| 914 | RtlCreateHashTable | |
| 915 | RtlCreateHashTableEx | |
| 916 | RtlCreateHeap | |
| 917 | RtlCreateMemoryBlockLookaside | |
| 918 | RtlCreateMemoryZone | |
| 919 | RtlCreateProcessParameters | |
| 920 | RtlCreateProcessParametersEx | |
| 921 | RtlCreateProcessParametersWithTemplate | |
| 922 | RtlCreateProcessReflection | |
| 923 | RtlCreateQueryDebugBuffer | |
| 924 | RtlCreateRegistryKey | |
| 925 | RtlCreateSecurityDescriptor | |
| 926 | RtlCreateServiceSid | |
| 927 | RtlCreateSystemVolumeInformationFolder | |
| 928 | RtlCreateTagHeap | |
| 929 | RtlCreateTimer | |
| 930 | RtlCreateTimerQueue | |
| 931 | #ifdef DEF_X64 | |
| 932 | RtlCreateUmsCompletionList | |
| 933 | RtlCreateUmsThread | |
| 934 | RtlCreateUmsThreadContext | |
| 935 | #endif | |
| 936 | RtlCreateUnicodeString | |
| 937 | RtlCreateUnicodeStringFromAsciiz | |
| 938 | F_X64(RtlCreateUserFiberShadowStack) | |
| 939 | RtlCreateUserProcess | |
| 940 | RtlCreateUserProcessEx | |
| 941 | RtlCreateUserSecurityObject | |
| 942 | RtlCreateUserStack | |
| 943 | RtlCreateUserThread | |
| 944 | RtlCreateVirtualAccountSid | |
| 945 | RtlCultureNameToLCID | |
| 946 | RtlCustomCPToUnicodeN | |
| 947 | RtlCutoverTimeToSystemTime | |
| 948 | RtlDeCommitDebugInfo | |
| 949 | RtlDeNormalizeProcessParams | |
| 950 | RtlDeactivateActivationContext | |
| 951 | RtlDeactivateActivationContextUnsafeFast | |
| 952 | RtlDebugPrintTimes | |
| 953 | RtlDecodePointer | |
| 954 | RtlDecodeRemotePointer | |
| 955 | RtlDecodeSystemPointer | |
| 956 | RtlDecompressBuffer | |
| 957 | RtlDecompressBufferEx | |
| 958 | RtlDecompressFragment | |
| 959 | RtlDefaultNpAcl | |
| 960 | RtlDelete | |
| 961 | RtlDeleteAce | |
| 962 | RtlDeleteAtomFromAtomTable | |
| 963 | RtlDeleteBarrier | |
| 964 | RtlDeleteBoundaryDescriptor | |
| 965 | RtlDeleteCriticalSection | |
| 966 | RtlDeleteElementGenericTable | |
| 967 | RtlDeleteElementGenericTableAvl | |
| 968 | RtlDeleteElementGenericTableAvlEx | |
| 969 | RtlDeleteFunctionTable | |
| 970 | RtlDeleteGrowableFunctionTable | |
| 971 | RtlDeleteHashTable | |
| 972 | RtlDeleteNoSplay | |
| 973 | RtlDeleteRegistryValue | |
| 974 | RtlDeleteResource | |
| 975 | RtlDeleteSecurityObject | |
| 976 | RtlDeleteTimer | |
| 977 | RtlDeleteTimerQueue | |
| 978 | RtlDeleteTimerQueueEx | |
| 979 | #ifdef DEF_X64 | |
| 980 | RtlDeleteUmsCompletionList | |
| 981 | RtlDeleteUmsThreadContext | |
| 982 | RtlDequeueUmsCompletionListItems | |
| 983 | #endif | |
| 984 | RtlDeregisterSecureMemoryCacheCallback | |
| 985 | RtlDeregisterWait | |
| 986 | RtlDeregisterWaitEx | |
| 987 | RtlDeriveCapabilitySidsFromName | |
| 988 | RtlDestroyAtomTable | |
| 989 | RtlDestroyEnvironment | |
| 990 | RtlDestroyHandleTable | |
| 991 | RtlDestroyHeap | |
| 992 | RtlDestroyMemoryBlockLookaside | |
| 993 | RtlDestroyMemoryZone | |
| 994 | RtlDestroyProcessParameters | |
| 995 | RtlDestroyQueryDebugBuffer | |
| 996 | RtlDetectHeapLeaks | |
| 997 | RtlDetermineDosPathNameType_U | |
| 998 | RtlDisableThreadProfiling | |
| 999 | RtlDllShutdownInProgress | |
| 1000 | RtlDnsHostNameToComputerName | |
| 1001 | RtlDoesFileExists_U | |
| 1002 | RtlDoesNameContainWildCards | |
| 1003 | RtlDosApplyFileIsolationRedirection_Ustr | |
| 1004 | RtlDosLongPathNameToNtPathName_U_WithStatus | |
| 1005 | RtlDosLongPathNameToRelativeNtPathName_U_WithStatus | |
| 1006 | RtlDosPathNameToNtPathName_U | |
| 1007 | RtlDosPathNameToNtPathName_U_WithStatus | |
| 1008 | RtlDosPathNameToRelativeNtPathName_U | |
| 1009 | RtlDosPathNameToRelativeNtPathName_U_WithStatus | |
| 1010 | RtlDosSearchPath_U | |
| 1011 | RtlDosSearchPath_Ustr | |
| 1012 | RtlDowncaseUnicodeChar | |
| 1013 | RtlDowncaseUnicodeString | |
| 1014 | F64(RtlDrainNonVolatileFlush) | |
| 1015 | RtlDumpResource | |
| 1016 | RtlDuplicateUnicodeString | |
| 1017 | RtlEmptyAtomTable | |
| 1018 | RtlEnableEarlyCriticalSectionEventCreation | |
| 1019 | RtlEnableThreadProfiling | |
| 1020 | F_X64(RtlEnclaveCallDispatch) | |
| 1021 | F_X64(RtlEnclaveCallDispatchReturn) | |
| 1022 | RtlEncodePointer | |
| 1023 | RtlEncodeRemotePointer | |
| 1024 | RtlEncodeSystemPointer | |
| 1025 | RtlEndEnumerationHashTable | |
| 1026 | RtlEndStrongEnumerationHashTable | |
| 1027 | RtlEndWeakEnumerationHashTable | |
| 1028 | RtlEnterCriticalSection | |
| 1029 | F_X64(RtlEnterUmsSchedulingMode) | |
| 1030 | RtlEnumProcessHeaps | |
| 1031 | RtlEnumerateEntryHashTable | |
| 1032 | RtlEnumerateGenericTable | |
| 1033 | RtlEnumerateGenericTableAvl | |
| 1034 | RtlEnumerateGenericTableLikeADirectory | |
| 1035 | RtlEnumerateGenericTableWithoutSplaying | |
| 1036 | RtlEnumerateGenericTableWithoutSplayingAvl | |
| 1037 | RtlEqualComputerName | |
| 1038 | RtlEqualDomainName | |
| 1039 | RtlEqualLuid | |
| 1040 | RtlEqualPrefixSid | |
| 1041 | RtlEqualSid | |
| 1042 | RtlEqualString | |
| 1043 | RtlEqualUnicodeString | |
| 1044 | RtlEqualWnfChangeStamps | |
| 1045 | RtlEraseUnicodeString | |
| 1046 | RtlEthernetAddressToStringA | |
| 1047 | RtlEthernetAddressToStringW | |
| 1048 | RtlEthernetStringToAddressA | |
| 1049 | RtlEthernetStringToAddressW | |
| 1050 | F_X64(RtlExecuteUmsThread) | |
| 1051 | RtlExitUserProcess | |
| 1052 | RtlExitUserThread | |
| 1053 | RtlExpandEnvironmentStrings | |
| 1054 | RtlExpandEnvironmentStrings_U | |
| 1055 | F_X86_ANY(RtlExtendHeap) | |
| 1056 | RtlExpandHashTable | |
| 1057 | RtlExtendCorrelationVector | |
| 1058 | RtlExtendMemoryBlockLookaside | |
| 1059 | RtlExtendMemoryZone | |
| 1060 | F_ARM32(RtlExtendedMagicDivide) | |
| 1061 | RtlExtractBitMap | |
| 1062 | RtlFillMemory | |
| 1063 | F_X64(RtlFillMemoryNonTemporal) | |
| 1064 | F_ARM_ANY(RtlFillMemoryUlong) | |
| 1065 | F_ARM_ANY(RtlFillMemoryUlonglong) | |
| 1066 | F64(RtlFillNonVolatileMemory) | |
| 1067 | RtlFinalReleaseOutOfProcessMemoryStream | |
| 1068 | RtlFindAceByType | |
| 1069 | RtlFindActivationContextSectionGuid | |
| 1070 | RtlFindActivationContextSectionString | |
| 1071 | RtlFindCharInUnicodeString | |
| 1072 | RtlFindClearBits | |
| 1073 | RtlFindClearBitsAndSet | |
| 1074 | F_X64(RtlFindClearBitsEx) | |
| 1075 | RtlFindClearRuns | |
| 1076 | RtlFindClosestEncodableLength | |
| 1077 | RtlFindExportedRoutineByName | |
| 1078 | RtlFindLastBackwardRunClear | |
| 1079 | RtlFindLeastSignificantBit | |
| 1080 | RtlFindLongestRunClear | |
| 1081 | RtlFindMessage | |
| 1082 | RtlFindMostSignificantBit | |
| 1083 | RtlFindNextForwardRunClear | |
| 1084 | RtlFindSetBits | |
| 1085 | RtlFindSetBitsAndClear | |
| 1086 | F_X64(RtlFindSetBitsAndClearEx) | |
| 1087 | F_X64(RtlFindSetBitsEx) | |
| 1088 | RtlFindUnicodeSubstring | |
| 1089 | RtlFirstEntrySList | |
| 1090 | RtlFirstFreeAce | |
| 1091 | RtlFlsAlloc | |
| 1092 | RtlFlsFree | |
| 1093 | RtlFlsGetValue | |
| 1094 | RtlFlsSetValue | |
| 1095 | RtlFlushHeaps | |
| 1096 | F64(RtlFlushNonVolatileMemory) | |
| 1097 | F64(RtlFlushNonVolatileMemoryRanges) | |
| 1098 | RtlFlushSecureMemoryCache | |
| 1099 | RtlFormatCurrentUserKeyPath | |
| 1100 | RtlFormatMessage | |
| 1101 | RtlFormatMessageEx | |
| 1102 | RtlFreeActivationContextStack | |
| 1103 | RtlFreeAnsiString | |
| 1104 | RtlFreeHandle | |
| 1105 | RtlFreeHeap | |
| 1106 | RtlFreeMemoryBlockLookaside | |
| 1107 | F64(RtlFreeNonVolatileToken) | |
| 1108 | RtlFreeOemString | |
| 1109 | RtlFreeSid | |
| 1110 | RtlFreeThreadActivationContextStack | |
| 1111 | F_X86_ANY(RtlFreeUTF8String) | |
| 1112 | RtlFreeUnicodeString | |
| 1113 | F_X64(RtlFreeUserFiberShadowStack) | |
| 1114 | F_X86_ANY(RtlFreeUserThreadStack) | |
| 1115 | RtlFreeUserStack | |
| 1116 | RtlGUIDFromString | |
| 1117 | RtlGenerate8dot3Name | |
| 1118 | RtlGetAce | |
| 1119 | RtlGetActiveActivationContext | |
| 1120 | RtlGetActiveConsoleId | |
| 1121 | RtlGetAppContainerNamedObjectPath | |
| 1122 | RtlGetAppContainerParent | |
| 1123 | RtlGetAppContainerSidType | |
| 1124 | RtlGetCallersAddress | |
| 1125 | RtlGetCompressionWorkSpaceSize | |
| 1126 | RtlGetConsoleSessionForegroundProcessId | |
| 1127 | RtlGetControlSecurityDescriptor | |
| 1128 | RtlGetCriticalSectionRecursionCount | |
| 1129 | RtlGetCurrentDirectory_U | |
| 1130 | RtlGetCurrentPeb | |
| 1131 | RtlGetCurrentProcessorNumber | |
| 1132 | RtlGetCurrentProcessorNumberEx | |
| 1133 | RtlGetCurrentServiceSessionId | |
| 1134 | RtlGetCurrentTransaction | |
| 1135 | F_X64(RtlGetCurrentUmsThread) | |
| 1136 | RtlGetDaclSecurityDescriptor | |
| 1137 | RtlGetDeviceFamilyInfoEnum | |
| 1138 | RtlGetElementGenericTable | |
| 1139 | RtlGetElementGenericTableAvl | |
| 1140 | RtlGetEnabledExtendedFeatures | |
| 1141 | RtlGetExePath | |
| 1142 | RtlGetExtendedContextLength | |
| 1143 | RtlGetExtendedContextLength2 | |
| 1144 | RtlGetExtendedFeaturesMask | |
| 1145 | RtlGetFileMUIPath | |
| 1146 | RtlGetFrame | |
| 1147 | RtlGetFullPathName_U | |
| 1148 | RtlGetFullPathName_UEx | |
| 1149 | RtlGetFullPathName_UstrEx | |
| 1150 | RtlGetFunctionTableListHead | |
| 1151 | RtlGetGroupSecurityDescriptor | |
| 1152 | RtlGetIntegerAtom | |
| 1153 | RtlGetInterruptTimePrecise | |
| 1154 | RtlGetLastNtStatus | |
| 1155 | RtlGetLastWin32Error | |
| 1156 | RtlGetLengthWithoutLastFullDosOrNtPathElement | |
| 1157 | RtlGetLengthWithoutTrailingPathSeperators | |
| 1158 | RtlGetLocaleFileMappingAddress | |
| 1159 | RtlGetLongestNtPathLength | |
| 1160 | RtlGetMultiTimePrecise | |
| 1161 | RtlGetNativeSystemInformation | |
| 1162 | RtlGetNextEntryHashTable | |
| 1163 | F_X64(RtlGetNextUmsListItem) | |
| 1164 | F64(RtlGetNonVolatileToken) | |
| 1165 | RtlGetNtGlobalFlags | |
| 1166 | RtlGetNtProductType | |
| 1167 | RtlGetNtSystemRoot | |
| 1168 | RtlGetNtVersionNumbers | |
| 1169 | RtlGetOwnerSecurityDescriptor | |
| 1170 | RtlGetParentLocaleName | |
| 1171 | RtlGetPersistedStateLocation | |
| 1172 | RtlGetProcessHeaps | |
| 1173 | RtlGetProcessPreferredUILanguages | |
| 1174 | RtlGetProductInfo | |
| 1175 | RtlGetSaclSecurityDescriptor | |
| 1176 | RtlGetSearchPath | |
| 1177 | RtlGetSecurityDescriptorRMControl | |
| 1178 | RtlGetSessionProperties | |
| 1179 | RtlGetSetBootStatusData | |
| 1180 | RtlGetSuiteMask | |
| 1181 | RtlGetSystemBootStatus | |
| 1182 | RtlGetSystemBootStatusEx | |
| 1183 | RtlGetSystemPreferredUILanguages | |
| 1184 | RtlGetSystemTimePrecise | |
| 1185 | RtlGetThreadErrorMode | |
| 1186 | RtlGetThreadLangIdByIndex | |
| 1187 | RtlGetThreadPreferredUILanguages | |
| 1188 | RtlGetThreadWorkOnBehalfTicket | |
| 1189 | RtlGetTokenNamedObjectPath | |
| 1190 | RtlGetUILanguageInfo | |
| 1191 | F_X64(RtlGetUmsCompletionListEvent) | |
| 1192 | RtlGetUnloadEventTrace | |
| 1193 | RtlGetUnloadEventTraceEx | |
| 1194 | RtlGetUserInfoHeap | |
| 1195 | RtlGetUserPreferredUILanguages | |
| 1196 | RtlGetVersion | |
| 1197 | RtlGrowFunctionTable | |
| 1198 | RtlGuardCheckLongJumpTarget | |
| 1199 | RtlHashUnicodeString | |
| 1200 | RtlHeapTrkInitialize | |
| 1201 | RtlIdentifierAuthoritySid | |
| 1202 | RtlIdnToAscii | |
| 1203 | RtlIdnToNameprepUnicode | |
| 1204 | RtlIdnToUnicode | |
| 1205 | RtlImageDirectoryEntryToData | |
| 1206 | RtlImageNtHeader | |
| 1207 | RtlImageNtHeaderEx | |
| 1208 | RtlImageRvaToSection | |
| 1209 | RtlImageRvaToVa | |
| 1210 | RtlImpersonateSelf | |
| 1211 | RtlImpersonateSelfEx | |
| 1212 | RtlIncrementCorrelationVector | |
| 1213 | RtlInitAnsiString | |
| 1214 | RtlInitAnsiStringEx | |
| 1215 | RtlInitBarrier | |
| 1216 | RtlInitCodePageTable | |
| 1217 | RtlInitEnumerationHashTable | |
| 1218 | RtlInitMemoryStream | |
| 1219 | RtlInitNlsTables | |
| 1220 | RtlInitOutOfProcessMemoryStream | |
| 1221 | RtlInitString | |
| 1222 | RtlInitStringEx | |
| 1223 | RtlInitStrongEnumerationHashTable | |
| 1224 | F_X86_ANY(RtlInitUTF8String) | |
| 1225 | F_X86_ANY(RtlInitUTF8StringEx) | |
| 1226 | RtlInitUnicodeString | |
| 1227 | RtlInitUnicodeStringEx | |
| 1228 | RtlInitWeakEnumerationHashTable | |
| 1229 | RtlInitializeAtomPackage | |
| 1230 | RtlInitializeBitMap | |
| 1231 | F64(RtlInitializeBitMapEx) | |
| 1232 | RtlInitializeConditionVariable | |
| 1233 | RtlInitializeContext | |
| 1234 | RtlInitializeCorrelationVector | |
| 1235 | RtlInitializeCriticalSection | |
| 1236 | RtlInitializeCriticalSectionAndSpinCount | |
| 1237 | RtlInitializeCriticalSectionEx | |
| 1238 | RtlInitializeExtendedContext | |
| 1239 | RtlInitializeExtendedContext2 | |
| 1240 | RtlInitializeGenericTable | |
| 1241 | RtlInitializeGenericTableAvl | |
| 1242 | RtlInitializeHandleTable | |
| 1243 | RtlInitializeNtUserPfn | |
| 1244 | RtlInitializeRXact | |
| 1245 | RtlInitializeResource | |
| 1246 | RtlInitializeSListHead | |
| 1247 | RtlInitializeSRWLock | |
| 1248 | RtlInitializeSid | |
| 1249 | RtlInitializeSidEx | |
| 1250 | RtlInsertElementGenericTable | |
| 1251 | RtlInsertElementGenericTableAvl | |
| 1252 | RtlInsertElementGenericTableFull | |
| 1253 | RtlInsertElementGenericTableFullAvl | |
| 1254 | RtlInsertEntryHashTable | |
| 1255 | RtlInstallFunctionTableCallback | |
| 1256 | RtlInt64ToUnicodeString | |
| 1257 | RtlIntegerToChar | |
| 1258 | RtlIntegerToUnicodeString | |
| 1259 | RtlInterlockedClearBitRun | |
| 1260 | RtlInterlockedFlushSList | |
| 1261 | RtlInterlockedPopEntrySList | |
| 1262 | RtlInterlockedPushEntrySList | |
| 1263 | RtlInterlockedPushListSList | |
| 1264 | RtlInterlockedPushListSListEx | |
| 1265 | RtlInterlockedSetBitRun | |
| 1266 | RtlIoDecodeMemIoResource | |
| 1267 | RtlIoEncodeMemIoResource | |
| 1268 | RtlIpv4AddressToStringA | |
| 1269 | RtlIpv4AddressToStringExA | |
| 1270 | RtlIpv4AddressToStringExW | |
| 1271 | RtlIpv4AddressToStringW | |
| 1272 | RtlIpv4StringToAddressA | |
| 1273 | RtlIpv4StringToAddressExA | |
| 1274 | RtlIpv4StringToAddressExW | |
| 1275 | RtlIpv4StringToAddressW | |
| 1276 | RtlIpv6AddressToStringA | |
| 1277 | RtlIpv6AddressToStringExA | |
| 1278 | RtlIpv6AddressToStringExW | |
| 1279 | RtlIpv6AddressToStringW | |
| 1280 | RtlIpv6StringToAddressA | |
| 1281 | RtlIpv6StringToAddressExA | |
| 1282 | RtlIpv6StringToAddressExW | |
| 1283 | RtlIpv6StringToAddressW | |
| 1284 | RtlIsActivationContextActive | |
| 1285 | RtlIsCapabilitySid | |
| 1286 | RtlIsCloudFilesPlaceholder | |
| 1287 | RtlIsCriticalSectionLocked | |
| 1288 | RtlIsCriticalSectionLockedByThread | |
| 1289 | RtlIsCurrentProcess | |
| 1290 | RtlIsCurrentThread | |
| 1291 | RtlIsCurrentThreadAttachExempt | |
| 1292 | RtlIsDosDeviceName_U | |
| 1293 | RtlIsElevatedRid | |
| 1294 | RtlIsGenericTableEmpty | |
| 1295 | RtlIsGenericTableEmptyAvl | |
| 1296 | RtlIsMultiSessionSku | |
| 1297 | RtlIsMultiUsersInSessionSku | |
| 1298 | RtlIsNameInExpression | |
| 1299 | RtlIsNameInUnUpcasedExpression | |
| 1300 | RtlIsNameLegalDOS8Dot3 | |
| 1301 | RtlIsNonEmptyDirectoryReparsePointAllowed | |
| 1302 | RtlIsNormalizedString | |
| 1303 | RtlIsPackageSid | |
| 1304 | RtlIsParentOfChildAppContainer | |
| 1305 | RtlIsPartialPlaceholder | |
| 1306 | RtlIsPartialPlaceholderFileHandle | |
| 1307 | RtlIsPartialPlaceholderFileInfo | |
| 1308 | RtlIsProcessorFeaturePresent | |
| 1309 | RtlIsStateSeparationEnabled | |
| 1310 | RtlIsTextUnicode | |
| 1311 | RtlIsThreadWithinLoaderCallout | |
| 1312 | RtlIsUntrustedObject | |
| 1313 | RtlIsValidHandle | |
| 1314 | RtlIsValidIndexHandle | |
| 1315 | RtlIsValidLocaleName | |
| 1316 | RtlIsValidProcessTrustLabelSid | |
| 1317 | F_X86_ANY(RtlIsZeroMemory) | |
| 1318 | RtlKnownExceptionFilter | |
| 1319 | RtlLCIDToCultureName | |
| 1320 | RtlLargeIntegerToChar | |
| 1321 | RtlLcidToLocaleName | |
| 1322 | RtlLeaveCriticalSection | |
| 1323 | RtlLengthRequiredSid | |
| 1324 | RtlLengthSecurityDescriptor | |
| 1325 | RtlLengthSid | |
| 1326 | RtlLengthSidAsUnicodeString | |
| 1327 | RtlLoadString | |
| 1328 | RtlLocalTimeToSystemTime | |
| 1329 | RtlLocaleNameToLcid | |
| 1330 | RtlLocateExtendedFeature | |
| 1331 | RtlLocateExtendedFeature2 | |
| 1332 | RtlLocateLegacyContext | |
| 1333 | RtlLockBootStatusData | |
| 1334 | RtlLockCurrentThread | |
| 1335 | RtlLockHeap | |
| 1336 | RtlLockMemoryBlockLookaside | |
| 1337 | RtlLockMemoryStreamRegion | |
| 1338 | RtlLockMemoryZone | |
| 1339 | RtlLockModuleSection | |
| 1340 | RtlLogStackBackTrace | |
| 1341 | RtlLookupAtomInAtomTable | |
| 1342 | RtlLookupElementGenericTable | |
| 1343 | RtlLookupElementGenericTableAvl | |
| 1344 | RtlLookupElementGenericTableFull | |
| 1345 | RtlLookupElementGenericTableFullAvl | |
| 1346 | RtlLookupEntryHashTable | |
| 1347 | RtlLookupFirstMatchingElementGenericTableAvl | |
| 1348 | RtlLookupFunctionEntry | |
| 1349 | RtlLookupFunctionTable | |
| 1350 | RtlMakeSelfRelativeSD | |
| 1351 | RtlMapGenericMask | |
| 1352 | RtlMapSecurityErrorToNtStatus | |
| 1353 | RtlMoveMemory | |
| 1354 | RtlMultiAppendUnicodeStringBuffer | |
| 1355 | RtlMultiByteToUnicodeN | |
| 1356 | RtlMultiByteToUnicodeSize | |
| 1357 | RtlMultipleAllocateHeap | |
| 1358 | RtlMultipleFreeHeap | |
| 1359 | RtlNewInstanceSecurityObject | |
| 1360 | RtlNewSecurityGrantedAccess | |
| 1361 | RtlNewSecurityObject | |
| 1362 | RtlNewSecurityObjectEx | |
| 1363 | RtlNewSecurityObjectWithMultipleInheritance | |
| 1364 | RtlNormalizeProcessParams | |
| 1365 | F_X86_ANY(RtlNormalizeSecurityDescriptor) | |
| 1366 | RtlNormalizeString | |
| 1367 | RtlNtPathNameToDosPathName | |
| 1368 | RtlNtStatusToDosError | |
| 1369 | RtlNtStatusToDosErrorNoTeb | |
| 1370 | F64(RtlNtdllName DATA) | |
| 1371 | RtlNumberGenericTableElements | |
| 1372 | RtlNumberGenericTableElementsAvl | |
| 1373 | RtlNumberOfClearBits | |
| 1374 | F_X64(RtlNumberOfClearBitsEx) | |
| 1375 | RtlNumberOfClearBitsInRange | |
| 1376 | RtlNumberOfSetBits | |
| 1377 | F_X64(RtlNumberOfSetBitsEx) | |
| 1378 | RtlNumberOfSetBitsInRange | |
| 1379 | RtlNumberOfSetBitsUlongPtr | |
| 1380 | RtlOemStringToUnicodeSize | |
| 1381 | RtlOemStringToUnicodeString | |
| 1382 | RtlOemToUnicodeN | |
| 1383 | RtlOpenCurrentUser | |
| 1384 | RtlOsDeploymentState | |
| 1385 | RtlOwnerAcesPresent | |
| 1386 | RtlPcToFileHeader | |
| 1387 | RtlPinAtomInAtomTable | |
| 1388 | RtlPopFrame | |
| 1389 | RtlPrefixString | |
| 1390 | RtlPrefixUnicodeString | |
| 1391 | F64(RtlPrepareForProcessCloning) | |
| 1392 | RtlProcessFlsData | |
| 1393 | RtlProtectHeap | |
| 1394 | RtlPublishWnfStateData | |
| 1395 | RtlPushFrame | |
| 1396 | RtlQueryActivationContextApplicationSettings | |
| 1397 | RtlQueryAtomInAtomTable | |
| 1398 | RtlQueryCriticalSectionOwner | |
| 1399 | RtlQueryDepthSList | |
| 1400 | RtlQueryDynamicTimeZoneInformation | |
| 1401 | RtlQueryElevationFlags | |
| 1402 | RtlQueryEnvironmentVariable | |
| 1403 | RtlQueryEnvironmentVariable_U | |
| 1404 | RtlQueryHeapInformation | |
| 1405 | RtlQueryImageMitigationPolicy | |
| 1406 | RtlQueryInformationAcl | |
| 1407 | RtlQueryInformationActivationContext | |
| 1408 | RtlQueryInformationActiveActivationContext | |
| 1409 | RtlQueryInterfaceMemoryStream | |
| 1410 | RtlQueryModuleInformation | |
| 1411 | RtlQueryPackageClaims | |
| 1412 | RtlQueryPackageIdentity | |
| 1413 | RtlQueryPackageIdentityEx | |
| 1414 | RtlQueryPerformanceCounter | |
| 1415 | RtlQueryPerformanceFrequency | |
| 1416 | RtlQueryProcessBackTraceInformation | |
| 1417 | RtlQueryProcessDebugInformation | |
| 1418 | RtlQueryProcessHeapInformation | |
| 1419 | RtlQueryProcessLockInformation | |
| 1420 | RtlQueryProcessPlaceholderCompatibilityMode | |
| 1421 | RtlQueryProtectedPolicy | |
| 1422 | RtlQueryRegistryValueWithFallback | |
| 1423 | RtlQueryRegistryValues | |
| 1424 | RtlQueryRegistryValuesEx | |
| 1425 | RtlQueryResourcePolicy | |
| 1426 | RtlQuerySecurityObject | |
| 1427 | RtlQueryTagHeap | |
| 1428 | RtlQueryThreadPlaceholderCompatibilityMode | |
| 1429 | RtlQueryThreadProfiling | |
| 1430 | RtlQueryTimeZoneInformation | |
| 1431 | RtlQueryTokenHostIdAsUlong64 | |
| 1432 | F_X64(RtlQueryUmsThreadInformation) | |
| 1433 | RtlQueryUnbiasedInterruptTime | |
| 1434 | RtlQueryValidationRunlevel | |
| 1435 | RtlQueryWnfMetaNotification | |
| 1436 | RtlQueryWnfStateData | |
| 1437 | RtlQueryWnfStateDataWithExplicitScope | |
| 1438 | RtlQueueApcWow64Thread | |
| 1439 | RtlQueueWorkItem | |
| 1440 | RtlRaiseCustomSystemEventTrigger | |
| 1441 | RtlRaiseException | |
| 1442 | RtlRaiseStatus | |
| 1443 | RtlRandom | |
| 1444 | RtlRandomEx | |
| 1445 | RtlRbInsertNodeEx | |
| 1446 | RtlRbRemoveNode | |
| 1447 | RtlReAllocateHeap | |
| 1448 | RtlReadMemoryStream | |
| 1449 | RtlReadOutOfProcessMemoryStream | |
| 1450 | RtlReadThreadProfilingData | |
| 1451 | RtlRealPredecessor | |
| 1452 | RtlRealSuccessor | |
| 1453 | RtlRegisterForWnfMetaNotification | |
| 1454 | RtlRegisterSecureMemoryCacheCallback | |
| 1455 | RtlRegisterThreadWithCsrss | |
| 1456 | RtlRegisterWait | |
| 1457 | RtlReleaseActivationContext | |
| 1458 | RtlReleaseMemoryStream | |
| 1459 | RtlReleasePath | |
| 1460 | RtlReleasePebLock | |
| 1461 | RtlReleasePrivilege | |
| 1462 | RtlReleaseRelativeName | |
| 1463 | RtlReleaseResource | |
| 1464 | RtlReleaseSRWLockExclusive | |
| 1465 | RtlReleaseSRWLockShared | |
| 1466 | RtlRemoteCall | |
| 1467 | RtlRemoveEntryHashTable | |
| 1468 | RtlRemovePrivileges | |
| 1469 | RtlRemoveVectoredContinueHandler | |
| 1470 | RtlRemoveVectoredExceptionHandler | |
| 1471 | RtlReplaceSidInSd | |
| 1472 | RtlReplaceSystemDirectoryInPath | |
| 1473 | RtlReportException | |
| 1474 | RtlReportExceptionEx | |
| 1475 | RtlReportSilentProcessExit | |
| 1476 | RtlReportSqmEscalation | |
| 1477 | RtlResetMemoryBlockLookaside | |
| 1478 | RtlResetMemoryZone | |
| 1479 | RtlResetNtUserPfn | |
| 1480 | RtlResetRtlTranslations | |
| 1481 | RtlRestoreBootStatusDefaults | |
| 1482 | RtlRestoreContext | |
| 1483 | RtlRestoreLastWin32Error | |
| 1484 | RtlRestoreSystemBootStatusDefaults | |
| 1485 | F_X86_ANY(RtlRestoreThreadPreferredUILanguages) | |
| 1486 | RtlRetrieveNtUserPfn | |
| 1487 | RtlRevertMemoryStream | |
| 1488 | RtlRunDecodeUnicodeString | |
| 1489 | RtlRunEncodeUnicodeString | |
| 1490 | RtlRunOnceBeginInitialize | |
| 1491 | RtlRunOnceComplete | |
| 1492 | RtlRunOnceExecuteOnce | |
| 1493 | RtlRunOnceInitialize | |
| 1494 | RtlSecondsSince1970ToTime | |
| 1495 | RtlSecondsSince1980ToTime | |
| 1496 | RtlSeekMemoryStream | |
| 1497 | RtlSelfRelativeToAbsoluteSD | |
| 1498 | RtlSelfRelativeToAbsoluteSD2 | |
| 1499 | RtlSendMsgToSm | |
| 1500 | RtlSetAllBits | |
| 1501 | F_X64(RtlSetAllBitsEx) | |
| 1502 | RtlSetAttributesSecurityDescriptor | |
| 1503 | RtlSetBit | |
| 1504 | F_X64(RtlSetBitEx) | |
| 1505 | RtlSetBits | |
| 1506 | F_X64(RtlSetBitsEx) | |
| 1507 | RtlSetControlSecurityDescriptor | |
| 1508 | RtlSetCriticalSectionSpinCount | |
| 1509 | RtlSetCurrentDirectory_U | |
| 1510 | RtlSetCurrentEnvironment | |
| 1511 | RtlSetCurrentTransaction | |
| 1512 | RtlSetDaclSecurityDescriptor | |
| 1513 | RtlSetDynamicTimeZoneInformation | |
| 1514 | RtlSetEnvironmentStrings | |
| 1515 | RtlSetEnvironmentVar | |
| 1516 | RtlSetEnvironmentVariable | |
| 1517 | RtlSetExtendedFeaturesMask | |
| 1518 | RtlSetGroupSecurityDescriptor | |
| 1519 | RtlSetHeapInformation | |
| 1520 | RtlSetImageMitigationPolicy | |
| 1521 | RtlSetInformationAcl | |
| 1522 | RtlSetIoCompletionCallback | |
| 1523 | RtlSetLastWin32Error | |
| 1524 | RtlSetLastWin32ErrorAndNtStatusFromNtStatus | |
| 1525 | RtlSetMemoryStreamSize | |
| 1526 | RtlSetOwnerSecurityDescriptor | |
| 1527 | RtlSetPortableOperatingSystem | |
| 1528 | RtlSetProcessDebugInformation | |
| 1529 | RtlSetProcessIsCritical | |
| 1530 | RtlSetProcessPlaceholderCompatibilityMode | |
| 1531 | RtlSetProcessPreferredUILanguages | |
| 1532 | RtlSetProtectedPolicy | |
| 1533 | RtlSetProxiedProcessId | |
| 1534 | RtlSetSaclSecurityDescriptor | |
| 1535 | RtlSetSearchPathMode | |
| 1536 | RtlSetSecurityDescriptorRMControl | |
| 1537 | RtlSetSecurityObject | |
| 1538 | RtlSetSecurityObjectEx | |
| 1539 | RtlSetSystemBootStatus | |
| 1540 | RtlSetSystemBootStatusEx | |
| 1541 | RtlSetThreadErrorMode | |
| 1542 | RtlSetThreadIsCritical | |
| 1543 | RtlSetThreadPlaceholderCompatibilityMode | |
| 1544 | RtlSetThreadPoolStartFunc | |
| 1545 | RtlSetThreadPreferredUILanguages | |
| 1546 | F_X86_ANY(RtlSetThreadPreferredUILanguages2) | |
| 1547 | RtlSetThreadSubProcessTag | |
| 1548 | RtlSetThreadWorkOnBehalfTicket | |
| 1549 | RtlSetTimeZoneInformation | |
| 1550 | RtlSetTimer | |
| 1551 | F_X64(RtlSetUmsThreadInformation) | |
| 1552 | RtlSetUnhandledExceptionFilter | |
| 1553 | F_X64(RtlSetUnicodeCallouts) | |
| 1554 | F32(RtlSetUserCallbackExceptionFilter) | |
| 1555 | RtlSetUserFlagsHeap | |
| 1556 | RtlSetUserValueHeap | |
| 1557 | RtlSidDominates | |
| 1558 | RtlSidDominatesForTrust | |
| 1559 | RtlSidEqualLevel | |
| 1560 | RtlSidHashInitialize | |
| 1561 | RtlSidHashLookup | |
| 1562 | RtlSidIsHigherLevel | |
| 1563 | RtlSizeHeap | |
| 1564 | RtlSleepConditionVariableCS | |
| 1565 | RtlSleepConditionVariableSRW | |
| 1566 | RtlSplay | |
| 1567 | RtlStartRXact | |
| 1568 | RtlStatMemoryStream | |
| 1569 | RtlStringFromGUID | |
| 1570 | RtlStringFromGUIDEx | |
| 1571 | RtlStronglyEnumerateEntryHashTable | |
| 1572 | RtlSubAuthorityCountSid | |
| 1573 | RtlSubAuthoritySid | |
| 1574 | RtlSubscribeWnfStateChangeNotification | |
| 1575 | RtlSubtreePredecessor | |
| 1576 | RtlSubtreeSuccessor | |
| 1577 | RtlSwitchedVVI | |
| 1578 | RtlSystemTimeToLocalTime | |
| 1579 | RtlTestAndPublishWnfStateData | |
| 1580 | RtlTestBit | |
| 1581 | F64(RtlTestBitEx) | |
| 1582 | RtlTestProtectedAccess | |
| 1583 | RtlTimeFieldsToTime | |
| 1584 | RtlTimeToElapsedTimeFields | |
| 1585 | RtlTimeToSecondsSince1970 | |
| 1586 | RtlTimeToSecondsSince1980 | |
| 1587 | RtlTimeToTimeFields | |
| 1588 | RtlTraceDatabaseAdd | |
| 1589 | RtlTraceDatabaseCreate | |
| 1590 | RtlTraceDatabaseDestroy | |
| 1591 | RtlTraceDatabaseEnumerate | |
| 1592 | RtlTraceDatabaseFind | |
| 1593 | RtlTraceDatabaseLock | |
| 1594 | RtlTraceDatabaseUnlock | |
| 1595 | RtlTraceDatabaseValidate | |
| 1596 | RtlTryAcquirePebLock | |
| 1597 | RtlTryAcquireSRWLockExclusive | |
| 1598 | RtlTryAcquireSRWLockShared | |
| 1599 | RtlTryConvertSRWLockSharedToExclusiveOrRelease | |
| 1600 | RtlTryEnterCriticalSection | |
| 1601 | F_X86_ANY(RtlUTF8StringToUnicodeString) | |
| 1602 | RtlUTF8ToUnicodeN | |
| 1603 | RtlUdiv128 | |
| 1604 | F_X64(RtlUmsThreadYield) | |
| 1605 | F_ARM_ANY(RtlUlongByteSwap) | |
| 1606 | F_ARM_ANY(RtlUlonglongByteSwap) | |
| 1607 | RtlUnhandledExceptionFilter | |
| 1608 | RtlUnhandledExceptionFilter2 | |
| 1609 | RtlUnicodeStringToAnsiSize | |
| 1610 | RtlUnicodeStringToAnsiString | |
| 1611 | RtlUnicodeStringToCountedOemString | |
| 1612 | RtlUnicodeStringToInteger | |
| 1613 | RtlUnicodeStringToOemSize | |
| 1614 | RtlUnicodeStringToOemString | |
| 1615 | F_X86_ANY(RtlUnicodeStringToUTF8String) | |
| 1616 | RtlUnicodeToCustomCPN | |
| 1617 | RtlUnicodeToMultiByteN | |
| 1618 | RtlUnicodeToMultiByteSize | |
| 1619 | RtlUnicodeToOemN | |
| 1620 | RtlUnicodeToUTF8N | |
| 1621 | RtlUniform | |
| 1622 | RtlUnlockBootStatusData | |
| 1623 | RtlUnlockCurrentThread | |
| 1624 | RtlUnlockHeap | |
| 1625 | RtlUnlockMemoryBlockLookaside | |
| 1626 | RtlUnlockMemoryStreamRegion | |
| 1627 | RtlUnlockMemoryZone | |
| 1628 | RtlUnlockModuleSection | |
| 1629 | RtlUnsubscribeWnfNotificationWaitForCompletion | |
| 1630 | RtlUnsubscribeWnfNotificationWithCompletionCallback | |
| 1631 | RtlUnsubscribeWnfStateChangeNotification | |
| 1632 | RtlUnwind | |
| 1633 | RtlUnwindEx | |
| 1634 | RtlUpcaseUnicodeChar | |
| 1635 | RtlUpcaseUnicodeString | |
| 1636 | RtlUpcaseUnicodeStringToAnsiString | |
| 1637 | RtlUpcaseUnicodeStringToCountedOemString | |
| 1638 | RtlUpcaseUnicodeStringToOemString | |
| 1639 | RtlUpcaseUnicodeToCustomCPN | |
| 1640 | RtlUpcaseUnicodeToMultiByteN | |
| 1641 | RtlUpcaseUnicodeToOemN | |
| 1642 | RtlUpdateClonedCriticalSection | |
| 1643 | RtlUpdateClonedSRWLock | |
| 1644 | RtlUpdateTimer | |
| 1645 | RtlUpperChar | |
| 1646 | RtlUpperString | |
| 1647 | F_X86_ANY(RtlUsageHeap) | |
| 1648 | RtlUserFiberStart | |
| 1649 | RtlUserThreadStart | |
| 1650 | F_ARM_ANY(RtlUshortByteSwap) | |
| 1651 | RtlValidAcl | |
| 1652 | RtlValidProcessProtection | |
| 1653 | RtlValidRelativeSecurityDescriptor | |
| 1654 | RtlValidSecurityDescriptor | |
| 1655 | RtlValidSid | |
| 1656 | RtlValidateCorrelationVector | |
| 1657 | RtlValidateHeap | |
| 1658 | RtlValidateProcessHeaps | |
| 1659 | RtlValidateUnicodeString | |
| 1660 | RtlVerifyVersionInfo | |
| 1661 | RtlVirtualUnwind | |
| 1662 | RtlWaitForWnfMetaNotification | |
| 1663 | RtlWaitOnAddress | |
| 1664 | RtlWakeAddressAll | |
| 1665 | RtlWakeAddressAllNoFence | |
| 1666 | RtlWakeAddressSingle | |
| 1667 | RtlWakeAddressSingleNoFence | |
| 1668 | RtlWakeAllConditionVariable | |
| 1669 | RtlWakeConditionVariable | |
| 1670 | RtlWalkFrameChain | |
| 1671 | RtlWalkHeap | |
| 1672 | RtlWeaklyEnumerateEntryHashTable | |
| 1673 | RtlWerpReportException | |
| 1674 | RtlWnfCompareChangeStamp | |
| 1675 | RtlWnfDllUnloadCallback | |
| 1676 | RtlWow64CallFunction64 | |
| 1677 | RtlWow64EnableFsRedirection | |
| 1678 | RtlWow64EnableFsRedirectionEx | |
| 1679 | F64(RtlWow64GetCpuAreaInfo) | |
| 1680 | F64(RtlWow64GetCurrentCpuArea) | |
| 1681 | RtlWow64GetCurrentMachine | |
| 1682 | RtlWow64GetEquivalentMachineCHPE | |
| 1683 | RtlWow64GetProcessMachines | |
| 1684 | RtlWow64GetSharedInfoProcess | |
| 1685 | F64(RtlWow64GetThreadContext) | |
| 1686 | F64(RtlWow64GetThreadSelectorEntry) | |
| 1687 | RtlWow64IsWowGuestMachineSupported | |
| 1688 | RtlWow64LogMessageInEventLogger | |
| 1689 | #if defined(DEF_X64) || defined(DEF_ARM64) | |
| 1690 | RtlWow64PopAllCrossProcessWorkFromWorkList | |
| 1691 | RtlWow64PopCrossProcessWorkFromFreeList | |
| 1692 | RtlWow64PushCrossProcessWorkOntoFreeList | |
| 1693 | RtlWow64PushCrossProcessWorkOntoWorkList | |
| 1694 | RtlWow64RequestCrossProcessHeavyFlush | |
| 1695 | RtlWow64SetThreadContext | |
| 1696 | RtlWow64SuspendProcess | |
| 1697 | RtlWow64SuspendThread | |
| 1698 | #endif | |
| 1699 | RtlWriteMemoryStream | |
| 1700 | F64(RtlWriteNonVolatileMemory) | |
| 1701 | RtlWriteRegistryValue | |
| 1702 | RtlZeroHeap | |
| 1703 | RtlZeroMemory | |
| 1704 | RtlZombifyActivationContext | |
| 1705 | RtlpApplyLengthFunction | |
| 1706 | RtlpCheckDynamicTimeZoneInformation | |
| 1707 | RtlpCleanupRegistryKeys | |
| 1708 | RtlpConvertAbsoluteToRelativeSecurityAttribute | |
| 1709 | RtlpConvertCultureNamesToLCIDs | |
| 1710 | RtlpConvertLCIDsToCultureNames | |
| 1711 | RtlpConvertRelativeToAbsoluteSecurityAttribute | |
| 1712 | RtlpCreateProcessRegistryInfo | |
| 1713 | RtlpEnsureBufferSize | |
| 1714 | F_X64(RtlpExecuteUmsThread) | |
| 1715 | RtlpFreezeTimeBias F_ARM_ANY(DATA) | |
| 1716 | RtlpGetDeviceFamilyInfoEnum | |
| 1717 | RtlpGetLCIDFromLangInfoNode | |
| 1718 | RtlpGetNameFromLangInfoNode | |
| 1719 | RtlpGetSystemDefaultUILanguage | |
| 1720 | RtlpGetUserOrMachineUILanguage4NLS | |
| 1721 | RtlpInitializeLangRegistryInfo | |
| 1722 | RtlpIsQualifiedLanguage | |
| 1723 | RtlpLoadMachineUIByPolicy | |
| 1724 | RtlpLoadUserUIByPolicy | |
| 1725 | RtlpMergeSecurityAttributeInformation | |
| 1726 | RtlpMuiFreeLangRegistryInfo | |
| 1727 | RtlpMuiRegCreateRegistryInfo | |
| 1728 | RtlpMuiRegFreeRegistryInfo | |
| 1729 | RtlpMuiRegLoadRegistryInfo | |
| 1730 | RtlpNotOwnerCriticalSection | |
| 1731 | RtlpNtCreateKey | |
| 1732 | RtlpNtEnumerateSubKey | |
| 1733 | RtlpNtMakeTemporaryKey | |
| 1734 | RtlpNtOpenKey | |
| 1735 | RtlpNtQueryValueKey | |
| 1736 | RtlpNtSetValueKey | |
| 1737 | RtlpQueryDefaultUILanguage | |
| 1738 | F64(RtlpQueryProcessDebugInformationFromWow64) | |
| 1739 | RtlpQueryProcessDebugInformationRemote | |
| 1740 | RtlpRefreshCachedUILanguage | |
| 1741 | RtlpSetInstallLanguage | |
| 1742 | RtlpSetPreferredUILanguages | |
| 1743 | RtlpSetUserPreferredUILanguages | |
| 1744 | RtlpTimeFieldsToTime | |
| 1745 | RtlpTimeToTimeFields | |
| 1746 | F_X64(RtlpUmsExecuteYieldThreadEnd) | |
| 1747 | F_X64(RtlpUmsThreadYield) | |
| 1748 | RtlpUnWaitCriticalSection | |
| 1749 | RtlpVerifyAndCommitUILanguageSettings | |
| 1750 | RtlpWaitForCriticalSection | |
| 1751 | #ifdef DEF_X64 | |
| 1752 | RtlpWow64CtxFromAmd64 | |
| 1753 | RtlpWow64GetContextOnAmd64 | |
| 1754 | RtlpWow64SetContextOnAmd64 | |
| 1755 | #endif | |
| 1756 | F_ARM64(RtlpWow64CtxFromArm64) | |
| 1757 | RtlxAnsiStringToUnicodeSize | |
| 1758 | RtlxOemStringToUnicodeSize | |
| 1759 | RtlxUnicodeStringToAnsiSize | |
| 1760 | RtlxUnicodeStringToOemSize | |
| 1761 | SbExecuteProcedure | |
| 1762 | SbSelectProcedure | |
| 1763 | ShipAssert | |
| 1764 | ShipAssertGetBufferInfo | |
| 1765 | ShipAssertMsgA | |
| 1766 | ShipAssertMsgW | |
| 1767 | TpAllocAlpcCompletion | |
| 1768 | TpAllocAlpcCompletionEx | |
| 1769 | TpAllocCleanupGroup | |
| 1770 | TpAllocIoCompletion | |
| 1771 | TpAllocJobNotification | |
| 1772 | TpAllocPool | |
| 1773 | TpAllocTimer | |
| 1774 | TpAllocWait | |
| 1775 | TpAllocWork | |
| 1776 | TpAlpcRegisterCompletionList | |
| 1777 | TpAlpcUnregisterCompletionList | |
| 1778 | TpCallbackDetectedUnrecoverableError | |
| 1779 | TpCallbackIndependent | |
| 1780 | TpCallbackLeaveCriticalSectionOnCompletion | |
| 1781 | TpCallbackMayRunLong | |
| 1782 | TpCallbackReleaseMutexOnCompletion | |
| 1783 | TpCallbackReleaseSemaphoreOnCompletion | |
| 1784 | TpCallbackSendAlpcMessageOnCompletion | |
| 1785 | TpCallbackSendPendingAlpcMessage | |
| 1786 | TpCallbackSetEventOnCompletion | |
| 1787 | TpCallbackUnloadDllOnCompletion | |
| 1788 | TpCancelAsyncIoOperation | |
| 1789 | TpCaptureCaller | |
| 1790 | TpCheckTerminateWorker | |
| 1791 | TpDbgDumpHeapUsage | |
| 1792 | F_X86_ANY(TpDbgGetFreeInfo) | |
| 1793 | TpDbgSetLogRoutine | |
| 1794 | TpDisablePoolCallbackChecks | |
| 1795 | TpDisassociateCallback | |
| 1796 | TpIsTimerSet | |
| 1797 | F_X86_ANY(TpPoolFreeUnusedNodes) | |
| 1798 | TpPostWork | |
| 1799 | TpQueryPoolStackInformation | |
| 1800 | TpReleaseAlpcCompletion | |
| 1801 | TpReleaseCleanupGroup | |
| 1802 | TpReleaseCleanupGroupMembers | |
| 1803 | TpReleaseIoCompletion | |
| 1804 | TpReleaseJobNotification | |
| 1805 | TpReleasePool | |
| 1806 | TpReleaseTimer | |
| 1807 | TpReleaseWait | |
| 1808 | TpReleaseWork | |
| 1809 | TpSetDefaultPoolMaxThreads | |
| 1810 | TpSetDefaultPoolStackInformation | |
| 1811 | TpSetPoolMaxThreads | |
| 1812 | TpSetPoolMaxThreadsSoftLimit | |
| 1813 | TpSetPoolMinThreads | |
| 1814 | TpSetPoolStackInformation | |
| 1815 | TpSetPoolThreadBasePriority | |
| 1816 | TpSetPoolThreadCpuSets | |
| 1817 | TpSetPoolWorkerThreadIdleTimeout | |
| 1818 | TpSetTimer | |
| 1819 | TpSetTimerEx | |
| 1820 | TpSetWait | |
| 1821 | TpSetWaitEx | |
| 1822 | TpSimpleTryPost | |
| 1823 | TpStartAsyncIoOperation | |
| 1824 | TpTimerOutstandingCallbackCount | |
| 1825 | TpTrimPools | |
| 1826 | TpWaitForAlpcCompletion | |
| 1827 | TpWaitForIoCompletion | |
| 1828 | TpWaitForJobNotification | |
| 1829 | TpWaitForTimer | |
| 1830 | TpWaitForWait | |
| 1831 | TpWaitForWork | |
| 1832 | VerSetConditionMask | |
| 1833 | WerReportExceptionWorker | |
| 1834 | WerReportSQMEvent | |
| 1835 | WinSqmAddToAverageDWORD | |
| 1836 | WinSqmAddToStream | |
| 1837 | WinSqmAddToStreamEx | |
| 1838 | WinSqmCheckEscalationAddToStreamEx | |
| 1839 | WinSqmCheckEscalationSetDWORD | |
| 1840 | WinSqmCheckEscalationSetDWORD64 | |
| 1841 | WinSqmCheckEscalationSetString | |
| 1842 | WinSqmCommonDatapointDelete | |
| 1843 | WinSqmCommonDatapointSetDWORD | |
| 1844 | WinSqmCommonDatapointSetDWORD64 | |
| 1845 | WinSqmCommonDatapointSetStreamEx | |
| 1846 | WinSqmCommonDatapointSetString | |
| 1847 | WinSqmEndSession | |
| 1848 | WinSqmEventEnabled | |
| 1849 | WinSqmEventWrite | |
| 1850 | WinSqmGetEscalationRuleStatus | |
| 1851 | WinSqmGetInstrumentationProperty | |
| 1852 | WinSqmIncrementDWORD | |
| 1853 | WinSqmIsOptedIn | |
| 1854 | WinSqmIsOptedInEx | |
| 1855 | WinSqmIsSessionDisabled | |
| 1856 | WinSqmSetDWORD | |
| 1857 | WinSqmSetDWORD64 | |
| 1858 | WinSqmSetEscalationInfo | |
| 1859 | WinSqmSetIfMaxDWORD | |
| 1860 | WinSqmSetIfMinDWORD | |
| 1861 | WinSqmSetString | |
| 1862 | WinSqmStartSession | |
| 1863 | WinSqmStartSessionForPartner | |
| 1864 | WinSqmStartSqmOptinListener | |
| 1865 | ZwAcceptConnectPort | |
| 1866 | ZwAccessCheck | |
| 1867 | ZwAccessCheckAndAuditAlarm | |
| 1868 | ZwAccessCheckByType | |
| 1869 | ZwAccessCheckByTypeAndAuditAlarm | |
| 1870 | ZwAccessCheckByTypeResultList | |
| 1871 | ZwAccessCheckByTypeResultListAndAuditAlarm | |
| 1872 | ZwAccessCheckByTypeResultListAndAuditAlarmByHandle | |
| 1873 | ZwAcquireProcessActivityReference | |
| 1874 | ZwAddAtom | |
| 1875 | ZwAddAtomEx | |
| 1876 | ZwAddBootEntry | |
| 1877 | ZwAddDriverEntry | |
| 1878 | ZwAdjustGroupsToken | |
| 1879 | ZwAdjustPrivilegesToken | |
| 1880 | ZwAdjustTokenClaimsAndDeviceGroups | |
| 1881 | ZwAlertResumeThread | |
| 1882 | ZwAlertThread | |
| 1883 | ZwAlertThreadByThreadId | |
| 1884 | ZwAllocateLocallyUniqueId | |
| 1885 | ZwAllocateReserveObject | |
| 1886 | ZwAllocateUserPhysicalPages | |
| 1887 | F_X86_ANY(ZwAllocateUserPhysicalPagesEx) | |
| 1888 | ZwAllocateUuids | |
| 1889 | ZwAllocateVirtualMemory | |
| 1890 | ZwAllocateVirtualMemoryEx | |
| 1891 | ZwAlpcAcceptConnectPort | |
| 1892 | ZwAlpcCancelMessage | |
| 1893 | ZwAlpcConnectPort | |
| 1894 | ZwAlpcConnectPortEx | |
| 1895 | ZwAlpcCreatePort | |
| 1896 | ZwAlpcCreatePortSection | |
| 1897 | ZwAlpcCreateResourceReserve | |
| 1898 | ZwAlpcCreateSectionView | |
| 1899 | ZwAlpcCreateSecurityContext | |
| 1900 | ZwAlpcDeletePortSection | |
| 1901 | ZwAlpcDeleteResourceReserve | |
| 1902 | ZwAlpcDeleteSectionView | |
| 1903 | ZwAlpcDeleteSecurityContext | |
| 1904 | ZwAlpcDisconnectPort | |
| 1905 | ZwAlpcImpersonateClientContainerOfPort | |
| 1906 | ZwAlpcImpersonateClientOfPort | |
| 1907 | ZwAlpcOpenSenderProcess | |
| 1908 | ZwAlpcOpenSenderThread | |
| 1909 | ZwAlpcQueryInformation | |
| 1910 | ZwAlpcQueryInformationMessage | |
| 1911 | ZwAlpcRevokeSecurityContext | |
| 1912 | ZwAlpcSendWaitReceivePort | |
| 1913 | ZwAlpcSetInformation | |
| 1914 | ZwApphelpCacheControl | |
| 1915 | ZwAreMappedFilesTheSame | |
| 1916 | ZwAssignProcessToJobObject | |
| 1917 | ZwAssociateWaitCompletionPacket | |
| 1918 | ZwCallEnclave | |
| 1919 | ZwCallbackReturn | |
| 1920 | F_X86_ANY(ZwCancelDeviceWakeupRequest) | |
| 1921 | ZwCancelIoFile | |
| 1922 | ZwCancelIoFileEx | |
| 1923 | ZwCancelSynchronousIoFile | |
| 1924 | ZwCancelTimer | |
| 1925 | ZwCancelTimer2 | |
| 1926 | ZwCancelWaitCompletionPacket | |
| 1927 | ZwClearEvent | |
| 1928 | ZwClose | |
| 1929 | ZwCloseObjectAuditAlarm | |
| 1930 | ZwCommitComplete | |
| 1931 | ZwCommitEnlistment | |
| 1932 | ZwCommitRegistryTransaction | |
| 1933 | ZwCommitTransaction | |
| 1934 | ZwCompactKeys | |
| 1935 | ZwCompareObjects | |
| 1936 | ZwCompareSigningLevels | |
| 1937 | ZwCompareTokens | |
| 1938 | ZwCompleteConnectPort | |
| 1939 | ZwCompressKey | |
| 1940 | ZwConnectPort | |
| 1941 | ZwContinue | |
| 1942 | ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter | |
| 1943 | ZwCreateCrossVmEvent | |
| 1944 | ZwCreateDebugObject | |
| 1945 | ZwCreateDirectoryObject | |
| 1946 | ZwCreateDirectoryObjectEx | |
| 1947 | ZwCreateEnclave | |
| 1948 | ZwCreateEnlistment | |
| 1949 | ZwCreateEvent | |
| 1950 | ZwCreateEventPair | |
| 1951 | ZwCreateFile | |
| 1952 | ZwCreateIRTimer | |
| 1953 | ZwCreateIoCompletion | |
| 1954 | ZwCreateJobObject | |
| 1955 | ZwCreateJobSet | |
| 1956 | ZwCreateKey | |
| 1957 | ZwCreateKeyTransacted | |
| 1958 | ZwCreateKeyedEvent | |
| 1959 | ZwCreateLowBoxToken | |
| 1960 | ZwCreateMailslotFile | |
| 1961 | ZwCreateMutant | |
| 1962 | ZwCreateNamedPipeFile | |
| 1963 | ZwCreatePagingFile | |
| 1964 | ZwCreatePartition | |
| 1965 | ZwCreatePort | |
| 1966 | ZwCreatePrivateNamespace | |
| 1967 | ZwCreateProcess | |
| 1968 | ZwCreateProcessEx | |
| 1969 | ZwCreateProfile | |
| 1970 | ZwCreateProfileEx | |
| 1971 | ZwCreateRegistryTransaction | |
| 1972 | ZwCreateResourceManager | |
| 1973 | ZwCreateSection | |
| 1974 | ZwCreateSectionEx | |
| 1975 | ZwCreateSemaphore | |
| 1976 | ZwCreateSymbolicLinkObject | |
| 1977 | ZwCreateThread | |
| 1978 | ZwCreateThreadEx | |
| 1979 | ZwCreateTimer | |
| 1980 | ZwCreateTimer2 | |
| 1981 | ZwCreateToken | |
| 1982 | ZwCreateTokenEx | |
| 1983 | ZwCreateTransaction | |
| 1984 | ZwCreateTransactionManager | |
| 1985 | ZwCreateUserProcess | |
| 1986 | ZwCreateWaitCompletionPacket | |
| 1987 | ZwCreateWaitablePort | |
| 1988 | ZwCreateWnfStateName | |
| 1989 | ZwCreateWorkerFactory | |
| 1990 | ZwDebugActiveProcess | |
| 1991 | ZwDebugContinue | |
| 1992 | ZwDelayExecution | |
| 1993 | ZwDeleteAtom | |
| 1994 | ZwDeleteBootEntry | |
| 1995 | ZwDeleteDriverEntry | |
| 1996 | ZwDeleteFile | |
| 1997 | ZwDeleteKey | |
| 1998 | ZwDeleteObjectAuditAlarm | |
| 1999 | ZwDeletePrivateNamespace | |
| 2000 | ZwDeleteValueKey | |
| 2001 | ZwDeleteWnfStateData | |
| 2002 | ZwDeleteWnfStateName | |
| 2003 | ZwDeviceIoControlFile | |
| 2004 | ZwDisableLastKnownGood | |
| 2005 | ZwDisplayString | |
| 2006 | ZwDrawText | |
| 2007 | ZwDuplicateObject | |
| 2008 | ZwDuplicateToken | |
| 2009 | ZwEnableLastKnownGood | |
| 2010 | ZwEnumerateBootEntries | |
| 2011 | ZwEnumerateDriverEntries | |
| 2012 | ZwEnumerateKey | |
| 2013 | ZwEnumerateSystemEnvironmentValuesEx | |
| 2014 | ZwEnumerateTransactionObject | |
| 2015 | ZwEnumerateValueKey | |
| 2016 | ZwExtendSection | |
| 2017 | ZwFilterBootOption | |
| 2018 | ZwFilterToken | |
| 2019 | ZwFilterTokenEx | |
| 2020 | ZwFindAtom | |
| 2021 | ZwFlushBuffersFile | |
| 2022 | ZwFlushBuffersFileEx | |
| 2023 | ZwFlushInstallUILanguage | |
| 2024 | ZwFlushInstructionCache | |
| 2025 | ZwFlushKey | |
| 2026 | ZwFlushProcessWriteBuffers | |
| 2027 | ZwFlushVirtualMemory | |
| 2028 | ZwFlushWriteBuffer | |
| 2029 | ZwFreeUserPhysicalPages | |
| 2030 | ZwFreeVirtualMemory | |
| 2031 | ZwFreezeRegistry | |
| 2032 | ZwFreezeTransactions | |
| 2033 | ZwFsControlFile | |
| 2034 | ZwGetCachedSigningLevel | |
| 2035 | ZwGetCompleteWnfStateSubscription | |
| 2036 | ZwGetContextThread | |
| 2037 | ZwGetCurrentProcessorNumber | |
| 2038 | ZwGetCurrentProcessorNumberEx | |
| 2039 | ZwGetDevicePowerState | |
| 2040 | ZwGetMUIRegistryInfo | |
| 2041 | ZwGetNextProcess | |
| 2042 | ZwGetNextThread | |
| 2043 | ZwGetNlsSectionPtr | |
| 2044 | ZwGetNotificationResourceManager | |
| 2045 | F_X86_ANY(ZwGetPlugPlayEvent) | |
| 2046 | ZwGetWriteWatch | |
| 2047 | ZwImpersonateAnonymousToken | |
| 2048 | ZwImpersonateClientOfPort | |
| 2049 | ZwImpersonateThread | |
| 2050 | ZwInitializeEnclave | |
| 2051 | ZwInitializeNlsFiles | |
| 2052 | ZwInitializeRegistry | |
| 2053 | ZwInitiatePowerAction | |
| 2054 | ZwIsProcessInJob | |
| 2055 | ZwIsSystemResumeAutomatic | |
| 2056 | ZwIsUILanguageComitted | |
| 2057 | ZwListenPort | |
| 2058 | ZwLoadDriver | |
| 2059 | ZwLoadEnclaveData | |
| 2060 | ZwLoadKey | |
| 2061 | ZwLoadKey2 | |
| 2062 | F_ARM_ANY(ZwLoadKey3) | |
| 2063 | ZwLoadKeyEx | |
| 2064 | ZwLockFile | |
| 2065 | ZwLockProductActivationKeys | |
| 2066 | ZwLockRegistryKey | |
| 2067 | ZwLockVirtualMemory | |
| 2068 | ZwMakePermanentObject | |
| 2069 | ZwMakeTemporaryObject | |
| 2070 | ZwManageHotPatch | |
| 2071 | ZwManagePartition | |
| 2072 | ZwMapCMFModule | |
| 2073 | ZwMapUserPhysicalPages | |
| 2074 | ZwMapUserPhysicalPagesScatter | |
| 2075 | ZwMapViewOfSection | |
| 2076 | ZwMapViewOfSectionEx | |
| 2077 | ZwModifyBootEntry | |
| 2078 | ZwModifyDriverEntry | |
| 2079 | ZwNotifyChangeDirectoryFile | |
| 2080 | ZwNotifyChangeDirectoryFileEx | |
| 2081 | ZwNotifyChangeKey | |
| 2082 | ZwNotifyChangeMultipleKeys | |
| 2083 | ZwNotifyChangeSession | |
| 2084 | ZwOpenDirectoryObject | |
| 2085 | ZwOpenEnlistment | |
| 2086 | ZwOpenEvent | |
| 2087 | ZwOpenEventPair | |
| 2088 | ZwOpenFile | |
| 2089 | ZwOpenIoCompletion | |
| 2090 | ZwOpenJobObject | |
| 2091 | ZwOpenKey | |
| 2092 | ZwOpenKeyEx | |
| 2093 | ZwOpenKeyTransacted | |
| 2094 | ZwOpenKeyTransactedEx | |
| 2095 | ZwOpenKeyedEvent | |
| 2096 | ZwOpenMutant | |
| 2097 | ZwOpenObjectAuditAlarm | |
| 2098 | ZwOpenPartition | |
| 2099 | ZwOpenPrivateNamespace | |
| 2100 | ZwOpenProcess | |
| 2101 | ZwOpenProcessToken | |
| 2102 | ZwOpenProcessTokenEx | |
| 2103 | ZwOpenRegistryTransaction | |
| 2104 | ZwOpenResourceManager | |
| 2105 | ZwOpenSection | |
| 2106 | ZwOpenSemaphore | |
| 2107 | ZwOpenSession | |
| 2108 | ZwOpenSymbolicLinkObject | |
| 2109 | ZwOpenThread | |
| 2110 | ZwOpenThreadToken | |
| 2111 | ZwOpenThreadTokenEx | |
| 2112 | ZwOpenTimer | |
| 2113 | ZwOpenTransaction | |
| 2114 | ZwOpenTransactionManager | |
| 2115 | ZwPlugPlayControl | |
| 2116 | ZwPowerInformation | |
| 2117 | ZwPrePrepareComplete | |
| 2118 | ZwPrePrepareEnlistment | |
| 2119 | ZwPrepareComplete | |
| 2120 | ZwPrepareEnlistment | |
| 2121 | ZwPrivilegeCheck | |
| 2122 | ZwPrivilegeObjectAuditAlarm | |
| 2123 | ZwPrivilegedServiceAuditAlarm | |
| 2124 | ZwPropagationComplete | |
| 2125 | ZwPropagationFailed | |
| 2126 | ZwProtectVirtualMemory | |
| 2127 | F_X86_ANY(ZwPssCaptureVaSpaceBulk) | |
| 2128 | ZwPulseEvent | |
| 2129 | ZwQueryAttributesFile | |
| 2130 | ZwQueryAuxiliaryCounterFrequency | |
| 2131 | ZwQueryBootEntryOrder | |
| 2132 | ZwQueryBootOptions | |
| 2133 | ZwQueryDebugFilterState | |
| 2134 | ZwQueryDefaultLocale | |
| 2135 | ZwQueryDefaultUILanguage | |
| 2136 | ZwQueryDirectoryFile | |
| 2137 | ZwQueryDirectoryFileEx | |
| 2138 | ZwQueryDirectoryObject | |
| 2139 | ZwQueryDriverEntryOrder | |
| 2140 | ZwQueryEaFile | |
| 2141 | ZwQueryEvent | |
| 2142 | ZwQueryFullAttributesFile | |
| 2143 | ZwQueryInformationAtom | |
| 2144 | ZwQueryInformationByName | |
| 2145 | ZwQueryInformationEnlistment | |
| 2146 | ZwQueryInformationFile | |
| 2147 | ZwQueryInformationJobObject | |
| 2148 | ZwQueryInformationPort | |
| 2149 | ZwQueryInformationProcess | |
| 2150 | ZwQueryInformationResourceManager | |
| 2151 | ZwQueryInformationThread | |
| 2152 | ZwQueryInformationToken | |
| 2153 | ZwQueryInformationTransaction | |
| 2154 | ZwQueryInformationTransactionManager | |
| 2155 | ZwQueryInformationWorkerFactory | |
| 2156 | ZwQueryInstallUILanguage | |
| 2157 | ZwQueryIntervalProfile | |
| 2158 | ZwQueryIoCompletion | |
| 2159 | ZwQueryKey | |
| 2160 | ZwQueryLicenseValue | |
| 2161 | ZwQueryMultipleValueKey | |
| 2162 | ZwQueryMutant | |
| 2163 | ZwQueryObject | |
| 2164 | ZwQueryOpenSubKeys | |
| 2165 | ZwQueryOpenSubKeysEx | |
| 2166 | ZwQueryPerformanceCounter | |
| 2167 | ZwQueryPortInformationProcess | |
| 2168 | ZwQueryQuotaInformationFile | |
| 2169 | ZwQuerySection | |
| 2170 | ZwQuerySecurityAttributesToken | |
| 2171 | ZwQuerySecurityObject | |
| 2172 | ZwQuerySecurityPolicy | |
| 2173 | ZwQuerySemaphore | |
| 2174 | ZwQuerySymbolicLinkObject | |
| 2175 | ZwQuerySystemEnvironmentValue | |
| 2176 | ZwQuerySystemEnvironmentValueEx | |
| 2177 | ZwQuerySystemInformation | |
| 2178 | ZwQuerySystemInformationEx | |
| 2179 | ZwQuerySystemTime | |
| 2180 | ZwQueryTimer | |
| 2181 | ZwQueryTimerResolution | |
| 2182 | ZwQueryValueKey | |
| 2183 | ZwQueryVirtualMemory | |
| 2184 | ZwQueryVolumeInformationFile | |
| 2185 | ZwQueryWnfStateData | |
| 2186 | ZwQueryWnfStateNameInformation | |
| 2187 | ZwQueueApcThread | |
| 2188 | ZwQueueApcThreadEx | |
| 2189 | ZwRaiseException | |
| 2190 | ZwRaiseHardError | |
| 2191 | ZwReadFile | |
| 2192 | ZwReadFileScatter | |
| 2193 | ZwReadOnlyEnlistment | |
| 2194 | ZwReadRequestData | |
| 2195 | ZwReadVirtualMemory | |
| 2196 | ZwRecoverEnlistment | |
| 2197 | ZwRecoverResourceManager | |
| 2198 | ZwRecoverTransactionManager | |
| 2199 | ZwRegisterProtocolAddressInformation | |
| 2200 | ZwRegisterThreadTerminatePort | |
| 2201 | ZwReleaseKeyedEvent | |
| 2202 | ZwReleaseMutant | |
| 2203 | ZwReleaseSemaphore | |
| 2204 | ZwReleaseWorkerFactoryWorker | |
| 2205 | ZwRemoveIoCompletion | |
| 2206 | ZwRemoveIoCompletionEx | |
| 2207 | ZwRemoveProcessDebug | |
| 2208 | ZwRenameKey | |
| 2209 | ZwRenameTransactionManager | |
| 2210 | ZwReplaceKey | |
| 2211 | ZwReplacePartitionUnit | |
| 2212 | ZwReplyPort | |
| 2213 | ZwReplyWaitReceivePort | |
| 2214 | ZwReplyWaitReceivePortEx | |
| 2215 | ZwReplyWaitReplyPort | |
| 2216 | F_X86_ANY(ZwRequestDeviceWakeup) | |
| 2217 | ZwRequestPort | |
| 2218 | ZwRequestWaitReplyPort | |
| 2219 | F_X86_ANY(ZwRequestWakeupLatency) | |
| 2220 | ZwResetEvent | |
| 2221 | ZwResetWriteWatch | |
| 2222 | ZwRestoreKey | |
| 2223 | ZwResumeProcess | |
| 2224 | ZwResumeThread | |
| 2225 | ZwRevertContainerImpersonation | |
| 2226 | ZwRollbackComplete | |
| 2227 | ZwRollbackEnlistment | |
| 2228 | ZwRollbackRegistryTransaction | |
| 2229 | ZwRollbackTransaction | |
| 2230 | ZwRollforwardTransactionManager | |
| 2231 | ZwSaveKey | |
| 2232 | ZwSaveKeyEx | |
| 2233 | ZwSaveMergedKeys | |
| 2234 | ZwSecureConnectPort | |
| 2235 | ZwSerializeBoot | |
| 2236 | ZwSetBootEntryOrder | |
| 2237 | ZwSetBootOptions | |
| 2238 | ZwSetCachedSigningLevel | |
| 2239 | ZwSetCachedSigningLevel2 | |
| 2240 | ZwSetContextThread | |
| 2241 | ZwSetDebugFilterState | |
| 2242 | ZwSetDefaultHardErrorPort | |
| 2243 | ZwSetDefaultLocale | |
| 2244 | ZwSetDefaultUILanguage | |
| 2245 | ZwSetDriverEntryOrder | |
| 2246 | ZwSetEaFile | |
| 2247 | ZwSetEvent | |
| 2248 | ZwSetEventBoostPriority | |
| 2249 | ZwSetHighEventPair | |
| 2250 | ZwSetHighWaitLowEventPair | |
| 2251 | ZwSetIRTimer | |
| 2252 | ZwSetInformationDebugObject | |
| 2253 | ZwSetInformationEnlistment | |
| 2254 | ZwSetInformationFile | |
| 2255 | ZwSetInformationJobObject | |
| 2256 | ZwSetInformationKey | |
| 2257 | ZwSetInformationObject | |
| 2258 | ZwSetInformationProcess | |
| 2259 | ZwSetInformationResourceManager | |
| 2260 | ZwSetInformationSymbolicLink | |
| 2261 | ZwSetInformationThread | |
| 2262 | ZwSetInformationToken | |
| 2263 | ZwSetInformationTransaction | |
| 2264 | ZwSetInformationTransactionManager | |
| 2265 | ZwSetInformationVirtualMemory | |
| 2266 | ZwSetInformationWorkerFactory | |
| 2267 | ZwSetIntervalProfile | |
| 2268 | ZwSetIoCompletion | |
| 2269 | ZwSetIoCompletionEx | |
| 2270 | ZwSetLdtEntries | |
| 2271 | ZwSetLowEventPair | |
| 2272 | ZwSetLowWaitHighEventPair | |
| 2273 | ZwSetQuotaInformationFile | |
| 2274 | ZwSetSecurityObject | |
| 2275 | ZwSetSystemEnvironmentValue | |
| 2276 | ZwSetSystemEnvironmentValueEx | |
| 2277 | ZwSetSystemInformation | |
| 2278 | ZwSetSystemPowerState | |
| 2279 | ZwSetSystemTime | |
| 2280 | ZwSetThreadExecutionState | |
| 2281 | ZwSetTimer | |
| 2282 | ZwSetTimer2 | |
| 2283 | ZwSetTimerEx | |
| 2284 | ZwSetTimerResolution | |
| 2285 | ZwSetUuidSeed | |
| 2286 | ZwSetValueKey | |
| 2287 | ZwSetVolumeInformationFile | |
| 2288 | ZwSetWnfProcessNotificationEvent | |
| 2289 | ZwShutdownSystem | |
| 2290 | ZwShutdownWorkerFactory | |
| 2291 | ZwSignalAndWaitForSingleObject | |
| 2292 | ZwSinglePhaseReject | |
| 2293 | ZwStartProfile | |
| 2294 | ZwStopProfile | |
| 2295 | ZwSubscribeWnfStateChange | |
| 2296 | ZwSuspendProcess | |
| 2297 | ZwSuspendThread | |
| 2298 | ZwSystemDebugControl | |
| 2299 | ZwTerminateEnclave | |
| 2300 | ZwTerminateJobObject | |
| 2301 | ZwTerminateProcess | |
| 2302 | ZwTerminateThread | |
| 2303 | ZwTestAlert | |
| 2304 | ZwThawRegistry | |
| 2305 | ZwThawTransactions | |
| 2306 | ZwTraceControl | |
| 2307 | ZwTraceEvent | |
| 2308 | ZwTranslateFilePath | |
| 2309 | ZwUmsThreadYield | |
| 2310 | ZwUnloadDriver | |
| 2311 | ZwUnloadKey | |
| 2312 | ZwUnloadKey2 | |
| 2313 | ZwUnloadKeyEx | |
| 2314 | ZwUnlockFile | |
| 2315 | ZwUnlockVirtualMemory | |
| 2316 | ZwUnmapViewOfSection | |
| 2317 | ZwUnmapViewOfSectionEx | |
| 2318 | ZwUnsubscribeWnfStateChange | |
| 2319 | ZwUpdateWnfStateData | |
| 2320 | ZwVdmControl | |
| 2321 | ZwWaitForAlertByThreadId | |
| 2322 | ZwWaitForDebugEvent | |
| 2323 | ZwWaitForKeyedEvent | |
| 2324 | ZwWaitForMultipleObjects | |
| 2325 | ZwWaitForMultipleObjects32 | |
| 2326 | ZwWaitForSingleObject | |
| 2327 | ZwWaitForWorkViaWorkerFactory | |
| 2328 | ZwWaitHighEventPair | |
| 2329 | ZwWaitLowEventPair | |
| 2330 | ZwWorkerFactoryWorkerReady | |
| 2331 | #ifdef DEF_ARM32 | |
| 2332 | ZwWow64AllocateVirtualMemory64 | |
| 2333 | ZwWow64CallFunction64 | |
| 2334 | ZwWow64CsrAllocateCaptureBuffer | |
| 2335 | ZwWow64CsrAllocateMessagePointer | |
| 2336 | ZwWow64CsrCaptureMessageBuffer | |
| 2337 | ZwWow64CsrCaptureMessageString | |
| 2338 | ZwWow64CsrClientCallServer | |
| 2339 | ZwWow64CsrClientConnectToServer | |
| 2340 | ZwWow64CsrFreeCaptureBuffer | |
| 2341 | ZwWow64CsrGetProcessId | |
| 2342 | ZwWow64CsrIdentifyAlertableThread | |
| 2343 | ZwWow64CsrVerifyRegion | |
| 2344 | ZwWow64DebuggerCall | |
| 2345 | ZwWow64GetCurrentProcessorNumberEx | |
| 2346 | ZwWow64GetNativeSystemInformation | |
| 2347 | ZwWow64IsProcessorFeaturePresent | |
| 2348 | ZwWow64QueryInformationProcess64 | |
| 2349 | ZwWow64ReadVirtualMemory64 | |
| 2350 | ZwWow64WriteVirtualMemory64 | |
| 2351 | #endif | |
| 2352 | ZwWriteFile | |
| 2353 | ZwWriteFileGather | |
| 2354 | ZwWriteRequestData | |
| 2355 | ZwWriteVirtualMemory | |
| 2356 | ZwYieldExecution | |
| 2357 | vDbgPrintEx | |
| 2358 | vDbgPrintExWithPrefix |
lib/libc/mingw/lib-common/powrprof.def+32| ... | ... | @@ -28,6 +28,11 @@ MergeLegacyPwrScheme |
| 28 | 28 | PowerApplyPowerRequestOverride |
| 29 | 29 | PowerApplySettingChanges |
| 30 | 30 | PowerCanRestoreIndividualDefaultPowerScheme |
| 31 | PowerCleanupOverrides | |
| 32 | PowerClearUserAwayPrediction | |
| 33 | PowerCloseEnvironmentalMonitor | |
| 34 | PowerCloseLimitsMitigation | |
| 35 | PowerCloseLimitsPolicy | |
| 31 | 36 | PowerCreatePossibleSetting |
| 32 | 37 | PowerCreateSetting |
| 33 | 38 | PowerCustomizePlatformPowerSettings |
| ... | ... | @@ -42,7 +47,14 @@ PowerDeterminePlatformRole |
| 42 | 47 | PowerDeterminePlatformRoleEx |
| 43 | 48 | PowerDuplicateScheme |
| 44 | 49 | PowerEnumerate |
| 50 | PowerEnumerateSettings | |
| 45 | 51 | PowerGetActiveScheme |
| 52 | PowerGetActualOverlayScheme | |
| 53 | PowerGetAdaptiveStandbyDiagnostics | |
| 54 | PowerGetEffectiveOverlayScheme | |
| 55 | PowerGetOverlaySchemes | |
| 56 | PowerGetProfiles | |
| 57 | PowerGetUserAwayMinPredictionConfidence | |
| 46 | 58 | PowerImportPowerScheme |
| 47 | 59 | PowerInternalDeleteScheme |
| 48 | 60 | PowerInternalDuplicateScheme |
| ... | ... | @@ -59,38 +71,58 @@ PowerPolicyToGUIDFormat |
| 59 | 71 | PowerReadACDefaultIndex |
| 60 | 72 | PowerReadACValue |
| 61 | 73 | PowerReadACValueIndex |
| 74 | PowerReadACValueIndexEx | |
| 62 | 75 | PowerReadDCDefaultIndex |
| 63 | 76 | PowerReadDCValue |
| 64 | 77 | PowerReadDCValueIndex |
| 78 | PowerReadDCValueIndexEx | |
| 65 | 79 | PowerReadDescription |
| 66 | 80 | PowerReadFriendlyName |
| 67 | 81 | PowerReadIconResourceSpecifier |
| 68 | 82 | PowerReadPossibleDescription |
| 69 | 83 | PowerReadPossibleFriendlyName |
| 70 | 84 | PowerReadPossibleValue |
| 85 | PowerReadProfileAlias | |
| 71 | 86 | PowerReadSecurityDescriptor |
| 72 | 87 | PowerReadSettingAttributes |
| 73 | 88 | PowerReadValueIncrement |
| 74 | 89 | PowerReadValueMax |
| 75 | 90 | PowerReadValueMin |
| 76 | 91 | PowerReadValueUnitsSpecifier |
| 92 | PowerReapplyActiveScheme | |
| 93 | PowerRegisterEnvironmentalMonitor | |
| 94 | PowerRegisterForEffectivePowerModeNotifications | |
| 95 | PowerRegisterLimitsMitigation | |
| 96 | PowerRegisterLimitsPolicy | |
| 77 | 97 | PowerRegisterSuspendResumeNotification |
| 78 | 98 | PowerRemovePowerSetting |
| 79 | 99 | PowerReplaceDefaultPowerSchemes |
| 100 | PowerReportLimitsEvent | |
| 80 | 101 | PowerReportThermalEvent |
| 102 | PowerRestoreACDefaultIndex | |
| 103 | PowerRestoreDCDefaultIndex | |
| 81 | 104 | PowerRestoreDefaultPowerSchemes |
| 82 | 105 | PowerRestoreIndividualDefaultPowerScheme |
| 106 | PowerSetActiveOverlayScheme | |
| 83 | 107 | PowerSetActiveScheme |
| 84 | 108 | PowerSetAlsBrightnessOffset |
| 109 | PowerSetBrightnessAndTransitionTimes | |
| 110 | PowerSetUserAwayPrediction | |
| 85 | 111 | PowerSettingAccessCheck |
| 86 | 112 | PowerSettingAccessCheckEx |
| 87 | 113 | PowerSettingRegisterNotification |
| 88 | 114 | PowerSettingRegisterNotificationEx |
| 89 | 115 | PowerSettingUnregisterNotification |
| 116 | PowerUnregisterFromEffectivePowerModeNotifications | |
| 90 | 117 | PowerUnregisterSuspendResumeNotification |
| 118 | PowerUpdateEnvironmentalMonitorState | |
| 119 | PowerUpdateEnvironmentalMonitorThresholds | |
| 120 | PowerUpdateLimitsMitigation | |
| 91 | 121 | PowerWriteACDefaultIndex |
| 122 | PowerWriteACProfileIndex | |
| 92 | 123 | PowerWriteACValueIndex |
| 93 | 124 | PowerWriteDCDefaultIndex |
| 125 | PowerWriteDCProfileIndex | |
| 94 | 126 | PowerWriteDCValueIndex |
| 95 | 127 | PowerWriteDescription |
| 96 | 128 | PowerWriteFriendlyName |
lib/libc/mingw/lib-common/wofutil.def created+18| ... | ... | @@ -0,0 +1,18 @@ |
| 1 | ; | |
| 2 | ; Definition file of WOFUTIL.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008 | |
| 5 | ; | |
| 6 | LIBRARY "WOFUTIL.dll" | |
| 7 | EXPORTS | |
| 8 | WofEnumEntries | |
| 9 | WofFileEnumFiles | |
| 10 | WofGetDriverVersion | |
| 11 | WofIsExternalFile | |
| 12 | WofSetFileDataLocation | |
| 13 | WofShouldCompressBinaries | |
| 14 | WofWimAddEntry | |
| 15 | WofWimEnumFiles | |
| 16 | WofWimRemoveEntry | |
| 17 | WofWimSuspendEntry | |
| 18 | WofWimUpdateEntry |
lib/libc/mingw/lib32/api-ms-win-appmodel-runtime-l1-1-1.def+5-5| ... | ... | @@ -12,8 +12,8 @@ PackageFullNameFromId@12 |
| 12 | 12 | PackageIdFromFullName@16 |
| 13 | 13 | PackageNameAndPublisherIdFromFamilyName@20 |
| 14 | 14 | ParseApplicationUserModelId@20 |
| 15 | VerifyApplicationUserModelId@ | |
| 16 | VerifyPackageFamilyName@ | |
| 17 | VerifyPackageFullName@ | |
| 18 | VerifyPackageId@ | |
| 19 | VerifyPackageRelativeApplicationId@ | |
| 15 | VerifyApplicationUserModelId@4 | |
| 16 | VerifyPackageFamilyName@4 | |
| 17 | VerifyPackageFullName@4 | |
| 18 | VerifyPackageId@4 | |
| 19 | VerifyPackageRelativeApplicationId@4 |
lib/libc/mingw/lib32/api-ms-win-core-file-fromapp-l1-1-0.def+11-11| ... | ... | @@ -2,14 +2,14 @@ LIBRARY api-ms-win-core-file-fromapp-l1-1-0 |
| 2 | 2 | |
| 3 | 3 | EXPORTS |
| 4 | 4 | |
| 5 | CopyFileFromAppW@ | |
| 6 | CreateDirectoryFromAppW@ | |
| 7 | CreateFile2FromAppW@ | |
| 8 | CreateFileFromAppW@ | |
| 9 | DeleteFileFromAppW@ | |
| 10 | FindFirstFileExFromAppW@ | |
| 11 | GetFileAttributesExFromAppW@ | |
| 12 | MoveFileFromAppW@ | |
| 13 | RemoveDirectoryFromAppW@ | |
| 14 | ReplaceFileFromAppW@ | |
| 15 | SetFileAttributesFromAppW@ | |
| 5 | CopyFileFromAppW@12 | |
| 6 | CreateDirectoryFromAppW@8 | |
| 7 | CreateFile2FromAppW@20 | |
| 8 | CreateFileFromAppW@28 | |
| 9 | DeleteFileFromAppW@4 | |
| 10 | FindFirstFileExFromAppW@24 | |
| 11 | GetFileAttributesExFromAppW@12 | |
| 12 | MoveFileFromAppW@8 | |
| 13 | RemoveDirectoryFromAppW@4 | |
| 14 | ReplaceFileFromAppW@24 | |
| 15 | SetFileAttributesFromAppW@8 |
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-3.def+1-1| ... | ... | @@ -18,7 +18,7 @@ OpenFileMappingW@12 |
| 18 | 18 | ReadProcessMemory@20 |
| 19 | 19 | ReclaimVirtualMemory@8 |
| 20 | 20 | ResetWriteWatch@8 |
| 21 | SetProcessValidCallTargets | |
| 21 | SetProcessValidCallTargets@20 | |
| 22 | 22 | SetProcessWorkingSetSizeEx@16 |
| 23 | 23 | UnmapViewOfFile@4 |
| 24 | 24 | UnmapViewOfFileEx@8 |
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-4.def+1-1| ... | ... | @@ -18,7 +18,7 @@ OpenFileMappingW@12 |
| 18 | 18 | ReadProcessMemory@20 |
| 19 | 19 | ReclaimVirtualMemory@8 |
| 20 | 20 | ResetWriteWatch@8 |
| 21 | SetProcessValidCallTargets | |
| 21 | SetProcessValidCallTargets@20 | |
| 22 | 22 | SetProcessWorkingSetSizeEx@16 |
| 23 | 23 | UnmapViewOfFile@4 |
| 24 | 24 | UnmapViewOfFileEx@8 |
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-5.def+1-1| ... | ... | @@ -33,5 +33,5 @@ VirtualProtectFromApp@16 |
| 33 | 33 | VirtualQuery@12 |
| 34 | 34 | VirtualQueryEx@16 |
| 35 | 35 | VirtualUnlock@8 |
| 36 | VirtualUnlockEx@ | |
| 36 | VirtualUnlockEx@12 | |
| 37 | 37 | WriteProcessMemory@20 |
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-6.def+5-5| ... | ... | @@ -10,7 +10,7 @@ GetLargePageMinimum@0 |
| 10 | 10 | GetProcessWorkingSetSizeEx@16 |
| 11 | 11 | GetWriteWatch@24 |
| 12 | 12 | MapViewOfFile@20 |
| 13 | MapViewOfFile3FromApp@ | |
| 13 | MapViewOfFile3FromApp@40 | |
| 14 | 14 | MapViewOfFileEx@24 |
| 15 | 15 | MapViewOfFileFromApp@20 |
| 16 | 16 | OfferVirtualMemory@12 |
| ... | ... | @@ -19,13 +19,13 @@ OpenFileMappingW@12 |
| 19 | 19 | ReadProcessMemory@20 |
| 20 | 20 | ReclaimVirtualMemory@8 |
| 21 | 21 | ResetWriteWatch@8 |
| 22 | SetProcessValidCallTargets | |
| 22 | SetProcessValidCallTargets@20 | |
| 23 | 23 | SetProcessWorkingSetSizeEx@16 |
| 24 | 24 | UnmapViewOfFile@4 |
| 25 | UnmapViewOfFile2@ | |
| 25 | UnmapViewOfFile2@12 | |
| 26 | 26 | UnmapViewOfFileEx@8 |
| 27 | 27 | VirtualAlloc@16 |
| 28 | VirtualAlloc2FromApp@ | |
| 28 | VirtualAlloc2FromApp@28 | |
| 29 | 29 | VirtualAllocFromApp@16 |
| 30 | 30 | VirtualFree@12 |
| 31 | 31 | VirtualFreeEx@16 |
| ... | ... | @@ -35,5 +35,5 @@ VirtualProtectFromApp@16 |
| 35 | 35 | VirtualQuery@12 |
| 36 | 36 | VirtualQueryEx@16 |
| 37 | 37 | VirtualUnlock@8 |
| 38 | VirtualUnlockEx@ | |
| 38 | VirtualUnlockEx@12 | |
| 39 | 39 | WriteProcessMemory@20 |
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-7.def+6-6| ... | ... | @@ -10,7 +10,7 @@ GetLargePageMinimum@0 |
| 10 | 10 | GetProcessWorkingSetSizeEx@16 |
| 11 | 11 | GetWriteWatch@24 |
| 12 | 12 | MapViewOfFile@20 |
| 13 | MapViewOfFile3FromApp@ | |
| 13 | MapViewOfFile3FromApp@40 | |
| 14 | 14 | MapViewOfFileEx@24 |
| 15 | 15 | MapViewOfFileFromApp@20 |
| 16 | 16 | OfferVirtualMemory@12 |
| ... | ... | @@ -19,14 +19,14 @@ OpenFileMappingW@12 |
| 19 | 19 | ReadProcessMemory@20 |
| 20 | 20 | ReclaimVirtualMemory@8 |
| 21 | 21 | ResetWriteWatch@8 |
| 22 | SetProcessValidCallTargets | |
| 23 | SetProcessValidCallTargetsForMappedView@ | |
| 22 | SetProcessValidCallTargets@20 | |
| 23 | SetProcessValidCallTargetsForMappedView@32 | |
| 24 | 24 | SetProcessWorkingSetSizeEx@16 |
| 25 | 25 | UnmapViewOfFile@4 |
| 26 | UnmapViewOfFile2@ | |
| 26 | UnmapViewOfFile2@12 | |
| 27 | 27 | UnmapViewOfFileEx@8 |
| 28 | 28 | VirtualAlloc@16 |
| 29 | VirtualAlloc2FromApp@ | |
| 29 | VirtualAlloc2FromApp@28 | |
| 30 | 30 | VirtualAllocFromApp@16 |
| 31 | 31 | VirtualFree@12 |
| 32 | 32 | VirtualFreeEx@16 |
| ... | ... | @@ -36,5 +36,5 @@ VirtualProtectFromApp@16 |
| 36 | 36 | VirtualQuery@12 |
| 37 | 37 | VirtualQueryEx@16 |
| 38 | 38 | VirtualUnlock@8 |
| 39 | VirtualUnlockEx@ | |
| 39 | VirtualUnlockEx@12 | |
| 40 | 40 | WriteProcessMemory@20 |
lib/libc/mingw/lib32/api-ms-win-core-path-l1-1-0.def+22-22| ... | ... | @@ -2,25 +2,25 @@ LIBRARY api-ms-win-core-path-l1-1-0 |
| 2 | 2 | |
| 3 | 3 | EXPORTS |
| 4 | 4 | |
| 5 | PathAllocCanonicalize@ | |
| 6 | PathAllocCombine@ | |
| 7 | PathCchAddBackslash@ | |
| 8 | PathCchAddBackslashEx@ | |
| 9 | PathCchAddExtension@ | |
| 10 | PathCchAppend@ | |
| 11 | PathCchAppendEx@ | |
| 12 | PathCchCanonicalize@ | |
| 13 | PathCchCanonicalizeEx@ | |
| 14 | PathCchCombine@ | |
| 15 | PathCchCombineEx@ | |
| 16 | PathCchFindExtension@ | |
| 17 | PathCchIsRoot@ | |
| 18 | PathCchRemoveBackslash@ | |
| 19 | PathCchRemoveBackslashEx@ | |
| 20 | PathCchRemoveExtension@ | |
| 21 | PathCchRemoveFileSpec@ | |
| 22 | PathCchRenameExtension@ | |
| 23 | PathCchSkipRoot@ | |
| 24 | PathCchStripPrefix@ | |
| 25 | PathCchStripToRoot@ | |
| 26 | PathIsUNCEx@ | |
| 5 | PathAllocCanonicalize@12 | |
| 6 | PathAllocCombine@16 | |
| 7 | PathCchAddBackslash@8 | |
| 8 | PathCchAddBackslashEx@16 | |
| 9 | PathCchAddExtension@12 | |
| 10 | PathCchAppend@12 | |
| 11 | PathCchAppendEx@16 | |
| 12 | PathCchCanonicalize@12 | |
| 13 | PathCchCanonicalizeEx@16 | |
| 14 | PathCchCombine@16 | |
| 15 | PathCchCombineEx@20 | |
| 16 | PathCchFindExtension@12 | |
| 17 | PathCchIsRoot@4 | |
| 18 | PathCchRemoveBackslash@8 | |
| 19 | PathCchRemoveBackslashEx@16 | |
| 20 | PathCchRemoveExtension@8 | |
| 21 | PathCchRemoveFileSpec@8 | |
| 22 | PathCchRenameExtension@12 | |
| 23 | PathCchSkipRoot@8 | |
| 24 | PathCchStripPrefix@8 | |
| 25 | PathCchStripToRoot@8 | |
| 26 | PathIsUNCEx@8 |
lib/libc/mingw/lib32/api-ms-win-core-psm-appnotify-l1-1-0.def+2-2| ... | ... | @@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-psm-appnotify-l1-1-0 |
| 2 | 2 | |
| 3 | 3 | EXPORTS |
| 4 | 4 | |
| 5 | RegisterAppStateChangeNotification@ | |
| 6 | UnregisterAppStateChangeNotification@ | |
| 5 | RegisterAppStateChangeNotification@12 | |
| 6 | UnregisterAppStateChangeNotification@4 |
lib/libc/mingw/lib32/api-ms-win-core-realtime-l1-1-2.def+2-2| ... | ... | @@ -2,8 +2,8 @@ LIBRARY api-ms-win-core-realtime-l1-1-2 |
| 2 | 2 | |
| 3 | 3 | EXPORTS |
| 4 | 4 | |
| 5 | ConvertAuxiliaryCounterToPerformanceCounter@ | |
| 6 | ConvertPerformanceCounterToAuxiliaryCounter@ | |
| 5 | ConvertAuxiliaryCounterToPerformanceCounter@16 | |
| 6 | ConvertPerformanceCounterToAuxiliaryCounter@16 | |
| 7 | 7 | QueryAuxiliaryCounterFrequency@ |
| 8 | 8 | QueryInterruptTime@4 |
| 9 | 9 | QueryInterruptTimePrecise@4 |
lib/libc/mingw/lib32/api-ms-win-devices-config-l1-1-1.def+13-13| ... | ... | @@ -2,16 +2,16 @@ LIBRARY api-ms-win-devices-config-l1-1-1 |
| 2 | 2 | |
| 3 | 3 | EXPORTS |
| 4 | 4 | |
| 5 | CM_Get_Device_ID_List_SizeW@ | |
| 6 | CM_Get_Device_ID_ListW@ | |
| 7 | CM_Get_Device_IDW@ | |
| 8 | CM_Get_Device_Interface_List_SizeW@ | |
| 9 | CM_Get_Device_Interface_ListW@ | |
| 10 | CM_Get_Device_Interface_PropertyW@ | |
| 11 | CM_Get_DevNode_PropertyW@ | |
| 12 | CM_Get_DevNode_Status@ | |
| 13 | CM_Get_Parent@ | |
| 14 | CM_Locate_DevNodeW@ | |
| 15 | CM_MapCrToWin32Err@ | |
| 16 | CM_Register_Notification@ | |
| 17 | CM_Unregister_Notification@ | |
| 5 | CM_Get_Device_ID_List_SizeW@12 | |
| 6 | CM_Get_Device_ID_ListW@16 | |
| 7 | CM_Get_Device_IDW@16 | |
| 8 | CM_Get_Device_Interface_List_SizeW@16 | |
| 9 | CM_Get_Device_Interface_ListW@20 | |
| 10 | CM_Get_Device_Interface_PropertyW@24 | |
| 11 | CM_Get_DevNode_PropertyW@24 | |
| 12 | CM_Get_DevNode_Status@16 | |
| 13 | CM_Get_Parent@12 | |
| 14 | CM_Locate_DevNodeW@12 | |
| 15 | CM_MapCrToWin32Err@8 | |
| 16 | CM_Register_Notification@16 | |
| 17 | CM_Unregister_Notification@4 |
lib/libc/mingw/lib32/api-ms-win-gaming-deviceinformation-l1-1-0.def+1-1| ... | ... | @@ -2,4 +2,4 @@ LIBRARY api-ms-win-gaming-deviceinformation-l1-1-0 |
| 2 | 2 | |
| 3 | 3 | EXPORTS |
| 4 | 4 | |
| 5 | GetGamingDeviceModelInformation@ | |
| 5 | GetGamingDeviceModelInformation@4 |
lib/libc/mingw/lib32/api-ms-win-gaming-expandedresources-l1-1-0.def+3-3| ... | ... | @@ -2,6 +2,6 @@ LIBRARY api-ms-win-gaming-expandedresources-l1-1-0 |
| 2 | 2 | |
| 3 | 3 | EXPORTS |
| 4 | 4 | |
| 5 | GetExpandedResourceExclusiveCpuCount@ | |
| 6 | HasExpandedResources@ | |
| 7 | ReleaseExclusiveCpuSets@ | |
| 5 | GetExpandedResourceExclusiveCpuCount@4 | |
| 6 | HasExpandedResources@4 | |
| 7 | ReleaseExclusiveCpuSets@0 |
lib/libc/mingw/lib32/api-ms-win-gaming-tcui-l1-1-3.def+2-2| ... | ... | @@ -11,8 +11,8 @@ ShowChangeFriendRelationshipUI@12 |
| 11 | 11 | ShowChangeFriendRelationshipUIForUser@16 |
| 12 | 12 | ShowGameInviteUI@24 |
| 13 | 13 | ShowGameInviteUIForUser@28 |
| 14 | ShowGameInviteUIWithContext@ | |
| 15 | ShowGameInviteUIWithContextForUser@ | |
| 14 | ShowGameInviteUIWithContext@28 | |
| 15 | ShowGameInviteUIWithContextForUser@32 | |
| 16 | 16 | ShowPlayerPickerUI@36 |
| 17 | 17 | ShowPlayerPickerUIForUser@40 |
| 18 | 18 | ShowProfileCardUI@12 |
lib/libc/mingw/lib32/api-ms-win-gaming-tcui-l1-1-4.def+9-9| ... | ... | @@ -10,21 +10,21 @@ ProcessPendingGameUI@4 |
| 10 | 10 | ShowChangeFriendRelationshipUI@12 |
| 11 | 11 | ShowChangeFriendRelationshipUIForUser@16 |
| 12 | 12 | ShowCustomizeUserProfileUI@ |
| 13 | ShowCustomizeUserProfileUIForUser@ | |
| 14 | ShowFindFriendsUI@ | |
| 15 | ShowFindFriendsUIForUser@ | |
| 16 | ShowGameInfoUI@ | |
| 17 | ShowGameInfoUIForUser@ | |
| 13 | ShowCustomizeUserProfileUIForUser@12 | |
| 14 | ShowFindFriendsUI@8 | |
| 15 | ShowFindFriendsUIForUser@12 | |
| 16 | ShowGameInfoUI@12 | |
| 17 | ShowGameInfoUIForUser@16 | |
| 18 | 18 | ShowGameInviteUI@24 |
| 19 | 19 | ShowGameInviteUIForUser@28 |
| 20 | ShowGameInviteUIWithContext@ | |
| 21 | ShowGameInviteUIWithContextForUser@ | |
| 20 | ShowGameInviteUIWithContext@28 | |
| 21 | ShowGameInviteUIWithContextForUser@32 | |
| 22 | 22 | ShowPlayerPickerUI@36 |
| 23 | 23 | ShowPlayerPickerUIForUser@40 |
| 24 | 24 | ShowProfileCardUI@12 |
| 25 | 25 | ShowProfileCardUIForUser@16 |
| 26 | 26 | ShowTitleAchievementsUI@12 |
| 27 | 27 | ShowTitleAchievementsUIForUser@16 |
| 28 | ShowUserSettingsUI@ | |
| 29 | ShowUserSettingsUIForUser@ | |
| 28 | ShowUserSettingsUI@8 | |
| 29 | ShowUserSettingsUIForUser@12 | |
| 30 | 30 | TryCancelPendingGameUI@0 |
lib/libc/mingw/lib32/bcrypt.def+4| ... | ... | @@ -12,6 +12,7 @@ BCryptConfigureContext@12 |
| 12 | 12 | BCryptConfigureContextFunction@20 |
| 13 | 13 | BCryptCreateContext@12 |
| 14 | 14 | BCryptCreateHash@28 |
| 15 | BCryptCreateMultiHash@32 | |
| 15 | 16 | BCryptDecrypt@40 |
| 16 | 17 | BCryptDeleteContext@8 |
| 17 | 18 | BCryptDeriveKey@28 |
| ... | ... | @@ -38,10 +39,13 @@ BCryptGenerateKeyPair@16 |
| 38 | 39 | BCryptGenerateSymmetricKey@28 |
| 39 | 40 | BCryptGetFipsAlgorithmMode@4 |
| 40 | 41 | BCryptGetProperty@24 |
| 42 | BCryptHash@28 | |
| 41 | 43 | BCryptHashData@16 |
| 42 | 44 | BCryptImportKey@36 |
| 43 | 45 | BCryptImportKeyPair@28 |
| 46 | BCryptKeyDerivation@24 | |
| 44 | 47 | BCryptOpenAlgorithmProvider@16 |
| 48 | BCryptProcessMultiOperations@20 | |
| 45 | 49 | BCryptQueryContextConfiguration@16 |
| 46 | 50 | BCryptQueryContextFunctionConfiguration@24 |
| 47 | 51 | BCryptQueryContextFunctionProperty@28 |
lib/libc/mingw/lib32/dxgi.def+14| ... | ... | @@ -5,6 +5,9 @@ |
| 5 | 5 | ; |
| 6 | 6 | LIBRARY "dxgi.dll" |
| 7 | 7 | EXPORTS |
| 8 | ApplyCompatResolutionQuirking@8 | |
| 9 | CompatString@16 | |
| 10 | CompatValue@8 | |
| 8 | 11 | D3DKMTCloseAdapter@4 |
| 9 | 12 | D3DKMTDestroyAllocation@4 |
| 10 | 13 | D3DKMTDestroyContext@4 |
| ... | ... | @@ -14,10 +17,18 @@ D3DKMTQueryAdapterInfo@4 |
| 14 | 17 | D3DKMTSetDisplayPrivateDriverFormat@4 |
| 15 | 18 | D3DKMTSignalSynchronizationObject@4 |
| 16 | 19 | D3DKMTUnlock@4 |
| 20 | D3DKMTWaitForSynchronizationObject@0 | |
| 17 | 21 | DXGIDumpJournal@4 |
| 22 | PIXBeginCapture@8 | |
| 23 | PIXEndCapture@4 | |
| 24 | PIXGetCaptureState@0 | |
| 25 | DXGIRevertToSxS@0 | |
| 18 | 26 | OpenAdapter10@4 |
| 19 | 27 | OpenAdapter10_2@4 |
| 28 | SetAppCompatStringPointer@8 | |
| 29 | UpdateHMDEmulationStatus@4 | |
| 20 | 30 | CreateDXGIFactory1@8 |
| 31 | CreateDXGIFactory2@12 | |
| 21 | 32 | CreateDXGIFactory@8 |
| 22 | 33 | D3DKMTCreateAllocation@4 |
| 23 | 34 | D3DKMTCreateContext@4 |
| ... | ... | @@ -46,6 +57,9 @@ D3DKMTWaitForSynchronizationObject@4 |
| 46 | 57 | D3DKMTWaitForVerticalBlankEvent@4 |
| 47 | 58 | DXGID3D10CreateDevice@24 |
| 48 | 59 | DXGID3D10CreateLayeredDevice@20 |
| 60 | DXGID3D10ETWRundown@0 | |
| 49 | 61 | DXGID3D10GetLayeredDeviceSize@8 |
| 50 | 62 | DXGID3D10RegisterLayers@8 |
| 63 | DXGIDeclareAdapterRemovalSupport@0 | |
| 64 | DXGIGetDebugInterface1@12 | |
| 51 | 65 | DXGIReportAdapterConfiguration@4 |
lib/libc/mingw/lib32/mf.def+34-4| ... | ... | @@ -9,11 +9,15 @@ AppendPropVariant@8 |
| 9 | 9 | ConvertPropVariant@8 |
| 10 | 10 | CopyPropertyStore@12 |
| 11 | 11 | CreateNamedPropertyStore@4 |
| 12 | DllCanUnloadNow@0 | |
| 13 | DllGetClassObject@12 | |
| 14 | DllRegisterServer@0 | |
| 15 | DllUnregisterServer@0 | |
| 12 | ; DllCanUnloadNow@0 | |
| 13 | ; DllGetActivationFactory@8 | |
| 14 | ; DllGetClassObject@12 | |
| 15 | ; DllRegisterServer@0 | |
| 16 | ; DllUnregisterServer@0 | |
| 16 | 17 | ExtractPropVariant@12 |
| 18 | MFCreate3GPMediaSink@16 | |
| 19 | MFCreateAC3MediaSink@12 | |
| 20 | MFCreateADTSMediaSink@12 | |
| 17 | 21 | MFCreateASFByteStreamPlugin@8 |
| 18 | 22 | MFCreateASFContentInfo@4 |
| 19 | 23 | MFCreateASFIndexer@4 |
| ... | ... | @@ -25,49 +29,75 @@ MFCreateASFProfile@4 |
| 25 | 29 | MFCreateASFProfileFromPresentationDescriptor@8 |
| 26 | 30 | MFCreateASFSplitter@4 |
| 27 | 31 | MFCreateASFStreamSelector@8 |
| 32 | MFCreateASFStreamingMediaSink@8 | |
| 33 | MFCreateASFStreamingMediaSinkActivate@12 | |
| 34 | MFCreateAggregateSource@8 | |
| 28 | 35 | MFCreateAppSourceProxy@12 |
| 29 | 36 | MFCreateAudioRenderer@8 |
| 30 | 37 | MFCreateAudioRendererActivate@4 |
| 31 | 38 | MFCreateByteCacheFile@8 |
| 32 | 39 | MFCreateCacheManager@8 |
| 33 | 40 | MFCreateCredentialCache@4 |
| 41 | MFCreateDeviceSource@8 | |
| 42 | MFCreateDeviceSourceActivate@8 | |
| 34 | 43 | MFCreateDrmNetNDSchemePlugin@8 |
| 44 | MFCreateEncryptedMediaExtensionsStoreActivate@16 | |
| 45 | MFCreateFMPEG4MediaSink@16 | |
| 35 | 46 | MFCreateFileBlockMap@32 |
| 36 | 47 | MFCreateFileSchemePlugin@8 |
| 37 | 48 | MFCreateHttpSchemePlugin@8 |
| 38 | 49 | MFCreateLPCMByteStreamPlugin@8 |
| 39 | 50 | MFCreateMP3ByteStreamPlugin@8 |
| 51 | MFCreateMP3MediaSink@8 | |
| 52 | MFCreateMPEG4MediaSink@16 | |
| 40 | 53 | MFCreateMediaProcessor@4 |
| 41 | 54 | MFCreateMediaSession@8 |
| 55 | MFCreateMuxSink@28 | |
| 56 | MFCreateNSCByteStreamPlugin@8 | |
| 42 | 57 | MFCreateNetSchemePlugin@8 |
| 43 | 58 | MFCreatePMPHost@12 |
| 44 | 59 | MFCreatePMPMediaSession@16 |
| 45 | 60 | MFCreatePMPServer@8 |
| 46 | 61 | MFCreatePresentationClock@4 |
| 47 | 62 | MFCreatePresentationDescriptorFromASFProfile@8 |
| 63 | MFCreateProtectedEnvironmentAccess@4 | |
| 48 | 64 | MFCreateProxyLocator@12 |
| 49 | 65 | MFCreateRemoteDesktopPlugin@4 |
| 50 | 66 | MFCreateSAMIByteStreamPlugin@8 |
| 67 | MFCreateSampleCopierMFT@4 | |
| 51 | 68 | MFCreateSampleGrabberSinkActivate@12 |
| 52 | 69 | MFCreateSecureHttpSchemePlugin@8 |
| 53 | 70 | MFCreateSequencerSegmentOffset@16 |
| 54 | 71 | MFCreateSequencerSource@8 |
| 55 | 72 | MFCreateSequencerSourceRemoteStream@12 |
| 56 | 73 | MFCreateSimpleTypeHandler@4 |
| 74 | MFCreateSoundEventSchemePlugin@8 | |
| 57 | 75 | MFCreateSourceResolver@4 |
| 58 | 76 | MFCreateStandardQualityManager@4 |
| 59 | 77 | MFCreateTopoLoader@4 |
| 60 | 78 | MFCreateTopology@4 |
| 61 | 79 | MFCreateTopologyNode@8 |
| 80 | MFCreateTranscodeProfile@4 | |
| 81 | MFCreateTranscodeSinkActivate@4 | |
| 82 | MFCreateTranscodeTopology@16 | |
| 83 | MFCreateTranscodeTopologyFromByteStream@16 | |
| 84 | MFCreateUrlmonSchemePlugin@8 | |
| 62 | 85 | MFCreateVideoRenderer@8 |
| 63 | 86 | MFCreateVideoRendererActivate@8 |
| 64 | 87 | MFCreateWMAEncoderActivate@12 |
| 65 | 88 | MFCreateWMVEncoderActivate@12 |
| 89 | MFEnumDeviceSources@12 | |
| 90 | MFGetLocalId@12 | |
| 66 | 91 | MFGetMultipleServiceProviders@16 |
| 67 | 92 | MFGetService@16 |
| 68 | 93 | MFGetSupportedMimeTypes@4 |
| 69 | 94 | MFGetSupportedSchemes@4 |
| 95 | MFGetSystemId@4 | |
| 96 | MFGetTopoNodeCurrentType@16 | |
| 97 | MFLoadSignedLibrary@8 | |
| 98 | MFRR_CreateActivate@8 | |
| 70 | 99 | MFReadSequencerSegmentOffset@12 |
| 71 | 100 | MFRequireProtectedEnvironment@4 |
| 72 | 101 | MFShutdownObject@4 |
| 102 | MFTranscodeGetAudioOutputAvailableTypes@16 | |
| 73 | 103 | MergePropertyStore@12 |
lib/libc/mingw/lib32/mfcore.def created+60| ... | ... | @@ -0,0 +1,60 @@ |
| 1 | ; | |
| 2 | ; Definition file of MFCORE.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008 | |
| 5 | ; | |
| 6 | LIBRARY "MFCORE.dll" | |
| 7 | EXPORTS | |
| 8 | AppendPropVariant@8 | |
| 9 | ConvertPropVariant@8 | |
| 10 | CopyPropertyStore@12 | |
| 11 | CreateNamedPropertyStore@4 | |
| 12 | ; DllCanUnloadNow@0 | |
| 13 | ; DllGetActivationFactory@8 | |
| 14 | ; DllGetClassObject@12 | |
| 15 | ; DllRegisterServer@0 | |
| 16 | ; DllUnregisterServer@0 | |
| 17 | ExtractPropVariant@12 | |
| 18 | MFCopyMFMetadata@16 | |
| 19 | MFCopyPropertyStore@8 | |
| 20 | MFCopyStreamMetadata@12 | |
| 21 | MFCreateAggregateSource@8 | |
| 22 | MFCreateAppSourceProxy@12 | |
| 23 | MFCreateAudioRenderer@8 | |
| 24 | MFCreateAudioRendererActivate@4 | |
| 25 | MFCreateDeviceSource@8 | |
| 26 | MFCreateDeviceSourceActivate@8 | |
| 27 | MFCreateEncryptedMediaExtensionsStoreActivate@16 | |
| 28 | MFCreateExtendedCameraIntrinsicModel@8 | |
| 29 | MFCreateExtendedCameraIntrinsics@4 | |
| 30 | MFCreateFileSchemePlugin@8 | |
| 31 | MFCreateMFMetadataOnPropertyStore@8 | |
| 32 | MFCreateMediaProcessor@4 | |
| 33 | MFCreateMediaSession@8 | |
| 34 | MFCreatePMPHost@12 | |
| 35 | MFCreatePMPMediaSession@16 | |
| 36 | MFCreatePMPServer@8 | |
| 37 | MFCreatePresentationClock@4 | |
| 38 | MFCreatePresentationClockAsyncTimeSource@4 | |
| 39 | MFCreateSampleCopierMFT@4 | |
| 40 | MFCreateSampleGrabberSinkActivate@12 | |
| 41 | MFCreateSequencerSegmentOffset@16 | |
| 42 | MFCreateSequencerSource@8 | |
| 43 | MFCreateSequencerSourceRemoteStream@12 | |
| 44 | MFCreateSimpleTypeHandler@4 | |
| 45 | MFCreateSoundEventSchemePlugin@8 | |
| 46 | MFCreateStandardQualityManager@4 | |
| 47 | MFCreateTopoLoader@4 | |
| 48 | MFCreateTopology@4 | |
| 49 | MFCreateTopologyNode@8 | |
| 50 | MFCreateTransformWrapper@12 | |
| 51 | MFCreateWMAEncoderActivate@12 | |
| 52 | MFCreateWMVEncoderActivate@12 | |
| 53 | MFEnumDeviceSources@12 | |
| 54 | MFGetMultipleServiceProviders@16 | |
| 55 | MFGetService@16 | |
| 56 | MFGetTopoNodeCurrentType@16 | |
| 57 | MFReadSequencerSegmentOffset@12 | |
| 58 | MFRequireProtectedEnvironment@4 | |
| 59 | MFShutdownObject@4 | |
| 60 | MergePropertyStore@12 |
lib/libc/mingw/lib32/mfplat.def+118-1| ... | ... | @@ -8,7 +8,11 @@ EXPORTS |
| 8 | 8 | FormatTagFromWfx@4 |
| 9 | 9 | MFCreateGuid@4 |
| 10 | 10 | MFGetIoPortHandle@0 |
| 11 | MFEnumLocalMFTRegistrations@4 | |
| 12 | MFGetPlatformFlags@0 | |
| 13 | MFGetPlatformVersion@0 | |
| 11 | 14 | MFGetRandomNumber@8 |
| 15 | MFIsFeatureEnabled@4 | |
| 12 | 16 | MFIsQueueThread@4 |
| 13 | 17 | MFPlatformBigEndian@0 |
| 14 | 18 | MFPlatformLittleEndian@0 |
| ... | ... | @@ -19,49 +23,118 @@ CopyPropVariant@12 |
| 19 | 23 | CreatePropVariant@16 |
| 20 | 24 | CreatePropertyStore@4 |
| 21 | 25 | DestroyPropVariant@4 |
| 26 | GetAMSubtypeFromD3DFormat@8 | |
| 27 | GetD3DFormatFromMFSubtype@4 | |
| 22 | 28 | LFGetGlobalPool@8 |
| 23 | 29 | MFAddPeriodicCallback@12 |
| 30 | MFAllocateSerialWorkQueue@8 | |
| 24 | 31 | MFAllocateWorkQueue@4 |
| 32 | MFAllocateWorkQueueEx@8 | |
| 25 | 33 | MFAppendCollection@8 |
| 26 | 34 | MFAverageTimePerFrameToFrameRate@16 |
| 27 | 35 | MFBeginCreateFile@28 |
| 28 | 36 | MFBeginGetHostByName@12 |
| 29 | 37 | MFBeginRegisterWorkQueueWithMMCSS@20 |
| 38 | MFBeginRegisterWorkQueueWithMMCSSEx@24 | |
| 30 | 39 | MFBeginUnregisterWorkQueueWithMMCSS@12 |
| 31 | 40 | MFBlockThread@0 |
| 32 | 41 | MFCalculateBitmapImageSize@16 |
| 33 | 42 | MFCalculateImageSize@16 |
| 43 | MFCallStackTracingClearSnapshot@4 | |
| 44 | MFCallStackTracingLogSessionErrors@28 | |
| 45 | MFCallStackTracingRestoreSnapshot@4 | |
| 46 | MFCallStackTracingTakeSnapshot@4 | |
| 34 | 47 | MFCancelCreateFile@4 |
| 35 | 48 | MFCancelWorkItem@8 |
| 49 | MFCheckEnabledViaAppService@12 | |
| 50 | MFClearLocalMFTs@0 | |
| 51 | MFCombineSamples@16 | |
| 36 | 52 | MFCompareFullToPartialMediaType@8 |
| 37 | 53 | MFCompareSockaddrAddresses@8 |
| 54 | MFConvertColorInfoFromDXVA@8 | |
| 55 | MFConvertColorInfoToDXVA@8 | |
| 56 | MFConvertFromFP16Array@12 | |
| 57 | MFConvertToFP16Array@12 | |
| 58 | MFCopyImage@24 | |
| 59 | MFCreate2DMediaBuffer@20 | |
| 60 | MFCreate2DMediaBufferOn1DMediaBuffer@28 | |
| 38 | 61 | MFCreateAMMediaTypeFromMFMediaType@24 |
| 39 | 62 | MFCreateAlignedMemoryBuffer@12 |
| 63 | MFCreateAlignedSharedMemoryBuffer@20 | |
| 40 | 64 | MFCreateAsyncResult@16 |
| 41 | 65 | MFCreateAttributes@8 |
| 42 | 66 | MFCreateAudioMediaType@8 |
| 67 | MFCreateByteStreamHandlerAppServiceActivate@4 | |
| 43 | 68 | MFCreateCollection@4 |
| 69 | MFCreateContentDecryptorContext@16 | |
| 70 | MFCreateContentProtectionDevice@8 | |
| 71 | MFCreateD3D12SynchronizationObject@12 | |
| 72 | MFCreateDXGIDeviceManager@8 | |
| 73 | MFCreateDXGISurfaceBuffer@20 | |
| 74 | MFCreateDXSurfaceBuffer@16 | |
| 75 | MFCreateEMEStoreObject@4 | |
| 44 | 76 | MFCreateEventQueue@4 |
| 45 | 77 | MFCreateFile@20 |
| 78 | MFCreateFileFromHandle@24 | |
| 46 | 79 | MFCreateLegacyMediaBufferOnMFMediaBuffer@16 |
| 80 | MFCreateMFByteStreamOnIStreamWithFlags@12 | |
| 81 | MFCreateMFByteStreamOnStream@8 | |
| 82 | MFCreateMFByteStreamOnStreamEx@8 | |
| 83 | MFCreateMFByteStreamWrapper@8 | |
| 47 | 84 | MFCreateMFVideoFormatFromMFMediaType@12 |
| 85 | MFCreateMediaBufferFromMediaType@24 | |
| 48 | 86 | MFCreateMediaBufferWrapper@16 |
| 49 | 87 | MFCreateMediaEvent@20 |
| 88 | MFCreateMediaEventResult@8 | |
| 89 | MFCreateMediaExtensionActivate@16 | |
| 90 | MFCreateMediaExtensionActivateNoInit@8 | |
| 91 | MFCreateMediaExtensionAppServiceActivate@4 | |
| 92 | MFCreateMediaExtensionInprocActivate@4 | |
| 50 | 93 | MFCreateMediaType@4 |
| 94 | MFCreateMediaTypeFromProperties@8 | |
| 51 | 95 | MFCreateMediaTypeFromRepresentation@24 |
| 52 | 96 | MFCreateMemoryBuffer@8 |
| 97 | MFCreateMemoryBufferFromRawBuffer@24 | |
| 53 | 98 | MFCreateMemoryStream@16 |
| 99 | MFCreateMuxStreamAttributes@8 | |
| 100 | MFCreateMuxStreamMediaType@8 | |
| 101 | MFCreateMuxStreamSample@8 | |
| 102 | MFCreateOOPMFTProxy@16 | |
| 103 | MFCreateOOPMFTRemote@8 | |
| 54 | 104 | MFCreatePathFromURL@8 |
| 55 | 105 | MFCreatePresentationDescriptor@12 |
| 106 | MFCreatePropertiesFromMediaType@12 | |
| 107 | MFCreateReusableByteStream@8 | |
| 108 | MFCreateReusableByteStreamWithSharedLock@12 | |
| 56 | 109 | MFCreateSample@4 |
| 110 | MFCreateSecureBufferAllocator@4 | |
| 111 | MFCreateSharedMemoryMediaBufferFromMediaType@32 | |
| 57 | 112 | MFCreateSocket@16 |
| 58 | 113 | MFCreateSocketListener@12 |
| 114 | MFCreateSourceResolver@4 | |
| 115 | MFCreateSourceResolverInternal@4 | |
| 116 | MFCreateStagingSurfaceWrapper@12 | |
| 59 | 117 | MFCreateStreamDescriptor@16 |
| 118 | MFCreateStreamOnMFByteStream@8 | |
| 119 | MFCreateStreamOnMFByteStreamEx@12 | |
| 60 | 120 | MFCreateSystemTimeSource@4 |
| 61 | 121 | MFCreateSystemUnderlyingClock@4 |
| 122 | MFCreateTelemetrySession@36 | |
| 62 | 123 | MFCreateTempFile@16 |
| 124 | MFCreateTrackedSample@4 | |
| 125 | MFCreateTransformActivate@4 | |
| 63 | 126 | MFCreateURLFromPath@8 |
| 64 | 127 | MFCreateUdpSockets@36 |
| 128 | MFCreateVideoDecryptorContext@16 | |
| 129 | MFCreateVideoMediaType@8 | |
| 130 | MFCreateVideoMediaTypeFromBitMapInfoHeader@48 | |
| 131 | MFCreateVideoMediaTypeFromBitMapInfoHeaderEx@44 | |
| 132 | MFCreateVideoMediaTypeFromSubtype@8 | |
| 133 | MFCreateVideoMediaTypeFromVideoInfoHeader@36 | |
| 134 | MFCreateVideoMediaTypeFromVideoInfoHeader2@24 | |
| 135 | MFCreateVideoSampleAllocatorEx@8 | |
| 136 | MFCreateWICBitmapBuffer@12 | |
| 137 | MFCreateWICDecoderProxy@24 | |
| 65 | 138 | MFCreateWaveFormatExFromMFMediaType@16 |
| 66 | 139 | MFDeserializeAttributesFromStream@12 |
| 67 | 140 | MFDeserializeEvent@12 |
| ... | ... | @@ -76,18 +149,30 @@ MFFreeAdaptersAddresses@4 |
| 76 | 149 | MFGetAdaptersAddresses@8 |
| 77 | 150 | MFGetAttributesAsBlob@12 |
| 78 | 151 | MFGetAttributesAsBlobSize@8 |
| 152 | MFGetCallStackTracingWeakReference@0 | |
| 79 | 153 | MFGetConfigurationDWORD@12 |
| 80 | 154 | MFGetConfigurationPolicy@16 |
| 81 | 155 | MFGetConfigurationStore@16 |
| 82 | 156 | MFGetConfigurationString@16 |
| 157 | MFGetContentProtectionSystemCLSID@8 | |
| 158 | MFGetMFTMerit@16 | |
| 83 | 159 | MFGetNumericNameFromSockaddr@20 |
| 160 | MFGetPlaneSize@16 | |
| 84 | 161 | MFGetPlatform@0 |
| 162 | MFGetPluginControl@4 | |
| 85 | 163 | MFGetPrivateWorkqueues@4 |
| 86 | 164 | MFGetSockaddrFromNumericName@12 |
| 165 | MFGetStrideForBitmapInfoHeader@12 | |
| 166 | MFGetSupportedMimeTypes@4 | |
| 167 | MFGetSupportedSchemes@4 | |
| 87 | 168 | MFGetSystemTime@0 |
| 88 | 169 | MFGetTimerPeriodicity@4 |
| 170 | MFGetUncompressedVideoFormat@4 | |
| 89 | 171 | MFGetWorkQueueMMCSSClass@12 |
| 172 | MFGetWorkQueueMMCSSPriority@8 | |
| 90 | 173 | MFGetWorkQueueMMCSSTaskId@8 |
| 174 | MFHasLocallyRegisteredByteStreamHandlers@4 | |
| 175 | MFHasLocallyRegisteredSchemeHandlers@4 | |
| 91 | 176 | MFHeapAlloc@20 |
| 92 | 177 | MFHeapFree@4 |
| 93 | 178 | MFInitAMMediaTypeFromMFMediaType@24 |
| ... | ... | @@ -96,16 +181,34 @@ MFInitMediaTypeFromAMMediaType@8 |
| 96 | 181 | MFInitMediaTypeFromMFVideoFormat@12 |
| 97 | 182 | MFInitMediaTypeFromMPEG1VideoInfo@16 |
| 98 | 183 | MFInitMediaTypeFromMPEG2VideoInfo@16 |
| 99 | MFInitMediaTypeFromVideoInfoHeader2@16 | |
| 100 | 184 | MFInitMediaTypeFromVideoInfoHeader@16 |
| 185 | MFInitMediaTypeFromVideoInfoHeader2@16 | |
| 101 | 186 | MFInitMediaTypeFromWaveFormatEx@12 |
| 187 | MFInitVideoFormat@8 | |
| 188 | MFInitVideoFormat_RGB@16 | |
| 189 | MFInvalidateMFTEnumCache@0 | |
| 102 | 190 | MFInvokeCallback@4 |
| 103 | 191 | MFJoinIoPort@4 |
| 192 | MFIsBottomUpFormat@8 | |
| 193 | MFIsContentProtectionDeviceSupported@8 | |
| 194 | MFIsLocallyRegisteredMimeType@8 | |
| 195 | MFIsLocallyRegisteredSchemeHandler@8 | |
| 196 | MFJoinWorkQueue@0 | |
| 197 | MFLockDXGIDeviceManager@8 | |
| 104 | 198 | MFLockPlatform@0 |
| 199 | MFLockSharedWorkQueue@16 | |
| 105 | 200 | MFLockWorkQueue@4 |
| 201 | MFMapDX9FormatToDXGIFormat@4 | |
| 202 | MFMapDXGIFormatToDX9Format@4 | |
| 203 | MFPutWaitingWorkItem@16 | |
| 106 | 204 | MFPutWorkItem@12 |
| 205 | MFPutWorkItem2@16 | |
| 107 | 206 | MFPutWorkItemEx@8 |
| 207 | MFPutWorkItemEx2@12 | |
| 108 | 208 | MFRecordError@4 |
| 209 | MFRegisterLocalByteStreamHandler@12 | |
| 210 | MFRegisterLocalSchemeHandler@8 | |
| 211 | MFRegisterPlatformWithMMCSS@12 | |
| 109 | 212 | MFRemovePeriodicCallback@4 |
| 110 | 213 | MFScheduleWorkItem@20 |
| 111 | 214 | MFScheduleWorkItemEx@16 |
| ... | ... | @@ -113,21 +216,35 @@ MFSerializeAttributesToStream@12 |
| 113 | 216 | MFSerializeEvent@12 |
| 114 | 217 | MFSerializeMediaTypeToStream@8 |
| 115 | 218 | MFSerializePresentationDescriptor@12 |
| 219 | MFSetMinimumMemoryAlignment@4 | |
| 116 | 220 | MFSetSockaddrAny@8 |
| 221 | MFSetWindowForContentProtection@4 | |
| 117 | 222 | MFShutdown@0 |
| 223 | MFSplitSample@16 | |
| 118 | 224 | MFStartup@8 |
| 119 | 225 | MFStreamDescriptorProtectMediaType@8 |
| 120 | 226 | MFTEnum@40 |
| 227 | MFTEnum2@40 | |
| 121 | 228 | MFTEnumEx@36 |
| 122 | 229 | MFTGetInfo@40 |
| 123 | 230 | MFTRegister@60 |
| 231 | MFTRegisterLocal@32 | |
| 232 | MFTRegisterLocalByCLSID@32 | |
| 124 | 233 | MFTUnregister@16 |
| 234 | MFTUnregisterLocal@4 | |
| 235 | MFTUnregisterLocalByCLSID@16 | |
| 236 | MFTraceError@24 | |
| 125 | 237 | MFTraceFuncEnter@16 |
| 126 | 238 | MFUnblockThread@0 |
| 239 | MFUnjoinWorkQueue@0 | |
| 240 | MFUnlockDXGIDeviceManager@0 | |
| 127 | 241 | MFUnlockPlatform@0 |
| 128 | 242 | MFUnlockWorkQueue@4 |
| 243 | MFUnregisterPlatformFromMMCSS@0 | |
| 129 | 244 | MFUnwrapMediaType@8 |
| 130 | 245 | MFValidateMediaTypeSize@24 |
| 131 | 246 | MFWrapMediaType@16 |
| 247 | MFWrapSocket@28 | |
| 248 | MFllMulDiv@32 | |
| 132 | 249 | PropVariantFromStream@8 |
| 133 | 250 | PropVariantToStream@8 |
lib/libc/mingw/lib32/mfplay.def created+13| ... | ... | @@ -0,0 +1,13 @@ |
| 1 | ; | |
| 2 | ; Definition file of MFPlay.DLL | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008 | |
| 5 | ; | |
| 6 | LIBRARY "MFPlay.DLL" | |
| 7 | EXPORTS | |
| 8 | ; DllCanUnloadNow@0 | |
| 9 | ; DllGetClassObject@12 | |
| 10 | ; DllRegisterServer@0 | |
| 11 | ; DllUnregisterServer@0 | |
| 12 | MFPCreateMediaPlayer@24 | |
| 13 | MFPCreateMediaPlayerEx@28 |
lib/libc/mingw/lib32/ncrypt.def+96| ... | ... | @@ -5,13 +5,74 @@ |
| 5 | 5 | ; |
| 6 | 6 | LIBRARY "ncrypt.dll" |
| 7 | 7 | EXPORTS |
| 8 | BCryptAddContextFunction@20 | |
| 9 | BCryptAddContextFunctionProvider@24 | |
| 10 | BCryptCloseAlgorithmProvider@8 | |
| 11 | BCryptConfigureContext@12 | |
| 12 | BCryptConfigureContextFunction@20 | |
| 13 | BCryptCreateContext@12 | |
| 14 | BCryptCreateHash@28 | |
| 15 | BCryptDecrypt@40 | |
| 16 | BCryptDeleteContext@8 | |
| 17 | BCryptDeriveKey@28 | |
| 18 | BCryptDeriveKeyCapi@20 | |
| 19 | BCryptDeriveKeyPBKDF2@40 | |
| 20 | BCryptDestroyHash@4 | |
| 21 | BCryptDestroyKey@4 | |
| 22 | BCryptDestroySecret@4 | |
| 23 | BCryptDuplicateHash@20 | |
| 24 | BCryptDuplicateKey@20 | |
| 25 | BCryptEncrypt@40 | |
| 26 | BCryptEnumAlgorithms@16 | |
| 27 | BCryptEnumContextFunctionProviders@24 | |
| 28 | BCryptEnumContextFunctions@20 | |
| 29 | BCryptEnumContexts@12 | |
| 30 | BCryptEnumProviders@16 | |
| 31 | BCryptEnumRegisteredProviders@8 | |
| 32 | BCryptExportKey@28 | |
| 33 | BCryptFinalizeKeyPair@8 | |
| 34 | BCryptFinishHash@16 | |
| 35 | BCryptFreeBuffer@4 | |
| 36 | BCryptGenRandom@16 | |
| 37 | BCryptGenerateKeyPair@16 | |
| 38 | BCryptGenerateSymmetricKey@28 | |
| 39 | BCryptGetFipsAlgorithmMode@4 | |
| 40 | BCryptGetProperty@24 | |
| 41 | BCryptHash@28 | |
| 42 | BCryptHashData@16 | |
| 43 | BCryptImportKey@36 | |
| 44 | BCryptImportKeyPair@28 | |
| 45 | BCryptKeyDerivation@24 | |
| 46 | BCryptOpenAlgorithmProvider@16 | |
| 47 | BCryptQueryContextConfiguration@16 | |
| 48 | BCryptQueryContextFunctionConfiguration@24 | |
| 49 | BCryptQueryContextFunctionProperty@28 | |
| 50 | BCryptQueryProviderRegistration@20 | |
| 51 | BCryptRegisterConfigChangeNotify@4 | |
| 52 | BCryptRegisterProvider@12 | |
| 53 | BCryptRemoveContextFunction@16 | |
| 54 | BCryptRemoveContextFunctionProvider@20 | |
| 55 | BCryptResolveProviders@32 | |
| 56 | BCryptSecretAgreement@16 | |
| 57 | BCryptSetAuditingInterface@4 | |
| 58 | BCryptSetContextFunctionProperty@28 | |
| 59 | BCryptSetProperty@20 | |
| 60 | BCryptSignHash@32 | |
| 61 | BCryptUnregisterConfigChangeNotify@4 | |
| 62 | BCryptUnregisterProvider@4 | |
| 63 | BCryptVerifySignature@28 | |
| 8 | 64 | GetIsolationServerInterface@12 |
| 9 | 65 | GetKeyStorageInterface@12 |
| 10 | 66 | GetSChannelInterface@12 |
| 67 | NCryptCloseKeyProtector@4 | |
| 68 | NCryptCloseProtectionDescriptor@4 | |
| 69 | NCryptCreateClaim@32 | |
| 11 | 70 | NCryptCreatePersistedKey@24 |
| 71 | NCryptCreateProtectionDescriptor@12 | |
| 12 | 72 | NCryptDecrypt@32 |
| 13 | 73 | NCryptDeleteKey@8 |
| 14 | 74 | NCryptDeriveKey@28 |
| 75 | NCryptDuplicateKeyProtectorHandle@12 | |
| 15 | 76 | NCryptEncrypt@32 |
| 16 | 77 | NCryptEnumAlgorithms@20 |
| 17 | 78 | NCryptEnumKeys@20 |
| ... | ... | @@ -21,41 +82,76 @@ NCryptFinalizeKey@8 |
| 21 | 82 | NCryptFreeBuffer@4 |
| 22 | 83 | NCryptFreeObject@4 |
| 23 | 84 | NCryptGetProperty@24 |
| 85 | NCryptGetProtectionDescriptorInfo@16 | |
| 24 | 86 | NCryptImportKey@32 |
| 25 | 87 | NCryptIsAlgSupported@12 |
| 26 | 88 | NCryptIsKeyHandle@4 |
| 89 | NCryptKeyDerivation@24 | |
| 27 | 90 | NCryptNotifyChangeKey@12 |
| 28 | 91 | NCryptOpenKey@20 |
| 92 | NCryptOpenKeyProtector@12 | |
| 29 | 93 | NCryptOpenStorageProvider@12 |
| 94 | NCryptProtectKey@32 | |
| 95 | NCryptProtectSecret@32 | |
| 96 | NCryptQueryProtectionDescriptorName@16 | |
| 97 | NCryptRegisterProtectionDescriptorName@12 | |
| 30 | 98 | NCryptSecretAgreement@16 |
| 31 | 99 | NCryptSetAuditingInterface@4 |
| 32 | 100 | NCryptSetProperty@20 |
| 33 | 101 | NCryptSignHash@32 |
| 102 | NCryptStreamClose@4 | |
| 103 | NCryptStreamOpenToProtect@20 | |
| 104 | NCryptStreamOpenToUnprotect@16 | |
| 105 | NCryptStreamOpenToUnprotectEx@16 | |
| 106 | NCryptStreamUpdate@16 | |
| 34 | 107 | NCryptTranslateHandle@24 |
| 108 | NCryptUnprotectKey@28 | |
| 109 | NCryptUnprotectSecret@32 | |
| 110 | NCryptVerifyClaim@32 | |
| 35 | 111 | NCryptVerifySignature@28 |
| 36 | 112 | SslChangeNotify@8 |
| 37 | 113 | SslComputeClientAuthHash@32 |
| 38 | 114 | SslComputeEapKeyBlock@32 |
| 39 | 115 | SslComputeFinishedHash@24 |
| 116 | SslComputeSessionHash@28 | |
| 117 | SslCreateClientAuthHash@24 | |
| 40 | 118 | SslCreateEphemeralKey@36 |
| 41 | 119 | SslCreateHandshakeHash@20 |
| 42 | 120 | SslDecrementProviderReferenceCount@4 |
| 43 | 121 | SslDecryptPacket@40 |
| 122 | SslDuplicateTranscriptHash@16 | |
| 44 | 123 | SslEncryptPacket@44 |
| 45 | 124 | SslEnumCipherSuites@20 |
| 125 | SslEnumCipherSuitesEx@20 | |
| 126 | SslEnumEccCurves@16 | |
| 46 | 127 | SslEnumProtocolProviders@12 |
| 128 | SslExpandBinderKey@20 | |
| 129 | SslExpandExporterMasterKey@24 | |
| 130 | SslExpandNextGenTrafficKey@20 | |
| 131 | SslExpandPreSharedKey@28 | |
| 132 | SslExpandResumptionMasterKey@24 | |
| 133 | SslExpandTrafficKeys@28 | |
| 134 | SslExpandWriteKey@20 | |
| 47 | 135 | SslExportKey@28 |
| 136 | SslExportKeyingMaterial@40 | |
| 137 | SslExtractEarlyKey@28 | |
| 138 | SslExtractHandshakeKey@28 | |
| 139 | SslExtractMasterKey@20 | |
| 48 | 140 | SslFreeBuffer@4 |
| 49 | 141 | SslFreeObject@8 |
| 50 | 142 | SslGenerateMasterKey@44 |
| 143 | SslGeneratePreMasterKey@40 | |
| 51 | 144 | SslGenerateSessionKeys@24 |
| 145 | SslGetCipherSuitePRFHashAlgorithm@24 | |
| 52 | 146 | SslGetKeyProperty@20 |
| 53 | 147 | SslGetProviderProperty@24 |
| 54 | 148 | SslHashHandshake@20 |
| 55 | 149 | SslImportKey@24 |
| 56 | 150 | SslImportMasterKey@36 |
| 57 | 151 | SslIncrementProviderReferenceCount@4 |
| 152 | SslLookupCipherLengths@28 | |
| 58 | 153 | SslLookupCipherSuiteInfo@24 |
| 59 | 154 | SslOpenPrivateKey@16 |
| 60 | 155 | SslOpenProvider@12 |
| 61 | 156 | SslSignHash@32 |
| 157 | SslVerifySignature@28 |
lib/libc/mingw/lib32/powrprof.def+46-1| ... | ... | @@ -8,7 +8,7 @@ EXPORTS |
| 8 | 8 | CallNtPowerInformation@20 |
| 9 | 9 | CanUserWritePwrScheme@0 |
| 10 | 10 | DeletePwrScheme@4 |
| 11 | DevicePowerClose | |
| 11 | DevicePowerClose@0 | |
| 12 | 12 | DevicePowerEnumDevices@20 |
| 13 | 13 | DevicePowerOpen@4 |
| 14 | 14 | DevicePowerSetDeviceState@12 |
| ... | ... | @@ -25,7 +25,14 @@ IsPwrShutdownAllowed@0 |
| 25 | 25 | IsPwrSuspendAllowed@0 |
| 26 | 26 | LoadCurrentPwrScheme@16 |
| 27 | 27 | MergeLegacyPwrScheme@16 |
| 28 | PowerApplyPowerRequestOverride@0 | |
| 29 | PowerApplySettingChanges@8 | |
| 28 | 30 | PowerCanRestoreIndividualDefaultPowerScheme@4 |
| 31 | PowerCleanupOverrides@0 | |
| 32 | PowerClearUserAwayPrediction@4 | |
| 33 | PowerCloseEnvironmentalMonitor@4 | |
| 34 | PowerCloseLimitsMitigation@4 | |
| 35 | PowerCloseLimitsPolicy@4 | |
| 29 | 36 | PowerCreatePossibleSetting@16 |
| 30 | 37 | PowerCreateSetting@12 |
| 31 | 38 | PowerCustomizePlatformPowerSettings@0 |
| ... | ... | @@ -37,10 +44,20 @@ PowerDebugDumpSystemPowerCapabilities@12 |
| 37 | 44 | PowerDebugDumpSystemPowerPolicy@12 |
| 38 | 45 | PowerDeleteScheme@8 |
| 39 | 46 | PowerDeterminePlatformRole@0 |
| 47 | PowerDeterminePlatformRoleEx@4 | |
| 40 | 48 | PowerDuplicateScheme@12 |
| 41 | 49 | PowerEnumerate@28 |
| 50 | PowerEnumerateSettings@8 | |
| 42 | 51 | PowerGetActiveScheme@8 |
| 52 | PowerGetActualOverlayScheme@4 | |
| 53 | PowerGetAdaptiveStandbyDiagnostics@12 | |
| 54 | PowerGetEffectiveOverlayScheme@4 | |
| 55 | PowerGetOverlaySchemes@12 | |
| 56 | PowerGetProfiles@8 | |
| 57 | PowerGetUserAwayMinPredictionConfidence@4 | |
| 43 | 58 | PowerImportPowerScheme@12 |
| 59 | PowerInformationWithPrivileges@20 | |
| 60 | PowerIsSettingRangeDefined@8 | |
| 44 | 61 | PowerInternalDeleteScheme@8 |
| 45 | 62 | PowerInternalDuplicateScheme@12 |
| 46 | 63 | PowerInternalImportPowerScheme@12 |
| ... | ... | @@ -54,30 +71,58 @@ PowerPolicyToGUIDFormat@8 |
| 54 | 71 | PowerReadACDefaultIndex@20 |
| 55 | 72 | PowerReadACValue@28 |
| 56 | 73 | PowerReadACValueIndex@20 |
| 74 | PowerReadACValueIndexEx@28 | |
| 57 | 75 | PowerReadDCDefaultIndex@20 |
| 58 | 76 | PowerReadDCValue@28 |
| 59 | 77 | PowerReadDCValueIndex@20 |
| 78 | PowerReadDCValueIndexEx@28 | |
| 60 | 79 | PowerReadDescription@24 |
| 61 | 80 | PowerReadFriendlyName@24 |
| 62 | 81 | PowerReadIconResourceSpecifier@24 |
| 63 | 82 | PowerReadPossibleDescription@24 |
| 64 | 83 | PowerReadPossibleFriendlyName@24 |
| 65 | 84 | PowerReadPossibleValue@28 |
| 85 | PowerReadProfileAlias@16 | |
| 66 | 86 | PowerReadSecurityDescriptor@12 |
| 67 | 87 | PowerReadSettingAttributes@8 |
| 68 | 88 | PowerReadValueIncrement@16 |
| 69 | 89 | PowerReadValueMax@16 |
| 70 | 90 | PowerReadValueMin@16 |
| 71 | 91 | PowerReadValueUnitsSpecifier@20 |
| 92 | PowerReapplyActiveScheme@0 | |
| 93 | PowerRegisterEnvironmentalMonitor@8 | |
| 94 | PowerRegisterForEffectivePowerModeNotifications@16 | |
| 95 | PowerRegisterLimitsMitigation@8 | |
| 96 | PowerRegisterLimitsPolicy@8 | |
| 97 | PowerRegisterSuspendResumeNotification@12 | |
| 72 | 98 | PowerRemovePowerSetting@8 |
| 73 | 99 | PowerReplaceDefaultPowerSchemes@0 |
| 100 | PowerReportLimitsEvent@4 | |
| 101 | PowerReportThermalEvent@4 | |
| 102 | PowerRestoreACDefaultIndex@20 | |
| 103 | PowerRestoreDCDefaultIndex@20 | |
| 74 | 104 | PowerRestoreDefaultPowerSchemes@0 |
| 75 | 105 | PowerRestoreIndividualDefaultPowerScheme@4 |
| 106 | PowerSetActiveOverlayScheme@4 | |
| 76 | 107 | PowerSetActiveScheme@8 |
| 108 | PowerSetAlsBrightnessOffset@4 | |
| 109 | PowerSetBrightnessAndTransitionTimes@4 | |
| 110 | PowerSetUserAwayPrediction@16 | |
| 77 | 111 | PowerSettingAccessCheck@8 |
| 112 | PowerSettingAccessCheckEx@12 | |
| 113 | PowerSettingRegisterNotification@16 | |
| 114 | PowerSettingRegisterNotificationEx@20 | |
| 115 | PowerSettingUnregisterNotification@4 | |
| 116 | PowerUnregisterFromEffectivePowerModeNotifications@4 | |
| 117 | PowerUnregisterSuspendResumeNotification@4 | |
| 118 | PowerUpdateEnvironmentalMonitorState@12 | |
| 119 | PowerUpdateEnvironmentalMonitorThresholds@12 | |
| 120 | PowerUpdateLimitsMitigation@8 | |
| 78 | 121 | PowerWriteACDefaultIndex@20 |
| 122 | PowerWriteACProfileIndex@16 | |
| 79 | 123 | PowerWriteACValueIndex@20 |
| 80 | 124 | PowerWriteDCDefaultIndex@20 |
| 125 | PowerWriteDCProfileIndex@16 | |
| 81 | 126 | PowerWriteDCValueIndex@20 |
| 82 | 127 | PowerWriteDescription@24 |
| 83 | 128 | PowerWriteFriendlyName@24 |
lib/libc/mingw/lib32/wofutil.def created+18| ... | ... | @@ -0,0 +1,18 @@ |
| 1 | ; | |
| 2 | ; Definition file of WOFUTIL.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008 | |
| 5 | ; | |
| 6 | LIBRARY "WOFUTIL.dll" | |
| 7 | EXPORTS | |
| 8 | WofEnumEntries@16 | |
| 9 | WofFileEnumFiles@16 | |
| 10 | WofGetDriverVersion@12 | |
| 11 | WofIsExternalFile@20 | |
| 12 | WofSetFileDataLocation@16 | |
| 13 | WofShouldCompressBinaries@8 | |
| 14 | WofWimAddEntry@20 | |
| 15 | WofWimEnumFiles@20 | |
| 16 | WofWimRemoveEntry@12 | |
| 17 | WofWimSuspendEntry@12 | |
| 18 | WofWimUpdateEntry@16 |
lib/libc/mingw/lib64/ntdll.def deleted-2281| ... | ... | @@ -1,2281 +0,0 @@ |
| 1 | ; | |
| 2 | ; Definition file of ntdll.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008 | |
| 5 | ; | |
| 6 | LIBRARY "ntdll.dll" | |
| 7 | EXPORTS | |
| 8 | PropertyLengthAsVariant | |
| 9 | RtlConvertPropertyToVariant | |
| 10 | RtlConvertVariantToProperty | |
| 11 | A_SHAFinal | |
| 12 | A_SHAInit | |
| 13 | A_SHAUpdate | |
| 14 | AlpcAdjustCompletionListConcurrencyCount | |
| 15 | AlpcFreeCompletionListMessage | |
| 16 | AlpcGetCompletionListLastMessageInformation | |
| 17 | AlpcGetCompletionListMessageAttributes | |
| 18 | AlpcGetHeaderSize | |
| 19 | AlpcGetMessageAttribute | |
| 20 | AlpcGetMessageFromCompletionList | |
| 21 | AlpcGetOutstandingCompletionListMessageCount | |
| 22 | AlpcInitializeMessageAttribute | |
| 23 | AlpcMaxAllowedMessageLength | |
| 24 | AlpcRegisterCompletionList | |
| 25 | AlpcRegisterCompletionListWorkerThread | |
| 26 | AlpcRundownCompletionList | |
| 27 | AlpcUnregisterCompletionList | |
| 28 | AlpcUnregisterCompletionListWorkerThread | |
| 29 | ApiSetQueryApiSetPresence | |
| 30 | ApiSetQueryApiSetPresenceEx | |
| 31 | CsrAllocateCaptureBuffer | |
| 32 | CsrAllocateMessagePointer | |
| 33 | CsrCaptureMessageBuffer | |
| 34 | CsrCaptureMessageMultiUnicodeStringsInPlace | |
| 35 | CsrCaptureMessageString | |
| 36 | CsrCaptureTimeout | |
| 37 | CsrClientCallServer | |
| 38 | CsrClientConnectToServer | |
| 39 | CsrFreeCaptureBuffer | |
| 40 | CsrGetProcessId | |
| 41 | CsrIdentifyAlertableThread | |
| 42 | CsrNewThread | |
| 43 | CsrProbeForRead | |
| 44 | CsrProbeForWrite | |
| 45 | CsrSetPriorityClass | |
| 46 | CsrVerifyRegion | |
| 47 | DbgBreakPoint | |
| 48 | DbgPrint | |
| 49 | DbgPrintEx | |
| 50 | DbgPrintReturnControlC | |
| 51 | DbgPrompt | |
| 52 | DbgQueryDebugFilterState | |
| 53 | DbgSetDebugFilterState | |
| 54 | DbgUiConnectToDbg | |
| 55 | DbgUiContinue | |
| 56 | DbgUiConvertStateChangeStructure | |
| 57 | DbgUiConvertStateChangeStructureEx | |
| 58 | DbgUiDebugActiveProcess | |
| 59 | DbgUiGetThreadDebugObject | |
| 60 | DbgUiIssueRemoteBreakin | |
| 61 | DbgUiRemoteBreakin | |
| 62 | DbgUiSetThreadDebugObject | |
| 63 | DbgUiStopDebugging | |
| 64 | DbgUiWaitStateChange | |
| 65 | DbgUserBreakPoint | |
| 66 | EtwCheckCoverage | |
| 67 | EtwControlTraceA | |
| 68 | EtwControlTraceW | |
| 69 | EtwCreateTraceInstanceId | |
| 70 | EtwEnableTrace | |
| 71 | EtwEnumerateTraceGuids | |
| 72 | EtwFlushTraceA | |
| 73 | EtwFlushTraceW | |
| 74 | EtwDeliverDataBlock | |
| 75 | EtwEnumerateProcessRegGuids | |
| 76 | EtwEventActivityIdControl | |
| 77 | EtwEventEnabled | |
| 78 | EtwEventProviderEnabled | |
| 79 | EtwEventRegister | |
| 80 | EtwEventSetInformation | |
| 81 | EtwEventUnregister | |
| 82 | EtwEventWrite | |
| 83 | EtwEventWriteEndScenario | |
| 84 | EtwEventWriteEx | |
| 85 | EtwEventWriteFull | |
| 86 | EtwEventWriteNoRegistration | |
| 87 | EtwEventWriteStartScenario | |
| 88 | EtwEventWriteString | |
| 89 | EtwEventWriteTransfer | |
| 90 | EtwGetTraceEnableFlags | |
| 91 | EtwGetTraceEnableLevel | |
| 92 | EtwGetTraceLoggerHandle | |
| 93 | EtwNotificationRegistrationA | |
| 94 | EtwNotificationRegistrationW | |
| 95 | EtwQueryAllTracesA | |
| 96 | EtwQueryAllTracesW | |
| 97 | EtwQueryTraceA | |
| 98 | EtwQueryTraceW | |
| 99 | EtwReceiveNotificationsA | |
| 100 | EtwReceiveNotificationsW | |
| 101 | EtwLogTraceEvent | |
| 102 | EtwNotificationRegister | |
| 103 | EtwNotificationUnregister | |
| 104 | EtwProcessPrivateLoggerRequest | |
| 105 | EtwRegisterSecurityProvider | |
| 106 | EtwRegisterTraceGuidsA | |
| 107 | EtwRegisterTraceGuidsW | |
| 108 | EtwStartTraceA | |
| 109 | EtwStartTraceW | |
| 110 | EtwStopTraceA | |
| 111 | EtwStopTraceW | |
| 112 | EtwTraceEvent | |
| 113 | EtwReplyNotification | |
| 114 | EtwSendNotification | |
| 115 | EtwSetMark | |
| 116 | EtwTraceEventInstance | |
| 117 | EtwTraceMessage | |
| 118 | EtwTraceMessageVa | |
| 119 | EtwUnregisterTraceGuids | |
| 120 | EtwUpdateTraceA | |
| 121 | EtwUpdateTraceW | |
| 122 | EtwpGetTraceBuffer | |
| 123 | EtwpSetHWConfigFunction | |
| 124 | EtwWriteUMSecurityEvent | |
| 125 | EtwpCreateEtwThread | |
| 126 | EtwpGetCpuSpeed | |
| 127 | EtwpNotificationThread | |
| 128 | EvtIntReportAuthzEventAndSourceAsync | |
| 129 | EvtIntReportEventAndSourceAsync | |
| 130 | ExpInterlockedPopEntrySListEnd | |
| 131 | ExpInterlockedPopEntrySListEnd16 | |
| 132 | ExpInterlockedPopEntrySListFault | |
| 133 | ExpInterlockedPopEntrySListFault16 | |
| 134 | ExpInterlockedPopEntrySListResume | |
| 135 | ExpInterlockedPopEntrySListResume16 | |
| 136 | KiRaiseUserExceptionDispatcher | |
| 137 | KiUserApcDispatcher | |
| 138 | KiUserCallbackDispatcher | |
| 139 | KiUserExceptionDispatcher | |
| 140 | KiUserInvertedFunctionTable | |
| 141 | LdrAccessOutOfProcessResource | |
| 142 | LdrAccessResource | |
| 143 | LdrAddDllDirectory | |
| 144 | LdrAddLoadAsDataTable | |
| 145 | LdrAddRefDll | |
| 146 | LdrAlternateResourcesEnabled | |
| 147 | LdrAppxHandleIntegrityFailure | |
| 148 | LdrCallEnclave | |
| 149 | LdrControlFlowGuardEnforced | |
| 150 | LdrCreateEnclave | |
| 151 | LdrCreateOutOfProcessImage | |
| 152 | LdrDeleteEnclave | |
| 153 | LdrDestroyOutOfProcessImage | |
| 154 | LdrDisableThreadCalloutsForDll | |
| 155 | LdrEnumResources | |
| 156 | LdrEnumerateLoadedModules | |
| 157 | LdrFastFailInLoaderCallout | |
| 158 | LdrFindCreateProcessManifest | |
| 159 | LdrFindEntryForAddress | |
| 160 | LdrFindResourceDirectory_U | |
| 161 | LdrFindResourceEx_U | |
| 162 | LdrFindResource_U | |
| 163 | LdrFlushAlternateResourceModules | |
| 164 | LdrGetDllDirectory | |
| 165 | LdrGetDllFullName | |
| 166 | LdrGetDllHandle | |
| 167 | LdrGetDllHandleByMapping | |
| 168 | LdrGetDllHandleByName | |
| 169 | LdrGetDllHandleEx | |
| 170 | LdrGetDllPath | |
| 171 | LdrGetFailureData | |
| 172 | LdrGetFileNameFromLoadAsDataTable | |
| 173 | LdrGetKnownDllSectionHandle | |
| 174 | LdrGetProcedureAddress | |
| 175 | LdrGetProcedureAddressEx | |
| 176 | LdrGetProcedureAddressForCaller | |
| 177 | LdrHotPatchRoutine | |
| 178 | LdrInitShimEngineDynamic | |
| 179 | LdrInitializeEnclave | |
| 180 | LdrInitializeThunk | |
| 181 | LdrIsModuleSxsRedirected | |
| 182 | LdrLoadAlternateResourceModule | |
| 183 | LdrLoadAlternateResourceModuleEx | |
| 184 | LdrLoadDll | |
| 185 | LdrLoadEnclaveModule | |
| 186 | LdrLockLoaderLock | |
| 187 | LdrOpenImageFileOptionsKey | |
| 188 | LdrProcessInitializationComplete | |
| 189 | LdrProcessRelocationBlock | |
| 190 | LdrProcessRelocationBlockEx | |
| 191 | LdrQueryImageFileExecutionOptions | |
| 192 | LdrQueryImageFileExecutionOptionsEx | |
| 193 | LdrQueryImageFileKeyOption | |
| 194 | LdrQueryModuleServiceTags | |
| 195 | LdrQueryOptionalDelayLoadedAPI | |
| 196 | LdrQueryProcessModuleInformation | |
| 197 | LdrRegisterDllNotification | |
| 198 | LdrRemoveDllDirectory | |
| 199 | LdrRemoveLoadAsDataTable | |
| 200 | LdrResFindResource | |
| 201 | LdrResFindResourceDirectory | |
| 202 | LdrResGetRCConfig | |
| 203 | LdrResRelease | |
| 204 | LdrResSearchResource | |
| 205 | LdrResolveDelayLoadedAPI | |
| 206 | LdrResolveDelayLoadsFromDll | |
| 207 | LdrRscIsTypeExist | |
| 208 | LdrSetAppCompatDllRedirectionCallback | |
| 209 | LdrSetDefaultDllDirectories | |
| 210 | LdrSetDllDirectory | |
| 211 | LdrSetDllManifestProber | |
| 212 | LdrSetImplicitPathOptions | |
| 213 | LdrSetMUICacheType | |
| 214 | LdrShutdownProcess | |
| 215 | LdrShutdownThread | |
| 216 | LdrStandardizeSystemPath | |
| 217 | LdrSystemDllInitBlock | |
| 218 | LdrUnloadAlternateResourceModule | |
| 219 | LdrUnloadAlternateResourceModuleEx | |
| 220 | LdrUnloadDll | |
| 221 | LdrUnlockLoaderLock | |
| 222 | LdrUnregisterDllNotification | |
| 223 | LdrUpdatePackageSearchPath | |
| 224 | LdrVerifyImageMatchesChecksum | |
| 225 | LdrVerifyImageMatchesChecksumEx | |
| 226 | LdrpResGetMappingSize | |
| 227 | LdrpResGetResourceDirectory | |
| 228 | MD4Final | |
| 229 | MD4Init | |
| 230 | MD4Update | |
| 231 | MD5Final | |
| 232 | MD5Init | |
| 233 | MD5Update | |
| 234 | NlsAnsiCodePage DATA | |
| 235 | NlsMbCodePageTag DATA | |
| 236 | NlsMbOemCodePageTag DATA | |
| 237 | NtAcceptConnectPort | |
| 238 | NtAccessCheck | |
| 239 | NtAccessCheckAndAuditAlarm | |
| 240 | NtAccessCheckByType | |
| 241 | NtAccessCheckByTypeAndAuditAlarm | |
| 242 | NtAccessCheckByTypeResultList | |
| 243 | NtAccessCheckByTypeResultListAndAuditAlarm | |
| 244 | NtAccessCheckByTypeResultListAndAuditAlarmByHandle | |
| 245 | NtAcquireProcessActivityReference | |
| 246 | NtAddAtom | |
| 247 | NtAddAtomEx | |
| 248 | NtAddBootEntry | |
| 249 | NtAddDriverEntry | |
| 250 | NtAdjustGroupsToken | |
| 251 | NtAdjustPrivilegesToken | |
| 252 | NtAdjustTokenClaimsAndDeviceGroups | |
| 253 | NtAlertResumeThread | |
| 254 | NtAlertThread | |
| 255 | NtAlertThreadByThreadId | |
| 256 | NtAllocateLocallyUniqueId | |
| 257 | NtAllocateReserveObject | |
| 258 | NtAllocateUserPhysicalPages | |
| 259 | NtAllocateUserPhysicalPagesEx | |
| 260 | NtAllocateUuids | |
| 261 | NtAllocateVirtualMemory | |
| 262 | NtAllocateVirtualMemoryEx | |
| 263 | NtAlpcAcceptConnectPort | |
| 264 | NtAlpcCancelMessage | |
| 265 | NtAlpcConnectPort | |
| 266 | NtAlpcConnectPortEx | |
| 267 | NtAlpcCreatePort | |
| 268 | NtAlpcCreatePortSection | |
| 269 | NtAlpcCreateResourceReserve | |
| 270 | NtAlpcCreateSectionView | |
| 271 | NtAlpcCreateSecurityContext | |
| 272 | NtAlpcDeletePortSection | |
| 273 | NtAlpcDeleteResourceReserve | |
| 274 | NtAlpcDeleteSectionView | |
| 275 | NtAlpcDeleteSecurityContext | |
| 276 | NtAlpcDisconnectPort | |
| 277 | NtAlpcImpersonateClientContainerOfPort | |
| 278 | NtAlpcImpersonateClientOfPort | |
| 279 | NtAlpcOpenSenderProcess | |
| 280 | NtAlpcOpenSenderThread | |
| 281 | NtAlpcQueryInformation | |
| 282 | NtAlpcQueryInformationMessage | |
| 283 | NtAlpcRevokeSecurityContext | |
| 284 | NtAlpcSendWaitReceivePort | |
| 285 | NtAlpcSetInformation | |
| 286 | NtApphelpCacheControl | |
| 287 | NtAreMappedFilesTheSame | |
| 288 | NtAssignProcessToJobObject | |
| 289 | NtAssociateWaitCompletionPacket | |
| 290 | NtCallEnclave | |
| 291 | NtCallbackReturn | |
| 292 | NtCancelDeviceWakeupRequest | |
| 293 | NtCancelIoFile | |
| 294 | NtCancelIoFileEx | |
| 295 | NtCancelSynchronousIoFile | |
| 296 | NtCancelTimer | |
| 297 | NtCancelTimer2 | |
| 298 | NtCancelWaitCompletionPacket | |
| 299 | NtClearEvent | |
| 300 | NtClose | |
| 301 | NtCloseObjectAuditAlarm | |
| 302 | NtCommitComplete | |
| 303 | NtCommitEnlistment | |
| 304 | NtCommitRegistryTransaction | |
| 305 | NtCommitTransaction | |
| 306 | NtCompactKeys | |
| 307 | NtCompareObjects | |
| 308 | NtCompareSigningLevels | |
| 309 | NtCompareTokens | |
| 310 | NtCompleteConnectPort | |
| 311 | NtCompressKey | |
| 312 | NtConnectPort | |
| 313 | NtContinue | |
| 314 | NtConvertBetweenAuxiliaryCounterAndPerformanceCounter | |
| 315 | NtCreateCrossVmEvent | |
| 316 | NtCreateDebugObject | |
| 317 | NtCreateDirectoryObject | |
| 318 | NtCreateDirectoryObjectEx | |
| 319 | NtCreateEnclave | |
| 320 | NtCreateEnlistment | |
| 321 | NtCreateEvent | |
| 322 | NtCreateEventPair | |
| 323 | NtCreateFile | |
| 324 | NtCreateIRTimer | |
| 325 | NtCreateIoCompletion | |
| 326 | NtCreateJobObject | |
| 327 | NtCreateJobSet | |
| 328 | NtCreateKey | |
| 329 | NtCreateKeyTransacted | |
| 330 | NtCreateKeyedEvent | |
| 331 | NtCreateLowBoxToken | |
| 332 | NtCreateMailslotFile | |
| 333 | NtCreateMutant | |
| 334 | NtCreateNamedPipeFile | |
| 335 | NtCreatePagingFile | |
| 336 | NtCreatePartition | |
| 337 | NtCreatePort | |
| 338 | NtCreatePrivateNamespace | |
| 339 | NtCreateProcess | |
| 340 | NtCreateProcessEx | |
| 341 | NtCreateProfile | |
| 342 | NtCreateProfileEx | |
| 343 | NtCreateRegistryTransaction | |
| 344 | NtCreateResourceManager | |
| 345 | NtCreateSection | |
| 346 | NtCreateSectionEx | |
| 347 | NtCreateSemaphore | |
| 348 | NtCreateSymbolicLinkObject | |
| 349 | NtCreateThread | |
| 350 | NtCreateThreadEx | |
| 351 | NtCreateTimer | |
| 352 | NtCreateTimer2 | |
| 353 | NtCreateToken | |
| 354 | NtCreateTokenEx | |
| 355 | NtCreateTransaction | |
| 356 | NtCreateTransactionManager | |
| 357 | NtCreateUserProcess | |
| 358 | NtCreateWaitCompletionPacket | |
| 359 | NtCreateWaitablePort | |
| 360 | NtCreateWnfStateName | |
| 361 | NtCreateWorkerFactory | |
| 362 | NtDebugActiveProcess | |
| 363 | NtDebugContinue | |
| 364 | NtDelayExecution | |
| 365 | NtDeleteAtom | |
| 366 | NtDeleteBootEntry | |
| 367 | NtDeleteDriverEntry | |
| 368 | NtDeleteFile | |
| 369 | NtDeleteKey | |
| 370 | NtDeleteObjectAuditAlarm | |
| 371 | NtDeletePrivateNamespace | |
| 372 | NtDeleteValueKey | |
| 373 | NtDeleteWnfStateData | |
| 374 | NtDeleteWnfStateName | |
| 375 | NtDeviceIoControlFile | |
| 376 | NtDisableLastKnownGood | |
| 377 | NtDisplayString | |
| 378 | NtDrawText | |
| 379 | NtDuplicateObject | |
| 380 | NtDuplicateToken | |
| 381 | NtEnableLastKnownGood | |
| 382 | NtEnumerateBootEntries | |
| 383 | NtEnumerateDriverEntries | |
| 384 | NtEnumerateKey | |
| 385 | NtEnumerateSystemEnvironmentValuesEx | |
| 386 | NtEnumerateTransactionObject | |
| 387 | NtEnumerateValueKey | |
| 388 | NtExtendSection | |
| 389 | NtFilterBootOption | |
| 390 | NtFilterToken | |
| 391 | NtFilterTokenEx | |
| 392 | NtFindAtom | |
| 393 | NtFlushBuffersFile | |
| 394 | NtFlushBuffersFileEx | |
| 395 | NtFlushInstallUILanguage | |
| 396 | NtFlushInstructionCache | |
| 397 | NtFlushKey | |
| 398 | NtFlushProcessWriteBuffers | |
| 399 | NtFlushVirtualMemory | |
| 400 | NtFlushWriteBuffer | |
| 401 | NtFreeUserPhysicalPages | |
| 402 | NtFreeVirtualMemory | |
| 403 | NtFreezeRegistry | |
| 404 | NtFreezeTransactions | |
| 405 | NtFsControlFile | |
| 406 | NtGetCachedSigningLevel | |
| 407 | NtGetCompleteWnfStateSubscription | |
| 408 | NtGetContextThread | |
| 409 | NtGetCurrentProcessorNumber | |
| 410 | NtGetCurrentProcessorNumberEx | |
| 411 | NtGetDevicePowerState | |
| 412 | NtGetMUIRegistryInfo | |
| 413 | NtGetNextProcess | |
| 414 | NtGetNextThread | |
| 415 | NtGetNlsSectionPtr | |
| 416 | NtGetNotificationResourceManager | |
| 417 | NtGetPlugPlayEvent | |
| 418 | NtGetTickCount | |
| 419 | NtGetWriteWatch | |
| 420 | NtImpersonateAnonymousToken | |
| 421 | NtImpersonateClientOfPort | |
| 422 | NtImpersonateThread | |
| 423 | NtInitializeEnclave | |
| 424 | NtInitializeNlsFiles | |
| 425 | NtInitializeRegistry | |
| 426 | NtInitiatePowerAction | |
| 427 | NtIsProcessInJob | |
| 428 | NtIsSystemResumeAutomatic | |
| 429 | NtIsUILanguageComitted | |
| 430 | NtListenPort | |
| 431 | NtLoadDriver | |
| 432 | NtLoadEnclaveData | |
| 433 | NtLoadKey | |
| 434 | NtLoadKey2 | |
| 435 | NtLoadKeyEx | |
| 436 | NtLockFile | |
| 437 | NtLockProductActivationKeys | |
| 438 | NtLockRegistryKey | |
| 439 | NtLockVirtualMemory | |
| 440 | NtMakePermanentObject | |
| 441 | NtMakeTemporaryObject | |
| 442 | NtManageHotPatch | |
| 443 | NtManagePartition | |
| 444 | NtMapCMFModule | |
| 445 | NtMapUserPhysicalPages | |
| 446 | NtMapUserPhysicalPagesScatter | |
| 447 | NtMapViewOfSection | |
| 448 | NtMapViewOfSectionEx | |
| 449 | NtModifyBootEntry | |
| 450 | NtModifyDriverEntry | |
| 451 | NtNotifyChangeDirectoryFile | |
| 452 | NtNotifyChangeDirectoryFileEx | |
| 453 | NtNotifyChangeKey | |
| 454 | NtNotifyChangeMultipleKeys | |
| 455 | NtNotifyChangeSession | |
| 456 | NtOpenDirectoryObject | |
| 457 | NtOpenEnlistment | |
| 458 | NtOpenEvent | |
| 459 | NtOpenEventPair | |
| 460 | NtOpenFile | |
| 461 | NtOpenIoCompletion | |
| 462 | NtOpenJobObject | |
| 463 | NtOpenKey | |
| 464 | NtOpenKeyEx | |
| 465 | NtOpenKeyTransacted | |
| 466 | NtOpenKeyTransactedEx | |
| 467 | NtOpenKeyedEvent | |
| 468 | NtOpenMutant | |
| 469 | NtOpenObjectAuditAlarm | |
| 470 | NtOpenPartition | |
| 471 | NtOpenPrivateNamespace | |
| 472 | NtOpenProcess | |
| 473 | NtOpenProcessToken | |
| 474 | NtOpenProcessTokenEx | |
| 475 | NtOpenRegistryTransaction | |
| 476 | NtOpenResourceManager | |
| 477 | NtOpenSection | |
| 478 | NtOpenSemaphore | |
| 479 | NtOpenSession | |
| 480 | NtOpenSymbolicLinkObject | |
| 481 | NtOpenThread | |
| 482 | NtOpenThreadToken | |
| 483 | NtOpenThreadTokenEx | |
| 484 | NtOpenTimer | |
| 485 | NtOpenTransaction | |
| 486 | NtOpenTransactionManager | |
| 487 | NtPlugPlayControl | |
| 488 | NtPowerInformation | |
| 489 | NtPrePrepareComplete | |
| 490 | NtPrePrepareEnlistment | |
| 491 | NtPrepareComplete | |
| 492 | NtPrepareEnlistment | |
| 493 | NtPrivilegeCheck | |
| 494 | NtPrivilegeObjectAuditAlarm | |
| 495 | NtPrivilegedServiceAuditAlarm | |
| 496 | NtPropagationComplete | |
| 497 | NtPropagationFailed | |
| 498 | NtProtectVirtualMemory | |
| 499 | NtPssCaptureVaSpaceBulk | |
| 500 | NtPulseEvent | |
| 501 | NtQueryAttributesFile | |
| 502 | NtQueryAuxiliaryCounterFrequency | |
| 503 | NtQueryBootEntryOrder | |
| 504 | NtQueryBootOptions | |
| 505 | NtQueryDebugFilterState | |
| 506 | NtQueryDefaultLocale | |
| 507 | NtQueryDefaultUILanguage | |
| 508 | NtQueryDirectoryFile | |
| 509 | NtQueryDirectoryFileEx | |
| 510 | NtQueryDirectoryObject | |
| 511 | NtQueryDriverEntryOrder | |
| 512 | NtQueryEaFile | |
| 513 | NtQueryEvent | |
| 514 | NtQueryFullAttributesFile | |
| 515 | NtQueryInformationAtom | |
| 516 | NtQueryInformationByName | |
| 517 | NtQueryInformationEnlistment | |
| 518 | NtQueryInformationFile | |
| 519 | NtQueryInformationJobObject | |
| 520 | NtQueryInformationPort | |
| 521 | NtQueryInformationProcess | |
| 522 | NtQueryInformationResourceManager | |
| 523 | NtQueryInformationThread | |
| 524 | NtQueryInformationToken | |
| 525 | NtQueryInformationTransaction | |
| 526 | NtQueryInformationTransactionManager | |
| 527 | NtQueryInformationWorkerFactory | |
| 528 | NtQueryInstallUILanguage | |
| 529 | NtQueryIntervalProfile | |
| 530 | NtQueryIoCompletion | |
| 531 | NtQueryKey | |
| 532 | NtQueryLicenseValue | |
| 533 | NtQueryMultipleValueKey | |
| 534 | NtQueryMutant | |
| 535 | NtQueryObject | |
| 536 | NtQueryOpenSubKeys | |
| 537 | NtQueryOpenSubKeysEx | |
| 538 | NtQueryPerformanceCounter | |
| 539 | NtQueryPortInformationProcess | |
| 540 | NtQueryQuotaInformationFile | |
| 541 | NtQuerySection | |
| 542 | NtQuerySecurityAttributesToken | |
| 543 | NtQuerySecurityObject | |
| 544 | NtQuerySecurityPolicy | |
| 545 | NtQuerySemaphore | |
| 546 | NtQuerySymbolicLinkObject | |
| 547 | NtQuerySystemEnvironmentValue | |
| 548 | NtQuerySystemEnvironmentValueEx | |
| 549 | NtQuerySystemInformation | |
| 550 | NtQuerySystemInformationEx | |
| 551 | NtQuerySystemTime | |
| 552 | NtQueryTimer | |
| 553 | NtQueryTimerResolution | |
| 554 | NtQueryValueKey | |
| 555 | NtQueryVirtualMemory | |
| 556 | NtQueryVolumeInformationFile | |
| 557 | NtQueryWnfStateData | |
| 558 | NtQueryWnfStateNameInformation | |
| 559 | NtQueueApcThread | |
| 560 | NtQueueApcThreadEx | |
| 561 | NtRaiseException | |
| 562 | NtRaiseHardError | |
| 563 | NtReadFile | |
| 564 | NtReadFileScatter | |
| 565 | NtReadOnlyEnlistment | |
| 566 | NtReadRequestData | |
| 567 | NtReadVirtualMemory | |
| 568 | NtRecoverEnlistment | |
| 569 | NtRecoverResourceManager | |
| 570 | NtRecoverTransactionManager | |
| 571 | NtRegisterProtocolAddressInformation | |
| 572 | NtRegisterThreadTerminatePort | |
| 573 | NtReleaseKeyedEvent | |
| 574 | NtReleaseMutant | |
| 575 | NtReleaseSemaphore | |
| 576 | NtReleaseWorkerFactoryWorker | |
| 577 | NtRemoveIoCompletion | |
| 578 | NtRemoveIoCompletionEx | |
| 579 | NtRemoveProcessDebug | |
| 580 | NtRenameKey | |
| 581 | NtRenameTransactionManager | |
| 582 | NtReplaceKey | |
| 583 | NtReplacePartitionUnit | |
| 584 | NtReplyPort | |
| 585 | NtReplyWaitReceivePort | |
| 586 | NtReplyWaitReceivePortEx | |
| 587 | NtReplyWaitReplyPort | |
| 588 | NtRequestDeviceWakeup | |
| 589 | NtRequestPort | |
| 590 | NtRequestWaitReplyPort | |
| 591 | NtRequestWakeupLatency | |
| 592 | NtResetEvent | |
| 593 | NtResetWriteWatch | |
| 594 | NtRestoreKey | |
| 595 | NtResumeProcess | |
| 596 | NtResumeThread | |
| 597 | NtRevertContainerImpersonation | |
| 598 | NtRollbackComplete | |
| 599 | NtRollbackEnlistment | |
| 600 | NtRollbackRegistryTransaction | |
| 601 | NtRollbackTransaction | |
| 602 | NtRollforwardTransactionManager | |
| 603 | NtSaveKey | |
| 604 | NtSaveKeyEx | |
| 605 | NtSaveMergedKeys | |
| 606 | NtSecureConnectPort | |
| 607 | NtSerializeBoot | |
| 608 | NtSetBootEntryOrder | |
| 609 | NtSetBootOptions | |
| 610 | NtSetCachedSigningLevel | |
| 611 | NtSetCachedSigningLevel2 | |
| 612 | NtSetContextThread | |
| 613 | NtSetDebugFilterState | |
| 614 | NtSetDefaultHardErrorPort | |
| 615 | NtSetDefaultLocale | |
| 616 | NtSetDefaultUILanguage | |
| 617 | NtSetDriverEntryOrder | |
| 618 | NtSetEaFile | |
| 619 | NtSetEvent | |
| 620 | NtSetEventBoostPriority | |
| 621 | NtSetHighEventPair | |
| 622 | NtSetHighWaitLowEventPair | |
| 623 | NtSetIRTimer | |
| 624 | NtSetInformationDebugObject | |
| 625 | NtSetInformationEnlistment | |
| 626 | NtSetInformationFile | |
| 627 | NtSetInformationJobObject | |
| 628 | NtSetInformationKey | |
| 629 | NtSetInformationObject | |
| 630 | NtSetInformationProcess | |
| 631 | NtSetInformationResourceManager | |
| 632 | NtSetInformationSymbolicLink | |
| 633 | NtSetInformationThread | |
| 634 | NtSetInformationToken | |
| 635 | NtSetInformationTransaction | |
| 636 | NtSetInformationTransactionManager | |
| 637 | NtSetInformationVirtualMemory | |
| 638 | NtSetInformationWorkerFactory | |
| 639 | NtSetIntervalProfile | |
| 640 | NtSetIoCompletion | |
| 641 | NtSetIoCompletionEx | |
| 642 | NtSetLdtEntries | |
| 643 | NtSetLowEventPair | |
| 644 | NtSetLowWaitHighEventPair | |
| 645 | NtSetQuotaInformationFile | |
| 646 | NtSetSecurityObject | |
| 647 | NtSetSystemEnvironmentValue | |
| 648 | NtSetSystemEnvironmentValueEx | |
| 649 | NtSetSystemInformation | |
| 650 | NtSetSystemPowerState | |
| 651 | NtSetSystemTime | |
| 652 | NtSetThreadExecutionState | |
| 653 | NtSetTimer | |
| 654 | NtSetTimer2 | |
| 655 | NtSetTimerEx | |
| 656 | NtSetTimerResolution | |
| 657 | NtSetUuidSeed | |
| 658 | NtSetValueKey | |
| 659 | NtSetVolumeInformationFile | |
| 660 | NtSetWnfProcessNotificationEvent | |
| 661 | NtShutdownSystem | |
| 662 | NtShutdownWorkerFactory | |
| 663 | NtSignalAndWaitForSingleObject | |
| 664 | NtSinglePhaseReject | |
| 665 | NtStartProfile | |
| 666 | NtStopProfile | |
| 667 | NtSubscribeWnfStateChange | |
| 668 | NtSuspendProcess | |
| 669 | NtSuspendThread | |
| 670 | NtSystemDebugControl | |
| 671 | NtTerminateEnclave | |
| 672 | NtTerminateJobObject | |
| 673 | NtTerminateProcess | |
| 674 | NtTerminateThread | |
| 675 | NtTestAlert | |
| 676 | NtThawRegistry | |
| 677 | NtThawTransactions | |
| 678 | NtTraceControl | |
| 679 | NtTraceEvent | |
| 680 | NtTranslateFilePath | |
| 681 | NtUmsThreadYield | |
| 682 | NtUnloadDriver | |
| 683 | NtUnloadKey | |
| 684 | NtUnloadKey2 | |
| 685 | NtUnloadKeyEx | |
| 686 | NtUnlockFile | |
| 687 | NtUnlockVirtualMemory | |
| 688 | NtUnmapViewOfSection | |
| 689 | NtUnmapViewOfSectionEx | |
| 690 | NtUnsubscribeWnfStateChange | |
| 691 | NtUpdateWnfStateData | |
| 692 | NtVdmControl | |
| 693 | NtWaitForAlertByThreadId | |
| 694 | NtWaitForDebugEvent | |
| 695 | NtWaitForKeyedEvent | |
| 696 | NtWaitForMultipleObjects | |
| 697 | NtWaitForMultipleObjects32 | |
| 698 | NtWaitForSingleObject | |
| 699 | NtWaitForWorkViaWorkerFactory | |
| 700 | NtWaitHighEventPair | |
| 701 | NtWaitLowEventPair | |
| 702 | NtWorkerFactoryWorkerReady | |
| 703 | NtWriteFile | |
| 704 | NtWriteFileGather | |
| 705 | NtWriteRequestData | |
| 706 | NtWriteVirtualMemory | |
| 707 | NtYieldExecution | |
| 708 | NtdllDefWindowProc_A | |
| 709 | NtdllDefWindowProc_W | |
| 710 | NtdllDialogWndProc_A | |
| 711 | NtdllDialogWndProc_W | |
| 712 | PfxFindPrefix | |
| 713 | PfxInitialize | |
| 714 | PfxInsertPrefix | |
| 715 | PfxRemovePrefix | |
| 716 | PssNtCaptureSnapshot | |
| 717 | PssNtDuplicateSnapshot | |
| 718 | PssNtFreeRemoteSnapshot | |
| 719 | PssNtFreeSnapshot | |
| 720 | PssNtFreeWalkMarker | |
| 721 | PssNtQuerySnapshot | |
| 722 | PssNtValidateDescriptor | |
| 723 | PssNtWalkSnapshot | |
| 724 | RtlAbortRXact | |
| 725 | RtlAbsoluteToSelfRelativeSD | |
| 726 | RtlAcquirePebLock | |
| 727 | RtlAcquirePrivilege | |
| 728 | RtlAcquireReleaseSRWLockExclusive | |
| 729 | RtlAcquireResourceExclusive | |
| 730 | RtlAcquireResourceShared | |
| 731 | RtlAcquireSRWLockExclusive | |
| 732 | RtlAcquireSRWLockShared | |
| 733 | RtlActivateActivationContext | |
| 734 | RtlActivateActivationContextEx | |
| 735 | RtlActivateActivationContextUnsafeFast | |
| 736 | RtlAddAccessAllowedAce | |
| 737 | RtlAddAccessAllowedAceEx | |
| 738 | RtlAddAccessAllowedObjectAce | |
| 739 | RtlAddAccessDeniedAce | |
| 740 | RtlAddAccessDeniedAceEx | |
| 741 | RtlAddAccessDeniedObjectAce | |
| 742 | RtlAddAccessFilterAce | |
| 743 | RtlAddAce | |
| 744 | RtlAddActionToRXact | |
| 745 | RtlAddAtomToAtomTable | |
| 746 | RtlAddAttributeActionToRXact | |
| 747 | RtlAddAuditAccessAce | |
| 748 | RtlAddAuditAccessAceEx | |
| 749 | RtlAddAuditAccessObjectAce | |
| 750 | RtlAddCompoundAce | |
| 751 | RtlAddFunctionTable | |
| 752 | RtlAddGrowableFunctionTable | |
| 753 | RtlAddIntegrityLabelToBoundaryDescriptor | |
| 754 | RtlAddMandatoryAce | |
| 755 | RtlAddProcessTrustLabelAce | |
| 756 | RtlAddRefActivationContext | |
| 757 | RtlAddRefMemoryStream | |
| 758 | RtlAddResourceAttributeAce | |
| 759 | RtlAddSIDToBoundaryDescriptor | |
| 760 | RtlAddScopedPolicyIDAce | |
| 761 | RtlAddVectoredContinueHandler | |
| 762 | RtlAddVectoredExceptionHandler | |
| 763 | RtlAddressInSectionTable | |
| 764 | RtlAdjustPrivilege | |
| 765 | RtlAllocateActivationContextStack | |
| 766 | RtlAllocateAndInitializeSid | |
| 767 | RtlAllocateAndInitializeSidEx | |
| 768 | RtlAllocateHandle | |
| 769 | RtlAllocateHeap | |
| 770 | RtlAllocateMemoryBlockLookaside | |
| 771 | RtlAllocateMemoryZone | |
| 772 | RtlAllocateWnfSerializationGroup | |
| 773 | RtlAnsiCharToUnicodeChar | |
| 774 | RtlAnsiStringToUnicodeSize | |
| 775 | RtlAnsiStringToUnicodeString | |
| 776 | RtlAppendAsciizToString | |
| 777 | RtlAppendPathElement | |
| 778 | RtlAppendStringToString | |
| 779 | RtlAppendUnicodeStringToString | |
| 780 | RtlAppendUnicodeToString | |
| 781 | RtlApplicationVerifierStop | |
| 782 | RtlApplyRXact | |
| 783 | RtlApplyRXactNoFlush | |
| 784 | RtlAppxIsFileOwnedByTrustedInstaller | |
| 785 | RtlAreAllAccessesGranted | |
| 786 | RtlAreAnyAccessesGranted | |
| 787 | RtlAreBitsClear | |
| 788 | RtlAreBitsClearEx | |
| 789 | RtlAreBitsSet | |
| 790 | RtlAreLongPathsEnabled | |
| 791 | RtlAssert | |
| 792 | RtlAvlInsertNodeEx | |
| 793 | RtlAvlRemoveNode | |
| 794 | RtlBarrier | |
| 795 | RtlBarrierForDelete | |
| 796 | RtlCallEnclaveReturn | |
| 797 | RtlCancelTimer | |
| 798 | RtlCanonicalizeDomainName | |
| 799 | RtlCapabilityCheck | |
| 800 | RtlCapabilityCheckForSingleSessionSku | |
| 801 | RtlCaptureContext | |
| 802 | RtlCaptureStackBackTrace | |
| 803 | RtlCharToInteger | |
| 804 | RtlCheckBootStatusIntegrity | |
| 805 | RtlCheckForOrphanedCriticalSections | |
| 806 | RtlCheckPortableOperatingSystem | |
| 807 | RtlCheckProcessParameters | |
| 808 | RtlCheckRegistryKey | |
| 809 | RtlCheckSandboxedToken | |
| 810 | RtlCheckSystemBootStatusIntegrity | |
| 811 | RtlCheckTokenCapability | |
| 812 | RtlCheckTokenMembership | |
| 813 | RtlCheckTokenMembershipEx | |
| 814 | RtlCleanUpTEBLangLists | |
| 815 | RtlClearAllBits | |
| 816 | RtlClearAllBitsEx | |
| 817 | RtlClearBit | |
| 818 | RtlClearBitEx | |
| 819 | RtlClearBits | |
| 820 | RtlClearBitsEx | |
| 821 | RtlClearThreadWorkOnBehalfTicket | |
| 822 | RtlCloneMemoryStream | |
| 823 | RtlCloneUserProcess | |
| 824 | RtlCmDecodeMemIoResource | |
| 825 | RtlCmEncodeMemIoResource | |
| 826 | RtlCommitDebugInfo | |
| 827 | RtlCommitMemoryStream | |
| 828 | RtlCompactHeap | |
| 829 | RtlCompareAltitudes | |
| 830 | RtlCompareMemory | |
| 831 | RtlCompareMemoryUlong | |
| 832 | RtlCompareString | |
| 833 | RtlCompareUnicodeString | |
| 834 | RtlCompareUnicodeStrings | |
| 835 | RtlCompleteProcessCloning | |
| 836 | RtlCompressBuffer | |
| 837 | RtlComputeCrc32 | |
| 838 | RtlComputeImportTableHash | |
| 839 | RtlComputePrivatizedDllName_U | |
| 840 | RtlConnectToSm | |
| 841 | RtlConsoleMultiByteToUnicodeN | |
| 842 | RtlConstructCrossVmEventPath | |
| 843 | RtlContractHashTable | |
| 844 | RtlConvertDeviceFamilyInfoToString | |
| 845 | RtlConvertExclusiveToShared | |
| 846 | RtlConvertLCIDToString | |
| 847 | RtlConvertSRWLockExclusiveToShared | |
| 848 | RtlConvertSharedToExclusive | |
| 849 | RtlConvertSidToUnicodeString | |
| 850 | RtlConvertToAutoInheritSecurityObject | |
| 851 | RtlConvertUiListToApiList | |
| 852 | RtlCopyBitMap | |
| 853 | RtlCopyContext | |
| 854 | RtlCopyExtendedContext | |
| 855 | RtlCopyLuid | |
| 856 | RtlCopyLuidAndAttributesArray | |
| 857 | RtlCopyMappedMemory | |
| 858 | RtlCopyMemory | |
| 859 | RtlCopyMemoryNonTemporal | |
| 860 | RtlCopyMemoryStreamTo | |
| 861 | RtlCopyOutOfProcessMemoryStreamTo | |
| 862 | RtlCopySecurityDescriptor | |
| 863 | RtlCopySid | |
| 864 | RtlCopySidAndAttributesArray | |
| 865 | RtlCopyString | |
| 866 | RtlCopyUnicodeString | |
| 867 | RtlCrc32 | |
| 868 | RtlCrc64 | |
| 869 | RtlCreateAcl | |
| 870 | RtlCreateActivationContext | |
| 871 | RtlCreateAndSetSD | |
| 872 | RtlCreateAtomTable | |
| 873 | RtlCreateBootStatusDataFile | |
| 874 | RtlCreateBoundaryDescriptor | |
| 875 | RtlCreateEnvironment | |
| 876 | RtlCreateEnvironmentEx | |
| 877 | RtlCreateHashTable | |
| 878 | RtlCreateHashTableEx | |
| 879 | RtlCreateHeap | |
| 880 | RtlCreateMemoryBlockLookaside | |
| 881 | RtlCreateMemoryZone | |
| 882 | RtlCreateProcessParameters | |
| 883 | RtlCreateProcessParametersEx | |
| 884 | RtlCreateProcessParametersWithTemplate | |
| 885 | RtlCreateProcessReflection | |
| 886 | RtlCreateQueryDebugBuffer | |
| 887 | RtlCreateRegistryKey | |
| 888 | RtlCreateSecurityDescriptor | |
| 889 | RtlCreateServiceSid | |
| 890 | RtlCreateSystemVolumeInformationFolder | |
| 891 | RtlCreateTagHeap | |
| 892 | RtlCreateTimer | |
| 893 | RtlCreateTimerQueue | |
| 894 | RtlCreateUmsCompletionList | |
| 895 | RtlCreateUmsThread | |
| 896 | RtlCreateUmsThreadContext | |
| 897 | RtlCreateUnicodeString | |
| 898 | RtlCreateUnicodeStringFromAsciiz | |
| 899 | RtlCreateUserFiberShadowStack | |
| 900 | RtlCreateUserProcess | |
| 901 | RtlCreateUserProcessEx | |
| 902 | RtlCreateUserSecurityObject | |
| 903 | RtlCreateUserStack | |
| 904 | RtlCreateUserThread | |
| 905 | RtlCreateVirtualAccountSid | |
| 906 | RtlCultureNameToLCID | |
| 907 | RtlCustomCPToUnicodeN | |
| 908 | RtlCutoverTimeToSystemTime | |
| 909 | RtlDeCommitDebugInfo | |
| 910 | RtlDeNormalizeProcessParams | |
| 911 | RtlDeactivateActivationContext | |
| 912 | RtlDeactivateActivationContextUnsafeFast | |
| 913 | RtlDebugPrintTimes | |
| 914 | RtlDecodePointer | |
| 915 | RtlDecodeRemotePointer | |
| 916 | RtlDecodeSystemPointer | |
| 917 | RtlDecompressBuffer | |
| 918 | RtlDecompressBufferEx | |
| 919 | RtlDecompressFragment | |
| 920 | RtlDefaultNpAcl | |
| 921 | RtlDelete | |
| 922 | RtlDeleteAce | |
| 923 | RtlDeleteAtomFromAtomTable | |
| 924 | RtlDeleteBarrier | |
| 925 | RtlDeleteBoundaryDescriptor | |
| 926 | RtlDeleteCriticalSection | |
| 927 | RtlDeleteElementGenericTable | |
| 928 | RtlDeleteElementGenericTableAvl | |
| 929 | RtlDeleteElementGenericTableAvlEx | |
| 930 | RtlDeleteFunctionTable | |
| 931 | RtlDeleteGrowableFunctionTable | |
| 932 | RtlDeleteHashTable | |
| 933 | RtlDeleteNoSplay | |
| 934 | RtlDeleteRegistryValue | |
| 935 | RtlDeleteResource | |
| 936 | RtlDeleteSecurityObject | |
| 937 | RtlDeleteTimer | |
| 938 | RtlDeleteTimerQueue | |
| 939 | RtlDeleteTimerQueueEx | |
| 940 | RtlDeleteUmsCompletionList | |
| 941 | RtlDeleteUmsThreadContext | |
| 942 | RtlDequeueUmsCompletionListItems | |
| 943 | RtlDeregisterSecureMemoryCacheCallback | |
| 944 | RtlDeregisterWait | |
| 945 | RtlDeregisterWaitEx | |
| 946 | RtlDeriveCapabilitySidsFromName | |
| 947 | RtlDestroyAtomTable | |
| 948 | RtlDestroyEnvironment | |
| 949 | RtlDestroyHandleTable | |
| 950 | RtlDestroyHeap | |
| 951 | RtlDestroyMemoryBlockLookaside | |
| 952 | RtlDestroyMemoryZone | |
| 953 | RtlDestroyProcessParameters | |
| 954 | RtlDestroyQueryDebugBuffer | |
| 955 | RtlDetectHeapLeaks | |
| 956 | RtlDetermineDosPathNameType_U | |
| 957 | RtlDisableThreadProfiling | |
| 958 | RtlDllShutdownInProgress | |
| 959 | RtlDnsHostNameToComputerName | |
| 960 | RtlDoesFileExists_U | |
| 961 | RtlDoesNameContainWildCards | |
| 962 | RtlDosApplyFileIsolationRedirection_Ustr | |
| 963 | RtlDosLongPathNameToNtPathName_U_WithStatus | |
| 964 | RtlDosLongPathNameToRelativeNtPathName_U_WithStatus | |
| 965 | RtlDosPathNameToNtPathName_U | |
| 966 | RtlDosPathNameToNtPathName_U_WithStatus | |
| 967 | RtlDosPathNameToRelativeNtPathName_U | |
| 968 | RtlDosPathNameToRelativeNtPathName_U_WithStatus | |
| 969 | RtlDosSearchPath_U | |
| 970 | RtlDosSearchPath_Ustr | |
| 971 | RtlDowncaseUnicodeChar | |
| 972 | RtlDowncaseUnicodeString | |
| 973 | RtlDrainNonVolatileFlush | |
| 974 | RtlDumpResource | |
| 975 | RtlDuplicateUnicodeString | |
| 976 | RtlEmptyAtomTable | |
| 977 | RtlEnableEarlyCriticalSectionEventCreation | |
| 978 | RtlEnableThreadProfiling | |
| 979 | RtlEnclaveCallDispatch | |
| 980 | RtlEnclaveCallDispatchReturn | |
| 981 | RtlEncodePointer | |
| 982 | RtlEncodeRemotePointer | |
| 983 | RtlEncodeSystemPointer | |
| 984 | RtlEndEnumerationHashTable | |
| 985 | RtlEndStrongEnumerationHashTable | |
| 986 | RtlEndWeakEnumerationHashTable | |
| 987 | RtlEnterCriticalSection | |
| 988 | RtlEnterUmsSchedulingMode | |
| 989 | RtlEnumProcessHeaps | |
| 990 | RtlEnumerateEntryHashTable | |
| 991 | RtlEnumerateGenericTable | |
| 992 | RtlEnumerateGenericTableAvl | |
| 993 | RtlEnumerateGenericTableLikeADirectory | |
| 994 | RtlEnumerateGenericTableWithoutSplaying | |
| 995 | RtlEnumerateGenericTableWithoutSplayingAvl | |
| 996 | RtlEqualComputerName | |
| 997 | RtlEqualDomainName | |
| 998 | RtlEqualLuid | |
| 999 | RtlEqualPrefixSid | |
| 1000 | RtlEqualSid | |
| 1001 | RtlEqualString | |
| 1002 | RtlEqualUnicodeString | |
| 1003 | RtlEqualWnfChangeStamps | |
| 1004 | RtlEraseUnicodeString | |
| 1005 | RtlEthernetAddressToStringA | |
| 1006 | RtlEthernetAddressToStringW | |
| 1007 | RtlEthernetStringToAddressA | |
| 1008 | RtlEthernetStringToAddressW | |
| 1009 | RtlExecuteUmsThread | |
| 1010 | RtlExitUserProcess | |
| 1011 | RtlExitUserThread | |
| 1012 | RtlExpandEnvironmentStrings | |
| 1013 | RtlExpandEnvironmentStrings_U | |
| 1014 | RtlExtendHeap | |
| 1015 | RtlExpandHashTable | |
| 1016 | RtlExtendCorrelationVector | |
| 1017 | RtlExtendMemoryBlockLookaside | |
| 1018 | RtlExtendMemoryZone | |
| 1019 | RtlExtractBitMap | |
| 1020 | RtlFillMemory | |
| 1021 | RtlFillMemoryNonTemporal | |
| 1022 | RtlFillNonVolatileMemory | |
| 1023 | RtlFinalReleaseOutOfProcessMemoryStream | |
| 1024 | RtlFindAceByType | |
| 1025 | RtlFindActivationContextSectionGuid | |
| 1026 | RtlFindActivationContextSectionString | |
| 1027 | RtlFindCharInUnicodeString | |
| 1028 | RtlFindClearBits | |
| 1029 | RtlFindClearBitsAndSet | |
| 1030 | RtlFindClearBitsEx | |
| 1031 | RtlFindClearRuns | |
| 1032 | RtlFindClosestEncodableLength | |
| 1033 | RtlFindExportedRoutineByName | |
| 1034 | RtlFindLastBackwardRunClear | |
| 1035 | RtlFindLeastSignificantBit | |
| 1036 | RtlFindLongestRunClear | |
| 1037 | RtlFindMessage | |
| 1038 | RtlFindMostSignificantBit | |
| 1039 | RtlFindNextForwardRunClear | |
| 1040 | RtlFindSetBits | |
| 1041 | RtlFindSetBitsAndClear | |
| 1042 | RtlFindSetBitsAndClearEx | |
| 1043 | RtlFindSetBitsEx | |
| 1044 | RtlFindUnicodeSubstring | |
| 1045 | RtlFirstEntrySList | |
| 1046 | RtlFirstFreeAce | |
| 1047 | RtlFlsAlloc | |
| 1048 | RtlFlsFree | |
| 1049 | RtlFlsGetValue | |
| 1050 | RtlFlsSetValue | |
| 1051 | RtlFlushHeaps | |
| 1052 | RtlFlushNonVolatileMemory | |
| 1053 | RtlFlushNonVolatileMemoryRanges | |
| 1054 | RtlFlushSecureMemoryCache | |
| 1055 | RtlFormatCurrentUserKeyPath | |
| 1056 | RtlFormatMessage | |
| 1057 | RtlFormatMessageEx | |
| 1058 | RtlFreeActivationContextStack | |
| 1059 | RtlFreeAnsiString | |
| 1060 | RtlFreeHandle | |
| 1061 | RtlFreeHeap | |
| 1062 | RtlFreeMemoryBlockLookaside | |
| 1063 | RtlFreeNonVolatileToken | |
| 1064 | RtlFreeOemString | |
| 1065 | RtlFreeSid | |
| 1066 | RtlFreeThreadActivationContextStack | |
| 1067 | RtlFreeUTF8String | |
| 1068 | RtlFreeUnicodeString | |
| 1069 | RtlFreeUserFiberShadowStack | |
| 1070 | RtlFreeUserThreadStack | |
| 1071 | RtlFreeUserStack | |
| 1072 | RtlGUIDFromString | |
| 1073 | RtlGenerate8dot3Name | |
| 1074 | RtlGetAce | |
| 1075 | RtlGetActiveActivationContext | |
| 1076 | RtlGetActiveConsoleId | |
| 1077 | RtlGetAppContainerNamedObjectPath | |
| 1078 | RtlGetAppContainerParent | |
| 1079 | RtlGetAppContainerSidType | |
| 1080 | RtlGetCallersAddress | |
| 1081 | RtlGetCompressionWorkSpaceSize | |
| 1082 | RtlGetConsoleSessionForegroundProcessId | |
| 1083 | RtlGetControlSecurityDescriptor | |
| 1084 | RtlGetCriticalSectionRecursionCount | |
| 1085 | RtlGetCurrentDirectory_U | |
| 1086 | RtlGetCurrentPeb | |
| 1087 | RtlGetCurrentProcessorNumber | |
| 1088 | RtlGetCurrentProcessorNumberEx | |
| 1089 | RtlGetCurrentServiceSessionId | |
| 1090 | RtlGetCurrentTransaction | |
| 1091 | RtlGetCurrentUmsThread | |
| 1092 | RtlGetDaclSecurityDescriptor | |
| 1093 | RtlGetDeviceFamilyInfoEnum | |
| 1094 | RtlGetElementGenericTable | |
| 1095 | RtlGetElementGenericTableAvl | |
| 1096 | RtlGetEnabledExtendedFeatures | |
| 1097 | RtlGetExePath | |
| 1098 | RtlGetExtendedContextLength | |
| 1099 | RtlGetExtendedContextLength2 | |
| 1100 | RtlGetExtendedFeaturesMask | |
| 1101 | RtlGetFileMUIPath | |
| 1102 | RtlGetFrame | |
| 1103 | RtlGetFullPathName_U | |
| 1104 | RtlGetFullPathName_UEx | |
| 1105 | RtlGetFullPathName_UstrEx | |
| 1106 | RtlGetFunctionTableListHead | |
| 1107 | RtlGetGroupSecurityDescriptor | |
| 1108 | RtlGetIntegerAtom | |
| 1109 | RtlGetInterruptTimePrecise | |
| 1110 | RtlGetLastNtStatus | |
| 1111 | RtlGetLastWin32Error | |
| 1112 | RtlGetLengthWithoutLastFullDosOrNtPathElement | |
| 1113 | RtlGetLengthWithoutTrailingPathSeperators | |
| 1114 | RtlGetLocaleFileMappingAddress | |
| 1115 | RtlGetLongestNtPathLength | |
| 1116 | RtlGetMultiTimePrecise | |
| 1117 | RtlGetNativeSystemInformation | |
| 1118 | RtlGetNextEntryHashTable | |
| 1119 | RtlGetNextUmsListItem | |
| 1120 | RtlGetNonVolatileToken | |
| 1121 | RtlGetNtGlobalFlags | |
| 1122 | RtlGetNtProductType | |
| 1123 | RtlGetNtSystemRoot | |
| 1124 | RtlGetNtVersionNumbers | |
| 1125 | RtlGetOwnerSecurityDescriptor | |
| 1126 | RtlGetParentLocaleName | |
| 1127 | RtlGetPersistedStateLocation | |
| 1128 | RtlGetProcessHeaps | |
| 1129 | RtlGetProcessPreferredUILanguages | |
| 1130 | RtlGetProductInfo | |
| 1131 | RtlGetSaclSecurityDescriptor | |
| 1132 | RtlGetSearchPath | |
| 1133 | RtlGetSecurityDescriptorRMControl | |
| 1134 | RtlGetSessionProperties | |
| 1135 | RtlGetSetBootStatusData | |
| 1136 | RtlGetSuiteMask | |
| 1137 | RtlGetSystemBootStatus | |
| 1138 | RtlGetSystemBootStatusEx | |
| 1139 | RtlGetSystemPreferredUILanguages | |
| 1140 | RtlGetSystemTimePrecise | |
| 1141 | RtlGetThreadErrorMode | |
| 1142 | RtlGetThreadLangIdByIndex | |
| 1143 | RtlGetThreadPreferredUILanguages | |
| 1144 | RtlGetThreadWorkOnBehalfTicket | |
| 1145 | RtlGetTokenNamedObjectPath | |
| 1146 | RtlGetUILanguageInfo | |
| 1147 | RtlGetUmsCompletionListEvent | |
| 1148 | RtlGetUnloadEventTrace | |
| 1149 | RtlGetUnloadEventTraceEx | |
| 1150 | RtlGetUserInfoHeap | |
| 1151 | RtlGetUserPreferredUILanguages | |
| 1152 | RtlGetVersion | |
| 1153 | RtlGrowFunctionTable | |
| 1154 | RtlGuardCheckLongJumpTarget | |
| 1155 | RtlHashUnicodeString | |
| 1156 | RtlHeapTrkInitialize | |
| 1157 | RtlIdentifierAuthoritySid | |
| 1158 | RtlIdnToAscii | |
| 1159 | RtlIdnToNameprepUnicode | |
| 1160 | RtlIdnToUnicode | |
| 1161 | RtlImageDirectoryEntryToData | |
| 1162 | RtlImageNtHeader | |
| 1163 | RtlImageNtHeaderEx | |
| 1164 | RtlImageRvaToSection | |
| 1165 | RtlImageRvaToVa | |
| 1166 | RtlImpersonateSelf | |
| 1167 | RtlImpersonateSelfEx | |
| 1168 | RtlIncrementCorrelationVector | |
| 1169 | RtlInitAnsiString | |
| 1170 | RtlInitAnsiStringEx | |
| 1171 | RtlInitBarrier | |
| 1172 | RtlInitCodePageTable | |
| 1173 | RtlInitEnumerationHashTable | |
| 1174 | RtlInitMemoryStream | |
| 1175 | RtlInitNlsTables | |
| 1176 | RtlInitOutOfProcessMemoryStream | |
| 1177 | RtlInitString | |
| 1178 | RtlInitStringEx | |
| 1179 | RtlInitStrongEnumerationHashTable | |
| 1180 | RtlInitUTF8String | |
| 1181 | RtlInitUTF8StringEx | |
| 1182 | RtlInitUnicodeString | |
| 1183 | RtlInitUnicodeStringEx | |
| 1184 | RtlInitWeakEnumerationHashTable | |
| 1185 | RtlInitializeAtomPackage | |
| 1186 | RtlInitializeBitMap | |
| 1187 | RtlInitializeBitMapEx | |
| 1188 | RtlInitializeConditionVariable | |
| 1189 | RtlInitializeContext | |
| 1190 | RtlInitializeCorrelationVector | |
| 1191 | RtlInitializeCriticalSection | |
| 1192 | RtlInitializeCriticalSectionAndSpinCount | |
| 1193 | RtlInitializeCriticalSectionEx | |
| 1194 | RtlInitializeExtendedContext | |
| 1195 | RtlInitializeExtendedContext2 | |
| 1196 | RtlInitializeGenericTable | |
| 1197 | RtlInitializeGenericTableAvl | |
| 1198 | RtlInitializeHandleTable | |
| 1199 | RtlInitializeNtUserPfn | |
| 1200 | RtlInitializeRXact | |
| 1201 | RtlInitializeResource | |
| 1202 | RtlInitializeSListHead | |
| 1203 | RtlInitializeSRWLock | |
| 1204 | RtlInitializeSid | |
| 1205 | RtlInitializeSidEx | |
| 1206 | RtlInsertElementGenericTable | |
| 1207 | RtlInsertElementGenericTableAvl | |
| 1208 | RtlInsertElementGenericTableFull | |
| 1209 | RtlInsertElementGenericTableFullAvl | |
| 1210 | RtlInsertEntryHashTable | |
| 1211 | RtlInstallFunctionTableCallback | |
| 1212 | RtlInt64ToUnicodeString | |
| 1213 | RtlIntegerToChar | |
| 1214 | RtlIntegerToUnicodeString | |
| 1215 | RtlInterlockedClearBitRun | |
| 1216 | RtlInterlockedFlushSList | |
| 1217 | RtlInterlockedPopEntrySList | |
| 1218 | RtlInterlockedPushEntrySList | |
| 1219 | RtlInterlockedPushListSList | |
| 1220 | RtlInterlockedPushListSListEx | |
| 1221 | RtlInterlockedSetBitRun | |
| 1222 | RtlIoDecodeMemIoResource | |
| 1223 | RtlIoEncodeMemIoResource | |
| 1224 | RtlIpv4AddressToStringA | |
| 1225 | RtlIpv4AddressToStringExA | |
| 1226 | RtlIpv4AddressToStringExW | |
| 1227 | RtlIpv4AddressToStringW | |
| 1228 | RtlIpv4StringToAddressA | |
| 1229 | RtlIpv4StringToAddressExA | |
| 1230 | RtlIpv4StringToAddressExW | |
| 1231 | RtlIpv4StringToAddressW | |
| 1232 | RtlIpv6AddressToStringA | |
| 1233 | RtlIpv6AddressToStringExA | |
| 1234 | RtlIpv6AddressToStringExW | |
| 1235 | RtlIpv6AddressToStringW | |
| 1236 | RtlIpv6StringToAddressA | |
| 1237 | RtlIpv6StringToAddressExA | |
| 1238 | RtlIpv6StringToAddressExW | |
| 1239 | RtlIpv6StringToAddressW | |
| 1240 | RtlIsActivationContextActive | |
| 1241 | RtlIsCapabilitySid | |
| 1242 | RtlIsCloudFilesPlaceholder | |
| 1243 | RtlIsCriticalSectionLocked | |
| 1244 | RtlIsCriticalSectionLockedByThread | |
| 1245 | RtlIsCurrentProcess | |
| 1246 | RtlIsCurrentThread | |
| 1247 | RtlIsCurrentThreadAttachExempt | |
| 1248 | RtlIsDosDeviceName_U | |
| 1249 | RtlIsElevatedRid | |
| 1250 | RtlIsGenericTableEmpty | |
| 1251 | RtlIsGenericTableEmptyAvl | |
| 1252 | RtlIsMultiSessionSku | |
| 1253 | RtlIsMultiUsersInSessionSku | |
| 1254 | RtlIsNameInExpression | |
| 1255 | RtlIsNameInUnUpcasedExpression | |
| 1256 | RtlIsNameLegalDOS8Dot3 | |
| 1257 | RtlIsNonEmptyDirectoryReparsePointAllowed | |
| 1258 | RtlIsNormalizedString | |
| 1259 | RtlIsPackageSid | |
| 1260 | RtlIsParentOfChildAppContainer | |
| 1261 | RtlIsPartialPlaceholder | |
| 1262 | RtlIsPartialPlaceholderFileHandle | |
| 1263 | RtlIsPartialPlaceholderFileInfo | |
| 1264 | RtlIsProcessorFeaturePresent | |
| 1265 | RtlIsStateSeparationEnabled | |
| 1266 | RtlIsTextUnicode | |
| 1267 | RtlIsThreadWithinLoaderCallout | |
| 1268 | RtlIsUntrustedObject | |
| 1269 | RtlIsValidHandle | |
| 1270 | RtlIsValidIndexHandle | |
| 1271 | RtlIsValidLocaleName | |
| 1272 | RtlIsValidProcessTrustLabelSid | |
| 1273 | RtlIsZeroMemory | |
| 1274 | RtlKnownExceptionFilter | |
| 1275 | RtlLCIDToCultureName | |
| 1276 | RtlLargeIntegerToChar | |
| 1277 | RtlLcidToLocaleName | |
| 1278 | RtlLeaveCriticalSection | |
| 1279 | RtlLengthRequiredSid | |
| 1280 | RtlLengthSecurityDescriptor | |
| 1281 | RtlLengthSid | |
| 1282 | RtlLengthSidAsUnicodeString | |
| 1283 | RtlLoadString | |
| 1284 | RtlLocalTimeToSystemTime | |
| 1285 | RtlLocaleNameToLcid | |
| 1286 | RtlLocateExtendedFeature | |
| 1287 | RtlLocateExtendedFeature2 | |
| 1288 | RtlLocateLegacyContext | |
| 1289 | RtlLockBootStatusData | |
| 1290 | RtlLockCurrentThread | |
| 1291 | RtlLockHeap | |
| 1292 | RtlLockMemoryBlockLookaside | |
| 1293 | RtlLockMemoryStreamRegion | |
| 1294 | RtlLockMemoryZone | |
| 1295 | RtlLockModuleSection | |
| 1296 | RtlLogStackBackTrace | |
| 1297 | RtlLookupAtomInAtomTable | |
| 1298 | RtlLookupElementGenericTable | |
| 1299 | RtlLookupElementGenericTableAvl | |
| 1300 | RtlLookupElementGenericTableFull | |
| 1301 | RtlLookupElementGenericTableFullAvl | |
| 1302 | RtlLookupEntryHashTable | |
| 1303 | RtlLookupFirstMatchingElementGenericTableAvl | |
| 1304 | RtlLookupFunctionEntry | |
| 1305 | RtlLookupFunctionTable | |
| 1306 | RtlMakeSelfRelativeSD | |
| 1307 | RtlMapGenericMask | |
| 1308 | RtlMapSecurityErrorToNtStatus | |
| 1309 | RtlMoveMemory | |
| 1310 | RtlMultiAppendUnicodeStringBuffer | |
| 1311 | RtlMultiByteToUnicodeN | |
| 1312 | RtlMultiByteToUnicodeSize | |
| 1313 | RtlMultipleAllocateHeap | |
| 1314 | RtlMultipleFreeHeap | |
| 1315 | RtlNewInstanceSecurityObject | |
| 1316 | RtlNewSecurityGrantedAccess | |
| 1317 | RtlNewSecurityObject | |
| 1318 | RtlNewSecurityObjectEx | |
| 1319 | RtlNewSecurityObjectWithMultipleInheritance | |
| 1320 | RtlNormalizeProcessParams | |
| 1321 | RtlNormalizeSecurityDescriptor | |
| 1322 | RtlNormalizeString | |
| 1323 | RtlNtPathNameToDosPathName | |
| 1324 | RtlNtStatusToDosError | |
| 1325 | RtlNtStatusToDosErrorNoTeb | |
| 1326 | RtlNtdllName DATA | |
| 1327 | RtlNumberGenericTableElements | |
| 1328 | RtlNumberGenericTableElementsAvl | |
| 1329 | RtlNumberOfClearBits | |
| 1330 | RtlNumberOfClearBitsEx | |
| 1331 | RtlNumberOfClearBitsInRange | |
| 1332 | RtlNumberOfSetBits | |
| 1333 | RtlNumberOfSetBitsEx | |
| 1334 | RtlNumberOfSetBitsInRange | |
| 1335 | RtlNumberOfSetBitsUlongPtr | |
| 1336 | RtlOemStringToUnicodeSize | |
| 1337 | RtlOemStringToUnicodeString | |
| 1338 | RtlOemToUnicodeN | |
| 1339 | RtlOpenCurrentUser | |
| 1340 | RtlOsDeploymentState | |
| 1341 | RtlOwnerAcesPresent | |
| 1342 | RtlPcToFileHeader | |
| 1343 | RtlPinAtomInAtomTable | |
| 1344 | RtlPopFrame | |
| 1345 | RtlPrefixString | |
| 1346 | RtlPrefixUnicodeString | |
| 1347 | RtlPrepareForProcessCloning | |
| 1348 | RtlProcessFlsData | |
| 1349 | RtlProtectHeap | |
| 1350 | RtlPublishWnfStateData | |
| 1351 | RtlPushFrame | |
| 1352 | RtlQueryActivationContextApplicationSettings | |
| 1353 | RtlQueryAtomInAtomTable | |
| 1354 | RtlQueryCriticalSectionOwner | |
| 1355 | RtlQueryDepthSList | |
| 1356 | RtlQueryDynamicTimeZoneInformation | |
| 1357 | RtlQueryElevationFlags | |
| 1358 | RtlQueryEnvironmentVariable | |
| 1359 | RtlQueryEnvironmentVariable_U | |
| 1360 | RtlQueryHeapInformation | |
| 1361 | RtlQueryImageMitigationPolicy | |
| 1362 | RtlQueryInformationAcl | |
| 1363 | RtlQueryInformationActivationContext | |
| 1364 | RtlQueryInformationActiveActivationContext | |
| 1365 | RtlQueryInterfaceMemoryStream | |
| 1366 | RtlQueryModuleInformation | |
| 1367 | RtlQueryPackageClaims | |
| 1368 | RtlQueryPackageIdentity | |
| 1369 | RtlQueryPackageIdentityEx | |
| 1370 | RtlQueryPerformanceCounter | |
| 1371 | RtlQueryPerformanceFrequency | |
| 1372 | RtlQueryProcessBackTraceInformation | |
| 1373 | RtlQueryProcessDebugInformation | |
| 1374 | RtlQueryProcessHeapInformation | |
| 1375 | RtlQueryProcessLockInformation | |
| 1376 | RtlQueryProcessPlaceholderCompatibilityMode | |
| 1377 | RtlQueryProtectedPolicy | |
| 1378 | RtlQueryRegistryValueWithFallback | |
| 1379 | RtlQueryRegistryValues | |
| 1380 | RtlQueryRegistryValuesEx | |
| 1381 | RtlQueryResourcePolicy | |
| 1382 | RtlQuerySecurityObject | |
| 1383 | RtlQueryTagHeap | |
| 1384 | RtlQueryThreadPlaceholderCompatibilityMode | |
| 1385 | RtlQueryThreadProfiling | |
| 1386 | RtlQueryTimeZoneInformation | |
| 1387 | RtlQueryTokenHostIdAsUlong64 | |
| 1388 | RtlQueryUmsThreadInformation | |
| 1389 | RtlQueryUnbiasedInterruptTime | |
| 1390 | RtlQueryValidationRunlevel | |
| 1391 | RtlQueryWnfMetaNotification | |
| 1392 | RtlQueryWnfStateData | |
| 1393 | RtlQueryWnfStateDataWithExplicitScope | |
| 1394 | RtlQueueApcWow64Thread | |
| 1395 | RtlQueueWorkItem | |
| 1396 | RtlRaiseCustomSystemEventTrigger | |
| 1397 | RtlRaiseException | |
| 1398 | RtlRaiseStatus | |
| 1399 | RtlRandom | |
| 1400 | RtlRandomEx | |
| 1401 | RtlRbInsertNodeEx | |
| 1402 | RtlRbRemoveNode | |
| 1403 | RtlReAllocateHeap | |
| 1404 | RtlReadMemoryStream | |
| 1405 | RtlReadOutOfProcessMemoryStream | |
| 1406 | RtlReadThreadProfilingData | |
| 1407 | RtlRealPredecessor | |
| 1408 | RtlRealSuccessor | |
| 1409 | RtlRegisterForWnfMetaNotification | |
| 1410 | RtlRegisterSecureMemoryCacheCallback | |
| 1411 | RtlRegisterThreadWithCsrss | |
| 1412 | RtlRegisterWait | |
| 1413 | RtlReleaseActivationContext | |
| 1414 | RtlReleaseMemoryStream | |
| 1415 | RtlReleasePath | |
| 1416 | RtlReleasePebLock | |
| 1417 | RtlReleasePrivilege | |
| 1418 | RtlReleaseRelativeName | |
| 1419 | RtlReleaseResource | |
| 1420 | RtlReleaseSRWLockExclusive | |
| 1421 | RtlReleaseSRWLockShared | |
| 1422 | RtlRemoteCall | |
| 1423 | RtlRemoveEntryHashTable | |
| 1424 | RtlRemovePrivileges | |
| 1425 | RtlRemoveVectoredContinueHandler | |
| 1426 | RtlRemoveVectoredExceptionHandler | |
| 1427 | RtlReplaceSidInSd | |
| 1428 | RtlReplaceSystemDirectoryInPath | |
| 1429 | RtlReportException | |
| 1430 | RtlReportExceptionEx | |
| 1431 | RtlReportSilentProcessExit | |
| 1432 | RtlReportSqmEscalation | |
| 1433 | RtlResetMemoryBlockLookaside | |
| 1434 | RtlResetMemoryZone | |
| 1435 | RtlResetNtUserPfn | |
| 1436 | RtlResetRtlTranslations | |
| 1437 | RtlRestoreBootStatusDefaults | |
| 1438 | RtlRestoreContext | |
| 1439 | RtlRestoreLastWin32Error | |
| 1440 | RtlRestoreSystemBootStatusDefaults | |
| 1441 | RtlRestoreThreadPreferredUILanguages | |
| 1442 | RtlRetrieveNtUserPfn | |
| 1443 | RtlRevertMemoryStream | |
| 1444 | RtlRunDecodeUnicodeString | |
| 1445 | RtlRunEncodeUnicodeString | |
| 1446 | RtlRunOnceBeginInitialize | |
| 1447 | RtlRunOnceComplete | |
| 1448 | RtlRunOnceExecuteOnce | |
| 1449 | RtlRunOnceInitialize | |
| 1450 | RtlSecondsSince1970ToTime | |
| 1451 | RtlSecondsSince1980ToTime | |
| 1452 | RtlSeekMemoryStream | |
| 1453 | RtlSelfRelativeToAbsoluteSD | |
| 1454 | RtlSelfRelativeToAbsoluteSD2 | |
| 1455 | RtlSendMsgToSm | |
| 1456 | RtlSetAllBits | |
| 1457 | RtlSetAllBitsEx | |
| 1458 | RtlSetAttributesSecurityDescriptor | |
| 1459 | RtlSetBit | |
| 1460 | RtlSetBitEx | |
| 1461 | RtlSetBits | |
| 1462 | RtlSetBitsEx | |
| 1463 | RtlSetControlSecurityDescriptor | |
| 1464 | RtlSetCriticalSectionSpinCount | |
| 1465 | RtlSetCurrentDirectory_U | |
| 1466 | RtlSetCurrentEnvironment | |
| 1467 | RtlSetCurrentTransaction | |
| 1468 | RtlSetDaclSecurityDescriptor | |
| 1469 | RtlSetDynamicTimeZoneInformation | |
| 1470 | RtlSetEnvironmentStrings | |
| 1471 | RtlSetEnvironmentVar | |
| 1472 | RtlSetEnvironmentVariable | |
| 1473 | RtlSetExtendedFeaturesMask | |
| 1474 | RtlSetGroupSecurityDescriptor | |
| 1475 | RtlSetHeapInformation | |
| 1476 | RtlSetImageMitigationPolicy | |
| 1477 | RtlSetInformationAcl | |
| 1478 | RtlSetIoCompletionCallback | |
| 1479 | RtlSetLastWin32Error | |
| 1480 | RtlSetLastWin32ErrorAndNtStatusFromNtStatus | |
| 1481 | RtlSetMemoryStreamSize | |
| 1482 | RtlSetOwnerSecurityDescriptor | |
| 1483 | RtlSetPortableOperatingSystem | |
| 1484 | RtlSetProcessDebugInformation | |
| 1485 | RtlSetProcessIsCritical | |
| 1486 | RtlSetProcessPlaceholderCompatibilityMode | |
| 1487 | RtlSetProcessPreferredUILanguages | |
| 1488 | RtlSetProtectedPolicy | |
| 1489 | RtlSetProxiedProcessId | |
| 1490 | RtlSetSaclSecurityDescriptor | |
| 1491 | RtlSetSearchPathMode | |
| 1492 | RtlSetSecurityDescriptorRMControl | |
| 1493 | RtlSetSecurityObject | |
| 1494 | RtlSetSecurityObjectEx | |
| 1495 | RtlSetSystemBootStatus | |
| 1496 | RtlSetSystemBootStatusEx | |
| 1497 | RtlSetThreadErrorMode | |
| 1498 | RtlSetThreadIsCritical | |
| 1499 | RtlSetThreadPlaceholderCompatibilityMode | |
| 1500 | RtlSetThreadPoolStartFunc | |
| 1501 | RtlSetThreadPreferredUILanguages | |
| 1502 | RtlSetThreadPreferredUILanguages2 | |
| 1503 | RtlSetThreadSubProcessTag | |
| 1504 | RtlSetThreadWorkOnBehalfTicket | |
| 1505 | RtlSetTimeZoneInformation | |
| 1506 | RtlSetTimer | |
| 1507 | RtlSetUmsThreadInformation | |
| 1508 | RtlSetUnhandledExceptionFilter | |
| 1509 | RtlSetUnicodeCallouts | |
| 1510 | RtlSetUserFlagsHeap | |
| 1511 | RtlSetUserValueHeap | |
| 1512 | RtlSidDominates | |
| 1513 | RtlSidDominatesForTrust | |
| 1514 | RtlSidEqualLevel | |
| 1515 | RtlSidHashInitialize | |
| 1516 | RtlSidHashLookup | |
| 1517 | RtlSidIsHigherLevel | |
| 1518 | RtlSizeHeap | |
| 1519 | RtlSleepConditionVariableCS | |
| 1520 | RtlSleepConditionVariableSRW | |
| 1521 | RtlSplay | |
| 1522 | RtlStartRXact | |
| 1523 | RtlStatMemoryStream | |
| 1524 | RtlStringFromGUID | |
| 1525 | RtlStringFromGUIDEx | |
| 1526 | RtlStronglyEnumerateEntryHashTable | |
| 1527 | RtlSubAuthorityCountSid | |
| 1528 | RtlSubAuthoritySid | |
| 1529 | RtlSubscribeWnfStateChangeNotification | |
| 1530 | RtlSubtreePredecessor | |
| 1531 | RtlSubtreeSuccessor | |
| 1532 | RtlSwitchedVVI | |
| 1533 | RtlSystemTimeToLocalTime | |
| 1534 | RtlTestAndPublishWnfStateData | |
| 1535 | RtlTestBit | |
| 1536 | RtlTestBitEx | |
| 1537 | RtlTestProtectedAccess | |
| 1538 | RtlTimeFieldsToTime | |
| 1539 | RtlTimeToElapsedTimeFields | |
| 1540 | RtlTimeToSecondsSince1970 | |
| 1541 | RtlTimeToSecondsSince1980 | |
| 1542 | RtlTimeToTimeFields | |
| 1543 | RtlTraceDatabaseAdd | |
| 1544 | RtlTraceDatabaseCreate | |
| 1545 | RtlTraceDatabaseDestroy | |
| 1546 | RtlTraceDatabaseEnumerate | |
| 1547 | RtlTraceDatabaseFind | |
| 1548 | RtlTraceDatabaseLock | |
| 1549 | RtlTraceDatabaseUnlock | |
| 1550 | RtlTraceDatabaseValidate | |
| 1551 | RtlTryAcquirePebLock | |
| 1552 | RtlTryAcquireSRWLockExclusive | |
| 1553 | RtlTryAcquireSRWLockShared | |
| 1554 | RtlTryConvertSRWLockSharedToExclusiveOrRelease | |
| 1555 | RtlTryEnterCriticalSection | |
| 1556 | RtlUTF8StringToUnicodeString | |
| 1557 | RtlUTF8ToUnicodeN | |
| 1558 | RtlUdiv128 | |
| 1559 | RtlUmsThreadYield | |
| 1560 | RtlUnhandledExceptionFilter | |
| 1561 | RtlUnhandledExceptionFilter2 | |
| 1562 | RtlUnicodeStringToAnsiSize | |
| 1563 | RtlUnicodeStringToAnsiString | |
| 1564 | RtlUnicodeStringToCountedOemString | |
| 1565 | RtlUnicodeStringToInteger | |
| 1566 | RtlUnicodeStringToOemSize | |
| 1567 | RtlUnicodeStringToOemString | |
| 1568 | RtlUnicodeStringToUTF8String | |
| 1569 | RtlUnicodeToCustomCPN | |
| 1570 | RtlUnicodeToMultiByteN | |
| 1571 | RtlUnicodeToMultiByteSize | |
| 1572 | RtlUnicodeToOemN | |
| 1573 | RtlUnicodeToUTF8N | |
| 1574 | RtlUniform | |
| 1575 | RtlUnlockBootStatusData | |
| 1576 | RtlUnlockCurrentThread | |
| 1577 | RtlUnlockHeap | |
| 1578 | RtlUnlockMemoryBlockLookaside | |
| 1579 | RtlUnlockMemoryStreamRegion | |
| 1580 | RtlUnlockMemoryZone | |
| 1581 | RtlUnlockModuleSection | |
| 1582 | RtlUnsubscribeWnfNotificationWaitForCompletion | |
| 1583 | RtlUnsubscribeWnfNotificationWithCompletionCallback | |
| 1584 | RtlUnsubscribeWnfStateChangeNotification | |
| 1585 | RtlUnwind | |
| 1586 | RtlUnwindEx | |
| 1587 | RtlUpcaseUnicodeChar | |
| 1588 | RtlUpcaseUnicodeString | |
| 1589 | RtlUpcaseUnicodeStringToAnsiString | |
| 1590 | RtlUpcaseUnicodeStringToCountedOemString | |
| 1591 | RtlUpcaseUnicodeStringToOemString | |
| 1592 | RtlUpcaseUnicodeToCustomCPN | |
| 1593 | RtlUpcaseUnicodeToMultiByteN | |
| 1594 | RtlUpcaseUnicodeToOemN | |
| 1595 | RtlUpdateClonedCriticalSection | |
| 1596 | RtlUpdateClonedSRWLock | |
| 1597 | RtlUpdateTimer | |
| 1598 | RtlUpperChar | |
| 1599 | RtlUpperString | |
| 1600 | RtlUsageHeap | |
| 1601 | RtlUserFiberStart | |
| 1602 | RtlUserThreadStart | |
| 1603 | RtlValidAcl | |
| 1604 | RtlValidProcessProtection | |
| 1605 | RtlValidRelativeSecurityDescriptor | |
| 1606 | RtlValidSecurityDescriptor | |
| 1607 | RtlValidSid | |
| 1608 | RtlValidateCorrelationVector | |
| 1609 | RtlValidateHeap | |
| 1610 | RtlValidateProcessHeaps | |
| 1611 | RtlValidateUnicodeString | |
| 1612 | RtlVerifyVersionInfo | |
| 1613 | RtlVirtualUnwind | |
| 1614 | RtlWaitForWnfMetaNotification | |
| 1615 | RtlWaitOnAddress | |
| 1616 | RtlWakeAddressAll | |
| 1617 | RtlWakeAddressAllNoFence | |
| 1618 | RtlWakeAddressSingle | |
| 1619 | RtlWakeAddressSingleNoFence | |
| 1620 | RtlWakeAllConditionVariable | |
| 1621 | RtlWakeConditionVariable | |
| 1622 | RtlWalkFrameChain | |
| 1623 | RtlWalkHeap | |
| 1624 | RtlWeaklyEnumerateEntryHashTable | |
| 1625 | RtlWerpReportException | |
| 1626 | RtlWnfCompareChangeStamp | |
| 1627 | RtlWnfDllUnloadCallback | |
| 1628 | RtlWow64CallFunction64 | |
| 1629 | RtlWow64EnableFsRedirection | |
| 1630 | RtlWow64EnableFsRedirectionEx | |
| 1631 | RtlWow64GetCpuAreaInfo | |
| 1632 | RtlWow64GetCurrentCpuArea | |
| 1633 | RtlWow64GetCurrentMachine | |
| 1634 | RtlWow64GetEquivalentMachineCHPE | |
| 1635 | RtlWow64GetProcessMachines | |
| 1636 | RtlWow64GetSharedInfoProcess | |
| 1637 | RtlWow64GetThreadContext | |
| 1638 | RtlWow64GetThreadSelectorEntry | |
| 1639 | RtlWow64IsWowGuestMachineSupported | |
| 1640 | RtlWow64LogMessageInEventLogger | |
| 1641 | RtlWow64PopAllCrossProcessWorkFromWorkList | |
| 1642 | RtlWow64PopCrossProcessWorkFromFreeList | |
| 1643 | RtlWow64PushCrossProcessWorkOntoFreeList | |
| 1644 | RtlWow64PushCrossProcessWorkOntoWorkList | |
| 1645 | RtlWow64RequestCrossProcessHeavyFlush | |
| 1646 | RtlWow64SetThreadContext | |
| 1647 | RtlWow64SuspendProcess | |
| 1648 | RtlWow64SuspendThread | |
| 1649 | RtlWriteMemoryStream | |
| 1650 | RtlWriteNonVolatileMemory | |
| 1651 | RtlWriteRegistryValue | |
| 1652 | RtlZeroHeap | |
| 1653 | RtlZeroMemory | |
| 1654 | RtlZombifyActivationContext | |
| 1655 | RtlpApplyLengthFunction | |
| 1656 | RtlpCheckDynamicTimeZoneInformation | |
| 1657 | RtlpCleanupRegistryKeys | |
| 1658 | RtlpConvertAbsoluteToRelativeSecurityAttribute | |
| 1659 | RtlpConvertCultureNamesToLCIDs | |
| 1660 | RtlpConvertLCIDsToCultureNames | |
| 1661 | RtlpConvertRelativeToAbsoluteSecurityAttribute | |
| 1662 | RtlpCreateProcessRegistryInfo | |
| 1663 | RtlpEnsureBufferSize | |
| 1664 | RtlpExecuteUmsThread | |
| 1665 | RtlpFreezeTimeBias | |
| 1666 | RtlpGetDeviceFamilyInfoEnum | |
| 1667 | RtlpGetLCIDFromLangInfoNode | |
| 1668 | RtlpGetNameFromLangInfoNode | |
| 1669 | RtlpGetSystemDefaultUILanguage | |
| 1670 | RtlpGetUserOrMachineUILanguage4NLS | |
| 1671 | RtlpInitializeLangRegistryInfo | |
| 1672 | RtlpIsQualifiedLanguage | |
| 1673 | RtlpLoadMachineUIByPolicy | |
| 1674 | RtlpLoadUserUIByPolicy | |
| 1675 | RtlpMergeSecurityAttributeInformation | |
| 1676 | RtlpMuiFreeLangRegistryInfo | |
| 1677 | RtlpMuiRegCreateRegistryInfo | |
| 1678 | RtlpMuiRegFreeRegistryInfo | |
| 1679 | RtlpMuiRegLoadRegistryInfo | |
| 1680 | RtlpNotOwnerCriticalSection | |
| 1681 | RtlpNtCreateKey | |
| 1682 | RtlpNtEnumerateSubKey | |
| 1683 | RtlpNtMakeTemporaryKey | |
| 1684 | RtlpNtOpenKey | |
| 1685 | RtlpNtQueryValueKey | |
| 1686 | RtlpNtSetValueKey | |
| 1687 | RtlpQueryDefaultUILanguage | |
| 1688 | RtlpQueryProcessDebugInformationFromWow64 | |
| 1689 | RtlpQueryProcessDebugInformationRemote | |
| 1690 | RtlpRefreshCachedUILanguage | |
| 1691 | RtlpSetInstallLanguage | |
| 1692 | RtlpSetPreferredUILanguages | |
| 1693 | RtlpSetUserPreferredUILanguages | |
| 1694 | RtlpTimeFieldsToTime | |
| 1695 | RtlpTimeToTimeFields | |
| 1696 | RtlpUmsExecuteYieldThreadEnd | |
| 1697 | RtlpUmsThreadYield | |
| 1698 | RtlpUnWaitCriticalSection | |
| 1699 | RtlpVerifyAndCommitUILanguageSettings | |
| 1700 | RtlpWaitForCriticalSection | |
| 1701 | RtlpWow64CtxFromAmd64 | |
| 1702 | RtlpWow64GetContextOnAmd64 | |
| 1703 | RtlpWow64SetContextOnAmd64 | |
| 1704 | RtlxAnsiStringToUnicodeSize | |
| 1705 | RtlxOemStringToUnicodeSize | |
| 1706 | RtlxUnicodeStringToAnsiSize | |
| 1707 | RtlxUnicodeStringToOemSize | |
| 1708 | SbExecuteProcedure | |
| 1709 | SbSelectProcedure | |
| 1710 | ShipAssert | |
| 1711 | ShipAssertGetBufferInfo | |
| 1712 | ShipAssertMsgA | |
| 1713 | ShipAssertMsgW | |
| 1714 | TpAllocAlpcCompletion | |
| 1715 | TpAllocAlpcCompletionEx | |
| 1716 | TpAllocCleanupGroup | |
| 1717 | TpAllocIoCompletion | |
| 1718 | TpAllocJobNotification | |
| 1719 | TpAllocPool | |
| 1720 | TpAllocTimer | |
| 1721 | TpAllocWait | |
| 1722 | TpAllocWork | |
| 1723 | TpAlpcRegisterCompletionList | |
| 1724 | TpAlpcUnregisterCompletionList | |
| 1725 | TpCallbackDetectedUnrecoverableError | |
| 1726 | TpCallbackIndependent | |
| 1727 | TpCallbackLeaveCriticalSectionOnCompletion | |
| 1728 | TpCallbackMayRunLong | |
| 1729 | TpCallbackReleaseMutexOnCompletion | |
| 1730 | TpCallbackReleaseSemaphoreOnCompletion | |
| 1731 | TpCallbackSendAlpcMessageOnCompletion | |
| 1732 | TpCallbackSendPendingAlpcMessage | |
| 1733 | TpCallbackSetEventOnCompletion | |
| 1734 | TpCallbackUnloadDllOnCompletion | |
| 1735 | TpCancelAsyncIoOperation | |
| 1736 | TpCaptureCaller | |
| 1737 | TpCheckTerminateWorker | |
| 1738 | TpDbgDumpHeapUsage | |
| 1739 | TpDbgGetFreeInfo | |
| 1740 | TpDbgSetLogRoutine | |
| 1741 | TpDisablePoolCallbackChecks | |
| 1742 | TpDisassociateCallback | |
| 1743 | TpIsTimerSet | |
| 1744 | TpPoolFreeUnusedNodes | |
| 1745 | TpPostWork | |
| 1746 | TpQueryPoolStackInformation | |
| 1747 | TpReleaseAlpcCompletion | |
| 1748 | TpReleaseCleanupGroup | |
| 1749 | TpReleaseCleanupGroupMembers | |
| 1750 | TpReleaseIoCompletion | |
| 1751 | TpReleaseJobNotification | |
| 1752 | TpReleasePool | |
| 1753 | TpReleaseTimer | |
| 1754 | TpReleaseWait | |
| 1755 | TpReleaseWork | |
| 1756 | TpSetDefaultPoolMaxThreads | |
| 1757 | TpSetDefaultPoolStackInformation | |
| 1758 | TpSetPoolMaxThreads | |
| 1759 | TpSetPoolMaxThreadsSoftLimit | |
| 1760 | TpSetPoolMinThreads | |
| 1761 | TpSetPoolStackInformation | |
| 1762 | TpSetPoolThreadBasePriority | |
| 1763 | TpSetPoolThreadCpuSets | |
| 1764 | TpSetPoolWorkerThreadIdleTimeout | |
| 1765 | TpSetTimer | |
| 1766 | TpSetTimerEx | |
| 1767 | TpSetWait | |
| 1768 | TpSetWaitEx | |
| 1769 | TpSimpleTryPost | |
| 1770 | TpStartAsyncIoOperation | |
| 1771 | TpTimerOutstandingCallbackCount | |
| 1772 | TpTrimPools | |
| 1773 | TpWaitForAlpcCompletion | |
| 1774 | TpWaitForIoCompletion | |
| 1775 | TpWaitForJobNotification | |
| 1776 | TpWaitForTimer | |
| 1777 | TpWaitForWait | |
| 1778 | TpWaitForWork | |
| 1779 | VerSetConditionMask | |
| 1780 | WerReportExceptionWorker | |
| 1781 | WerReportSQMEvent | |
| 1782 | WinSqmAddToAverageDWORD | |
| 1783 | WinSqmAddToStream | |
| 1784 | WinSqmAddToStreamEx | |
| 1785 | WinSqmCheckEscalationAddToStreamEx | |
| 1786 | WinSqmCheckEscalationSetDWORD | |
| 1787 | WinSqmCheckEscalationSetDWORD64 | |
| 1788 | WinSqmCheckEscalationSetString | |
| 1789 | WinSqmCommonDatapointDelete | |
| 1790 | WinSqmCommonDatapointSetDWORD | |
| 1791 | WinSqmCommonDatapointSetDWORD64 | |
| 1792 | WinSqmCommonDatapointSetStreamEx | |
| 1793 | WinSqmCommonDatapointSetString | |
| 1794 | WinSqmEndSession | |
| 1795 | WinSqmEventEnabled | |
| 1796 | WinSqmEventWrite | |
| 1797 | WinSqmGetEscalationRuleStatus | |
| 1798 | WinSqmGetInstrumentationProperty | |
| 1799 | WinSqmIncrementDWORD | |
| 1800 | WinSqmIsOptedIn | |
| 1801 | WinSqmIsOptedInEx | |
| 1802 | WinSqmIsSessionDisabled | |
| 1803 | WinSqmSetDWORD | |
| 1804 | WinSqmSetDWORD64 | |
| 1805 | WinSqmSetEscalationInfo | |
| 1806 | WinSqmSetIfMaxDWORD | |
| 1807 | WinSqmSetIfMinDWORD | |
| 1808 | WinSqmSetString | |
| 1809 | WinSqmStartSession | |
| 1810 | WinSqmStartSessionForPartner | |
| 1811 | WinSqmStartSqmOptinListener | |
| 1812 | ZwAcceptConnectPort | |
| 1813 | ZwAccessCheck | |
| 1814 | ZwAccessCheckAndAuditAlarm | |
| 1815 | ZwAccessCheckByType | |
| 1816 | ZwAccessCheckByTypeAndAuditAlarm | |
| 1817 | ZwAccessCheckByTypeResultList | |
| 1818 | ZwAccessCheckByTypeResultListAndAuditAlarm | |
| 1819 | ZwAccessCheckByTypeResultListAndAuditAlarmByHandle | |
| 1820 | ZwAcquireProcessActivityReference | |
| 1821 | ZwAddAtom | |
| 1822 | ZwAddAtomEx | |
| 1823 | ZwAddBootEntry | |
| 1824 | ZwAddDriverEntry | |
| 1825 | ZwAdjustGroupsToken | |
| 1826 | ZwAdjustPrivilegesToken | |
| 1827 | ZwAdjustTokenClaimsAndDeviceGroups | |
| 1828 | ZwAlertResumeThread | |
| 1829 | ZwAlertThread | |
| 1830 | ZwAlertThreadByThreadId | |
| 1831 | ZwAllocateLocallyUniqueId | |
| 1832 | ZwAllocateReserveObject | |
| 1833 | ZwAllocateUserPhysicalPages | |
| 1834 | ZwAllocateUserPhysicalPagesEx | |
| 1835 | ZwAllocateUuids | |
| 1836 | ZwAllocateVirtualMemory | |
| 1837 | ZwAllocateVirtualMemoryEx | |
| 1838 | ZwAlpcAcceptConnectPort | |
| 1839 | ZwAlpcCancelMessage | |
| 1840 | ZwAlpcConnectPort | |
| 1841 | ZwAlpcConnectPortEx | |
| 1842 | ZwAlpcCreatePort | |
| 1843 | ZwAlpcCreatePortSection | |
| 1844 | ZwAlpcCreateResourceReserve | |
| 1845 | ZwAlpcCreateSectionView | |
| 1846 | ZwAlpcCreateSecurityContext | |
| 1847 | ZwAlpcDeletePortSection | |
| 1848 | ZwAlpcDeleteResourceReserve | |
| 1849 | ZwAlpcDeleteSectionView | |
| 1850 | ZwAlpcDeleteSecurityContext | |
| 1851 | ZwAlpcDisconnectPort | |
| 1852 | ZwAlpcImpersonateClientContainerOfPort | |
| 1853 | ZwAlpcImpersonateClientOfPort | |
| 1854 | ZwAlpcOpenSenderProcess | |
| 1855 | ZwAlpcOpenSenderThread | |
| 1856 | ZwAlpcQueryInformation | |
| 1857 | ZwAlpcQueryInformationMessage | |
| 1858 | ZwAlpcRevokeSecurityContext | |
| 1859 | ZwAlpcSendWaitReceivePort | |
| 1860 | ZwAlpcSetInformation | |
| 1861 | ZwApphelpCacheControl | |
| 1862 | ZwAreMappedFilesTheSame | |
| 1863 | ZwAssignProcessToJobObject | |
| 1864 | ZwAssociateWaitCompletionPacket | |
| 1865 | ZwCallEnclave | |
| 1866 | ZwCallbackReturn | |
| 1867 | ZwCancelDeviceWakeupRequest | |
| 1868 | ZwCancelIoFile | |
| 1869 | ZwCancelIoFileEx | |
| 1870 | ZwCancelSynchronousIoFile | |
| 1871 | ZwCancelTimer | |
| 1872 | ZwCancelTimer2 | |
| 1873 | ZwCancelWaitCompletionPacket | |
| 1874 | ZwClearEvent | |
| 1875 | ZwClose | |
| 1876 | ZwCloseObjectAuditAlarm | |
| 1877 | ZwCommitComplete | |
| 1878 | ZwCommitEnlistment | |
| 1879 | ZwCommitRegistryTransaction | |
| 1880 | ZwCommitTransaction | |
| 1881 | ZwCompactKeys | |
| 1882 | ZwCompareObjects | |
| 1883 | ZwCompareSigningLevels | |
| 1884 | ZwCompareTokens | |
| 1885 | ZwCompleteConnectPort | |
| 1886 | ZwCompressKey | |
| 1887 | ZwConnectPort | |
| 1888 | ZwContinue | |
| 1889 | ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter | |
| 1890 | ZwCreateCrossVmEvent | |
| 1891 | ZwCreateDebugObject | |
| 1892 | ZwCreateDirectoryObject | |
| 1893 | ZwCreateDirectoryObjectEx | |
| 1894 | ZwCreateEnclave | |
| 1895 | ZwCreateEnlistment | |
| 1896 | ZwCreateEvent | |
| 1897 | ZwCreateEventPair | |
| 1898 | ZwCreateFile | |
| 1899 | ZwCreateIRTimer | |
| 1900 | ZwCreateIoCompletion | |
| 1901 | ZwCreateJobObject | |
| 1902 | ZwCreateJobSet | |
| 1903 | ZwCreateKey | |
| 1904 | ZwCreateKeyTransacted | |
| 1905 | ZwCreateKeyedEvent | |
| 1906 | ZwCreateLowBoxToken | |
| 1907 | ZwCreateMailslotFile | |
| 1908 | ZwCreateMutant | |
| 1909 | ZwCreateNamedPipeFile | |
| 1910 | ZwCreatePagingFile | |
| 1911 | ZwCreatePartition | |
| 1912 | ZwCreatePort | |
| 1913 | ZwCreatePrivateNamespace | |
| 1914 | ZwCreateProcess | |
| 1915 | ZwCreateProcessEx | |
| 1916 | ZwCreateProfile | |
| 1917 | ZwCreateProfileEx | |
| 1918 | ZwCreateRegistryTransaction | |
| 1919 | ZwCreateResourceManager | |
| 1920 | ZwCreateSection | |
| 1921 | ZwCreateSectionEx | |
| 1922 | ZwCreateSemaphore | |
| 1923 | ZwCreateSymbolicLinkObject | |
| 1924 | ZwCreateThread | |
| 1925 | ZwCreateThreadEx | |
| 1926 | ZwCreateTimer | |
| 1927 | ZwCreateTimer2 | |
| 1928 | ZwCreateToken | |
| 1929 | ZwCreateTokenEx | |
| 1930 | ZwCreateTransaction | |
| 1931 | ZwCreateTransactionManager | |
| 1932 | ZwCreateUserProcess | |
| 1933 | ZwCreateWaitCompletionPacket | |
| 1934 | ZwCreateWaitablePort | |
| 1935 | ZwCreateWnfStateName | |
| 1936 | ZwCreateWorkerFactory | |
| 1937 | ZwDebugActiveProcess | |
| 1938 | ZwDebugContinue | |
| 1939 | ZwDelayExecution | |
| 1940 | ZwDeleteAtom | |
| 1941 | ZwDeleteBootEntry | |
| 1942 | ZwDeleteDriverEntry | |
| 1943 | ZwDeleteFile | |
| 1944 | ZwDeleteKey | |
| 1945 | ZwDeleteObjectAuditAlarm | |
| 1946 | ZwDeletePrivateNamespace | |
| 1947 | ZwDeleteValueKey | |
| 1948 | ZwDeleteWnfStateData | |
| 1949 | ZwDeleteWnfStateName | |
| 1950 | ZwDeviceIoControlFile | |
| 1951 | ZwDisableLastKnownGood | |
| 1952 | ZwDisplayString | |
| 1953 | ZwDrawText | |
| 1954 | ZwDuplicateObject | |
| 1955 | ZwDuplicateToken | |
| 1956 | ZwEnableLastKnownGood | |
| 1957 | ZwEnumerateBootEntries | |
| 1958 | ZwEnumerateDriverEntries | |
| 1959 | ZwEnumerateKey | |
| 1960 | ZwEnumerateSystemEnvironmentValuesEx | |
| 1961 | ZwEnumerateTransactionObject | |
| 1962 | ZwEnumerateValueKey | |
| 1963 | ZwExtendSection | |
| 1964 | ZwFilterBootOption | |
| 1965 | ZwFilterToken | |
| 1966 | ZwFilterTokenEx | |
| 1967 | ZwFindAtom | |
| 1968 | ZwFlushBuffersFile | |
| 1969 | ZwFlushBuffersFileEx | |
| 1970 | ZwFlushInstallUILanguage | |
| 1971 | ZwFlushInstructionCache | |
| 1972 | ZwFlushKey | |
| 1973 | ZwFlushProcessWriteBuffers | |
| 1974 | ZwFlushVirtualMemory | |
| 1975 | ZwFlushWriteBuffer | |
| 1976 | ZwFreeUserPhysicalPages | |
| 1977 | ZwFreeVirtualMemory | |
| 1978 | ZwFreezeRegistry | |
| 1979 | ZwFreezeTransactions | |
| 1980 | ZwFsControlFile | |
| 1981 | ZwGetCachedSigningLevel | |
| 1982 | ZwGetCompleteWnfStateSubscription | |
| 1983 | ZwGetContextThread | |
| 1984 | ZwGetCurrentProcessorNumber | |
| 1985 | ZwGetCurrentProcessorNumberEx | |
| 1986 | ZwGetDevicePowerState | |
| 1987 | ZwGetMUIRegistryInfo | |
| 1988 | ZwGetNextProcess | |
| 1989 | ZwGetNextThread | |
| 1990 | ZwGetNlsSectionPtr | |
| 1991 | ZwGetNotificationResourceManager | |
| 1992 | ZwGetPlugPlayEvent | |
| 1993 | ZwGetWriteWatch | |
| 1994 | ZwImpersonateAnonymousToken | |
| 1995 | ZwImpersonateClientOfPort | |
| 1996 | ZwImpersonateThread | |
| 1997 | ZwInitializeEnclave | |
| 1998 | ZwInitializeNlsFiles | |
| 1999 | ZwInitializeRegistry | |
| 2000 | ZwInitiatePowerAction | |
| 2001 | ZwIsProcessInJob | |
| 2002 | ZwIsSystemResumeAutomatic | |
| 2003 | ZwIsUILanguageComitted | |
| 2004 | ZwListenPort | |
| 2005 | ZwLoadDriver | |
| 2006 | ZwLoadEnclaveData | |
| 2007 | ZwLoadKey | |
| 2008 | ZwLoadKey2 | |
| 2009 | ZwLoadKeyEx | |
| 2010 | ZwLockFile | |
| 2011 | ZwLockProductActivationKeys | |
| 2012 | ZwLockRegistryKey | |
| 2013 | ZwLockVirtualMemory | |
| 2014 | ZwMakePermanentObject | |
| 2015 | ZwMakeTemporaryObject | |
| 2016 | ZwManageHotPatch | |
| 2017 | ZwManagePartition | |
| 2018 | ZwMapCMFModule | |
| 2019 | ZwMapUserPhysicalPages | |
| 2020 | ZwMapUserPhysicalPagesScatter | |
| 2021 | ZwMapViewOfSection | |
| 2022 | ZwMapViewOfSectionEx | |
| 2023 | ZwModifyBootEntry | |
| 2024 | ZwModifyDriverEntry | |
| 2025 | ZwNotifyChangeDirectoryFile | |
| 2026 | ZwNotifyChangeDirectoryFileEx | |
| 2027 | ZwNotifyChangeKey | |
| 2028 | ZwNotifyChangeMultipleKeys | |
| 2029 | ZwNotifyChangeSession | |
| 2030 | ZwOpenDirectoryObject | |
| 2031 | ZwOpenEnlistment | |
| 2032 | ZwOpenEvent | |
| 2033 | ZwOpenEventPair | |
| 2034 | ZwOpenFile | |
| 2035 | ZwOpenIoCompletion | |
| 2036 | ZwOpenJobObject | |
| 2037 | ZwOpenKey | |
| 2038 | ZwOpenKeyEx | |
| 2039 | ZwOpenKeyTransacted | |
| 2040 | ZwOpenKeyTransactedEx | |
| 2041 | ZwOpenKeyedEvent | |
| 2042 | ZwOpenMutant | |
| 2043 | ZwOpenObjectAuditAlarm | |
| 2044 | ZwOpenPartition | |
| 2045 | ZwOpenPrivateNamespace | |
| 2046 | ZwOpenProcess | |
| 2047 | ZwOpenProcessToken | |
| 2048 | ZwOpenProcessTokenEx | |
| 2049 | ZwOpenRegistryTransaction | |
| 2050 | ZwOpenResourceManager | |
| 2051 | ZwOpenSection | |
| 2052 | ZwOpenSemaphore | |
| 2053 | ZwOpenSession | |
| 2054 | ZwOpenSymbolicLinkObject | |
| 2055 | ZwOpenThread | |
| 2056 | ZwOpenThreadToken | |
| 2057 | ZwOpenThreadTokenEx | |
| 2058 | ZwOpenTimer | |
| 2059 | ZwOpenTransaction | |
| 2060 | ZwOpenTransactionManager | |
| 2061 | ZwPlugPlayControl | |
| 2062 | ZwPowerInformation | |
| 2063 | ZwPrePrepareComplete | |
| 2064 | ZwPrePrepareEnlistment | |
| 2065 | ZwPrepareComplete | |
| 2066 | ZwPrepareEnlistment | |
| 2067 | ZwPrivilegeCheck | |
| 2068 | ZwPrivilegeObjectAuditAlarm | |
| 2069 | ZwPrivilegedServiceAuditAlarm | |
| 2070 | ZwPropagationComplete | |
| 2071 | ZwPropagationFailed | |
| 2072 | ZwProtectVirtualMemory | |
| 2073 | ZwPssCaptureVaSpaceBulk | |
| 2074 | ZwPulseEvent | |
| 2075 | ZwQueryAttributesFile | |
| 2076 | ZwQueryAuxiliaryCounterFrequency | |
| 2077 | ZwQueryBootEntryOrder | |
| 2078 | ZwQueryBootOptions | |
| 2079 | ZwQueryDebugFilterState | |
| 2080 | ZwQueryDefaultLocale | |
| 2081 | ZwQueryDefaultUILanguage | |
| 2082 | ZwQueryDirectoryFile | |
| 2083 | ZwQueryDirectoryFileEx | |
| 2084 | ZwQueryDirectoryObject | |
| 2085 | ZwQueryDriverEntryOrder | |
| 2086 | ZwQueryEaFile | |
| 2087 | ZwQueryEvent | |
| 2088 | ZwQueryFullAttributesFile | |
| 2089 | ZwQueryInformationAtom | |
| 2090 | ZwQueryInformationByName | |
| 2091 | ZwQueryInformationEnlistment | |
| 2092 | ZwQueryInformationFile | |
| 2093 | ZwQueryInformationJobObject | |
| 2094 | ZwQueryInformationPort | |
| 2095 | ZwQueryInformationProcess | |
| 2096 | ZwQueryInformationResourceManager | |
| 2097 | ZwQueryInformationThread | |
| 2098 | ZwQueryInformationToken | |
| 2099 | ZwQueryInformationTransaction | |
| 2100 | ZwQueryInformationTransactionManager | |
| 2101 | ZwQueryInformationWorkerFactory | |
| 2102 | ZwQueryInstallUILanguage | |
| 2103 | ZwQueryIntervalProfile | |
| 2104 | ZwQueryIoCompletion | |
| 2105 | ZwQueryKey | |
| 2106 | ZwQueryLicenseValue | |
| 2107 | ZwQueryMultipleValueKey | |
| 2108 | ZwQueryMutant | |
| 2109 | ZwQueryObject | |
| 2110 | ZwQueryOpenSubKeys | |
| 2111 | ZwQueryOpenSubKeysEx | |
| 2112 | ZwQueryPerformanceCounter | |
| 2113 | ZwQueryPortInformationProcess | |
| 2114 | ZwQueryQuotaInformationFile | |
| 2115 | ZwQuerySection | |
| 2116 | ZwQuerySecurityAttributesToken | |
| 2117 | ZwQuerySecurityObject | |
| 2118 | ZwQuerySecurityPolicy | |
| 2119 | ZwQuerySemaphore | |
| 2120 | ZwQuerySymbolicLinkObject | |
| 2121 | ZwQuerySystemEnvironmentValue | |
| 2122 | ZwQuerySystemEnvironmentValueEx | |
| 2123 | ZwQuerySystemInformation | |
| 2124 | ZwQuerySystemInformationEx | |
| 2125 | ZwQuerySystemTime | |
| 2126 | ZwQueryTimer | |
| 2127 | ZwQueryTimerResolution | |
| 2128 | ZwQueryValueKey | |
| 2129 | ZwQueryVirtualMemory | |
| 2130 | ZwQueryVolumeInformationFile | |
| 2131 | ZwQueryWnfStateData | |
| 2132 | ZwQueryWnfStateNameInformation | |
| 2133 | ZwQueueApcThread | |
| 2134 | ZwQueueApcThreadEx | |
| 2135 | ZwRaiseException | |
| 2136 | ZwRaiseHardError | |
| 2137 | ZwReadFile | |
| 2138 | ZwReadFileScatter | |
| 2139 | ZwReadOnlyEnlistment | |
| 2140 | ZwReadRequestData | |
| 2141 | ZwReadVirtualMemory | |
| 2142 | ZwRecoverEnlistment | |
| 2143 | ZwRecoverResourceManager | |
| 2144 | ZwRecoverTransactionManager | |
| 2145 | ZwRegisterProtocolAddressInformation | |
| 2146 | ZwRegisterThreadTerminatePort | |
| 2147 | ZwReleaseKeyedEvent | |
| 2148 | ZwReleaseMutant | |
| 2149 | ZwReleaseSemaphore | |
| 2150 | ZwReleaseWorkerFactoryWorker | |
| 2151 | ZwRemoveIoCompletion | |
| 2152 | ZwRemoveIoCompletionEx | |
| 2153 | ZwRemoveProcessDebug | |
| 2154 | ZwRenameKey | |
| 2155 | ZwRenameTransactionManager | |
| 2156 | ZwReplaceKey | |
| 2157 | ZwReplacePartitionUnit | |
| 2158 | ZwReplyPort | |
| 2159 | ZwReplyWaitReceivePort | |
| 2160 | ZwReplyWaitReceivePortEx | |
| 2161 | ZwReplyWaitReplyPort | |
| 2162 | ZwRequestDeviceWakeup | |
| 2163 | ZwRequestPort | |
| 2164 | ZwRequestWaitReplyPort | |
| 2165 | ZwRequestWakeupLatency | |
| 2166 | ZwResetEvent | |
| 2167 | ZwResetWriteWatch | |
| 2168 | ZwRestoreKey | |
| 2169 | ZwResumeProcess | |
| 2170 | ZwResumeThread | |
| 2171 | ZwRevertContainerImpersonation | |
| 2172 | ZwRollbackComplete | |
| 2173 | ZwRollbackEnlistment | |
| 2174 | ZwRollbackRegistryTransaction | |
| 2175 | ZwRollbackTransaction | |
| 2176 | ZwRollforwardTransactionManager | |
| 2177 | ZwSaveKey | |
| 2178 | ZwSaveKeyEx | |
| 2179 | ZwSaveMergedKeys | |
| 2180 | ZwSecureConnectPort | |
| 2181 | ZwSerializeBoot | |
| 2182 | ZwSetBootEntryOrder | |
| 2183 | ZwSetBootOptions | |
| 2184 | ZwSetCachedSigningLevel | |
| 2185 | ZwSetCachedSigningLevel2 | |
| 2186 | ZwSetContextThread | |
| 2187 | ZwSetDebugFilterState | |
| 2188 | ZwSetDefaultHardErrorPort | |
| 2189 | ZwSetDefaultLocale | |
| 2190 | ZwSetDefaultUILanguage | |
| 2191 | ZwSetDriverEntryOrder | |
| 2192 | ZwSetEaFile | |
| 2193 | ZwSetEvent | |
| 2194 | ZwSetEventBoostPriority | |
| 2195 | ZwSetHighEventPair | |
| 2196 | ZwSetHighWaitLowEventPair | |
| 2197 | ZwSetIRTimer | |
| 2198 | ZwSetInformationDebugObject | |
| 2199 | ZwSetInformationEnlistment | |
| 2200 | ZwSetInformationFile | |
| 2201 | ZwSetInformationJobObject | |
| 2202 | ZwSetInformationKey | |
| 2203 | ZwSetInformationObject | |
| 2204 | ZwSetInformationProcess | |
| 2205 | ZwSetInformationResourceManager | |
| 2206 | ZwSetInformationSymbolicLink | |
| 2207 | ZwSetInformationThread | |
| 2208 | ZwSetInformationToken | |
| 2209 | ZwSetInformationTransaction | |
| 2210 | ZwSetInformationTransactionManager | |
| 2211 | ZwSetInformationVirtualMemory | |
| 2212 | ZwSetInformationWorkerFactory | |
| 2213 | ZwSetIntervalProfile | |
| 2214 | ZwSetIoCompletion | |
| 2215 | ZwSetIoCompletionEx | |
| 2216 | ZwSetLdtEntries | |
| 2217 | ZwSetLowEventPair | |
| 2218 | ZwSetLowWaitHighEventPair | |
| 2219 | ZwSetQuotaInformationFile | |
| 2220 | ZwSetSecurityObject | |
| 2221 | ZwSetSystemEnvironmentValue | |
| 2222 | ZwSetSystemEnvironmentValueEx | |
| 2223 | ZwSetSystemInformation | |
| 2224 | ZwSetSystemPowerState | |
| 2225 | ZwSetSystemTime | |
| 2226 | ZwSetThreadExecutionState | |
| 2227 | ZwSetTimer | |
| 2228 | ZwSetTimer2 | |
| 2229 | ZwSetTimerEx | |
| 2230 | ZwSetTimerResolution | |
| 2231 | ZwSetUuidSeed | |
| 2232 | ZwSetValueKey | |
| 2233 | ZwSetVolumeInformationFile | |
| 2234 | ZwSetWnfProcessNotificationEvent | |
| 2235 | ZwShutdownSystem | |
| 2236 | ZwShutdownWorkerFactory | |
| 2237 | ZwSignalAndWaitForSingleObject | |
| 2238 | ZwSinglePhaseReject | |
| 2239 | ZwStartProfile | |
| 2240 | ZwStopProfile | |
| 2241 | ZwSubscribeWnfStateChange | |
| 2242 | ZwSuspendProcess | |
| 2243 | ZwSuspendThread | |
| 2244 | ZwSystemDebugControl | |
| 2245 | ZwTerminateEnclave | |
| 2246 | ZwTerminateJobObject | |
| 2247 | ZwTerminateProcess | |
| 2248 | ZwTerminateThread | |
| 2249 | ZwTestAlert | |
| 2250 | ZwThawRegistry | |
| 2251 | ZwThawTransactions | |
| 2252 | ZwTraceControl | |
| 2253 | ZwTraceEvent | |
| 2254 | ZwTranslateFilePath | |
| 2255 | ZwUmsThreadYield | |
| 2256 | ZwUnloadDriver | |
| 2257 | ZwUnloadKey | |
| 2258 | ZwUnloadKey2 | |
| 2259 | ZwUnloadKeyEx | |
| 2260 | ZwUnlockFile | |
| 2261 | ZwUnlockVirtualMemory | |
| 2262 | ZwUnmapViewOfSection | |
| 2263 | ZwUnmapViewOfSectionEx | |
| 2264 | ZwUnsubscribeWnfStateChange | |
| 2265 | ZwUpdateWnfStateData | |
| 2266 | ZwVdmControl | |
| 2267 | ZwWaitForAlertByThreadId | |
| 2268 | ZwWaitForDebugEvent | |
| 2269 | ZwWaitForKeyedEvent | |
| 2270 | ZwWaitForMultipleObjects | |
| 2271 | ZwWaitForMultipleObjects32 | |
| 2272 | ZwWaitForSingleObject | |
| 2273 | ZwWaitForWorkViaWorkerFactory | |
| 2274 | ZwWaitHighEventPair | |
| 2275 | ZwWaitLowEventPair | |
| 2276 | ZwWorkerFactoryWorkerReady | |
| 2277 | ZwWriteFile | |
| 2278 | ZwWriteFileGather | |
| 2279 | ZwWriteRequestData | |
| 2280 | ZwWriteVirtualMemory | |
| 2281 | ZwYieldExecution |
lib/libc/mingw/lib64/setupapi.def deleted-687| ... | ... | @@ -1,687 +0,0 @@ |
| 1 | ; | |
| 2 | ; Definition file of SETUPAPI.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008 | |
| 5 | ; | |
| 6 | LIBRARY "SETUPAPI.dll" | |
| 7 | EXPORTS | |
| 8 | CMP_GetBlockedDriverInfo | |
| 9 | CMP_GetServerSideDeviceInstallFlags | |
| 10 | CMP_Init_Detection | |
| 11 | CMP_RegisterNotification | |
| 12 | CMP_Report_LogOn | |
| 13 | CMP_UnregisterNotification | |
| 14 | CMP_WaitNoPendingInstallEvents | |
| 15 | CMP_WaitServicesAvailable | |
| 16 | CM_Add_Driver_PackageW | |
| 17 | CM_Add_Empty_Log_Conf | |
| 18 | CM_Add_Empty_Log_Conf_Ex | |
| 19 | CM_Add_IDA | |
| 20 | CM_Add_IDW | |
| 21 | CM_Add_ID_ExA | |
| 22 | CM_Add_ID_ExW | |
| 23 | CM_Add_Range | |
| 24 | CM_Add_Res_Des | |
| 25 | CM_Add_Res_Des_Ex | |
| 26 | CM_Apply_PowerScheme | |
| 27 | CM_Connect_MachineA | |
| 28 | CM_Connect_MachineW | |
| 29 | CM_Create_DevNodeA | |
| 30 | CM_Create_DevNodeW | |
| 31 | CM_Create_DevNode_ExA | |
| 32 | CM_Create_DevNode_ExW | |
| 33 | CM_Create_Range_List | |
| 34 | CM_Delete_Class_Key | |
| 35 | CM_Delete_Class_Key_Ex | |
| 36 | CM_Delete_DevNode_Key | |
| 37 | CM_Delete_DevNode_Key_Ex | |
| 38 | CM_Delete_Device_Interface_KeyA | |
| 39 | CM_Delete_Device_Interface_KeyW | |
| 40 | CM_Delete_Device_Interface_Key_ExA | |
| 41 | CM_Delete_Device_Interface_Key_ExW | |
| 42 | CM_Delete_Driver_PackageW | |
| 43 | CM_Delete_PowerScheme | |
| 44 | CM_Delete_Range | |
| 45 | CM_Detect_Resource_Conflict | |
| 46 | CM_Detect_Resource_Conflict_Ex | |
| 47 | CM_Disable_DevNode | |
| 48 | CM_Disable_DevNode_Ex | |
| 49 | CM_Disconnect_Machine | |
| 50 | CM_Dup_Range_List | |
| 51 | CM_Duplicate_PowerScheme | |
| 52 | CM_Enable_DevNode | |
| 53 | CM_Enable_DevNode_Ex | |
| 54 | CM_Enumerate_Classes | |
| 55 | CM_Enumerate_Classes_Ex | |
| 56 | CM_Enumerate_EnumeratorsA | |
| 57 | CM_Enumerate_EnumeratorsW | |
| 58 | CM_Enumerate_Enumerators_ExA | |
| 59 | CM_Enumerate_Enumerators_ExW | |
| 60 | CM_Find_Range | |
| 61 | CM_First_Range | |
| 62 | CM_Free_Log_Conf | |
| 63 | CM_Free_Log_Conf_Ex | |
| 64 | CM_Free_Log_Conf_Handle | |
| 65 | CM_Free_Range_List | |
| 66 | CM_Free_Res_Des | |
| 67 | CM_Free_Res_Des_Ex | |
| 68 | CM_Free_Res_Des_Handle | |
| 69 | CM_Free_Resource_Conflict_Handle | |
| 70 | CM_Get_Child | |
| 71 | CM_Get_Child_Ex | |
| 72 | CM_Get_Class_Key_NameA | |
| 73 | CM_Get_Class_Key_NameW | |
| 74 | CM_Get_Class_Key_Name_ExA | |
| 75 | CM_Get_Class_Key_Name_ExW | |
| 76 | CM_Get_Class_NameA | |
| 77 | CM_Get_Class_NameW | |
| 78 | CM_Get_Class_Name_ExA | |
| 79 | CM_Get_Class_Name_ExW | |
| 80 | CM_Get_Class_Registry_PropertyA | |
| 81 | CM_Get_Class_Registry_PropertyW | |
| 82 | CM_Get_Depth | |
| 83 | CM_Get_Depth_Ex | |
| 84 | CM_Get_DevNode_Custom_PropertyA | |
| 85 | CM_Get_DevNode_Custom_PropertyW | |
| 86 | CM_Get_DevNode_Custom_Property_ExA | |
| 87 | CM_Get_DevNode_Custom_Property_ExW | |
| 88 | CM_Get_DevNode_Registry_PropertyA | |
| 89 | CM_Get_DevNode_Registry_PropertyW | |
| 90 | CM_Get_DevNode_Registry_Property_ExA | |
| 91 | CM_Get_DevNode_Registry_Property_ExW | |
| 92 | CM_Get_DevNode_Status | |
| 93 | CM_Get_DevNode_Status_Ex | |
| 94 | CM_Get_Device_IDA | |
| 95 | CM_Get_Device_IDW | |
| 96 | CM_Get_Device_ID_ExA | |
| 97 | CM_Get_Device_ID_ExW | |
| 98 | CM_Get_Device_ID_ListA | |
| 99 | CM_Get_Device_ID_ListW | |
| 100 | CM_Get_Device_ID_List_ExA | |
| 101 | CM_Get_Device_ID_List_ExW | |
| 102 | CM_Get_Device_ID_List_SizeA | |
| 103 | CM_Get_Device_ID_List_SizeW | |
| 104 | CM_Get_Device_ID_List_Size_ExA | |
| 105 | CM_Get_Device_ID_List_Size_ExW | |
| 106 | CM_Get_Device_ID_Size | |
| 107 | CM_Get_Device_ID_Size_Ex | |
| 108 | CM_Get_Device_Interface_AliasA | |
| 109 | CM_Get_Device_Interface_AliasW | |
| 110 | CM_Get_Device_Interface_Alias_ExA | |
| 111 | CM_Get_Device_Interface_Alias_ExW | |
| 112 | CM_Get_Device_Interface_ListA | |
| 113 | CM_Get_Device_Interface_ListW | |
| 114 | CM_Get_Device_Interface_List_ExA | |
| 115 | CM_Get_Device_Interface_List_ExW | |
| 116 | CM_Get_Device_Interface_List_SizeA | |
| 117 | CM_Get_Device_Interface_List_SizeW | |
| 118 | CM_Get_Device_Interface_List_Size_ExA | |
| 119 | CM_Get_Device_Interface_List_Size_ExW | |
| 120 | CM_Get_First_Log_Conf | |
| 121 | CM_Get_First_Log_Conf_Ex | |
| 122 | CM_Get_Global_State | |
| 123 | CM_Get_Global_State_Ex | |
| 124 | CM_Get_HW_Prof_FlagsA | |
| 125 | CM_Get_HW_Prof_FlagsW | |
| 126 | CM_Get_HW_Prof_Flags_ExA | |
| 127 | CM_Get_HW_Prof_Flags_ExW | |
| 128 | CM_Get_Hardware_Profile_InfoA | |
| 129 | CM_Get_Hardware_Profile_InfoW | |
| 130 | CM_Get_Hardware_Profile_Info_ExA | |
| 131 | CM_Get_Hardware_Profile_Info_ExW | |
| 132 | CM_Get_Log_Conf_Priority | |
| 133 | CM_Get_Log_Conf_Priority_Ex | |
| 134 | CM_Get_Next_Log_Conf | |
| 135 | CM_Get_Next_Log_Conf_Ex | |
| 136 | CM_Get_Next_Res_Des | |
| 137 | CM_Get_Next_Res_Des_Ex | |
| 138 | CM_Get_Parent | |
| 139 | CM_Get_Parent_Ex | |
| 140 | CM_Get_Res_Des_Data | |
| 141 | CM_Get_Res_Des_Data_Ex | |
| 142 | CM_Get_Res_Des_Data_Size | |
| 143 | CM_Get_Res_Des_Data_Size_Ex | |
| 144 | CM_Get_Resource_Conflict_Count | |
| 145 | CM_Get_Resource_Conflict_DetailsA | |
| 146 | CM_Get_Resource_Conflict_DetailsW | |
| 147 | CM_Get_Sibling | |
| 148 | CM_Get_Sibling_Ex | |
| 149 | CM_Get_Version | |
| 150 | CM_Get_Version_Ex | |
| 151 | CM_Import_PowerScheme | |
| 152 | CM_Install_DevNodeW | |
| 153 | CM_Install_DevNode_ExW | |
| 154 | CM_Intersect_Range_List | |
| 155 | CM_Invert_Range_List | |
| 156 | CM_Is_Dock_Station_Present | |
| 157 | CM_Is_Dock_Station_Present_Ex | |
| 158 | CM_Is_Version_Available | |
| 159 | CM_Is_Version_Available_Ex | |
| 160 | CM_Locate_DevNodeA | |
| 161 | CM_Locate_DevNodeW | |
| 162 | CM_Locate_DevNode_ExA | |
| 163 | CM_Locate_DevNode_ExW | |
| 164 | CM_Merge_Range_List | |
| 165 | CM_Modify_Res_Des | |
| 166 | CM_Modify_Res_Des_Ex | |
| 167 | CM_Move_DevNode | |
| 168 | CM_Move_DevNode_Ex | |
| 169 | CM_Next_Range | |
| 170 | CM_Open_Class_KeyA | |
| 171 | CM_Open_Class_KeyW | |
| 172 | CM_Open_Class_Key_ExA | |
| 173 | CM_Open_Class_Key_ExW | |
| 174 | CM_Open_DevNode_Key | |
| 175 | CM_Open_DevNode_Key_Ex | |
| 176 | CM_Open_Device_Interface_KeyA | |
| 177 | CM_Open_Device_Interface_KeyW | |
| 178 | CM_Open_Device_Interface_Key_ExA | |
| 179 | CM_Open_Device_Interface_Key_ExW | |
| 180 | CM_Query_And_Remove_SubTreeA | |
| 181 | CM_Query_And_Remove_SubTreeW | |
| 182 | CM_Query_And_Remove_SubTree_ExA | |
| 183 | CM_Query_And_Remove_SubTree_ExW | |
| 184 | CM_Query_Arbitrator_Free_Data | |
| 185 | CM_Query_Arbitrator_Free_Data_Ex | |
| 186 | CM_Query_Arbitrator_Free_Size | |
| 187 | CM_Query_Arbitrator_Free_Size_Ex | |
| 188 | CM_Query_Remove_SubTree | |
| 189 | CM_Query_Remove_SubTree_Ex | |
| 190 | CM_Query_Resource_Conflict_List | |
| 191 | CM_Reenumerate_DevNode | |
| 192 | CM_Reenumerate_DevNode_Ex | |
| 193 | CM_Register_Device_Driver | |
| 194 | CM_Register_Device_Driver_Ex | |
| 195 | CM_Register_Device_InterfaceA | |
| 196 | CM_Register_Device_InterfaceW | |
| 197 | CM_Register_Device_Interface_ExA | |
| 198 | CM_Register_Device_Interface_ExW | |
| 199 | CM_Remove_SubTree | |
| 200 | CM_Remove_SubTree_Ex | |
| 201 | CM_Request_Device_EjectA | |
| 202 | CM_Request_Device_EjectW | |
| 203 | CM_Request_Device_Eject_ExA | |
| 204 | CM_Request_Device_Eject_ExW | |
| 205 | CM_Request_Eject_PC | |
| 206 | CM_Request_Eject_PC_Ex | |
| 207 | CM_RestoreAll_DefaultPowerSchemes | |
| 208 | CM_Restore_DefaultPowerScheme | |
| 209 | CM_Run_Detection | |
| 210 | CM_Run_Detection_Ex | |
| 211 | CM_Set_ActiveScheme | |
| 212 | CM_Set_Class_Registry_PropertyA | |
| 213 | CM_Set_Class_Registry_PropertyW | |
| 214 | CM_Set_DevNode_Problem | |
| 215 | CM_Set_DevNode_Problem_Ex | |
| 216 | CM_Set_DevNode_Registry_PropertyA | |
| 217 | CM_Set_DevNode_Registry_PropertyW | |
| 218 | CM_Set_DevNode_Registry_Property_ExA | |
| 219 | CM_Set_DevNode_Registry_Property_ExW | |
| 220 | CM_Set_HW_Prof | |
| 221 | CM_Set_HW_Prof_Ex | |
| 222 | CM_Set_HW_Prof_FlagsA | |
| 223 | CM_Set_HW_Prof_FlagsW | |
| 224 | CM_Set_HW_Prof_Flags_ExA | |
| 225 | CM_Set_HW_Prof_Flags_ExW | |
| 226 | CM_Setup_DevNode | |
| 227 | CM_Setup_DevNode_Ex | |
| 228 | CM_Test_Range_Available | |
| 229 | CM_Uninstall_DevNode | |
| 230 | CM_Uninstall_DevNode_Ex | |
| 231 | CM_Unregister_Device_InterfaceA | |
| 232 | CM_Unregister_Device_InterfaceW | |
| 233 | CM_Unregister_Device_Interface_ExA | |
| 234 | CM_Unregister_Device_Interface_ExW | |
| 235 | CM_Write_UserPowerKey | |
| 236 | DoesUserHavePrivilege | |
| 237 | DriverStoreAddDriverPackageA | |
| 238 | DriverStoreAddDriverPackageW | |
| 239 | DriverStoreDeleteDriverPackageA | |
| 240 | DriverStoreDeleteDriverPackageW | |
| 241 | DriverStoreEnumDriverPackageA | |
| 242 | DriverStoreEnumDriverPackageW | |
| 243 | DriverStoreFindDriverPackageA | |
| 244 | DriverStoreFindDriverPackageW | |
| 245 | ExtensionPropSheetPageProc | |
| 246 | InstallCatalog | |
| 247 | InstallHinfSection | |
| 248 | InstallHinfSectionA | |
| 249 | InstallHinfSectionW | |
| 250 | IsUserAdmin | |
| 251 | MyFree | |
| 252 | MyMalloc | |
| 253 | MyRealloc | |
| 254 | PnpEnumDrpFile | |
| 255 | PnpIsFileAclIntact | |
| 256 | PnpIsFileContentIntact | |
| 257 | PnpIsFilePnpDriver | |
| 258 | PnpRepairWindowsProtectedDriver | |
| 259 | SetupAddInstallSectionToDiskSpaceListA | |
| 260 | SetupAddInstallSectionToDiskSpaceListW | |
| 261 | SetupAddSectionToDiskSpaceListA | |
| 262 | SetupAddSectionToDiskSpaceListW | |
| 263 | SetupAddToDiskSpaceListA | |
| 264 | SetupAddToDiskSpaceListW | |
| 265 | SetupAddToSourceListA | |
| 266 | SetupAddToSourceListW | |
| 267 | SetupAdjustDiskSpaceListA | |
| 268 | SetupAdjustDiskSpaceListW | |
| 269 | SetupBackupErrorA | |
| 270 | SetupBackupErrorW | |
| 271 | SetupCancelTemporarySourceList | |
| 272 | SetupCloseFileQueue | |
| 273 | SetupCloseInfFile | |
| 274 | SetupCloseLog | |
| 275 | SetupCommitFileQueue | |
| 276 | SetupCommitFileQueueA | |
| 277 | SetupCommitFileQueueW | |
| 278 | SetupConfigureWmiFromInfSectionA | |
| 279 | SetupConfigureWmiFromInfSectionW | |
| 280 | SetupCopyErrorA | |
| 281 | SetupCopyErrorW | |
| 282 | SetupCopyOEMInfA | |
| 283 | SetupCopyOEMInfW | |
| 284 | SetupCreateDiskSpaceListA | |
| 285 | SetupCreateDiskSpaceListW | |
| 286 | SetupDecompressOrCopyFileA | |
| 287 | SetupDecompressOrCopyFileW | |
| 288 | SetupDefaultQueueCallback | |
| 289 | SetupDefaultQueueCallbackA | |
| 290 | SetupDefaultQueueCallbackW | |
| 291 | SetupDeleteErrorA | |
| 292 | SetupDeleteErrorW | |
| 293 | SetupDestroyDiskSpaceList | |
| 294 | SetupDiApplyPowerScheme | |
| 295 | SetupDiAskForOEMDisk | |
| 296 | SetupDiBuildClassInfoList | |
| 297 | SetupDiBuildClassInfoListExA | |
| 298 | SetupDiBuildClassInfoListExW | |
| 299 | SetupDiBuildDriverInfoList | |
| 300 | SetupDiCallClassInstaller | |
| 301 | SetupDiCancelDriverInfoSearch | |
| 302 | SetupDiChangeState | |
| 303 | SetupDiClassGuidsFromNameA | |
| 304 | SetupDiClassGuidsFromNameExA | |
| 305 | SetupDiClassGuidsFromNameExW | |
| 306 | SetupDiClassGuidsFromNameW | |
| 307 | SetupDiClassNameFromGuidA | |
| 308 | SetupDiClassNameFromGuidExA | |
| 309 | SetupDiClassNameFromGuidExW | |
| 310 | SetupDiClassNameFromGuidW | |
| 311 | SetupDiCreateDevRegKeyA | |
| 312 | SetupDiCreateDevRegKeyW | |
| 313 | SetupDiCreateDeviceInfoA | |
| 314 | SetupDiCreateDeviceInfoList | |
| 315 | SetupDiCreateDeviceInfoListExA | |
| 316 | SetupDiCreateDeviceInfoListExW | |
| 317 | SetupDiCreateDeviceInfoW | |
| 318 | SetupDiCreateDeviceInterfaceA | |
| 319 | SetupDiCreateDeviceInterfaceRegKeyA | |
| 320 | SetupDiCreateDeviceInterfaceRegKeyW | |
| 321 | SetupDiCreateDeviceInterfaceW | |
| 322 | SetupDiDeleteDevRegKey | |
| 323 | SetupDiDeleteDeviceInfo | |
| 324 | SetupDiDeleteDeviceInterfaceData | |
| 325 | SetupDiDeleteDeviceInterfaceRegKey | |
| 326 | SetupDiDestroyClassImageList | |
| 327 | SetupDiDestroyDeviceInfoList | |
| 328 | SetupDiDestroyDriverInfoList | |
| 329 | SetupDiDrawMiniIcon | |
| 330 | SetupDiEnumDeviceInfo | |
| 331 | SetupDiEnumDeviceInterfaces | |
| 332 | SetupDiEnumDriverInfoA | |
| 333 | SetupDiEnumDriverInfoW | |
| 334 | SetupDiGetActualModelsSectionA | |
| 335 | SetupDiGetActualModelsSectionW | |
| 336 | SetupDiGetActualSectionToInstallA | |
| 337 | SetupDiGetActualSectionToInstallExA | |
| 338 | SetupDiGetActualSectionToInstallExW | |
| 339 | SetupDiGetActualSectionToInstallW | |
| 340 | SetupDiGetClassBitmapIndex | |
| 341 | SetupDiGetClassDescriptionA | |
| 342 | SetupDiGetClassDescriptionExA | |
| 343 | SetupDiGetClassDescriptionExW | |
| 344 | SetupDiGetClassDescriptionW | |
| 345 | SetupDiGetClassDevPropertySheetsA | |
| 346 | SetupDiGetClassDevPropertySheetsW | |
| 347 | SetupDiGetClassDevsA | |
| 348 | SetupDiGetClassDevsExA | |
| 349 | SetupDiGetClassDevsExW | |
| 350 | SetupDiGetClassDevsW | |
| 351 | SetupDiGetClassImageIndex | |
| 352 | SetupDiGetClassImageList | |
| 353 | SetupDiGetClassImageListExA | |
| 354 | SetupDiGetClassImageListExW | |
| 355 | SetupDiGetClassInstallParamsA | |
| 356 | SetupDiGetClassInstallParamsW | |
| 357 | SetupDiGetClassPropertyExW | |
| 358 | SetupDiGetClassPropertyKeys | |
| 359 | SetupDiGetClassPropertyKeysExW | |
| 360 | SetupDiGetClassPropertyW | |
| 361 | SetupDiGetClassRegistryPropertyA | |
| 362 | SetupDiGetClassRegistryPropertyW | |
| 363 | SetupDiGetCustomDevicePropertyA | |
| 364 | SetupDiGetCustomDevicePropertyW | |
| 365 | SetupDiGetDeviceInfoListClass | |
| 366 | SetupDiGetDeviceInfoListDetailA | |
| 367 | SetupDiGetDeviceInfoListDetailW | |
| 368 | SetupDiGetDeviceInstallParamsA | |
| 369 | SetupDiGetDeviceInstallParamsW | |
| 370 | SetupDiGetDeviceInstanceIdA | |
| 371 | SetupDiGetDeviceInstanceIdW | |
| 372 | SetupDiGetDeviceInterfaceAlias | |
| 373 | SetupDiGetDeviceInterfaceDetailA | |
| 374 | SetupDiGetDeviceInterfaceDetailW | |
| 375 | SetupDiGetDeviceInterfacePropertyKeys | |
| 376 | SetupDiGetDeviceInterfacePropertyW | |
| 377 | SetupDiGetDevicePropertyKeys | |
| 378 | SetupDiGetDevicePropertyW | |
| 379 | SetupDiGetDeviceRegistryPropertyA | |
| 380 | SetupDiGetDeviceRegistryPropertyW | |
| 381 | SetupDiGetDriverInfoDetailA | |
| 382 | SetupDiGetDriverInfoDetailW | |
| 383 | SetupDiGetDriverInstallParamsA | |
| 384 | SetupDiGetDriverInstallParamsW | |
| 385 | SetupDiGetHwProfileFriendlyNameA | |
| 386 | SetupDiGetHwProfileFriendlyNameExA | |
| 387 | SetupDiGetHwProfileFriendlyNameExW | |
| 388 | SetupDiGetHwProfileFriendlyNameW | |
| 389 | SetupDiGetHwProfileList | |
| 390 | SetupDiGetHwProfileListExA | |
| 391 | SetupDiGetHwProfileListExW | |
| 392 | SetupDiGetINFClassA | |
| 393 | SetupDiGetINFClassW | |
| 394 | SetupDiGetSelectedDevice | |
| 395 | SetupDiGetSelectedDriverA | |
| 396 | SetupDiGetSelectedDriverW | |
| 397 | SetupDiGetWizardPage | |
| 398 | SetupDiInstallClassA | |
| 399 | SetupDiInstallClassExA | |
| 400 | SetupDiInstallClassExW | |
| 401 | SetupDiInstallClassW | |
| 402 | SetupDiInstallDevice | |
| 403 | SetupDiInstallDeviceInterfaces | |
| 404 | SetupDiInstallDriverFiles | |
| 405 | SetupDiLoadClassIcon | |
| 406 | SetupDiLoadDeviceIcon | |
| 407 | SetupDiMoveDuplicateDevice | |
| 408 | SetupDiOpenClassRegKey | |
| 409 | SetupDiOpenClassRegKeyExA | |
| 410 | SetupDiOpenClassRegKeyExW | |
| 411 | SetupDiOpenDevRegKey | |
| 412 | SetupDiOpenDeviceInfoA | |
| 413 | SetupDiOpenDeviceInfoW | |
| 414 | SetupDiOpenDeviceInterfaceA | |
| 415 | SetupDiOpenDeviceInterfaceRegKey | |
| 416 | SetupDiOpenDeviceInterfaceW | |
| 417 | SetupDiRegisterCoDeviceInstallers | |
| 418 | SetupDiRegisterDeviceInfo | |
| 419 | SetupDiRemoveDevice | |
| 420 | SetupDiRemoveDeviceInterface | |
| 421 | SetupDiReportAdditionalSoftwareRequested | |
| 422 | SetupDiReportDeviceInstallError | |
| 423 | SetupDiReportDriverNotFoundError | |
| 424 | SetupDiReportDriverPackageImportationError | |
| 425 | SetupDiReportGenericDriverInstalled | |
| 426 | SetupDiReportPnPDeviceProblem | |
| 427 | SetupDiRestartDevices | |
| 428 | SetupDiSelectBestCompatDrv | |
| 429 | SetupDiSelectDevice | |
| 430 | SetupDiSelectOEMDrv | |
| 431 | SetupDiSetClassInstallParamsA | |
| 432 | SetupDiSetClassInstallParamsW | |
| 433 | SetupDiSetClassPropertyExW | |
| 434 | SetupDiSetClassPropertyW | |
| 435 | SetupDiSetClassRegistryPropertyA | |
| 436 | SetupDiSetClassRegistryPropertyW | |
| 437 | SetupDiSetDeviceInstallParamsA | |
| 438 | SetupDiSetDeviceInstallParamsW | |
| 439 | SetupDiSetDeviceInterfaceDefault | |
| 440 | SetupDiSetDeviceInterfacePropertyW | |
| 441 | SetupDiSetDevicePropertyW | |
| 442 | SetupDiSetDeviceRegistryPropertyA | |
| 443 | SetupDiSetDeviceRegistryPropertyW | |
| 444 | SetupDiSetDriverInstallParamsA | |
| 445 | SetupDiSetDriverInstallParamsW | |
| 446 | SetupDiSetSelectedDevice | |
| 447 | SetupDiSetSelectedDriverA | |
| 448 | SetupDiSetSelectedDriverW | |
| 449 | SetupDiUnremoveDevice | |
| 450 | SetupDuplicateDiskSpaceListA | |
| 451 | SetupDuplicateDiskSpaceListW | |
| 452 | SetupEnumInfSectionsA | |
| 453 | SetupEnumInfSectionsW | |
| 454 | SetupEnumPublishedInfA | |
| 455 | SetupEnumPublishedInfW | |
| 456 | SetupFindFirstLineA | |
| 457 | SetupFindFirstLineW | |
| 458 | SetupFindNextLine | |
| 459 | SetupFindNextMatchLineA | |
| 460 | SetupFindNextMatchLineW | |
| 461 | SetupFreeSourceListA | |
| 462 | SetupFreeSourceListW | |
| 463 | SetupGetBackupInformationA | |
| 464 | SetupGetBackupInformationW | |
| 465 | SetupGetBinaryField | |
| 466 | SetupGetFieldCount | |
| 467 | SetupGetFileCompressionInfoA | |
| 468 | SetupGetFileCompressionInfoExA | |
| 469 | SetupGetFileCompressionInfoExW | |
| 470 | SetupGetFileCompressionInfoW | |
| 471 | SetupGetFileQueueCount | |
| 472 | SetupGetFileQueueFlags | |
| 473 | SetupGetInfDriverStoreLocationA | |
| 474 | SetupGetInfDriverStoreLocationW | |
| 475 | SetupGetInfFileListA | |
| 476 | SetupGetInfFileListW | |
| 477 | SetupGetInfInformationA | |
| 478 | SetupGetInfInformationW | |
| 479 | SetupGetInfPublishedNameA | |
| 480 | SetupGetInfPublishedNameW | |
| 481 | SetupGetInfSections | |
| 482 | SetupGetIntField | |
| 483 | SetupGetLineByIndexA | |
| 484 | SetupGetLineByIndexW | |
| 485 | SetupGetLineCountA | |
| 486 | SetupGetLineCountW | |
| 487 | SetupGetLineTextA | |
| 488 | SetupGetLineTextW | |
| 489 | SetupGetMultiSzFieldA | |
| 490 | SetupGetMultiSzFieldW | |
| 491 | SetupGetNonInteractiveMode | |
| 492 | SetupGetSourceFileLocationA | |
| 493 | SetupGetSourceFileLocationW | |
| 494 | SetupGetSourceFileSizeA | |
| 495 | SetupGetSourceFileSizeW | |
| 496 | SetupGetSourceInfoA | |
| 497 | SetupGetSourceInfoW | |
| 498 | SetupGetStringFieldA | |
| 499 | SetupGetStringFieldW | |
| 500 | SetupGetTargetPathA | |
| 501 | SetupGetTargetPathW | |
| 502 | SetupGetThreadLogToken | |
| 503 | SetupInitDefaultQueueCallback | |
| 504 | SetupInitDefaultQueueCallbackEx | |
| 505 | SetupInitializeFileLogA | |
| 506 | SetupInitializeFileLogW | |
| 507 | SetupInstallFileA | |
| 508 | SetupInstallFileExA | |
| 509 | SetupInstallFileExW | |
| 510 | SetupInstallFileW | |
| 511 | SetupInstallFilesFromInfSectionA | |
| 512 | SetupInstallFilesFromInfSectionW | |
| 513 | SetupInstallFromInfSectionA | |
| 514 | SetupInstallFromInfSectionW | |
| 515 | SetupInstallLogCloseEventGroup | |
| 516 | SetupInstallLogCreateEventGroup | |
| 517 | SetupInstallServicesFromInfSectionA | |
| 518 | SetupInstallServicesFromInfSectionExA | |
| 519 | SetupInstallServicesFromInfSectionExW | |
| 520 | SetupInstallServicesFromInfSectionW | |
| 521 | SetupIterateCabinetA | |
| 522 | SetupIterateCabinetW | |
| 523 | SetupLogErrorA | |
| 524 | SetupLogErrorW | |
| 525 | SetupLogFileA | |
| 526 | SetupLogFileW | |
| 527 | SetupOpenAppendInfFileA | |
| 528 | SetupOpenAppendInfFileW | |
| 529 | SetupOpenFileQueue | |
| 530 | SetupOpenInfFileA | |
| 531 | SetupOpenInfFileW | |
| 532 | SetupOpenLog | |
| 533 | SetupOpenMasterInf | |
| 534 | SetupPrepareQueueForRestoreA | |
| 535 | SetupPrepareQueueForRestoreW | |
| 536 | SetupPromptForDiskA | |
| 537 | SetupPromptForDiskW | |
| 538 | SetupPromptReboot | |
| 539 | SetupQueryDrivesInDiskSpaceListA | |
| 540 | SetupQueryDrivesInDiskSpaceListW | |
| 541 | SetupQueryFileLogA | |
| 542 | SetupQueryFileLogW | |
| 543 | SetupQueryInfFileInformationA | |
| 544 | SetupQueryInfFileInformationW | |
| 545 | SetupQueryInfOriginalFileInformationA | |
| 546 | SetupQueryInfOriginalFileInformationW | |
| 547 | SetupQueryInfVersionInformationA | |
| 548 | SetupQueryInfVersionInformationW | |
| 549 | SetupQuerySourceListA | |
| 550 | SetupQuerySourceListW | |
| 551 | SetupQuerySpaceRequiredOnDriveA | |
| 552 | SetupQuerySpaceRequiredOnDriveW | |
| 553 | SetupQueueCopyA | |
| 554 | SetupQueueCopyIndirectA | |
| 555 | SetupQueueCopyIndirectW | |
| 556 | SetupQueueCopySectionA | |
| 557 | SetupQueueCopySectionW | |
| 558 | SetupQueueCopyW | |
| 559 | SetupQueueDefaultCopyA | |
| 560 | SetupQueueDefaultCopyW | |
| 561 | SetupQueueDeleteA | |
| 562 | SetupQueueDeleteSectionA | |
| 563 | SetupQueueDeleteSectionW | |
| 564 | SetupQueueDeleteW | |
| 565 | SetupQueueRenameA | |
| 566 | SetupQueueRenameSectionA | |
| 567 | SetupQueueRenameSectionW | |
| 568 | SetupQueueRenameW | |
| 569 | SetupRemoveFileLogEntryA | |
| 570 | SetupRemoveFileLogEntryW | |
| 571 | SetupRemoveFromDiskSpaceListA | |
| 572 | SetupRemoveFromDiskSpaceListW | |
| 573 | SetupRemoveFromSourceListA | |
| 574 | SetupRemoveFromSourceListW | |
| 575 | SetupRemoveInstallSectionFromDiskSpaceListA | |
| 576 | SetupRemoveInstallSectionFromDiskSpaceListW | |
| 577 | SetupRemoveSectionFromDiskSpaceListA | |
| 578 | SetupRemoveSectionFromDiskSpaceListW | |
| 579 | SetupRenameErrorA | |
| 580 | SetupRenameErrorW | |
| 581 | SetupScanFileQueue | |
| 582 | SetupScanFileQueueA | |
| 583 | SetupScanFileQueueW | |
| 584 | SetupSetDirectoryIdA | |
| 585 | SetupSetDirectoryIdExA | |
| 586 | SetupSetDirectoryIdExW | |
| 587 | SetupSetDirectoryIdW | |
| 588 | SetupSetFileQueueAlternatePlatformA | |
| 589 | SetupSetFileQueueAlternatePlatformW | |
| 590 | SetupSetFileQueueFlags | |
| 591 | SetupSetNonInteractiveMode | |
| 592 | SetupSetPlatformPathOverrideA | |
| 593 | SetupSetPlatformPathOverrideW | |
| 594 | SetupSetSourceListA | |
| 595 | SetupSetSourceListW | |
| 596 | SetupSetThreadLogToken | |
| 597 | SetupTermDefaultQueueCallback | |
| 598 | SetupTerminateFileLog | |
| 599 | SetupUninstallNewlyCopiedInfs | |
| 600 | SetupUninstallOEMInfA | |
| 601 | SetupUninstallOEMInfW | |
| 602 | SetupVerifyInfFileA | |
| 603 | SetupVerifyInfFileW | |
| 604 | SetupWriteTextLog | |
| 605 | SetupWriteTextLogError | |
| 606 | SetupWriteTextLogInfLine | |
| 607 | UnicodeToMultiByte | |
| 608 | VerifyCatalogFile | |
| 609 | pGetDriverPackageHash | |
| 610 | pSetupAccessRunOnceNodeList | |
| 611 | pSetupAddMiniIconToList | |
| 612 | pSetupAddTagToGroupOrderListEntry | |
| 613 | pSetupAppendPath | |
| 614 | pSetupCaptureAndConvertAnsiArg | |
| 615 | pSetupCenterWindowRelativeToParent | |
| 616 | pSetupCloseTextLogSection | |
| 617 | pSetupConcatenatePaths | |
| 618 | pSetupCreateTextLogSectionA | |
| 619 | pSetupCreateTextLogSectionW | |
| 620 | pSetupDestroyRunOnceNodeList | |
| 621 | pSetupDiBuildInfoDataFromStrongName | |
| 622 | pSetupDiCrimsonLogDeviceInstall | |
| 623 | pSetupDiGetStrongNameForDriverNode | |
| 624 | pSetupDiInvalidateHelperModules | |
| 625 | pSetupDoLastKnownGoodBackup | |
| 626 | pSetupDoesUserHavePrivilege | |
| 627 | pSetupDuplicateString | |
| 628 | pSetupEnablePrivilege | |
| 629 | pSetupFree | |
| 630 | pSetupGetCurrentDriverSigningPolicy | |
| 631 | pSetupGetDriverDate | |
| 632 | pSetupGetDriverVersion | |
| 633 | pSetupGetField | |
| 634 | pSetupGetFileTitle | |
| 635 | pSetupGetGlobalFlags | |
| 636 | pSetupGetIndirectStringsFromDriverInfo | |
| 637 | pSetupGetInfSections | |
| 638 | pSetupGetQueueFlags | |
| 639 | pSetupGetRealSystemTime | |
| 640 | pSetupGuidFromString | |
| 641 | pSetupHandleFailedVerification | |
| 642 | pSetupInfGetDigitalSignatureInfo | |
| 643 | pSetupInfIsInbox | |
| 644 | pSetupInfSetDigitalSignatureInfo | |
| 645 | pSetupInstallCatalog | |
| 646 | pSetupIsBiDiLocalizedSystemEx | |
| 647 | pSetupIsGuidNull | |
| 648 | pSetupIsLocalSystem | |
| 649 | pSetupIsUserAdmin | |
| 650 | pSetupIsUserTrustedInstaller | |
| 651 | pSetupLoadIndirectString | |
| 652 | pSetupMakeSurePathExists | |
| 653 | pSetupMalloc | |
| 654 | pSetupModifyGlobalFlags | |
| 655 | pSetupMultiByteToUnicode | |
| 656 | pSetupOpenAndMapFileForRead | |
| 657 | pSetupOutOfMemory | |
| 658 | pSetupQueryMultiSzValueToArray | |
| 659 | pSetupRealloc | |
| 660 | pSetupRegistryDelnode | |
| 661 | pSetupRetrieveServiceConfig | |
| 662 | pSetupSetArrayToMultiSzValue | |
| 663 | pSetupSetDriverPackageRestorePoint | |
| 664 | pSetupSetGlobalFlags | |
| 665 | pSetupSetQueueFlags | |
| 666 | pSetupShouldDeviceBeExcluded | |
| 667 | pSetupStringFromGuid | |
| 668 | pSetupStringTableAddString | |
| 669 | pSetupStringTableAddStringEx | |
| 670 | pSetupStringTableDestroy | |
| 671 | pSetupStringTableDuplicate | |
| 672 | pSetupStringTableEnum | |
| 673 | pSetupStringTableGetExtraData | |
| 674 | pSetupStringTableInitialize | |
| 675 | pSetupStringTableInitializeEx | |
| 676 | pSetupStringTableLookUpString | |
| 677 | pSetupStringTableLookUpStringEx | |
| 678 | pSetupStringTableSetExtraData | |
| 679 | pSetupStringTableStringFromId | |
| 680 | pSetupStringTableStringFromIdEx | |
| 681 | pSetupUnicodeToMultiByte | |
| 682 | pSetupUnmapAndCloseFile | |
| 683 | pSetupValidateDriverPackage | |
| 684 | pSetupVerifyCatalogFile | |
| 685 | pSetupVerifyQueuedCatalogs | |
| 686 | pSetupWriteLogEntry | |
| 687 | pSetupWriteLogError |
lib/libc/mingw/libarm32/mfcore.def deleted-49| ... | ... | @@ -1,49 +0,0 @@ |
| 1 | ; | |
| 2 | ; Definition file of MFCORE.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008-2014 | |
| 5 | ; | |
| 6 | LIBRARY "MFCORE.dll" | |
| 7 | EXPORTS | |
| 8 | AppendPropVariant | |
| 9 | ConvertPropVariant | |
| 10 | CopyPropertyStore | |
| 11 | CreateNamedPropertyStore | |
| 12 | ExtractPropVariant | |
| 13 | MFCopyMFMetadata | |
| 14 | MFCreateAggregateSource | |
| 15 | MFCreateAppSourceProxy | |
| 16 | MFCreateAudioRenderer | |
| 17 | MFCreateAudioRendererActivate | |
| 18 | MFCreateDeviceSource | |
| 19 | MFCreateDeviceSourceActivate | |
| 20 | MFCreateFileSchemePlugin | |
| 21 | MFCreateMFMetadataOnPropertyStore | |
| 22 | MFCreateMediaProcessor | |
| 23 | MFCreateMediaSession | |
| 24 | MFCreatePMPHost | |
| 25 | MFCreatePMPMediaSession | |
| 26 | MFCreatePMPServer | |
| 27 | MFCreatePresentationClock | |
| 28 | MFCreateSampleCopierMFT | |
| 29 | MFCreateSampleGrabberSinkActivate | |
| 30 | MFCreateSequencerSegmentOffset | |
| 31 | MFCreateSequencerSource | |
| 32 | MFCreateSequencerSourceRemoteStream | |
| 33 | MFCreateSimpleTypeHandler | |
| 34 | MFCreateSoundEventSchemePlugin | |
| 35 | MFCreateStandardQualityManager | |
| 36 | MFCreateTopoLoader | |
| 37 | MFCreateTopology | |
| 38 | MFCreateTopologyNode | |
| 39 | MFCreateTransformWrapper | |
| 40 | MFCreateWMAEncoderActivate | |
| 41 | MFCreateWMVEncoderActivate | |
| 42 | MFEnumDeviceSources | |
| 43 | MFGetMultipleServiceProviders | |
| 44 | MFGetService | |
| 45 | MFGetTopoNodeCurrentType | |
| 46 | MFReadSequencerSegmentOffset | |
| 47 | MFRequireProtectedEnvironment | |
| 48 | MFShutdownObject | |
| 49 | MergePropertyStore |
lib/libc/mingw/libarm32/mfplay.def deleted-9| ... | ... | @@ -1,9 +0,0 @@ |
| 1 | ; | |
| 2 | ; Definition file of MFPlay.DLL | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008-2014 | |
| 5 | ; | |
| 6 | LIBRARY "MFPlay.DLL" | |
| 7 | EXPORTS | |
| 8 | MFPCreateMediaPlayer | |
| 9 | MFPCreateMediaPlayerEx |
lib/libc/mingw/libarm32/netsetupapi.def created+21| ... | ... | @@ -0,0 +1,21 @@ |
| 1 | ; | |
| 2 | ; Definition file of NetSetupApi.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008-2014 | |
| 5 | ; | |
| 6 | LIBRARY "NetSetupApi.dll" | |
| 7 | EXPORTS | |
| 8 | NetSetupClose | |
| 9 | NetSetupCloseObjectQuery | |
| 10 | NetSetupCommit | |
| 11 | NetSetupCreateObject | |
| 12 | NetSetupCreateObjectQuery | |
| 13 | NetSetupDeleteObject | |
| 14 | NetSetupFreeObjectProperties | |
| 15 | NetSetupFreeObjects | |
| 16 | NetSetupGetObjectProperties | |
| 17 | NetSetupGetObjectPropertyKeys | |
| 18 | NetSetupGetObjects | |
| 19 | NetSetupInitialize | |
| 20 | NetSetupRollback | |
| 21 | NetSetupSetObjectProperties |
lib/libc/mingw/libarm32/ntdll.def deleted-2216| ... | ... | @@ -1,2216 +0,0 @@ |
| 1 | ; | |
| 2 | ; Definition file of ntdll.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008-2014 | |
| 5 | ; | |
| 6 | LIBRARY "ntdll.dll" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | ord_2 @2 | |
| 10 | ord_3 @3 | |
| 11 | ord_4 @4 | |
| 12 | ord_5 @5 | |
| 13 | ord_6 @6 | |
| 14 | ord_7 @7 | |
| 15 | ord_8 @8 | |
| 16 | A_SHAFinal | |
| 17 | A_SHAInit | |
| 18 | A_SHAUpdate | |
| 19 | AlpcAdjustCompletionListConcurrencyCount | |
| 20 | AlpcFreeCompletionListMessage | |
| 21 | AlpcGetCompletionListLastMessageInformation | |
| 22 | AlpcGetCompletionListMessageAttributes | |
| 23 | AlpcGetHeaderSize | |
| 24 | AlpcGetMessageAttribute | |
| 25 | AlpcGetMessageFromCompletionList | |
| 26 | AlpcGetOutstandingCompletionListMessageCount | |
| 27 | AlpcInitializeMessageAttribute | |
| 28 | AlpcMaxAllowedMessageLength | |
| 29 | AlpcRegisterCompletionList | |
| 30 | AlpcRegisterCompletionListWorkerThread | |
| 31 | AlpcRundownCompletionList | |
| 32 | AlpcUnregisterCompletionList | |
| 33 | AlpcUnregisterCompletionListWorkerThread | |
| 34 | ApiSetQueryApiSetPresence | |
| 35 | ApiSetQueryApiSetPresenceEx | |
| 36 | CsrAllocateCaptureBuffer | |
| 37 | CsrAllocateMessagePointer | |
| 38 | CsrCaptureMessageBuffer | |
| 39 | CsrCaptureMessageMultiUnicodeStringsInPlace | |
| 40 | CsrCaptureMessageString | |
| 41 | CsrCaptureTimeout | |
| 42 | CsrClientCallServer | |
| 43 | CsrClientConnectToServer | |
| 44 | CsrFreeCaptureBuffer | |
| 45 | CsrGetProcessId | |
| 46 | CsrIdentifyAlertableThread | |
| 47 | CsrSetPriorityClass | |
| 48 | CsrVerifyRegion | |
| 49 | DbgBreakPoint | |
| 50 | DbgPrint | |
| 51 | DbgPrintEx | |
| 52 | DbgPrintReturnControlC | |
| 53 | DbgPrompt | |
| 54 | DbgQueryDebugFilterState | |
| 55 | DbgSetDebugFilterState | |
| 56 | DbgUiConnectToDbg | |
| 57 | DbgUiContinue | |
| 58 | DbgUiConvertStateChangeStructure | |
| 59 | DbgUiConvertStateChangeStructureEx | |
| 60 | DbgUiDebugActiveProcess | |
| 61 | DbgUiGetThreadDebugObject | |
| 62 | DbgUiIssueRemoteBreakin | |
| 63 | DbgUiRemoteBreakin | |
| 64 | DbgUiSetThreadDebugObject | |
| 65 | DbgUiStopDebugging | |
| 66 | DbgUiWaitStateChange | |
| 67 | DbgUserBreakPoint | |
| 68 | EtwCheckCoverage | |
| 69 | EtwCreateTraceInstanceId | |
| 70 | EtwDeliverDataBlock | |
| 71 | EtwEnumerateProcessRegGuids | |
| 72 | EtwEventActivityIdControl | |
| 73 | EtwEventEnabled | |
| 74 | EtwEventProviderEnabled | |
| 75 | EtwEventRegister | |
| 76 | EtwEventSetInformation | |
| 77 | EtwEventUnregister | |
| 78 | EtwEventWrite | |
| 79 | EtwEventWriteEndScenario | |
| 80 | EtwEventWriteEx | |
| 81 | EtwEventWriteFull | |
| 82 | EtwEventWriteNoRegistration | |
| 83 | EtwEventWriteStartScenario | |
| 84 | EtwEventWriteString | |
| 85 | EtwEventWriteTransfer | |
| 86 | EtwGetTraceEnableFlags | |
| 87 | EtwGetTraceEnableLevel | |
| 88 | EtwGetTraceLoggerHandle | |
| 89 | EtwLogTraceEvent | |
| 90 | EtwNotificationRegister | |
| 91 | EtwNotificationUnregister | |
| 92 | EtwProcessPrivateLoggerRequest | |
| 93 | EtwRegisterSecurityProvider | |
| 94 | EtwRegisterTraceGuidsA | |
| 95 | EtwRegisterTraceGuidsW | |
| 96 | EtwReplyNotification | |
| 97 | EtwSendNotification | |
| 98 | EtwSetMark | |
| 99 | EtwTraceEventInstance | |
| 100 | EtwTraceMessage | |
| 101 | EtwTraceMessageVa | |
| 102 | EtwUnregisterTraceGuids | |
| 103 | EtwWriteUMSecurityEvent | |
| 104 | EtwpCreateEtwThread | |
| 105 | EtwpGetCpuSpeed | |
| 106 | EvtIntReportAuthzEventAndSourceAsync | |
| 107 | EvtIntReportEventAndSourceAsync | |
| 108 | ExpInterlockedPopEntrySListEnd | |
| 109 | ExpInterlockedPopEntrySListFault | |
| 110 | ExpInterlockedPopEntrySListResume | |
| 111 | KiRaiseUserExceptionDispatcher | |
| 112 | KiUserApcDispatcher | |
| 113 | KiUserCallbackDispatcher | |
| 114 | KiUserCallbackDispatcherReturn | |
| 115 | KiUserExceptionDispatcher | |
| 116 | KiUserInvertedFunctionTable DATA | |
| 117 | LdrAccessResource | |
| 118 | LdrAddDllDirectory | |
| 119 | LdrAddLoadAsDataTable | |
| 120 | LdrAddRefDll | |
| 121 | LdrAppxHandleIntegrityFailure | |
| 122 | LdrCallEnclave | |
| 123 | LdrControlFlowGuardEnforced | |
| 124 | LdrCreateEnclave | |
| 125 | LdrDeleteEnclave | |
| 126 | LdrDisableThreadCalloutsForDll | |
| 127 | LdrEnumResources | |
| 128 | LdrEnumerateLoadedModules | |
| 129 | LdrFastFailInLoaderCallout | |
| 130 | LdrFindEntryForAddress | |
| 131 | LdrFindResourceDirectory_U | |
| 132 | LdrFindResourceEx_U | |
| 133 | LdrFindResource_U | |
| 134 | LdrFlushAlternateResourceModules | |
| 135 | LdrGetDllDirectory | |
| 136 | LdrGetDllFullName | |
| 137 | LdrGetDllHandle | |
| 138 | LdrGetDllHandleByMapping | |
| 139 | LdrGetDllHandleByName | |
| 140 | LdrGetDllHandleEx | |
| 141 | LdrGetDllPath | |
| 142 | LdrGetFailureData | |
| 143 | LdrGetFileNameFromLoadAsDataTable | |
| 144 | LdrGetKnownDllSectionHandle | |
| 145 | LdrGetProcedureAddress | |
| 146 | LdrGetProcedureAddressEx | |
| 147 | LdrGetProcedureAddressForCaller | |
| 148 | LdrInitShimEngineDynamic | |
| 149 | LdrInitializeEnclave | |
| 150 | LdrInitializeThunk | |
| 151 | LdrIsModuleSxsRedirected | |
| 152 | LdrLoadAlternateResourceModule | |
| 153 | LdrLoadAlternateResourceModuleEx | |
| 154 | LdrLoadDll | |
| 155 | LdrLoadEnclaveModule | |
| 156 | LdrLockLoaderLock | |
| 157 | LdrOpenImageFileOptionsKey | |
| 158 | LdrProcessInitializationComplete | |
| 159 | LdrProcessRelocationBlock | |
| 160 | LdrProcessRelocationBlockEx | |
| 161 | LdrQueryImageFileExecutionOptions | |
| 162 | LdrQueryImageFileExecutionOptionsEx | |
| 163 | LdrQueryImageFileKeyOption | |
| 164 | LdrQueryModuleServiceTags | |
| 165 | LdrQueryOptionalDelayLoadedAPI | |
| 166 | LdrQueryProcessModuleInformation | |
| 167 | LdrRegisterDllNotification | |
| 168 | LdrRemoveDllDirectory | |
| 169 | LdrRemoveLoadAsDataTable | |
| 170 | LdrResFindResource | |
| 171 | LdrResFindResourceDirectory | |
| 172 | LdrResGetRCConfig | |
| 173 | LdrResRelease | |
| 174 | LdrResSearchResource | |
| 175 | LdrResolveDelayLoadedAPI | |
| 176 | LdrResolveDelayLoadsFromDll | |
| 177 | LdrRscIsTypeExist | |
| 178 | LdrSetAppCompatDllRedirectionCallback | |
| 179 | LdrSetDefaultDllDirectories | |
| 180 | LdrSetDllDirectory | |
| 181 | LdrSetDllManifestProber | |
| 182 | LdrSetImplicitPathOptions | |
| 183 | LdrSetMUICacheType | |
| 184 | LdrShutdownProcess | |
| 185 | LdrShutdownThread | |
| 186 | LdrStandardizeSystemPath | |
| 187 | LdrSystemDllInitBlock DATA | |
| 188 | LdrUnloadAlternateResourceModule | |
| 189 | LdrUnloadAlternateResourceModuleEx | |
| 190 | LdrUnloadDll | |
| 191 | LdrUnlockLoaderLock | |
| 192 | LdrUnregisterDllNotification | |
| 193 | LdrUpdatePackageSearchPath | |
| 194 | LdrVerifyImageMatchesChecksum | |
| 195 | LdrVerifyImageMatchesChecksumEx | |
| 196 | LdrpResGetMappingSize | |
| 197 | LdrpResGetResourceDirectory | |
| 198 | MD4Final | |
| 199 | MD4Init | |
| 200 | MD4Update | |
| 201 | MD5Final | |
| 202 | MD5Init | |
| 203 | MD5Update | |
| 204 | NlsAnsiCodePage DATA | |
| 205 | NlsMbCodePageTag DATA | |
| 206 | NlsMbOemCodePageTag DATA | |
| 207 | NtAcceptConnectPort | |
| 208 | NtAccessCheck | |
| 209 | NtAccessCheckAndAuditAlarm | |
| 210 | NtAccessCheckByType | |
| 211 | NtAccessCheckByTypeAndAuditAlarm | |
| 212 | NtAccessCheckByTypeResultList | |
| 213 | NtAccessCheckByTypeResultListAndAuditAlarm | |
| 214 | NtAccessCheckByTypeResultListAndAuditAlarmByHandle | |
| 215 | NtAcquireProcessActivityReference | |
| 216 | NtAddAtom | |
| 217 | NtAddAtomEx | |
| 218 | NtAddBootEntry | |
| 219 | NtAddDriverEntry | |
| 220 | NtAdjustGroupsToken | |
| 221 | NtAdjustPrivilegesToken | |
| 222 | NtAdjustTokenClaimsAndDeviceGroups | |
| 223 | NtAlertResumeThread | |
| 224 | NtAlertThread | |
| 225 | NtAlertThreadByThreadId | |
| 226 | NtAllocateLocallyUniqueId | |
| 227 | NtAllocateReserveObject | |
| 228 | NtAllocateUserPhysicalPages | |
| 229 | NtAllocateUserPhysicalPagesEx | |
| 230 | NtAllocateUuids | |
| 231 | NtAllocateVirtualMemory | |
| 232 | NtAllocateVirtualMemoryEx | |
| 233 | NtAlpcAcceptConnectPort | |
| 234 | NtAlpcCancelMessage | |
| 235 | NtAlpcConnectPort | |
| 236 | NtAlpcConnectPortEx | |
| 237 | NtAlpcCreatePort | |
| 238 | NtAlpcCreatePortSection | |
| 239 | NtAlpcCreateResourceReserve | |
| 240 | NtAlpcCreateSectionView | |
| 241 | NtAlpcCreateSecurityContext | |
| 242 | NtAlpcDeletePortSection | |
| 243 | NtAlpcDeleteResourceReserve | |
| 244 | NtAlpcDeleteSectionView | |
| 245 | NtAlpcDeleteSecurityContext | |
| 246 | NtAlpcDisconnectPort | |
| 247 | NtAlpcImpersonateClientContainerOfPort | |
| 248 | NtAlpcImpersonateClientOfPort | |
| 249 | NtAlpcOpenSenderProcess | |
| 250 | NtAlpcOpenSenderThread | |
| 251 | NtAlpcQueryInformation | |
| 252 | NtAlpcQueryInformationMessage | |
| 253 | NtAlpcRevokeSecurityContext | |
| 254 | NtAlpcSendWaitReceivePort | |
| 255 | NtAlpcSetInformation | |
| 256 | NtApphelpCacheControl | |
| 257 | NtAreMappedFilesTheSame | |
| 258 | NtAssignProcessToJobObject | |
| 259 | NtAssociateWaitCompletionPacket | |
| 260 | NtCallEnclave | |
| 261 | NtCallbackReturn | |
| 262 | NtCancelIoFile | |
| 263 | NtCancelIoFileEx | |
| 264 | NtCancelSynchronousIoFile | |
| 265 | NtCancelTimer | |
| 266 | NtCancelTimer2 | |
| 267 | NtCancelWaitCompletionPacket | |
| 268 | NtClearEvent | |
| 269 | NtClose | |
| 270 | NtCloseObjectAuditAlarm | |
| 271 | NtCommitComplete | |
| 272 | NtCommitEnlistment | |
| 273 | NtCommitRegistryTransaction | |
| 274 | NtCommitTransaction | |
| 275 | NtCompactKeys | |
| 276 | NtCompareObjects | |
| 277 | NtCompareSigningLevels | |
| 278 | NtCompareTokens | |
| 279 | NtCompleteConnectPort | |
| 280 | NtCompressKey | |
| 281 | NtConnectPort | |
| 282 | NtContinue | |
| 283 | NtConvertBetweenAuxiliaryCounterAndPerformanceCounter | |
| 284 | NtCreateCrossVmEvent | |
| 285 | NtCreateDebugObject | |
| 286 | NtCreateDirectoryObject | |
| 287 | NtCreateDirectoryObjectEx | |
| 288 | NtCreateEnclave | |
| 289 | NtCreateEnlistment | |
| 290 | NtCreateEvent | |
| 291 | NtCreateEventPair | |
| 292 | NtCreateFile | |
| 293 | NtCreateIRTimer | |
| 294 | NtCreateIoCompletion | |
| 295 | NtCreateJobObject | |
| 296 | NtCreateJobSet | |
| 297 | NtCreateKey | |
| 298 | NtCreateKeyTransacted | |
| 299 | NtCreateKeyedEvent | |
| 300 | NtCreateLowBoxToken | |
| 301 | NtCreateMailslotFile | |
| 302 | NtCreateMutant | |
| 303 | NtCreateNamedPipeFile | |
| 304 | NtCreatePagingFile | |
| 305 | NtCreatePartition | |
| 306 | NtCreatePort | |
| 307 | NtCreatePrivateNamespace | |
| 308 | NtCreateProcess | |
| 309 | NtCreateProcessEx | |
| 310 | NtCreateProfile | |
| 311 | NtCreateProfileEx | |
| 312 | NtCreateRegistryTransaction | |
| 313 | NtCreateResourceManager | |
| 314 | NtCreateSection | |
| 315 | NtCreateSectionEx | |
| 316 | NtCreateSemaphore | |
| 317 | NtCreateSymbolicLinkObject | |
| 318 | NtCreateThread | |
| 319 | NtCreateThreadEx | |
| 320 | NtCreateTimer | |
| 321 | NtCreateTimer2 | |
| 322 | NtCreateToken | |
| 323 | NtCreateTokenEx | |
| 324 | NtCreateTransaction | |
| 325 | NtCreateTransactionManager | |
| 326 | NtCreateUserProcess | |
| 327 | NtCreateWaitCompletionPacket | |
| 328 | NtCreateWaitablePort | |
| 329 | NtCreateWnfStateName | |
| 330 | NtCreateWorkerFactory | |
| 331 | NtDebugActiveProcess | |
| 332 | NtDebugContinue | |
| 333 | NtDelayExecution | |
| 334 | NtDeleteAtom | |
| 335 | NtDeleteBootEntry | |
| 336 | NtDeleteDriverEntry | |
| 337 | NtDeleteFile | |
| 338 | NtDeleteKey | |
| 339 | NtDeleteObjectAuditAlarm | |
| 340 | NtDeletePrivateNamespace | |
| 341 | NtDeleteValueKey | |
| 342 | NtDeleteWnfStateData | |
| 343 | NtDeleteWnfStateName | |
| 344 | NtDeviceIoControlFile | |
| 345 | NtDisableLastKnownGood | |
| 346 | NtDisplayString | |
| 347 | NtDrawText | |
| 348 | NtDuplicateObject | |
| 349 | NtDuplicateToken | |
| 350 | NtEnableLastKnownGood | |
| 351 | NtEnumerateBootEntries | |
| 352 | NtEnumerateDriverEntries | |
| 353 | NtEnumerateKey | |
| 354 | NtEnumerateSystemEnvironmentValuesEx | |
| 355 | NtEnumerateTransactionObject | |
| 356 | NtEnumerateValueKey | |
| 357 | NtExtendSection | |
| 358 | NtFilterBootOption | |
| 359 | NtFilterToken | |
| 360 | NtFilterTokenEx | |
| 361 | NtFindAtom | |
| 362 | NtFlushBuffersFile | |
| 363 | NtFlushBuffersFileEx | |
| 364 | NtFlushInstallUILanguage | |
| 365 | NtFlushInstructionCache | |
| 366 | NtFlushKey | |
| 367 | NtFlushProcessWriteBuffers | |
| 368 | NtFlushVirtualMemory | |
| 369 | NtFlushWriteBuffer | |
| 370 | NtFreeUserPhysicalPages | |
| 371 | NtFreeVirtualMemory | |
| 372 | NtFreezeRegistry | |
| 373 | NtFreezeTransactions | |
| 374 | NtFsControlFile | |
| 375 | NtGetCachedSigningLevel | |
| 376 | NtGetCompleteWnfStateSubscription | |
| 377 | NtGetContextThread | |
| 378 | NtGetCurrentProcessorNumber | |
| 379 | NtGetCurrentProcessorNumberEx | |
| 380 | NtGetDevicePowerState | |
| 381 | NtGetMUIRegistryInfo | |
| 382 | NtGetNextProcess | |
| 383 | NtGetNextThread | |
| 384 | NtGetNlsSectionPtr | |
| 385 | NtGetNotificationResourceManager | |
| 386 | NtGetTickCount | |
| 387 | NtGetWriteWatch | |
| 388 | NtImpersonateAnonymousToken | |
| 389 | NtImpersonateClientOfPort | |
| 390 | NtImpersonateThread | |
| 391 | NtInitializeEnclave | |
| 392 | NtInitializeNlsFiles | |
| 393 | NtInitializeRegistry | |
| 394 | NtInitiatePowerAction | |
| 395 | NtIsProcessInJob | |
| 396 | NtIsSystemResumeAutomatic | |
| 397 | NtIsUILanguageComitted | |
| 398 | NtListenPort | |
| 399 | NtLoadDriver | |
| 400 | NtLoadEnclaveData | |
| 401 | NtLoadKey | |
| 402 | NtLoadKey2 | |
| 403 | NtLoadKeyEx | |
| 404 | NtLockFile | |
| 405 | NtLockProductActivationKeys | |
| 406 | NtLockRegistryKey | |
| 407 | NtLockVirtualMemory | |
| 408 | NtMakePermanentObject | |
| 409 | NtMakeTemporaryObject | |
| 410 | NtManageHotPatch | |
| 411 | NtManagePartition | |
| 412 | NtMapCMFModule | |
| 413 | NtMapUserPhysicalPages | |
| 414 | NtMapUserPhysicalPagesScatter | |
| 415 | NtMapViewOfSection | |
| 416 | NtMapViewOfSectionEx | |
| 417 | NtModifyBootEntry | |
| 418 | NtModifyDriverEntry | |
| 419 | NtNotifyChangeDirectoryFile | |
| 420 | NtNotifyChangeDirectoryFileEx | |
| 421 | NtNotifyChangeKey | |
| 422 | NtNotifyChangeMultipleKeys | |
| 423 | NtNotifyChangeSession | |
| 424 | NtOpenDirectoryObject | |
| 425 | NtOpenEnlistment | |
| 426 | NtOpenEvent | |
| 427 | NtOpenEventPair | |
| 428 | NtOpenFile | |
| 429 | NtOpenIoCompletion | |
| 430 | NtOpenJobObject | |
| 431 | NtOpenKey | |
| 432 | NtOpenKeyEx | |
| 433 | NtOpenKeyTransacted | |
| 434 | NtOpenKeyTransactedEx | |
| 435 | NtOpenKeyedEvent | |
| 436 | NtOpenMutant | |
| 437 | NtOpenObjectAuditAlarm | |
| 438 | NtOpenPartition | |
| 439 | NtOpenPrivateNamespace | |
| 440 | NtOpenProcess | |
| 441 | NtOpenProcessToken | |
| 442 | NtOpenProcessTokenEx | |
| 443 | NtOpenRegistryTransaction | |
| 444 | NtOpenResourceManager | |
| 445 | NtOpenSection | |
| 446 | NtOpenSemaphore | |
| 447 | NtOpenSession | |
| 448 | NtOpenSymbolicLinkObject | |
| 449 | NtOpenThread | |
| 450 | NtOpenThreadToken | |
| 451 | NtOpenThreadTokenEx | |
| 452 | NtOpenTimer | |
| 453 | NtOpenTransaction | |
| 454 | NtOpenTransactionManager | |
| 455 | NtPlugPlayControl | |
| 456 | NtPowerInformation | |
| 457 | NtPrePrepareComplete | |
| 458 | NtPrePrepareEnlistment | |
| 459 | NtPrepareComplete | |
| 460 | NtPrepareEnlistment | |
| 461 | NtPrivilegeCheck | |
| 462 | NtPrivilegeObjectAuditAlarm | |
| 463 | NtPrivilegedServiceAuditAlarm | |
| 464 | NtPropagationComplete | |
| 465 | NtPropagationFailed | |
| 466 | NtProtectVirtualMemory | |
| 467 | NtPssCaptureVaSpaceBulk | |
| 468 | NtPulseEvent | |
| 469 | NtQueryAttributesFile | |
| 470 | NtQueryAuxiliaryCounterFrequency | |
| 471 | NtQueryBootEntryOrder | |
| 472 | NtQueryBootOptions | |
| 473 | NtQueryDebugFilterState | |
| 474 | NtQueryDefaultLocale | |
| 475 | NtQueryDefaultUILanguage | |
| 476 | NtQueryDirectoryFile | |
| 477 | NtQueryDirectoryFileEx | |
| 478 | NtQueryDirectoryObject | |
| 479 | NtQueryDriverEntryOrder | |
| 480 | NtQueryEaFile | |
| 481 | NtQueryEvent | |
| 482 | NtQueryFullAttributesFile | |
| 483 | NtQueryInformationAtom | |
| 484 | NtQueryInformationByName | |
| 485 | NtQueryInformationEnlistment | |
| 486 | NtQueryInformationFile | |
| 487 | NtQueryInformationJobObject | |
| 488 | NtQueryInformationPort | |
| 489 | NtQueryInformationProcess | |
| 490 | NtQueryInformationResourceManager | |
| 491 | NtQueryInformationThread | |
| 492 | NtQueryInformationToken | |
| 493 | NtQueryInformationTransaction | |
| 494 | NtQueryInformationTransactionManager | |
| 495 | NtQueryInformationWorkerFactory | |
| 496 | NtQueryInstallUILanguage | |
| 497 | NtQueryIntervalProfile | |
| 498 | NtQueryIoCompletion | |
| 499 | NtQueryKey | |
| 500 | NtQueryLicenseValue | |
| 501 | NtQueryMultipleValueKey | |
| 502 | NtQueryMutant | |
| 503 | NtQueryObject | |
| 504 | NtQueryOpenSubKeys | |
| 505 | NtQueryOpenSubKeysEx | |
| 506 | NtQueryPerformanceCounter | |
| 507 | NtQueryPortInformationProcess | |
| 508 | NtQueryQuotaInformationFile | |
| 509 | NtQuerySection | |
| 510 | NtQuerySecurityAttributesToken | |
| 511 | NtQuerySecurityObject | |
| 512 | NtQuerySecurityPolicy | |
| 513 | NtQuerySemaphore | |
| 514 | NtQuerySymbolicLinkObject | |
| 515 | NtQuerySystemEnvironmentValue | |
| 516 | NtQuerySystemEnvironmentValueEx | |
| 517 | NtQuerySystemInformation | |
| 518 | NtQuerySystemInformationEx | |
| 519 | NtQuerySystemTime | |
| 520 | NtQueryTimer | |
| 521 | NtQueryTimerResolution | |
| 522 | NtQueryValueKey | |
| 523 | NtQueryVirtualMemory | |
| 524 | NtQueryVolumeInformationFile | |
| 525 | NtQueryWnfStateData | |
| 526 | NtQueryWnfStateNameInformation | |
| 527 | NtQueueApcThread | |
| 528 | NtQueueApcThreadEx | |
| 529 | NtRaiseException | |
| 530 | NtRaiseHardError | |
| 531 | NtReadFile | |
| 532 | NtReadFileScatter | |
| 533 | NtReadOnlyEnlistment | |
| 534 | NtReadRequestData | |
| 535 | NtReadVirtualMemory | |
| 536 | NtRecoverEnlistment | |
| 537 | NtRecoverResourceManager | |
| 538 | NtRecoverTransactionManager | |
| 539 | NtRegisterProtocolAddressInformation | |
| 540 | NtRegisterThreadTerminatePort | |
| 541 | NtReleaseKeyedEvent | |
| 542 | NtReleaseMutant | |
| 543 | NtReleaseSemaphore | |
| 544 | NtReleaseWorkerFactoryWorker | |
| 545 | NtRemoveIoCompletion | |
| 546 | NtRemoveIoCompletionEx | |
| 547 | NtRemoveProcessDebug | |
| 548 | NtRenameKey | |
| 549 | NtRenameTransactionManager | |
| 550 | NtReplaceKey | |
| 551 | NtReplacePartitionUnit | |
| 552 | NtReplyPort | |
| 553 | NtReplyWaitReceivePort | |
| 554 | NtReplyWaitReceivePortEx | |
| 555 | NtReplyWaitReplyPort | |
| 556 | NtRequestPort | |
| 557 | NtRequestWaitReplyPort | |
| 558 | NtResetEvent | |
| 559 | NtResetWriteWatch | |
| 560 | NtRestoreKey | |
| 561 | NtResumeProcess | |
| 562 | NtResumeThread | |
| 563 | NtRevertContainerImpersonation | |
| 564 | NtRollbackComplete | |
| 565 | NtRollbackEnlistment | |
| 566 | NtRollbackRegistryTransaction | |
| 567 | NtRollbackTransaction | |
| 568 | NtRollforwardTransactionManager | |
| 569 | NtSaveKey | |
| 570 | NtSaveKeyEx | |
| 571 | NtSaveMergedKeys | |
| 572 | NtSecureConnectPort | |
| 573 | NtSerializeBoot | |
| 574 | NtSetBootEntryOrder | |
| 575 | NtSetBootOptions | |
| 576 | NtSetCachedSigningLevel | |
| 577 | NtSetCachedSigningLevel2 | |
| 578 | NtSetContextThread | |
| 579 | NtSetDebugFilterState | |
| 580 | NtSetDefaultHardErrorPort | |
| 581 | NtSetDefaultLocale | |
| 582 | NtSetDefaultUILanguage | |
| 583 | NtSetDriverEntryOrder | |
| 584 | NtSetEaFile | |
| 585 | NtSetEvent | |
| 586 | NtSetEventBoostPriority | |
| 587 | NtSetHighEventPair | |
| 588 | NtSetHighWaitLowEventPair | |
| 589 | NtSetIRTimer | |
| 590 | NtSetInformationDebugObject | |
| 591 | NtSetInformationEnlistment | |
| 592 | NtSetInformationFile | |
| 593 | NtSetInformationJobObject | |
| 594 | NtSetInformationKey | |
| 595 | NtSetInformationObject | |
| 596 | NtSetInformationProcess | |
| 597 | NtSetInformationResourceManager | |
| 598 | NtSetInformationSymbolicLink | |
| 599 | NtSetInformationThread | |
| 600 | NtSetInformationToken | |
| 601 | NtSetInformationTransaction | |
| 602 | NtSetInformationTransactionManager | |
| 603 | NtSetInformationVirtualMemory | |
| 604 | NtSetInformationWorkerFactory | |
| 605 | NtSetIntervalProfile | |
| 606 | NtSetIoCompletion | |
| 607 | NtSetIoCompletionEx | |
| 608 | NtSetLdtEntries | |
| 609 | NtSetLowEventPair | |
| 610 | NtSetLowWaitHighEventPair | |
| 611 | NtSetQuotaInformationFile | |
| 612 | NtSetSecurityObject | |
| 613 | NtSetSystemEnvironmentValue | |
| 614 | NtSetSystemEnvironmentValueEx | |
| 615 | NtSetSystemInformation | |
| 616 | NtSetSystemPowerState | |
| 617 | NtSetSystemTime | |
| 618 | NtSetThreadExecutionState | |
| 619 | NtSetTimer | |
| 620 | NtSetTimer2 | |
| 621 | NtSetTimerEx | |
| 622 | NtSetTimerResolution | |
| 623 | NtSetUuidSeed | |
| 624 | NtSetValueKey | |
| 625 | NtSetVolumeInformationFile | |
| 626 | NtSetWnfProcessNotificationEvent | |
| 627 | NtShutdownSystem | |
| 628 | NtShutdownWorkerFactory | |
| 629 | NtSignalAndWaitForSingleObject | |
| 630 | NtSinglePhaseReject | |
| 631 | NtStartProfile | |
| 632 | NtStopProfile | |
| 633 | NtSubscribeWnfStateChange | |
| 634 | NtSuspendProcess | |
| 635 | NtSuspendThread | |
| 636 | NtSystemDebugControl | |
| 637 | NtTerminateEnclave | |
| 638 | NtTerminateJobObject | |
| 639 | NtTerminateProcess | |
| 640 | NtTerminateThread | |
| 641 | NtTestAlert | |
| 642 | NtThawRegistry | |
| 643 | NtThawTransactions | |
| 644 | NtTraceControl | |
| 645 | NtTraceEvent | |
| 646 | NtTranslateFilePath | |
| 647 | NtUmsThreadYield | |
| 648 | NtUnloadDriver | |
| 649 | NtUnloadKey | |
| 650 | NtUnloadKey2 | |
| 651 | NtUnloadKeyEx | |
| 652 | NtUnlockFile | |
| 653 | NtUnlockVirtualMemory | |
| 654 | NtUnmapViewOfSection | |
| 655 | NtUnmapViewOfSectionEx | |
| 656 | NtUnsubscribeWnfStateChange | |
| 657 | NtUpdateWnfStateData | |
| 658 | NtVdmControl | |
| 659 | NtWaitForAlertByThreadId | |
| 660 | NtWaitForDebugEvent | |
| 661 | NtWaitForKeyedEvent | |
| 662 | NtWaitForMultipleObjects | |
| 663 | NtWaitForMultipleObjects32 | |
| 664 | NtWaitForSingleObject | |
| 665 | NtWaitForWorkViaWorkerFactory | |
| 666 | NtWaitHighEventPair | |
| 667 | NtWaitLowEventPair | |
| 668 | NtWorkerFactoryWorkerReady | |
| 669 | NtWriteFile | |
| 670 | NtWriteFileGather | |
| 671 | NtWriteRequestData | |
| 672 | NtWriteVirtualMemory | |
| 673 | NtYieldExecution | |
| 674 | NtdllDefWindowProc_A | |
| 675 | NtdllDefWindowProc_W | |
| 676 | NtdllDialogWndProc_A | |
| 677 | NtdllDialogWndProc_W | |
| 678 | PfxFindPrefix | |
| 679 | PfxInitialize | |
| 680 | PfxInsertPrefix | |
| 681 | PfxRemovePrefix | |
| 682 | PssNtCaptureSnapshot | |
| 683 | PssNtDuplicateSnapshot | |
| 684 | PssNtFreeRemoteSnapshot | |
| 685 | PssNtFreeSnapshot | |
| 686 | PssNtFreeWalkMarker | |
| 687 | PssNtQuerySnapshot | |
| 688 | PssNtValidateDescriptor | |
| 689 | PssNtWalkSnapshot | |
| 690 | ReadTimeStampCounter | |
| 691 | RtlAbortRXact | |
| 692 | RtlAbsoluteToSelfRelativeSD | |
| 693 | RtlAcquirePebLock | |
| 694 | RtlAcquirePrivilege | |
| 695 | RtlAcquireReleaseSRWLockExclusive | |
| 696 | RtlAcquireResourceExclusive | |
| 697 | RtlAcquireResourceShared | |
| 698 | RtlAcquireSRWLockExclusive | |
| 699 | RtlAcquireSRWLockShared | |
| 700 | RtlActivateActivationContext | |
| 701 | RtlActivateActivationContextEx | |
| 702 | RtlActivateActivationContextUnsafeFast | |
| 703 | RtlAddAccessAllowedAce | |
| 704 | RtlAddAccessAllowedAceEx | |
| 705 | RtlAddAccessAllowedObjectAce | |
| 706 | RtlAddAccessDeniedAce | |
| 707 | RtlAddAccessDeniedAceEx | |
| 708 | RtlAddAccessDeniedObjectAce | |
| 709 | RtlAddAccessFilterAce | |
| 710 | RtlAddAce | |
| 711 | RtlAddActionToRXact | |
| 712 | RtlAddAtomToAtomTable | |
| 713 | RtlAddAttributeActionToRXact | |
| 714 | RtlAddAuditAccessAce | |
| 715 | RtlAddAuditAccessAceEx | |
| 716 | RtlAddAuditAccessObjectAce | |
| 717 | RtlAddCompoundAce | |
| 718 | RtlAddFunctionTable | |
| 719 | RtlAddGrowableFunctionTable | |
| 720 | RtlAddIntegrityLabelToBoundaryDescriptor | |
| 721 | RtlAddMandatoryAce | |
| 722 | RtlAddProcessTrustLabelAce | |
| 723 | RtlAddRefActivationContext | |
| 724 | RtlAddRefMemoryStream | |
| 725 | RtlAddResourceAttributeAce | |
| 726 | RtlAddSIDToBoundaryDescriptor | |
| 727 | RtlAddScopedPolicyIDAce | |
| 728 | RtlAddVectoredContinueHandler | |
| 729 | RtlAddVectoredExceptionHandler | |
| 730 | RtlAddressInSectionTable | |
| 731 | RtlAdjustPrivilege | |
| 732 | RtlAllocateActivationContextStack | |
| 733 | RtlAllocateAndInitializeSid | |
| 734 | RtlAllocateAndInitializeSidEx | |
| 735 | RtlAllocateHandle | |
| 736 | RtlAllocateHeap | |
| 737 | RtlAllocateMemoryBlockLookaside | |
| 738 | RtlAllocateMemoryZone | |
| 739 | RtlAllocateWnfSerializationGroup | |
| 740 | RtlAnsiCharToUnicodeChar | |
| 741 | RtlAnsiStringToUnicodeSize | |
| 742 | RtlAnsiStringToUnicodeString | |
| 743 | RtlAppendAsciizToString | |
| 744 | RtlAppendPathElement | |
| 745 | RtlAppendStringToString | |
| 746 | RtlAppendUnicodeStringToString | |
| 747 | RtlAppendUnicodeToString | |
| 748 | RtlApplicationVerifierStop | |
| 749 | RtlApplyRXact | |
| 750 | RtlApplyRXactNoFlush | |
| 751 | RtlAppxIsFileOwnedByTrustedInstaller | |
| 752 | RtlAreAllAccessesGranted | |
| 753 | RtlAreAnyAccessesGranted | |
| 754 | RtlAreBitsClear | |
| 755 | RtlAreBitsClearEx | |
| 756 | RtlAreBitsSet | |
| 757 | RtlAreLongPathsEnabled | |
| 758 | RtlAssert | |
| 759 | RtlAvlInsertNodeEx | |
| 760 | RtlAvlRemoveNode | |
| 761 | RtlBarrier | |
| 762 | RtlBarrierForDelete | |
| 763 | RtlCancelTimer | |
| 764 | RtlCanonicalizeDomainName | |
| 765 | RtlCapabilityCheck | |
| 766 | RtlCapabilityCheckForSingleSessionSku | |
| 767 | RtlCaptureContext | |
| 768 | RtlCaptureStackBackTrace | |
| 769 | RtlCharToInteger | |
| 770 | RtlCheckBootStatusIntegrity | |
| 771 | RtlCheckForOrphanedCriticalSections | |
| 772 | RtlCheckPortableOperatingSystem | |
| 773 | RtlCheckRegistryKey | |
| 774 | RtlCheckSandboxedToken | |
| 775 | RtlCheckSystemBootStatusIntegrity | |
| 776 | RtlCheckTokenCapability | |
| 777 | RtlCheckTokenMembership | |
| 778 | RtlCheckTokenMembershipEx | |
| 779 | RtlCleanUpTEBLangLists | |
| 780 | RtlClearAllBits | |
| 781 | RtlClearAllBitsEx | |
| 782 | RtlClearBit | |
| 783 | RtlClearBitEx | |
| 784 | RtlClearBits | |
| 785 | RtlClearBitsEx | |
| 786 | RtlClearThreadWorkOnBehalfTicket | |
| 787 | RtlCloneMemoryStream | |
| 788 | RtlCloneUserProcess | |
| 789 | RtlCmDecodeMemIoResource | |
| 790 | RtlCmEncodeMemIoResource | |
| 791 | RtlCommitDebugInfo | |
| 792 | RtlCommitMemoryStream | |
| 793 | RtlCompactHeap | |
| 794 | RtlCompareAltitudes | |
| 795 | RtlCompareMemory | |
| 796 | RtlCompareMemoryUlong | |
| 797 | RtlCompareString | |
| 798 | RtlCompareUnicodeString | |
| 799 | RtlCompareUnicodeStrings | |
| 800 | RtlCompleteProcessCloning | |
| 801 | RtlCompressBuffer | |
| 802 | RtlComputeCrc32 | |
| 803 | RtlComputeImportTableHash | |
| 804 | RtlComputePrivatizedDllName_U | |
| 805 | RtlConnectToSm | |
| 806 | RtlConsoleMultiByteToUnicodeN | |
| 807 | RtlConstructCrossVmEventPath | |
| 808 | RtlContractHashTable | |
| 809 | RtlConvertDeviceFamilyInfoToString | |
| 810 | RtlConvertExclusiveToShared | |
| 811 | RtlConvertLCIDToString | |
| 812 | RtlConvertSRWLockExclusiveToShared | |
| 813 | RtlConvertSharedToExclusive | |
| 814 | RtlConvertSidToUnicodeString | |
| 815 | RtlConvertToAutoInheritSecurityObject | |
| 816 | RtlCopyBitMap | |
| 817 | RtlCopyContext | |
| 818 | RtlCopyExtendedContext | |
| 819 | RtlCopyLuid | |
| 820 | RtlCopyLuidAndAttributesArray | |
| 821 | RtlCopyMappedMemory | |
| 822 | RtlCopyMemory | |
| 823 | RtlCopyMemoryStreamTo | |
| 824 | RtlCopyOutOfProcessMemoryStreamTo | |
| 825 | RtlCopySecurityDescriptor | |
| 826 | RtlCopySid | |
| 827 | RtlCopySidAndAttributesArray | |
| 828 | RtlCopyString | |
| 829 | RtlCopyUnicodeString | |
| 830 | RtlCrc32 | |
| 831 | RtlCrc64 | |
| 832 | RtlCreateAcl | |
| 833 | RtlCreateActivationContext | |
| 834 | RtlCreateAndSetSD | |
| 835 | RtlCreateAtomTable | |
| 836 | RtlCreateBootStatusDataFile | |
| 837 | RtlCreateBoundaryDescriptor | |
| 838 | RtlCreateEnvironment | |
| 839 | RtlCreateEnvironmentEx | |
| 840 | RtlCreateHashTable | |
| 841 | RtlCreateHashTableEx | |
| 842 | RtlCreateHeap | |
| 843 | RtlCreateMemoryBlockLookaside | |
| 844 | RtlCreateMemoryZone | |
| 845 | RtlCreateProcessParameters | |
| 846 | RtlCreateProcessParametersEx | |
| 847 | RtlCreateProcessParametersWithTemplate | |
| 848 | RtlCreateProcessReflection | |
| 849 | RtlCreateQueryDebugBuffer | |
| 850 | RtlCreateRegistryKey | |
| 851 | RtlCreateSecurityDescriptor | |
| 852 | RtlCreateServiceSid | |
| 853 | RtlCreateSystemVolumeInformationFolder | |
| 854 | RtlCreateTagHeap | |
| 855 | RtlCreateTimer | |
| 856 | RtlCreateTimerQueue | |
| 857 | RtlCreateUnicodeString | |
| 858 | RtlCreateUnicodeStringFromAsciiz | |
| 859 | RtlCreateUserProcess | |
| 860 | RtlCreateUserProcessEx | |
| 861 | RtlCreateUserSecurityObject | |
| 862 | RtlCreateUserStack | |
| 863 | RtlCreateUserThread | |
| 864 | RtlCreateVirtualAccountSid | |
| 865 | RtlCultureNameToLCID | |
| 866 | RtlCustomCPToUnicodeN | |
| 867 | RtlCutoverTimeToSystemTime | |
| 868 | RtlDeCommitDebugInfo | |
| 869 | RtlDeNormalizeProcessParams | |
| 870 | RtlDeactivateActivationContext | |
| 871 | RtlDeactivateActivationContextUnsafeFast | |
| 872 | RtlDebugPrintTimes | |
| 873 | RtlDecodePointer | |
| 874 | RtlDecodeRemotePointer | |
| 875 | RtlDecodeSystemPointer | |
| 876 | RtlDecompressBuffer | |
| 877 | RtlDecompressBufferEx | |
| 878 | RtlDecompressFragment | |
| 879 | RtlDefaultNpAcl | |
| 880 | RtlDelete | |
| 881 | RtlDeleteAce | |
| 882 | RtlDeleteAtomFromAtomTable | |
| 883 | RtlDeleteBarrier | |
| 884 | RtlDeleteBoundaryDescriptor | |
| 885 | RtlDeleteCriticalSection | |
| 886 | RtlDeleteElementGenericTable | |
| 887 | RtlDeleteElementGenericTableAvl | |
| 888 | RtlDeleteElementGenericTableAvlEx | |
| 889 | RtlDeleteFunctionTable | |
| 890 | RtlDeleteGrowableFunctionTable | |
| 891 | RtlDeleteHashTable | |
| 892 | RtlDeleteNoSplay | |
| 893 | RtlDeleteRegistryValue | |
| 894 | RtlDeleteResource | |
| 895 | RtlDeleteSecurityObject | |
| 896 | RtlDeleteTimer | |
| 897 | RtlDeleteTimerQueue | |
| 898 | RtlDeleteTimerQueueEx | |
| 899 | RtlDeregisterSecureMemoryCacheCallback | |
| 900 | RtlDeregisterWait | |
| 901 | RtlDeregisterWaitEx | |
| 902 | RtlDeriveCapabilitySidsFromName | |
| 903 | RtlDestroyAtomTable | |
| 904 | RtlDestroyEnvironment | |
| 905 | RtlDestroyHandleTable | |
| 906 | RtlDestroyHeap | |
| 907 | RtlDestroyMemoryBlockLookaside | |
| 908 | RtlDestroyMemoryZone | |
| 909 | RtlDestroyProcessParameters | |
| 910 | RtlDestroyQueryDebugBuffer | |
| 911 | RtlDetectHeapLeaks | |
| 912 | RtlDetermineDosPathNameType_U | |
| 913 | RtlDisableThreadProfiling | |
| 914 | RtlDllShutdownInProgress | |
| 915 | RtlDnsHostNameToComputerName | |
| 916 | RtlDoesFileExists_U | |
| 917 | RtlDoesNameContainWildCards | |
| 918 | RtlDosApplyFileIsolationRedirection_Ustr | |
| 919 | RtlDosLongPathNameToNtPathName_U_WithStatus | |
| 920 | RtlDosLongPathNameToRelativeNtPathName_U_WithStatus | |
| 921 | RtlDosPathNameToNtPathName_U | |
| 922 | RtlDosPathNameToNtPathName_U_WithStatus | |
| 923 | RtlDosPathNameToRelativeNtPathName_U | |
| 924 | RtlDosPathNameToRelativeNtPathName_U_WithStatus | |
| 925 | RtlDosSearchPath_U | |
| 926 | RtlDosSearchPath_Ustr | |
| 927 | RtlDowncaseUnicodeChar | |
| 928 | RtlDowncaseUnicodeString | |
| 929 | RtlDrainNonVolatileFlush | |
| 930 | RtlDumpResource | |
| 931 | RtlDuplicateUnicodeString | |
| 932 | RtlEmptyAtomTable | |
| 933 | RtlEnableEarlyCriticalSectionEventCreation | |
| 934 | RtlEnableThreadProfiling | |
| 935 | RtlEncodePointer | |
| 936 | RtlEncodeRemotePointer | |
| 937 | RtlEncodeSystemPointer | |
| 938 | RtlEndEnumerationHashTable | |
| 939 | RtlEndStrongEnumerationHashTable | |
| 940 | RtlEndWeakEnumerationHashTable | |
| 941 | RtlEnterCriticalSection | |
| 942 | RtlEnumProcessHeaps | |
| 943 | RtlEnumerateEntryHashTable | |
| 944 | RtlEnumerateGenericTable | |
| 945 | RtlEnumerateGenericTableAvl | |
| 946 | RtlEnumerateGenericTableLikeADirectory | |
| 947 | RtlEnumerateGenericTableWithoutSplaying | |
| 948 | RtlEnumerateGenericTableWithoutSplayingAvl | |
| 949 | RtlEqualComputerName | |
| 950 | RtlEqualDomainName | |
| 951 | RtlEqualLuid | |
| 952 | RtlEqualPrefixSid | |
| 953 | RtlEqualSid | |
| 954 | RtlEqualString | |
| 955 | RtlEqualUnicodeString | |
| 956 | RtlEqualWnfChangeStamps | |
| 957 | RtlEraseUnicodeString | |
| 958 | RtlEthernetAddressToStringA | |
| 959 | RtlEthernetAddressToStringW | |
| 960 | RtlEthernetStringToAddressA | |
| 961 | RtlEthernetStringToAddressW | |
| 962 | RtlExitUserProcess | |
| 963 | RtlExitUserThread | |
| 964 | RtlExpandEnvironmentStrings | |
| 965 | RtlExpandEnvironmentStrings_U | |
| 966 | RtlExpandHashTable | |
| 967 | RtlExtendCorrelationVector | |
| 968 | RtlExtendMemoryBlockLookaside | |
| 969 | RtlExtendMemoryZone | |
| 970 | RtlExtendedMagicDivide | |
| 971 | RtlExtractBitMap | |
| 972 | RtlFillMemory | |
| 973 | RtlFillMemoryUlong | |
| 974 | RtlFillMemoryUlonglong | |
| 975 | RtlFillNonVolatileMemory | |
| 976 | RtlFinalReleaseOutOfProcessMemoryStream | |
| 977 | RtlFindAceByType | |
| 978 | RtlFindActivationContextSectionGuid | |
| 979 | RtlFindActivationContextSectionString | |
| 980 | RtlFindCharInUnicodeString | |
| 981 | RtlFindClearBits | |
| 982 | RtlFindClearBitsAndSet | |
| 983 | RtlFindClearBitsEx | |
| 984 | RtlFindClearRuns | |
| 985 | RtlFindClosestEncodableLength | |
| 986 | RtlFindExportedRoutineByName | |
| 987 | RtlFindLastBackwardRunClear | |
| 988 | RtlFindLeastSignificantBit | |
| 989 | RtlFindLongestRunClear | |
| 990 | RtlFindMessage | |
| 991 | RtlFindMostSignificantBit | |
| 992 | RtlFindNextForwardRunClear | |
| 993 | RtlFindSetBits | |
| 994 | RtlFindSetBitsAndClear | |
| 995 | RtlFindSetBitsAndClearEx | |
| 996 | RtlFindSetBitsEx | |
| 997 | RtlFindUnicodeSubstring | |
| 998 | RtlFirstEntrySList | |
| 999 | RtlFirstFreeAce | |
| 1000 | RtlFlsAlloc | |
| 1001 | RtlFlsFree | |
| 1002 | RtlFlsGetValue | |
| 1003 | RtlFlsSetValue | |
| 1004 | RtlFlushHeaps | |
| 1005 | RtlFlushNonVolatileMemory | |
| 1006 | RtlFlushNonVolatileMemoryRanges | |
| 1007 | RtlFlushSecureMemoryCache | |
| 1008 | RtlFormatCurrentUserKeyPath | |
| 1009 | RtlFormatMessage | |
| 1010 | RtlFormatMessageEx | |
| 1011 | RtlFreeActivationContextStack | |
| 1012 | RtlFreeAnsiString | |
| 1013 | RtlFreeHandle | |
| 1014 | RtlFreeHeap | |
| 1015 | RtlFreeMemoryBlockLookaside | |
| 1016 | RtlFreeNonVolatileToken | |
| 1017 | RtlFreeOemString | |
| 1018 | RtlFreeSid | |
| 1019 | RtlFreeThreadActivationContextStack | |
| 1020 | RtlFreeUTF8String | |
| 1021 | RtlFreeUnicodeString | |
| 1022 | RtlFreeUserStack | |
| 1023 | RtlGUIDFromString | |
| 1024 | RtlGenerate8dot3Name | |
| 1025 | RtlGetAce | |
| 1026 | RtlGetActiveActivationContext | |
| 1027 | RtlGetActiveConsoleId | |
| 1028 | RtlGetAppContainerNamedObjectPath | |
| 1029 | RtlGetAppContainerParent | |
| 1030 | RtlGetAppContainerSidType | |
| 1031 | RtlGetCallersAddress | |
| 1032 | RtlGetCompressionWorkSpaceSize | |
| 1033 | RtlGetConsoleSessionForegroundProcessId | |
| 1034 | RtlGetControlSecurityDescriptor | |
| 1035 | RtlGetCriticalSectionRecursionCount | |
| 1036 | RtlGetCurrentDirectory_U | |
| 1037 | RtlGetCurrentPeb | |
| 1038 | RtlGetCurrentProcessorNumber | |
| 1039 | RtlGetCurrentProcessorNumberEx | |
| 1040 | RtlGetCurrentServiceSessionId | |
| 1041 | RtlGetCurrentTransaction | |
| 1042 | RtlGetDaclSecurityDescriptor | |
| 1043 | RtlGetDeviceFamilyInfoEnum | |
| 1044 | RtlGetElementGenericTable | |
| 1045 | RtlGetElementGenericTableAvl | |
| 1046 | RtlGetEnabledExtendedFeatures | |
| 1047 | RtlGetExePath | |
| 1048 | RtlGetExtendedContextLength | |
| 1049 | RtlGetExtendedContextLength2 | |
| 1050 | RtlGetExtendedFeaturesMask | |
| 1051 | RtlGetFileMUIPath | |
| 1052 | RtlGetFrame | |
| 1053 | RtlGetFullPathName_U | |
| 1054 | RtlGetFullPathName_UEx | |
| 1055 | RtlGetFullPathName_UstrEx | |
| 1056 | RtlGetFunctionTableListHead | |
| 1057 | RtlGetGroupSecurityDescriptor | |
| 1058 | RtlGetIntegerAtom | |
| 1059 | RtlGetInterruptTimePrecise | |
| 1060 | RtlGetLastNtStatus | |
| 1061 | RtlGetLastWin32Error | |
| 1062 | RtlGetLengthWithoutLastFullDosOrNtPathElement | |
| 1063 | RtlGetLengthWithoutTrailingPathSeperators | |
| 1064 | RtlGetLocaleFileMappingAddress | |
| 1065 | RtlGetLongestNtPathLength | |
| 1066 | RtlGetMultiTimePrecise | |
| 1067 | RtlGetNativeSystemInformation | |
| 1068 | RtlGetNextEntryHashTable | |
| 1069 | RtlGetNonVolatileToken | |
| 1070 | RtlGetNtGlobalFlags | |
| 1071 | RtlGetNtProductType | |
| 1072 | RtlGetNtSystemRoot | |
| 1073 | RtlGetNtVersionNumbers | |
| 1074 | RtlGetOwnerSecurityDescriptor | |
| 1075 | RtlGetParentLocaleName | |
| 1076 | RtlGetPersistedStateLocation | |
| 1077 | RtlGetProcessHeaps | |
| 1078 | RtlGetProcessPreferredUILanguages | |
| 1079 | RtlGetProductInfo | |
| 1080 | RtlGetSaclSecurityDescriptor | |
| 1081 | RtlGetSearchPath | |
| 1082 | RtlGetSecurityDescriptorRMControl | |
| 1083 | RtlGetSessionProperties | |
| 1084 | RtlGetSetBootStatusData | |
| 1085 | RtlGetSuiteMask | |
| 1086 | RtlGetSystemBootStatus | |
| 1087 | RtlGetSystemBootStatusEx | |
| 1088 | RtlGetSystemPreferredUILanguages | |
| 1089 | RtlGetSystemTimePrecise | |
| 1090 | RtlGetThreadErrorMode | |
| 1091 | RtlGetThreadLangIdByIndex | |
| 1092 | RtlGetThreadPreferredUILanguages | |
| 1093 | RtlGetThreadWorkOnBehalfTicket | |
| 1094 | RtlGetTokenNamedObjectPath | |
| 1095 | RtlGetUILanguageInfo | |
| 1096 | RtlGetUnloadEventTrace | |
| 1097 | RtlGetUnloadEventTraceEx | |
| 1098 | RtlGetUserInfoHeap | |
| 1099 | RtlGetUserPreferredUILanguages | |
| 1100 | RtlGetVersion | |
| 1101 | RtlGrowFunctionTable | |
| 1102 | RtlGuardCheckLongJumpTarget | |
| 1103 | RtlHashUnicodeString | |
| 1104 | RtlHeapTrkInitialize | |
| 1105 | RtlIdentifierAuthoritySid | |
| 1106 | RtlIdnToAscii | |
| 1107 | RtlIdnToNameprepUnicode | |
| 1108 | RtlIdnToUnicode | |
| 1109 | RtlImageDirectoryEntryToData | |
| 1110 | RtlImageNtHeader | |
| 1111 | RtlImageNtHeaderEx | |
| 1112 | RtlImageRvaToSection | |
| 1113 | RtlImageRvaToVa | |
| 1114 | RtlImpersonateSelf | |
| 1115 | RtlImpersonateSelfEx | |
| 1116 | RtlIncrementCorrelationVector | |
| 1117 | RtlInitAnsiString | |
| 1118 | RtlInitAnsiStringEx | |
| 1119 | RtlInitBarrier | |
| 1120 | RtlInitCodePageTable | |
| 1121 | RtlInitEnumerationHashTable | |
| 1122 | RtlInitMemoryStream | |
| 1123 | RtlInitNlsTables | |
| 1124 | RtlInitOutOfProcessMemoryStream | |
| 1125 | RtlInitString | |
| 1126 | RtlInitStringEx | |
| 1127 | RtlInitStrongEnumerationHashTable | |
| 1128 | RtlInitUTF8String | |
| 1129 | RtlInitUTF8StringEx | |
| 1130 | RtlInitUnicodeString | |
| 1131 | RtlInitUnicodeStringEx | |
| 1132 | RtlInitWeakEnumerationHashTable | |
| 1133 | RtlInitializeAtomPackage | |
| 1134 | RtlInitializeBitMap | |
| 1135 | RtlInitializeBitMapEx | |
| 1136 | RtlInitializeConditionVariable | |
| 1137 | RtlInitializeContext | |
| 1138 | RtlInitializeCorrelationVector | |
| 1139 | RtlInitializeCriticalSection | |
| 1140 | RtlInitializeCriticalSectionAndSpinCount | |
| 1141 | RtlInitializeCriticalSectionEx | |
| 1142 | RtlInitializeExtendedContext | |
| 1143 | RtlInitializeExtendedContext2 | |
| 1144 | RtlInitializeGenericTable | |
| 1145 | RtlInitializeGenericTableAvl | |
| 1146 | RtlInitializeHandleTable | |
| 1147 | RtlInitializeNtUserPfn | |
| 1148 | RtlInitializeRXact | |
| 1149 | RtlInitializeResource | |
| 1150 | RtlInitializeSListHead | |
| 1151 | RtlInitializeSRWLock | |
| 1152 | RtlInitializeSid | |
| 1153 | RtlInitializeSidEx | |
| 1154 | RtlInsertElementGenericTable | |
| 1155 | RtlInsertElementGenericTableAvl | |
| 1156 | RtlInsertElementGenericTableFull | |
| 1157 | RtlInsertElementGenericTableFullAvl | |
| 1158 | RtlInsertEntryHashTable | |
| 1159 | RtlInstallFunctionTableCallback | |
| 1160 | RtlInt64ToUnicodeString | |
| 1161 | RtlIntegerToChar | |
| 1162 | RtlIntegerToUnicodeString | |
| 1163 | RtlInterlockedClearBitRun | |
| 1164 | RtlInterlockedFlushSList | |
| 1165 | RtlInterlockedPopEntrySList | |
| 1166 | RtlInterlockedPushEntrySList | |
| 1167 | RtlInterlockedPushListSList | |
| 1168 | RtlInterlockedPushListSListEx | |
| 1169 | RtlInterlockedSetBitRun | |
| 1170 | RtlIoDecodeMemIoResource | |
| 1171 | RtlIoEncodeMemIoResource | |
| 1172 | RtlIpv4AddressToStringA | |
| 1173 | RtlIpv4AddressToStringExA | |
| 1174 | RtlIpv4AddressToStringExW | |
| 1175 | RtlIpv4AddressToStringW | |
| 1176 | RtlIpv4StringToAddressA | |
| 1177 | RtlIpv4StringToAddressExA | |
| 1178 | RtlIpv4StringToAddressExW | |
| 1179 | RtlIpv4StringToAddressW | |
| 1180 | RtlIpv6AddressToStringA | |
| 1181 | RtlIpv6AddressToStringExA | |
| 1182 | RtlIpv6AddressToStringExW | |
| 1183 | RtlIpv6AddressToStringW | |
| 1184 | RtlIpv6StringToAddressA | |
| 1185 | RtlIpv6StringToAddressExA | |
| 1186 | RtlIpv6StringToAddressExW | |
| 1187 | RtlIpv6StringToAddressW | |
| 1188 | RtlIsActivationContextActive | |
| 1189 | RtlIsCapabilitySid | |
| 1190 | RtlIsCloudFilesPlaceholder | |
| 1191 | RtlIsCriticalSectionLocked | |
| 1192 | RtlIsCriticalSectionLockedByThread | |
| 1193 | RtlIsCurrentProcess | |
| 1194 | RtlIsCurrentThread | |
| 1195 | RtlIsCurrentThreadAttachExempt | |
| 1196 | RtlIsDosDeviceName_U | |
| 1197 | RtlIsElevatedRid | |
| 1198 | RtlIsGenericTableEmpty | |
| 1199 | RtlIsGenericTableEmptyAvl | |
| 1200 | RtlIsMultiSessionSku | |
| 1201 | RtlIsMultiUsersInSessionSku | |
| 1202 | RtlIsNameInExpression | |
| 1203 | RtlIsNameInUnUpcasedExpression | |
| 1204 | RtlIsNameLegalDOS8Dot3 | |
| 1205 | RtlIsNonEmptyDirectoryReparsePointAllowed | |
| 1206 | RtlIsNormalizedString | |
| 1207 | RtlIsPackageSid | |
| 1208 | RtlIsParentOfChildAppContainer | |
| 1209 | RtlIsPartialPlaceholder | |
| 1210 | RtlIsPartialPlaceholderFileHandle | |
| 1211 | RtlIsPartialPlaceholderFileInfo | |
| 1212 | RtlIsProcessorFeaturePresent | |
| 1213 | RtlIsStateSeparationEnabled | |
| 1214 | RtlIsTextUnicode | |
| 1215 | RtlIsThreadWithinLoaderCallout | |
| 1216 | RtlIsUntrustedObject | |
| 1217 | RtlIsValidHandle | |
| 1218 | RtlIsValidIndexHandle | |
| 1219 | RtlIsValidLocaleName | |
| 1220 | RtlIsValidProcessTrustLabelSid | |
| 1221 | RtlIsZeroMemory | |
| 1222 | RtlKnownExceptionFilter | |
| 1223 | RtlLCIDToCultureName | |
| 1224 | RtlLargeIntegerToChar | |
| 1225 | RtlLcidToLocaleName | |
| 1226 | RtlLeaveCriticalSection | |
| 1227 | RtlLengthRequiredSid | |
| 1228 | RtlLengthSecurityDescriptor | |
| 1229 | RtlLengthSid | |
| 1230 | RtlLengthSidAsUnicodeString | |
| 1231 | RtlLoadString | |
| 1232 | RtlLocalTimeToSystemTime | |
| 1233 | RtlLocaleNameToLcid | |
| 1234 | RtlLocateExtendedFeature | |
| 1235 | RtlLocateExtendedFeature2 | |
| 1236 | RtlLocateLegacyContext | |
| 1237 | RtlLockBootStatusData | |
| 1238 | RtlLockCurrentThread | |
| 1239 | RtlLockHeap | |
| 1240 | RtlLockMemoryBlockLookaside | |
| 1241 | RtlLockMemoryStreamRegion | |
| 1242 | RtlLockMemoryZone | |
| 1243 | RtlLockModuleSection | |
| 1244 | RtlLogStackBackTrace | |
| 1245 | RtlLookupAtomInAtomTable | |
| 1246 | RtlLookupElementGenericTable | |
| 1247 | RtlLookupElementGenericTableAvl | |
| 1248 | RtlLookupElementGenericTableFull | |
| 1249 | RtlLookupElementGenericTableFullAvl | |
| 1250 | RtlLookupEntryHashTable | |
| 1251 | RtlLookupFirstMatchingElementGenericTableAvl | |
| 1252 | RtlLookupFunctionEntry | |
| 1253 | RtlLookupFunctionTable | |
| 1254 | RtlMakeSelfRelativeSD | |
| 1255 | RtlMapGenericMask | |
| 1256 | RtlMapSecurityErrorToNtStatus | |
| 1257 | RtlMoveMemory | |
| 1258 | RtlMultiAppendUnicodeStringBuffer | |
| 1259 | RtlMultiByteToUnicodeN | |
| 1260 | RtlMultiByteToUnicodeSize | |
| 1261 | RtlMultipleAllocateHeap | |
| 1262 | RtlMultipleFreeHeap | |
| 1263 | RtlNewInstanceSecurityObject | |
| 1264 | RtlNewSecurityGrantedAccess | |
| 1265 | RtlNewSecurityObject | |
| 1266 | RtlNewSecurityObjectEx | |
| 1267 | RtlNewSecurityObjectWithMultipleInheritance | |
| 1268 | RtlNormalizeProcessParams | |
| 1269 | RtlNormalizeSecurityDescriptor | |
| 1270 | RtlNormalizeString | |
| 1271 | RtlNtPathNameToDosPathName | |
| 1272 | RtlNtStatusToDosError | |
| 1273 | RtlNtStatusToDosErrorNoTeb | |
| 1274 | RtlNtdllName | |
| 1275 | RtlNumberGenericTableElements | |
| 1276 | RtlNumberGenericTableElementsAvl | |
| 1277 | RtlNumberOfClearBits | |
| 1278 | RtlNumberOfClearBitsEx | |
| 1279 | RtlNumberOfClearBitsInRange | |
| 1280 | RtlNumberOfSetBits | |
| 1281 | RtlNumberOfSetBitsEx | |
| 1282 | RtlNumberOfSetBitsInRange | |
| 1283 | RtlNumberOfSetBitsUlongPtr | |
| 1284 | RtlOemStringToUnicodeSize | |
| 1285 | RtlOemStringToUnicodeString | |
| 1286 | RtlOemToUnicodeN | |
| 1287 | RtlOpenCurrentUser | |
| 1288 | RtlOsDeploymentState | |
| 1289 | RtlOwnerAcesPresent | |
| 1290 | RtlPcToFileHeader | |
| 1291 | RtlPinAtomInAtomTable | |
| 1292 | RtlPopFrame | |
| 1293 | RtlPrefixString | |
| 1294 | RtlPrefixUnicodeString | |
| 1295 | RtlPrepareForProcessCloning | |
| 1296 | RtlProcessFlsData | |
| 1297 | RtlProtectHeap | |
| 1298 | RtlPublishWnfStateData | |
| 1299 | RtlPushFrame | |
| 1300 | RtlQueryActivationContextApplicationSettings | |
| 1301 | RtlQueryAtomInAtomTable | |
| 1302 | RtlQueryCriticalSectionOwner | |
| 1303 | RtlQueryDepthSList | |
| 1304 | RtlQueryDynamicTimeZoneInformation | |
| 1305 | RtlQueryElevationFlags | |
| 1306 | RtlQueryEnvironmentVariable | |
| 1307 | RtlQueryEnvironmentVariable_U | |
| 1308 | RtlQueryHeapInformation | |
| 1309 | RtlQueryImageMitigationPolicy | |
| 1310 | RtlQueryInformationAcl | |
| 1311 | RtlQueryInformationActivationContext | |
| 1312 | RtlQueryInformationActiveActivationContext | |
| 1313 | RtlQueryInterfaceMemoryStream | |
| 1314 | RtlQueryModuleInformation | |
| 1315 | RtlQueryPackageClaims | |
| 1316 | RtlQueryPackageIdentity | |
| 1317 | RtlQueryPackageIdentityEx | |
| 1318 | RtlQueryPerformanceCounter | |
| 1319 | RtlQueryPerformanceFrequency | |
| 1320 | RtlQueryProcessBackTraceInformation | |
| 1321 | RtlQueryProcessDebugInformation | |
| 1322 | RtlQueryProcessHeapInformation | |
| 1323 | RtlQueryProcessLockInformation | |
| 1324 | RtlQueryProcessPlaceholderCompatibilityMode | |
| 1325 | RtlQueryProtectedPolicy | |
| 1326 | RtlQueryRegistryValueWithFallback | |
| 1327 | RtlQueryRegistryValues | |
| 1328 | RtlQueryRegistryValuesEx | |
| 1329 | RtlQueryResourcePolicy | |
| 1330 | RtlQuerySecurityObject | |
| 1331 | RtlQueryTagHeap | |
| 1332 | RtlQueryThreadPlaceholderCompatibilityMode | |
| 1333 | RtlQueryThreadProfiling | |
| 1334 | RtlQueryTimeZoneInformation | |
| 1335 | RtlQueryTokenHostIdAsUlong64 | |
| 1336 | RtlQueryUnbiasedInterruptTime | |
| 1337 | RtlQueryValidationRunlevel | |
| 1338 | RtlQueryWnfMetaNotification | |
| 1339 | RtlQueryWnfStateData | |
| 1340 | RtlQueryWnfStateDataWithExplicitScope | |
| 1341 | RtlQueueApcWow64Thread | |
| 1342 | RtlQueueWorkItem | |
| 1343 | RtlRaiseCustomSystemEventTrigger | |
| 1344 | RtlRaiseException | |
| 1345 | RtlRaiseStatus | |
| 1346 | RtlRandom | |
| 1347 | RtlRandomEx | |
| 1348 | RtlRbInsertNodeEx | |
| 1349 | RtlRbRemoveNode | |
| 1350 | RtlReAllocateHeap | |
| 1351 | RtlReadMemoryStream | |
| 1352 | RtlReadOutOfProcessMemoryStream | |
| 1353 | RtlReadThreadProfilingData | |
| 1354 | RtlRealPredecessor | |
| 1355 | RtlRealSuccessor | |
| 1356 | RtlRegisterForWnfMetaNotification | |
| 1357 | RtlRegisterSecureMemoryCacheCallback | |
| 1358 | RtlRegisterThreadWithCsrss | |
| 1359 | RtlRegisterWait | |
| 1360 | RtlReleaseActivationContext | |
| 1361 | RtlReleaseMemoryStream | |
| 1362 | RtlReleasePath | |
| 1363 | RtlReleasePebLock | |
| 1364 | RtlReleasePrivilege | |
| 1365 | RtlReleaseRelativeName | |
| 1366 | RtlReleaseResource | |
| 1367 | RtlReleaseSRWLockExclusive | |
| 1368 | RtlReleaseSRWLockShared | |
| 1369 | RtlRemoteCall | |
| 1370 | RtlRemoveEntryHashTable | |
| 1371 | RtlRemovePrivileges | |
| 1372 | RtlRemoveVectoredContinueHandler | |
| 1373 | RtlRemoveVectoredExceptionHandler | |
| 1374 | RtlReplaceSidInSd | |
| 1375 | RtlReplaceSystemDirectoryInPath | |
| 1376 | RtlReportException | |
| 1377 | RtlReportExceptionEx | |
| 1378 | RtlReportSilentProcessExit | |
| 1379 | RtlReportSqmEscalation | |
| 1380 | RtlResetMemoryBlockLookaside | |
| 1381 | RtlResetMemoryZone | |
| 1382 | RtlResetNtUserPfn | |
| 1383 | RtlResetRtlTranslations | |
| 1384 | RtlRestoreBootStatusDefaults | |
| 1385 | RtlRestoreContext | |
| 1386 | RtlRestoreLastWin32Error | |
| 1387 | RtlRestoreSystemBootStatusDefaults | |
| 1388 | RtlRestoreThreadPreferredUILanguages | |
| 1389 | RtlRetrieveNtUserPfn | |
| 1390 | RtlRevertMemoryStream | |
| 1391 | RtlRunDecodeUnicodeString | |
| 1392 | RtlRunEncodeUnicodeString | |
| 1393 | RtlRunOnceBeginInitialize | |
| 1394 | RtlRunOnceComplete | |
| 1395 | RtlRunOnceExecuteOnce | |
| 1396 | RtlRunOnceInitialize | |
| 1397 | RtlSecondsSince1970ToTime | |
| 1398 | RtlSecondsSince1980ToTime | |
| 1399 | RtlSeekMemoryStream | |
| 1400 | RtlSelfRelativeToAbsoluteSD | |
| 1401 | RtlSelfRelativeToAbsoluteSD2 | |
| 1402 | RtlSendMsgToSm | |
| 1403 | RtlSetAllBits | |
| 1404 | RtlSetAllBitsEx | |
| 1405 | RtlSetAttributesSecurityDescriptor | |
| 1406 | RtlSetBit | |
| 1407 | RtlSetBitEx | |
| 1408 | RtlSetBits | |
| 1409 | RtlSetBitsEx | |
| 1410 | RtlSetControlSecurityDescriptor | |
| 1411 | RtlSetCriticalSectionSpinCount | |
| 1412 | RtlSetCurrentDirectory_U | |
| 1413 | RtlSetCurrentEnvironment | |
| 1414 | RtlSetCurrentTransaction | |
| 1415 | RtlSetDaclSecurityDescriptor | |
| 1416 | RtlSetDynamicTimeZoneInformation | |
| 1417 | RtlSetEnvironmentStrings | |
| 1418 | RtlSetEnvironmentVar | |
| 1419 | RtlSetEnvironmentVariable | |
| 1420 | RtlSetExtendedFeaturesMask | |
| 1421 | RtlSetGroupSecurityDescriptor | |
| 1422 | RtlSetHeapInformation | |
| 1423 | RtlSetImageMitigationPolicy | |
| 1424 | RtlSetInformationAcl | |
| 1425 | RtlSetIoCompletionCallback | |
| 1426 | RtlSetLastWin32Error | |
| 1427 | RtlSetLastWin32ErrorAndNtStatusFromNtStatus | |
| 1428 | RtlSetMemoryStreamSize | |
| 1429 | RtlSetOwnerSecurityDescriptor | |
| 1430 | RtlSetPortableOperatingSystem | |
| 1431 | RtlSetProcessDebugInformation | |
| 1432 | RtlSetProcessIsCritical | |
| 1433 | RtlSetProcessPlaceholderCompatibilityMode | |
| 1434 | RtlSetProcessPreferredUILanguages | |
| 1435 | RtlSetProtectedPolicy | |
| 1436 | RtlSetProxiedProcessId | |
| 1437 | RtlSetSaclSecurityDescriptor | |
| 1438 | RtlSetSearchPathMode | |
| 1439 | RtlSetSecurityDescriptorRMControl | |
| 1440 | RtlSetSecurityObject | |
| 1441 | RtlSetSecurityObjectEx | |
| 1442 | RtlSetSystemBootStatus | |
| 1443 | RtlSetSystemBootStatusEx | |
| 1444 | RtlSetThreadErrorMode | |
| 1445 | RtlSetThreadIsCritical | |
| 1446 | RtlSetThreadPlaceholderCompatibilityMode | |
| 1447 | RtlSetThreadPoolStartFunc | |
| 1448 | RtlSetThreadPreferredUILanguages | |
| 1449 | RtlSetThreadPreferredUILanguages2 | |
| 1450 | RtlSetThreadSubProcessTag | |
| 1451 | RtlSetThreadWorkOnBehalfTicket | |
| 1452 | RtlSetTimeZoneInformation | |
| 1453 | RtlSetTimer | |
| 1454 | RtlSetUnhandledExceptionFilter | |
| 1455 | RtlSetUserFlagsHeap | |
| 1456 | RtlSetUserValueHeap | |
| 1457 | RtlSidDominates | |
| 1458 | RtlSidDominatesForTrust | |
| 1459 | RtlSidEqualLevel | |
| 1460 | RtlSidHashInitialize | |
| 1461 | RtlSidHashLookup | |
| 1462 | RtlSidIsHigherLevel | |
| 1463 | RtlSizeHeap | |
| 1464 | RtlSleepConditionVariableCS | |
| 1465 | RtlSleepConditionVariableSRW | |
| 1466 | RtlSplay | |
| 1467 | RtlStartRXact | |
| 1468 | RtlStatMemoryStream | |
| 1469 | RtlStringFromGUID | |
| 1470 | RtlStringFromGUIDEx | |
| 1471 | RtlStronglyEnumerateEntryHashTable | |
| 1472 | RtlSubAuthorityCountSid | |
| 1473 | RtlSubAuthoritySid | |
| 1474 | RtlSubscribeWnfStateChangeNotification | |
| 1475 | RtlSubtreePredecessor | |
| 1476 | RtlSubtreeSuccessor | |
| 1477 | RtlSwitchedVVI | |
| 1478 | RtlSystemTimeToLocalTime | |
| 1479 | RtlTestAndPublishWnfStateData | |
| 1480 | RtlTestBit | |
| 1481 | RtlTestBitEx | |
| 1482 | RtlTestProtectedAccess | |
| 1483 | RtlTimeFieldsToTime | |
| 1484 | RtlTimeToElapsedTimeFields | |
| 1485 | RtlTimeToSecondsSince1970 | |
| 1486 | RtlTimeToSecondsSince1980 | |
| 1487 | RtlTimeToTimeFields | |
| 1488 | RtlTraceDatabaseAdd | |
| 1489 | RtlTraceDatabaseCreate | |
| 1490 | RtlTraceDatabaseDestroy | |
| 1491 | RtlTraceDatabaseEnumerate | |
| 1492 | RtlTraceDatabaseFind | |
| 1493 | RtlTraceDatabaseLock | |
| 1494 | RtlTraceDatabaseUnlock | |
| 1495 | RtlTraceDatabaseValidate | |
| 1496 | RtlTryAcquirePebLock | |
| 1497 | RtlTryAcquireSRWLockExclusive | |
| 1498 | RtlTryAcquireSRWLockShared | |
| 1499 | RtlTryConvertSRWLockSharedToExclusiveOrRelease | |
| 1500 | RtlTryEnterCriticalSection | |
| 1501 | RtlUTF8StringToUnicodeString | |
| 1502 | RtlUTF8ToUnicodeN | |
| 1503 | RtlUdiv128 | |
| 1504 | RtlUlongByteSwap | |
| 1505 | RtlUlonglongByteSwap | |
| 1506 | RtlUnhandledExceptionFilter | |
| 1507 | RtlUnhandledExceptionFilter2 | |
| 1508 | RtlUnicodeStringToAnsiSize | |
| 1509 | RtlUnicodeStringToAnsiString | |
| 1510 | RtlUnicodeStringToCountedOemString | |
| 1511 | RtlUnicodeStringToInteger | |
| 1512 | RtlUnicodeStringToOemSize | |
| 1513 | RtlUnicodeStringToOemString | |
| 1514 | RtlUnicodeStringToUTF8String | |
| 1515 | RtlUnicodeToCustomCPN | |
| 1516 | RtlUnicodeToMultiByteN | |
| 1517 | RtlUnicodeToMultiByteSize | |
| 1518 | RtlUnicodeToOemN | |
| 1519 | RtlUnicodeToUTF8N | |
| 1520 | RtlUniform | |
| 1521 | RtlUnlockBootStatusData | |
| 1522 | RtlUnlockCurrentThread | |
| 1523 | RtlUnlockHeap | |
| 1524 | RtlUnlockMemoryBlockLookaside | |
| 1525 | RtlUnlockMemoryStreamRegion | |
| 1526 | RtlUnlockMemoryZone | |
| 1527 | RtlUnlockModuleSection | |
| 1528 | RtlUnsubscribeWnfNotificationWaitForCompletion | |
| 1529 | RtlUnsubscribeWnfNotificationWithCompletionCallback | |
| 1530 | RtlUnsubscribeWnfStateChangeNotification | |
| 1531 | RtlUnwind | |
| 1532 | RtlUnwindEx | |
| 1533 | RtlUpcaseUnicodeChar | |
| 1534 | RtlUpcaseUnicodeString | |
| 1535 | RtlUpcaseUnicodeStringToAnsiString | |
| 1536 | RtlUpcaseUnicodeStringToCountedOemString | |
| 1537 | RtlUpcaseUnicodeStringToOemString | |
| 1538 | RtlUpcaseUnicodeToCustomCPN | |
| 1539 | RtlUpcaseUnicodeToMultiByteN | |
| 1540 | RtlUpcaseUnicodeToOemN | |
| 1541 | RtlUpdateClonedCriticalSection | |
| 1542 | RtlUpdateClonedSRWLock | |
| 1543 | RtlUpdateTimer | |
| 1544 | RtlUpperChar | |
| 1545 | RtlUpperString | |
| 1546 | RtlUserFiberStart | |
| 1547 | RtlUserThreadStart | |
| 1548 | RtlUshortByteSwap | |
| 1549 | RtlValidAcl | |
| 1550 | RtlValidProcessProtection | |
| 1551 | RtlValidRelativeSecurityDescriptor | |
| 1552 | RtlValidSecurityDescriptor | |
| 1553 | RtlValidSid | |
| 1554 | RtlValidateCorrelationVector | |
| 1555 | RtlValidateHeap | |
| 1556 | RtlValidateProcessHeaps | |
| 1557 | RtlValidateUnicodeString | |
| 1558 | RtlVerifyVersionInfo | |
| 1559 | RtlVirtualUnwind | |
| 1560 | RtlWaitForWnfMetaNotification | |
| 1561 | RtlWaitOnAddress | |
| 1562 | RtlWakeAddressAll | |
| 1563 | RtlWakeAddressAllNoFence | |
| 1564 | RtlWakeAddressSingle | |
| 1565 | RtlWakeAddressSingleNoFence | |
| 1566 | RtlWakeAllConditionVariable | |
| 1567 | RtlWakeConditionVariable | |
| 1568 | RtlWalkFrameChain | |
| 1569 | RtlWalkHeap | |
| 1570 | RtlWeaklyEnumerateEntryHashTable | |
| 1571 | RtlWerpReportException | |
| 1572 | RtlWnfCompareChangeStamp | |
| 1573 | RtlWnfDllUnloadCallback | |
| 1574 | RtlWow64CallFunction64 | |
| 1575 | RtlWow64EnableFsRedirection | |
| 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 | |
| 1595 | RtlWriteMemoryStream | |
| 1596 | RtlWriteNonVolatileMemory | |
| 1597 | RtlWriteRegistryValue | |
| 1598 | RtlZeroHeap | |
| 1599 | RtlZeroMemory | |
| 1600 | RtlZombifyActivationContext | |
| 1601 | RtlpApplyLengthFunction | |
| 1602 | RtlpCheckDynamicTimeZoneInformation | |
| 1603 | RtlpCleanupRegistryKeys | |
| 1604 | RtlpConvertAbsoluteToRelativeSecurityAttribute | |
| 1605 | RtlpConvertCultureNamesToLCIDs | |
| 1606 | RtlpConvertLCIDsToCultureNames | |
| 1607 | RtlpConvertRelativeToAbsoluteSecurityAttribute | |
| 1608 | RtlpCreateProcessRegistryInfo | |
| 1609 | RtlpEnsureBufferSize | |
| 1610 | RtlpFreezeTimeBias DATA | |
| 1611 | RtlpGetDeviceFamilyInfoEnum | |
| 1612 | RtlpGetLCIDFromLangInfoNode | |
| 1613 | RtlpGetNameFromLangInfoNode | |
| 1614 | RtlpGetSystemDefaultUILanguage | |
| 1615 | RtlpGetUserOrMachineUILanguage4NLS | |
| 1616 | RtlpInitializeLangRegistryInfo | |
| 1617 | RtlpIsQualifiedLanguage | |
| 1618 | RtlpLoadMachineUIByPolicy | |
| 1619 | RtlpLoadUserUIByPolicy | |
| 1620 | RtlpMergeSecurityAttributeInformation | |
| 1621 | RtlpMuiFreeLangRegistryInfo | |
| 1622 | RtlpMuiRegCreateRegistryInfo | |
| 1623 | RtlpMuiRegFreeRegistryInfo | |
| 1624 | RtlpMuiRegLoadRegistryInfo | |
| 1625 | RtlpNotOwnerCriticalSection | |
| 1626 | RtlpNtCreateKey | |
| 1627 | RtlpNtEnumerateSubKey | |
| 1628 | RtlpNtMakeTemporaryKey | |
| 1629 | RtlpNtOpenKey | |
| 1630 | RtlpNtQueryValueKey | |
| 1631 | RtlpNtSetValueKey | |
| 1632 | RtlpQueryDefaultUILanguage | |
| 1633 | RtlpQueryProcessDebugInformationFromWow64 | |
| 1634 | RtlpQueryProcessDebugInformationRemote | |
| 1635 | RtlpRefreshCachedUILanguage | |
| 1636 | RtlpSetInstallLanguage | |
| 1637 | RtlpSetPreferredUILanguages | |
| 1638 | RtlpSetUserPreferredUILanguages | |
| 1639 | RtlpTimeFieldsToTime | |
| 1640 | RtlpTimeToTimeFields | |
| 1641 | RtlpUnWaitCriticalSection | |
| 1642 | RtlpVerifyAndCommitUILanguageSettings | |
| 1643 | RtlpWaitForCriticalSection | |
| 1644 | RtlpWow64CtxFromArm64 | |
| 1645 | RtlxAnsiStringToUnicodeSize | |
| 1646 | RtlxOemStringToUnicodeSize | |
| 1647 | RtlxUnicodeStringToAnsiSize | |
| 1648 | RtlxUnicodeStringToOemSize | |
| 1649 | SbExecuteProcedure | |
| 1650 | SbSelectProcedure | |
| 1651 | ShipAssert | |
| 1652 | ShipAssertGetBufferInfo | |
| 1653 | ShipAssertMsgA | |
| 1654 | ShipAssertMsgW | |
| 1655 | TpAllocAlpcCompletion | |
| 1656 | TpAllocAlpcCompletionEx | |
| 1657 | TpAllocCleanupGroup | |
| 1658 | TpAllocIoCompletion | |
| 1659 | TpAllocJobNotification | |
| 1660 | TpAllocPool | |
| 1661 | TpAllocTimer | |
| 1662 | TpAllocWait | |
| 1663 | TpAllocWork | |
| 1664 | TpAlpcRegisterCompletionList | |
| 1665 | TpAlpcUnregisterCompletionList | |
| 1666 | TpCallbackDetectedUnrecoverableError | |
| 1667 | TpCallbackIndependent | |
| 1668 | TpCallbackLeaveCriticalSectionOnCompletion | |
| 1669 | TpCallbackMayRunLong | |
| 1670 | TpCallbackReleaseMutexOnCompletion | |
| 1671 | TpCallbackReleaseSemaphoreOnCompletion | |
| 1672 | TpCallbackSendAlpcMessageOnCompletion | |
| 1673 | TpCallbackSendPendingAlpcMessage | |
| 1674 | TpCallbackSetEventOnCompletion | |
| 1675 | TpCallbackUnloadDllOnCompletion | |
| 1676 | TpCancelAsyncIoOperation | |
| 1677 | TpCaptureCaller | |
| 1678 | TpCheckTerminateWorker | |
| 1679 | TpDbgDumpHeapUsage | |
| 1680 | TpDbgSetLogRoutine | |
| 1681 | TpDisablePoolCallbackChecks | |
| 1682 | TpDisassociateCallback | |
| 1683 | TpIsTimerSet | |
| 1684 | TpPostWork | |
| 1685 | TpQueryPoolStackInformation | |
| 1686 | TpReleaseAlpcCompletion | |
| 1687 | TpReleaseCleanupGroup | |
| 1688 | TpReleaseCleanupGroupMembers | |
| 1689 | TpReleaseIoCompletion | |
| 1690 | TpReleaseJobNotification | |
| 1691 | TpReleasePool | |
| 1692 | TpReleaseTimer | |
| 1693 | TpReleaseWait | |
| 1694 | TpReleaseWork | |
| 1695 | TpSetDefaultPoolMaxThreads | |
| 1696 | TpSetDefaultPoolStackInformation | |
| 1697 | TpSetPoolMaxThreads | |
| 1698 | TpSetPoolMaxThreadsSoftLimit | |
| 1699 | TpSetPoolMinThreads | |
| 1700 | TpSetPoolStackInformation | |
| 1701 | TpSetPoolThreadBasePriority | |
| 1702 | TpSetPoolThreadCpuSets | |
| 1703 | TpSetPoolWorkerThreadIdleTimeout | |
| 1704 | TpSetTimer | |
| 1705 | TpSetTimerEx | |
| 1706 | TpSetWait | |
| 1707 | TpSetWaitEx | |
| 1708 | TpSimpleTryPost | |
| 1709 | TpStartAsyncIoOperation | |
| 1710 | TpTimerOutstandingCallbackCount | |
| 1711 | TpTrimPools | |
| 1712 | TpWaitForAlpcCompletion | |
| 1713 | TpWaitForIoCompletion | |
| 1714 | TpWaitForJobNotification | |
| 1715 | TpWaitForTimer | |
| 1716 | TpWaitForWait | |
| 1717 | TpWaitForWork | |
| 1718 | VerSetConditionMask | |
| 1719 | WerReportExceptionWorker | |
| 1720 | WerReportSQMEvent | |
| 1721 | WinSqmAddToAverageDWORD | |
| 1722 | WinSqmAddToStream | |
| 1723 | WinSqmAddToStreamEx | |
| 1724 | WinSqmCheckEscalationAddToStreamEx | |
| 1725 | WinSqmCheckEscalationSetDWORD | |
| 1726 | WinSqmCheckEscalationSetDWORD64 | |
| 1727 | WinSqmCheckEscalationSetString | |
| 1728 | WinSqmCommonDatapointDelete | |
| 1729 | WinSqmCommonDatapointSetDWORD | |
| 1730 | WinSqmCommonDatapointSetDWORD64 | |
| 1731 | WinSqmCommonDatapointSetStreamEx | |
| 1732 | WinSqmCommonDatapointSetString | |
| 1733 | WinSqmEndSession | |
| 1734 | WinSqmEventEnabled | |
| 1735 | WinSqmEventWrite | |
| 1736 | WinSqmGetEscalationRuleStatus | |
| 1737 | WinSqmGetInstrumentationProperty | |
| 1738 | WinSqmIncrementDWORD | |
| 1739 | WinSqmIsOptedIn | |
| 1740 | WinSqmIsOptedInEx | |
| 1741 | WinSqmIsSessionDisabled | |
| 1742 | WinSqmSetDWORD | |
| 1743 | WinSqmSetDWORD64 | |
| 1744 | WinSqmSetEscalationInfo | |
| 1745 | WinSqmSetIfMaxDWORD | |
| 1746 | WinSqmSetIfMinDWORD | |
| 1747 | WinSqmSetString | |
| 1748 | WinSqmStartSession | |
| 1749 | WinSqmStartSessionForPartner | |
| 1750 | WinSqmStartSqmOptinListener | |
| 1751 | ZwAcceptConnectPort | |
| 1752 | ZwAccessCheck | |
| 1753 | ZwAccessCheckAndAuditAlarm | |
| 1754 | ZwAccessCheckByType | |
| 1755 | ZwAccessCheckByTypeAndAuditAlarm | |
| 1756 | ZwAccessCheckByTypeResultList | |
| 1757 | ZwAccessCheckByTypeResultListAndAuditAlarm | |
| 1758 | ZwAccessCheckByTypeResultListAndAuditAlarmByHandle | |
| 1759 | ZwAcquireProcessActivityReference | |
| 1760 | ZwAddAtom | |
| 1761 | ZwAddAtomEx | |
| 1762 | ZwAddBootEntry | |
| 1763 | ZwAddDriverEntry | |
| 1764 | ZwAdjustGroupsToken | |
| 1765 | ZwAdjustPrivilegesToken | |
| 1766 | ZwAdjustTokenClaimsAndDeviceGroups | |
| 1767 | ZwAlertResumeThread | |
| 1768 | ZwAlertThread | |
| 1769 | ZwAlertThreadByThreadId | |
| 1770 | ZwAllocateLocallyUniqueId | |
| 1771 | ZwAllocateReserveObject | |
| 1772 | ZwAllocateUserPhysicalPages | |
| 1773 | ZwAllocateUserPhysicalPagesEx | |
| 1774 | ZwAllocateUuids | |
| 1775 | ZwAllocateVirtualMemory | |
| 1776 | ZwAllocateVirtualMemoryEx | |
| 1777 | ZwAlpcAcceptConnectPort | |
| 1778 | ZwAlpcCancelMessage | |
| 1779 | ZwAlpcConnectPort | |
| 1780 | ZwAlpcConnectPortEx | |
| 1781 | ZwAlpcCreatePort | |
| 1782 | ZwAlpcCreatePortSection | |
| 1783 | ZwAlpcCreateResourceReserve | |
| 1784 | ZwAlpcCreateSectionView | |
| 1785 | ZwAlpcCreateSecurityContext | |
| 1786 | ZwAlpcDeletePortSection | |
| 1787 | ZwAlpcDeleteResourceReserve | |
| 1788 | ZwAlpcDeleteSectionView | |
| 1789 | ZwAlpcDeleteSecurityContext | |
| 1790 | ZwAlpcDisconnectPort | |
| 1791 | ZwAlpcImpersonateClientContainerOfPort | |
| 1792 | ZwAlpcImpersonateClientOfPort | |
| 1793 | ZwAlpcOpenSenderProcess | |
| 1794 | ZwAlpcOpenSenderThread | |
| 1795 | ZwAlpcQueryInformation | |
| 1796 | ZwAlpcQueryInformationMessage | |
| 1797 | ZwAlpcRevokeSecurityContext | |
| 1798 | ZwAlpcSendWaitReceivePort | |
| 1799 | ZwAlpcSetInformation | |
| 1800 | ZwApphelpCacheControl | |
| 1801 | ZwAreMappedFilesTheSame | |
| 1802 | ZwAssignProcessToJobObject | |
| 1803 | ZwAssociateWaitCompletionPacket | |
| 1804 | ZwCallEnclave | |
| 1805 | ZwCallbackReturn | |
| 1806 | ZwCancelIoFile | |
| 1807 | ZwCancelIoFileEx | |
| 1808 | ZwCancelSynchronousIoFile | |
| 1809 | ZwCancelTimer | |
| 1810 | ZwCancelTimer2 | |
| 1811 | ZwCancelWaitCompletionPacket | |
| 1812 | ZwClearEvent | |
| 1813 | ZwClose | |
| 1814 | ZwCloseObjectAuditAlarm | |
| 1815 | ZwCommitComplete | |
| 1816 | ZwCommitEnlistment | |
| 1817 | ZwCommitRegistryTransaction | |
| 1818 | ZwCommitTransaction | |
| 1819 | ZwCompactKeys | |
| 1820 | ZwCompareObjects | |
| 1821 | ZwCompareSigningLevels | |
| 1822 | ZwCompareTokens | |
| 1823 | ZwCompleteConnectPort | |
| 1824 | ZwCompressKey | |
| 1825 | ZwConnectPort | |
| 1826 | ZwContinue | |
| 1827 | ZwConvertBetweenAuxiliaryCounterAndPerformanceCounter | |
| 1828 | ZwCreateCrossVmEvent | |
| 1829 | ZwCreateDebugObject | |
| 1830 | ZwCreateDirectoryObject | |
| 1831 | ZwCreateDirectoryObjectEx | |
| 1832 | ZwCreateEnclave | |
| 1833 | ZwCreateEnlistment | |
| 1834 | ZwCreateEvent | |
| 1835 | ZwCreateEventPair | |
| 1836 | ZwCreateFile | |
| 1837 | ZwCreateIRTimer | |
| 1838 | ZwCreateIoCompletion | |
| 1839 | ZwCreateJobObject | |
| 1840 | ZwCreateJobSet | |
| 1841 | ZwCreateKey | |
| 1842 | ZwCreateKeyTransacted | |
| 1843 | ZwCreateKeyedEvent | |
| 1844 | ZwCreateLowBoxToken | |
| 1845 | ZwCreateMailslotFile | |
| 1846 | ZwCreateMutant | |
| 1847 | ZwCreateNamedPipeFile | |
| 1848 | ZwCreatePagingFile | |
| 1849 | ZwCreatePartition | |
| 1850 | ZwCreatePort | |
| 1851 | ZwCreatePrivateNamespace | |
| 1852 | ZwCreateProcess | |
| 1853 | ZwCreateProcessEx | |
| 1854 | ZwCreateProfile | |
| 1855 | ZwCreateProfileEx | |
| 1856 | ZwCreateRegistryTransaction | |
| 1857 | ZwCreateResourceManager | |
| 1858 | ZwCreateSection | |
| 1859 | ZwCreateSectionEx | |
| 1860 | ZwCreateSemaphore | |
| 1861 | ZwCreateSymbolicLinkObject | |
| 1862 | ZwCreateThread | |
| 1863 | ZwCreateThreadEx | |
| 1864 | ZwCreateTimer | |
| 1865 | ZwCreateTimer2 | |
| 1866 | ZwCreateToken | |
| 1867 | ZwCreateTokenEx | |
| 1868 | ZwCreateTransaction | |
| 1869 | ZwCreateTransactionManager | |
| 1870 | ZwCreateUserProcess | |
| 1871 | ZwCreateWaitCompletionPacket | |
| 1872 | ZwCreateWaitablePort | |
| 1873 | ZwCreateWnfStateName | |
| 1874 | ZwCreateWorkerFactory | |
| 1875 | ZwDebugActiveProcess | |
| 1876 | ZwDebugContinue | |
| 1877 | ZwDelayExecution | |
| 1878 | ZwDeleteAtom | |
| 1879 | ZwDeleteBootEntry | |
| 1880 | ZwDeleteDriverEntry | |
| 1881 | ZwDeleteFile | |
| 1882 | ZwDeleteKey | |
| 1883 | ZwDeleteObjectAuditAlarm | |
| 1884 | ZwDeletePrivateNamespace | |
| 1885 | ZwDeleteValueKey | |
| 1886 | ZwDeleteWnfStateData | |
| 1887 | ZwDeleteWnfStateName | |
| 1888 | ZwDeviceIoControlFile | |
| 1889 | ZwDisableLastKnownGood | |
| 1890 | ZwDisplayString | |
| 1891 | ZwDrawText | |
| 1892 | ZwDuplicateObject | |
| 1893 | ZwDuplicateToken | |
| 1894 | ZwEnableLastKnownGood | |
| 1895 | ZwEnumerateBootEntries | |
| 1896 | ZwEnumerateDriverEntries | |
| 1897 | ZwEnumerateKey | |
| 1898 | ZwEnumerateSystemEnvironmentValuesEx | |
| 1899 | ZwEnumerateTransactionObject | |
| 1900 | ZwEnumerateValueKey | |
| 1901 | ZwExtendSection | |
| 1902 | ZwFilterBootOption | |
| 1903 | ZwFilterToken | |
| 1904 | ZwFilterTokenEx | |
| 1905 | ZwFindAtom | |
| 1906 | ZwFlushBuffersFile | |
| 1907 | ZwFlushBuffersFileEx | |
| 1908 | ZwFlushInstallUILanguage | |
| 1909 | ZwFlushInstructionCache | |
| 1910 | ZwFlushKey | |
| 1911 | ZwFlushProcessWriteBuffers | |
| 1912 | ZwFlushVirtualMemory | |
| 1913 | ZwFlushWriteBuffer | |
| 1914 | ZwFreeUserPhysicalPages | |
| 1915 | ZwFreeVirtualMemory | |
| 1916 | ZwFreezeRegistry | |
| 1917 | ZwFreezeTransactions | |
| 1918 | ZwFsControlFile | |
| 1919 | ZwGetCachedSigningLevel | |
| 1920 | ZwGetCompleteWnfStateSubscription | |
| 1921 | ZwGetContextThread | |
| 1922 | ZwGetCurrentProcessorNumber | |
| 1923 | ZwGetCurrentProcessorNumberEx | |
| 1924 | ZwGetDevicePowerState | |
| 1925 | ZwGetMUIRegistryInfo | |
| 1926 | ZwGetNextProcess | |
| 1927 | ZwGetNextThread | |
| 1928 | ZwGetNlsSectionPtr | |
| 1929 | ZwGetNotificationResourceManager | |
| 1930 | ZwGetWriteWatch | |
| 1931 | ZwImpersonateAnonymousToken | |
| 1932 | ZwImpersonateClientOfPort | |
| 1933 | ZwImpersonateThread | |
| 1934 | ZwInitializeEnclave | |
| 1935 | ZwInitializeNlsFiles | |
| 1936 | ZwInitializeRegistry | |
| 1937 | ZwInitiatePowerAction | |
| 1938 | ZwIsProcessInJob | |
| 1939 | ZwIsSystemResumeAutomatic | |
| 1940 | ZwIsUILanguageComitted | |
| 1941 | ZwListenPort | |
| 1942 | ZwLoadDriver | |
| 1943 | ZwLoadEnclaveData | |
| 1944 | ZwLoadKey | |
| 1945 | ZwLoadKey2 | |
| 1946 | ZwLoadKeyEx | |
| 1947 | ZwLockFile | |
| 1948 | ZwLockProductActivationKeys | |
| 1949 | ZwLockRegistryKey | |
| 1950 | ZwLockVirtualMemory | |
| 1951 | ZwMakePermanentObject | |
| 1952 | ZwMakeTemporaryObject | |
| 1953 | ZwManageHotPatch | |
| 1954 | ZwManagePartition | |
| 1955 | ZwMapCMFModule | |
| 1956 | ZwMapUserPhysicalPages | |
| 1957 | ZwMapUserPhysicalPagesScatter | |
| 1958 | ZwMapViewOfSection | |
| 1959 | ZwMapViewOfSectionEx | |
| 1960 | ZwModifyBootEntry | |
| 1961 | ZwModifyDriverEntry | |
| 1962 | ZwNotifyChangeDirectoryFile | |
| 1963 | ZwNotifyChangeDirectoryFileEx | |
| 1964 | ZwNotifyChangeKey | |
| 1965 | ZwNotifyChangeMultipleKeys | |
| 1966 | ZwNotifyChangeSession | |
| 1967 | ZwOpenDirectoryObject | |
| 1968 | ZwOpenEnlistment | |
| 1969 | ZwOpenEvent | |
| 1970 | ZwOpenEventPair | |
| 1971 | ZwOpenFile | |
| 1972 | ZwOpenIoCompletion | |
| 1973 | ZwOpenJobObject | |
| 1974 | ZwOpenKey | |
| 1975 | ZwOpenKeyEx | |
| 1976 | ZwOpenKeyTransacted | |
| 1977 | ZwOpenKeyTransactedEx | |
| 1978 | ZwOpenKeyedEvent | |
| 1979 | ZwOpenMutant | |
| 1980 | ZwOpenObjectAuditAlarm | |
| 1981 | ZwOpenPartition | |
| 1982 | ZwOpenPrivateNamespace | |
| 1983 | ZwOpenProcess | |
| 1984 | ZwOpenProcessToken | |
| 1985 | ZwOpenProcessTokenEx | |
| 1986 | ZwOpenRegistryTransaction | |
| 1987 | ZwOpenResourceManager | |
| 1988 | ZwOpenSection | |
| 1989 | ZwOpenSemaphore | |
| 1990 | ZwOpenSession | |
| 1991 | ZwOpenSymbolicLinkObject | |
| 1992 | ZwOpenThread | |
| 1993 | ZwOpenThreadToken | |
| 1994 | ZwOpenThreadTokenEx | |
| 1995 | ZwOpenTimer | |
| 1996 | ZwOpenTransaction | |
| 1997 | ZwOpenTransactionManager | |
| 1998 | ZwPlugPlayControl | |
| 1999 | ZwPowerInformation | |
| 2000 | ZwPrePrepareComplete | |
| 2001 | ZwPrePrepareEnlistment | |
| 2002 | ZwPrepareComplete | |
| 2003 | ZwPrepareEnlistment | |
| 2004 | ZwPrivilegeCheck | |
| 2005 | ZwPrivilegeObjectAuditAlarm | |
| 2006 | ZwPrivilegedServiceAuditAlarm | |
| 2007 | ZwPropagationComplete | |
| 2008 | ZwPropagationFailed | |
| 2009 | ZwProtectVirtualMemory | |
| 2010 | ZwPssCaptureVaSpaceBulk | |
| 2011 | ZwPulseEvent | |
| 2012 | ZwQueryAttributesFile | |
| 2013 | ZwQueryAuxiliaryCounterFrequency | |
| 2014 | ZwQueryBootEntryOrder | |
| 2015 | ZwQueryBootOptions | |
| 2016 | ZwQueryDebugFilterState | |
| 2017 | ZwQueryDefaultLocale | |
| 2018 | ZwQueryDefaultUILanguage | |
| 2019 | ZwQueryDirectoryFile | |
| 2020 | ZwQueryDirectoryFileEx | |
| 2021 | ZwQueryDirectoryObject | |
| 2022 | ZwQueryDriverEntryOrder | |
| 2023 | ZwQueryEaFile | |
| 2024 | ZwQueryEvent | |
| 2025 | ZwQueryFullAttributesFile | |
| 2026 | ZwQueryInformationAtom | |
| 2027 | ZwQueryInformationByName | |
| 2028 | ZwQueryInformationEnlistment | |
| 2029 | ZwQueryInformationFile | |
| 2030 | ZwQueryInformationJobObject | |
| 2031 | ZwQueryInformationPort | |
| 2032 | ZwQueryInformationProcess | |
| 2033 | ZwQueryInformationResourceManager | |
| 2034 | ZwQueryInformationThread | |
| 2035 | ZwQueryInformationToken | |
| 2036 | ZwQueryInformationTransaction | |
| 2037 | ZwQueryInformationTransactionManager | |
| 2038 | ZwQueryInformationWorkerFactory | |
| 2039 | ZwQueryInstallUILanguage | |
| 2040 | ZwQueryIntervalProfile | |
| 2041 | ZwQueryIoCompletion | |
| 2042 | ZwQueryKey | |
| 2043 | ZwQueryLicenseValue | |
| 2044 | ZwQueryMultipleValueKey | |
| 2045 | ZwQueryMutant | |
| 2046 | ZwQueryObject | |
| 2047 | ZwQueryOpenSubKeys | |
| 2048 | ZwQueryOpenSubKeysEx | |
| 2049 | ZwQueryPerformanceCounter | |
| 2050 | ZwQueryPortInformationProcess | |
| 2051 | ZwQueryQuotaInformationFile | |
| 2052 | ZwQuerySection | |
| 2053 | ZwQuerySecurityAttributesToken | |
| 2054 | ZwQuerySecurityObject | |
| 2055 | ZwQuerySecurityPolicy | |
| 2056 | ZwQuerySemaphore | |
| 2057 | ZwQuerySymbolicLinkObject | |
| 2058 | ZwQuerySystemEnvironmentValue | |
| 2059 | ZwQuerySystemEnvironmentValueEx | |
| 2060 | ZwQuerySystemInformation | |
| 2061 | ZwQuerySystemInformationEx | |
| 2062 | ZwQuerySystemTime | |
| 2063 | ZwQueryTimer | |
| 2064 | ZwQueryTimerResolution | |
| 2065 | ZwQueryValueKey | |
| 2066 | ZwQueryVirtualMemory | |
| 2067 | ZwQueryVolumeInformationFile | |
| 2068 | ZwQueryWnfStateData | |
| 2069 | ZwQueryWnfStateNameInformation | |
| 2070 | ZwQueueApcThread | |
| 2071 | ZwQueueApcThreadEx | |
| 2072 | ZwRaiseException | |
| 2073 | ZwRaiseHardError | |
| 2074 | ZwReadFile | |
| 2075 | ZwReadFileScatter | |
| 2076 | ZwReadOnlyEnlistment | |
| 2077 | ZwReadRequestData | |
| 2078 | ZwReadVirtualMemory | |
| 2079 | ZwRecoverEnlistment | |
| 2080 | ZwRecoverResourceManager | |
| 2081 | ZwRecoverTransactionManager | |
| 2082 | ZwRegisterProtocolAddressInformation | |
| 2083 | ZwRegisterThreadTerminatePort | |
| 2084 | ZwReleaseKeyedEvent | |
| 2085 | ZwReleaseMutant | |
| 2086 | ZwReleaseSemaphore | |
| 2087 | ZwReleaseWorkerFactoryWorker | |
| 2088 | ZwRemoveIoCompletion | |
| 2089 | ZwRemoveIoCompletionEx | |
| 2090 | ZwRemoveProcessDebug | |
| 2091 | ZwRenameKey | |
| 2092 | ZwRenameTransactionManager | |
| 2093 | ZwReplaceKey | |
| 2094 | ZwReplacePartitionUnit | |
| 2095 | ZwReplyPort | |
| 2096 | ZwReplyWaitReceivePort | |
| 2097 | ZwReplyWaitReceivePortEx | |
| 2098 | ZwReplyWaitReplyPort | |
| 2099 | ZwRequestPort | |
| 2100 | ZwRequestWaitReplyPort | |
| 2101 | ZwResetEvent | |
| 2102 | ZwResetWriteWatch | |
| 2103 | ZwRestoreKey | |
| 2104 | ZwResumeProcess | |
| 2105 | ZwResumeThread | |
| 2106 | ZwRevertContainerImpersonation | |
| 2107 | ZwRollbackComplete | |
| 2108 | ZwRollbackEnlistment | |
| 2109 | ZwRollbackRegistryTransaction | |
| 2110 | ZwRollbackTransaction | |
| 2111 | ZwRollforwardTransactionManager | |
| 2112 | ZwSaveKey | |
| 2113 | ZwSaveKeyEx | |
| 2114 | ZwSaveMergedKeys | |
| 2115 | ZwSecureConnectPort | |
| 2116 | ZwSerializeBoot | |
| 2117 | ZwSetBootEntryOrder | |
| 2118 | ZwSetBootOptions | |
| 2119 | ZwSetCachedSigningLevel | |
| 2120 | ZwSetCachedSigningLevel2 | |
| 2121 | ZwSetContextThread | |
| 2122 | ZwSetDebugFilterState | |
| 2123 | ZwSetDefaultHardErrorPort | |
| 2124 | ZwSetDefaultLocale | |
| 2125 | ZwSetDefaultUILanguage | |
| 2126 | ZwSetDriverEntryOrder | |
| 2127 | ZwSetEaFile | |
| 2128 | ZwSetEvent | |
| 2129 | ZwSetEventBoostPriority | |
| 2130 | ZwSetHighEventPair | |
| 2131 | ZwSetHighWaitLowEventPair | |
| 2132 | ZwSetIRTimer | |
| 2133 | ZwSetInformationDebugObject | |
| 2134 | ZwSetInformationEnlistment | |
| 2135 | ZwSetInformationFile | |
| 2136 | ZwSetInformationJobObject | |
| 2137 | ZwSetInformationKey | |
| 2138 | ZwSetInformationObject | |
| 2139 | ZwSetInformationProcess | |
| 2140 | ZwSetInformationResourceManager | |
| 2141 | ZwSetInformationSymbolicLink | |
| 2142 | ZwSetInformationThread | |
| 2143 | ZwSetInformationToken | |
| 2144 | ZwSetInformationTransaction | |
| 2145 | ZwSetInformationTransactionManager | |
| 2146 | ZwSetInformationVirtualMemory | |
| 2147 | ZwSetInformationWorkerFactory | |
| 2148 | ZwSetIntervalProfile | |
| 2149 | ZwSetIoCompletion | |
| 2150 | ZwSetIoCompletionEx | |
| 2151 | ZwSetLdtEntries | |
| 2152 | ZwSetLowEventPair | |
| 2153 | ZwSetLowWaitHighEventPair | |
| 2154 | ZwSetQuotaInformationFile | |
| 2155 | ZwSetSecurityObject | |
| 2156 | ZwSetSystemEnvironmentValue | |
| 2157 | ZwSetSystemEnvironmentValueEx | |
| 2158 | ZwSetSystemInformation | |
| 2159 | ZwSetSystemPowerState | |
| 2160 | ZwSetSystemTime | |
| 2161 | ZwSetThreadExecutionState | |
| 2162 | ZwSetTimer | |
| 2163 | ZwSetTimer2 | |
| 2164 | ZwSetTimerEx | |
| 2165 | ZwSetTimerResolution | |
| 2166 | ZwSetUuidSeed | |
| 2167 | ZwSetValueKey | |
| 2168 | ZwSetVolumeInformationFile | |
| 2169 | ZwSetWnfProcessNotificationEvent | |
| 2170 | ZwShutdownSystem | |
| 2171 | ZwShutdownWorkerFactory | |
| 2172 | ZwSignalAndWaitForSingleObject | |
| 2173 | ZwSinglePhaseReject | |
| 2174 | ZwStartProfile | |
| 2175 | ZwStopProfile | |
| 2176 | ZwSubscribeWnfStateChange | |
| 2177 | ZwSuspendProcess | |
| 2178 | ZwSuspendThread | |
| 2179 | ZwSystemDebugControl | |
| 2180 | ZwTerminateEnclave | |
| 2181 | ZwTerminateJobObject | |
| 2182 | ZwTerminateProcess | |
| 2183 | ZwTerminateThread | |
| 2184 | ZwTestAlert | |
| 2185 | ZwThawRegistry | |
| 2186 | ZwThawTransactions | |
| 2187 | ZwTraceControl | |
| 2188 | ZwTraceEvent | |
| 2189 | ZwTranslateFilePath | |
| 2190 | ZwUmsThreadYield | |
| 2191 | ZwUnloadDriver | |
| 2192 | ZwUnloadKey | |
| 2193 | ZwUnloadKey2 | |
| 2194 | ZwUnloadKeyEx | |
| 2195 | ZwUnlockFile | |
| 2196 | ZwUnlockVirtualMemory | |
| 2197 | ZwUnmapViewOfSection | |
| 2198 | ZwUnmapViewOfSectionEx | |
| 2199 | ZwUnsubscribeWnfStateChange | |
| 2200 | ZwUpdateWnfStateData | |
| 2201 | ZwVdmControl | |
| 2202 | ZwWaitForAlertByThreadId | |
| 2203 | ZwWaitForDebugEvent | |
| 2204 | ZwWaitForKeyedEvent | |
| 2205 | ZwWaitForMultipleObjects | |
| 2206 | ZwWaitForMultipleObjects32 | |
| 2207 | ZwWaitForSingleObject | |
| 2208 | ZwWaitForWorkViaWorkerFactory | |
| 2209 | ZwWaitHighEventPair | |
| 2210 | ZwWaitLowEventPair | |
| 2211 | ZwWorkerFactoryWorkerReady | |
| 2212 | ZwWriteFile | |
| 2213 | ZwWriteFileGather | |
| 2214 | ZwWriteRequestData | |
| 2215 | ZwWriteVirtualMemory | |
| 2216 | ZwYieldExecution |
lib/libc/mingw/libarm32/setupapi.def deleted-764| ... | ... | @@ -1,764 +0,0 @@ |
| 1 | ; | |
| 2 | ; Definition file of SETUPAPI.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008-2014 | |
| 5 | ; | |
| 6 | LIBRARY "SETUPAPI.dll" | |
| 7 | EXPORTS | |
| 8 | CMP_GetBlockedDriverInfo | |
| 9 | CMP_GetServerSideDeviceInstallFlags | |
| 10 | CMP_Init_Detection | |
| 11 | CMP_Report_LogOn | |
| 12 | CMP_WaitNoPendingInstallEvents | |
| 13 | CMP_WaitServicesAvailable | |
| 14 | CM_Add_Driver_PackageW | |
| 15 | CM_Add_Empty_Log_Conf | |
| 16 | CM_Add_Empty_Log_Conf_Ex | |
| 17 | CM_Add_IDA | |
| 18 | CM_Add_IDW | |
| 19 | CM_Add_ID_ExA | |
| 20 | CM_Add_ID_ExW | |
| 21 | CM_Add_Range | |
| 22 | CM_Add_Res_Des | |
| 23 | CM_Add_Res_Des_Ex | |
| 24 | CM_Apply_PowerScheme | |
| 25 | CM_Connect_MachineA | |
| 26 | CM_Connect_MachineW | |
| 27 | CM_Create_DevNodeA | |
| 28 | CM_Create_DevNodeW | |
| 29 | CM_Create_DevNode_ExA | |
| 30 | CM_Create_DevNode_ExW | |
| 31 | CM_Create_Range_List | |
| 32 | CM_Delete_Class_Key | |
| 33 | CM_Delete_Class_Key_Ex | |
| 34 | CM_Delete_DevNode_Key | |
| 35 | CM_Delete_DevNode_Key_Ex | |
| 36 | CM_Delete_Device_Interface_KeyA | |
| 37 | CM_Delete_Device_Interface_KeyW | |
| 38 | CM_Delete_Device_Interface_Key_ExA | |
| 39 | CM_Delete_Device_Interface_Key_ExW | |
| 40 | CM_Delete_Driver_PackageW | |
| 41 | CM_Delete_PowerScheme | |
| 42 | CM_Delete_Range | |
| 43 | CM_Detect_Resource_Conflict | |
| 44 | CM_Detect_Resource_Conflict_Ex | |
| 45 | CM_Disable_DevNode | |
| 46 | CM_Disable_DevNode_Ex | |
| 47 | CM_Disconnect_Machine | |
| 48 | CM_Dup_Range_List | |
| 49 | CM_Duplicate_PowerScheme | |
| 50 | CM_Enable_DevNode | |
| 51 | CM_Enable_DevNode_Ex | |
| 52 | CM_Enumerate_Classes | |
| 53 | CM_Enumerate_Classes_Ex | |
| 54 | CM_Enumerate_EnumeratorsA | |
| 55 | CM_Enumerate_EnumeratorsW | |
| 56 | CM_Enumerate_Enumerators_ExA | |
| 57 | CM_Enumerate_Enumerators_ExW | |
| 58 | CM_Find_Range | |
| 59 | CM_First_Range | |
| 60 | CM_Free_Log_Conf | |
| 61 | CM_Free_Log_Conf_Ex | |
| 62 | CM_Free_Log_Conf_Handle | |
| 63 | CM_Free_Range_List | |
| 64 | CM_Free_Res_Des | |
| 65 | CM_Free_Res_Des_Ex | |
| 66 | CM_Free_Res_Des_Handle | |
| 67 | CM_Free_Resource_Conflict_Handle | |
| 68 | CM_Get_Child | |
| 69 | CM_Get_Child_Ex | |
| 70 | CM_Get_Class_Key_NameA | |
| 71 | CM_Get_Class_Key_NameW | |
| 72 | CM_Get_Class_Key_Name_ExA | |
| 73 | CM_Get_Class_Key_Name_ExW | |
| 74 | CM_Get_Class_NameA | |
| 75 | CM_Get_Class_NameW | |
| 76 | CM_Get_Class_Name_ExA | |
| 77 | CM_Get_Class_Name_ExW | |
| 78 | CM_Get_Class_Registry_PropertyA | |
| 79 | CM_Get_Class_Registry_PropertyW | |
| 80 | CM_Get_Depth | |
| 81 | CM_Get_Depth_Ex | |
| 82 | CM_Get_DevNode_Custom_PropertyA | |
| 83 | CM_Get_DevNode_Custom_PropertyW | |
| 84 | CM_Get_DevNode_Custom_Property_ExA | |
| 85 | CM_Get_DevNode_Custom_Property_ExW | |
| 86 | CM_Get_DevNode_Registry_PropertyA | |
| 87 | CM_Get_DevNode_Registry_PropertyW | |
| 88 | CM_Get_DevNode_Registry_Property_ExA | |
| 89 | CM_Get_DevNode_Registry_Property_ExW | |
| 90 | CM_Get_DevNode_Status | |
| 91 | CM_Get_DevNode_Status_Ex | |
| 92 | CM_Get_Device_IDA | |
| 93 | CM_Get_Device_IDW | |
| 94 | CM_Get_Device_ID_ExA | |
| 95 | CM_Get_Device_ID_ExW | |
| 96 | CM_Get_Device_ID_ListA | |
| 97 | CM_Get_Device_ID_ListW | |
| 98 | CM_Get_Device_ID_List_ExA | |
| 99 | CM_Get_Device_ID_List_ExW | |
| 100 | CM_Get_Device_ID_List_SizeA | |
| 101 | CM_Get_Device_ID_List_SizeW | |
| 102 | CM_Get_Device_ID_List_Size_ExA | |
| 103 | CM_Get_Device_ID_List_Size_ExW | |
| 104 | CM_Get_Device_ID_Size | |
| 105 | CM_Get_Device_ID_Size_Ex | |
| 106 | CM_Get_Device_Interface_AliasA | |
| 107 | CM_Get_Device_Interface_AliasW | |
| 108 | CM_Get_Device_Interface_Alias_ExA | |
| 109 | CM_Get_Device_Interface_Alias_ExW | |
| 110 | CM_Get_Device_Interface_ListA | |
| 111 | CM_Get_Device_Interface_ListW | |
| 112 | CM_Get_Device_Interface_List_ExA | |
| 113 | CM_Get_Device_Interface_List_ExW | |
| 114 | CM_Get_Device_Interface_List_SizeA | |
| 115 | CM_Get_Device_Interface_List_SizeW | |
| 116 | CM_Get_Device_Interface_List_Size_ExA | |
| 117 | CM_Get_Device_Interface_List_Size_ExW | |
| 118 | CM_Get_First_Log_Conf | |
| 119 | CM_Get_First_Log_Conf_Ex | |
| 120 | CM_Get_Global_State | |
| 121 | CM_Get_Global_State_Ex | |
| 122 | CM_Get_HW_Prof_FlagsA | |
| 123 | CM_Get_HW_Prof_FlagsW | |
| 124 | CM_Get_HW_Prof_Flags_ExA | |
| 125 | CM_Get_HW_Prof_Flags_ExW | |
| 126 | CM_Get_Hardware_Profile_InfoA | |
| 127 | CM_Get_Hardware_Profile_InfoW | |
| 128 | CM_Get_Hardware_Profile_Info_ExA | |
| 129 | CM_Get_Hardware_Profile_Info_ExW | |
| 130 | CM_Get_Log_Conf_Priority | |
| 131 | CM_Get_Log_Conf_Priority_Ex | |
| 132 | CM_Get_Next_Log_Conf | |
| 133 | CM_Get_Next_Log_Conf_Ex | |
| 134 | CM_Get_Next_Res_Des | |
| 135 | CM_Get_Next_Res_Des_Ex | |
| 136 | CM_Get_Parent | |
| 137 | CM_Get_Parent_Ex | |
| 138 | CM_Get_Res_Des_Data | |
| 139 | CM_Get_Res_Des_Data_Ex | |
| 140 | CM_Get_Res_Des_Data_Size | |
| 141 | CM_Get_Res_Des_Data_Size_Ex | |
| 142 | CM_Get_Resource_Conflict_Count | |
| 143 | CM_Get_Resource_Conflict_DetailsA | |
| 144 | CM_Get_Resource_Conflict_DetailsW | |
| 145 | CM_Get_Sibling | |
| 146 | CM_Get_Sibling_Ex | |
| 147 | CM_Get_Version | |
| 148 | CM_Get_Version_Ex | |
| 149 | CM_Import_PowerScheme | |
| 150 | CM_Install_DevNodeW | |
| 151 | CM_Install_DevNode_ExW | |
| 152 | CM_Intersect_Range_List | |
| 153 | CM_Invert_Range_List | |
| 154 | CM_Is_Dock_Station_Present | |
| 155 | CM_Is_Dock_Station_Present_Ex | |
| 156 | CM_Is_Version_Available | |
| 157 | CM_Is_Version_Available_Ex | |
| 158 | CM_Locate_DevNodeA | |
| 159 | CM_Locate_DevNodeW | |
| 160 | CM_Locate_DevNode_ExA | |
| 161 | CM_Locate_DevNode_ExW | |
| 162 | CM_Merge_Range_List | |
| 163 | CM_Modify_Res_Des | |
| 164 | CM_Modify_Res_Des_Ex | |
| 165 | CM_Move_DevNode | |
| 166 | CM_Move_DevNode_Ex | |
| 167 | CM_Next_Range | |
| 168 | CM_Open_Class_KeyA | |
| 169 | CM_Open_Class_KeyW | |
| 170 | CM_Open_Class_Key_ExA | |
| 171 | CM_Open_Class_Key_ExW | |
| 172 | CM_Open_DevNode_Key | |
| 173 | CM_Open_DevNode_Key_Ex | |
| 174 | CM_Open_Device_Interface_KeyA | |
| 175 | CM_Open_Device_Interface_KeyW | |
| 176 | CM_Open_Device_Interface_Key_ExA | |
| 177 | CM_Open_Device_Interface_Key_ExW | |
| 178 | CM_Query_And_Remove_SubTreeA | |
| 179 | CM_Query_And_Remove_SubTreeW | |
| 180 | CM_Query_And_Remove_SubTree_ExA | |
| 181 | CM_Query_And_Remove_SubTree_ExW | |
| 182 | CM_Query_Arbitrator_Free_Data | |
| 183 | CM_Query_Arbitrator_Free_Data_Ex | |
| 184 | CM_Query_Arbitrator_Free_Size | |
| 185 | CM_Query_Arbitrator_Free_Size_Ex | |
| 186 | CM_Query_Remove_SubTree | |
| 187 | CM_Query_Remove_SubTree_Ex | |
| 188 | CM_Query_Resource_Conflict_List | |
| 189 | CM_Reenumerate_DevNode | |
| 190 | CM_Reenumerate_DevNode_Ex | |
| 191 | CM_Register_Device_Driver | |
| 192 | CM_Register_Device_Driver_Ex | |
| 193 | CM_Register_Device_InterfaceA | |
| 194 | CM_Register_Device_InterfaceW | |
| 195 | CM_Register_Device_Interface_ExA | |
| 196 | CM_Register_Device_Interface_ExW | |
| 197 | CM_Remove_SubTree | |
| 198 | CM_Remove_SubTree_Ex | |
| 199 | CM_Request_Device_EjectA | |
| 200 | CM_Request_Device_EjectW | |
| 201 | CM_Request_Device_Eject_ExA | |
| 202 | CM_Request_Device_Eject_ExW | |
| 203 | CM_Request_Eject_PC | |
| 204 | CM_Request_Eject_PC_Ex | |
| 205 | CM_RestoreAll_DefaultPowerSchemes | |
| 206 | CM_Restore_DefaultPowerScheme | |
| 207 | CM_Run_Detection | |
| 208 | CM_Run_Detection_Ex | |
| 209 | CM_Set_ActiveScheme | |
| 210 | CM_Set_Class_Registry_PropertyA | |
| 211 | CM_Set_Class_Registry_PropertyW | |
| 212 | CM_Set_DevNode_Problem | |
| 213 | CM_Set_DevNode_Problem_Ex | |
| 214 | CM_Set_DevNode_Registry_PropertyA | |
| 215 | CM_Set_DevNode_Registry_PropertyW | |
| 216 | CM_Set_DevNode_Registry_Property_ExA | |
| 217 | CM_Set_DevNode_Registry_Property_ExW | |
| 218 | CM_Set_HW_Prof | |
| 219 | CM_Set_HW_Prof_Ex | |
| 220 | CM_Set_HW_Prof_FlagsA | |
| 221 | CM_Set_HW_Prof_FlagsW | |
| 222 | CM_Set_HW_Prof_Flags_ExA | |
| 223 | CM_Set_HW_Prof_Flags_ExW | |
| 224 | CM_Setup_DevNode | |
| 225 | CM_Setup_DevNode_Ex | |
| 226 | CM_Test_Range_Available | |
| 227 | CM_Uninstall_DevNode | |
| 228 | CM_Uninstall_DevNode_Ex | |
| 229 | CM_Unregister_Device_InterfaceA | |
| 230 | CM_Unregister_Device_InterfaceW | |
| 231 | CM_Unregister_Device_Interface_ExA | |
| 232 | CM_Unregister_Device_Interface_ExW | |
| 233 | CM_Write_UserPowerKey | |
| 234 | DoesUserHavePrivilege | |
| 235 | DriverStoreAddDriverPackageA | |
| 236 | DriverStoreAddDriverPackageW | |
| 237 | DriverStoreDeleteDriverPackageA | |
| 238 | DriverStoreDeleteDriverPackageW | |
| 239 | DriverStoreEnumDriverPackageA | |
| 240 | DriverStoreEnumDriverPackageW | |
| 241 | DriverStoreFindDriverPackageA | |
| 242 | DriverStoreFindDriverPackageW | |
| 243 | ExtensionPropSheetPageProc | |
| 244 | InstallCatalog | |
| 245 | InstallHinfSection | |
| 246 | InstallHinfSectionA | |
| 247 | InstallHinfSectionW | |
| 248 | IsUserAdmin | |
| 249 | MyFree | |
| 250 | MyMalloc | |
| 251 | MyRealloc | |
| 252 | PnpEnumDrpFile | |
| 253 | PnpIsFileAclIntact | |
| 254 | PnpIsFileContentIntact | |
| 255 | PnpIsFilePnpDriver | |
| 256 | PnpRepairWindowsProtectedDriver | |
| 257 | Remote_CMP_GetServerSideDeviceInstallFlags | |
| 258 | Remote_CMP_WaitServicesAvailable | |
| 259 | Remote_CM_Add_Empty_Log_Conf | |
| 260 | Remote_CM_Add_ID | |
| 261 | Remote_CM_Add_Res_Des | |
| 262 | Remote_CM_Connect_Machine_Worker | |
| 263 | Remote_CM_Create_DevNode | |
| 264 | Remote_CM_Delete_Class_Key | |
| 265 | Remote_CM_Delete_DevNode_Key | |
| 266 | Remote_CM_Delete_Device_Interface_Key | |
| 267 | Remote_CM_Disable_DevNode | |
| 268 | Remote_CM_Disconnect_Machine_Worker | |
| 269 | Remote_CM_Enable_DevNode | |
| 270 | Remote_CM_Enumerate_Classes | |
| 271 | Remote_CM_Enumerate_Enumerators | |
| 272 | Remote_CM_Free_Log_Conf | |
| 273 | Remote_CM_Free_Res_Des | |
| 274 | Remote_CM_Get_Child | |
| 275 | Remote_CM_Get_Class_Name | |
| 276 | Remote_CM_Get_Class_Property | |
| 277 | Remote_CM_Get_Class_Property_Keys | |
| 278 | Remote_CM_Get_Class_Registry_Property | |
| 279 | Remote_CM_Get_Depth | |
| 280 | Remote_CM_Get_DevNode_Custom_Property | |
| 281 | Remote_CM_Get_DevNode_Property | |
| 282 | Remote_CM_Get_DevNode_Property_Keys | |
| 283 | Remote_CM_Get_DevNode_Registry_Property | |
| 284 | Remote_CM_Get_DevNode_Status | |
| 285 | Remote_CM_Get_Device_ID_List | |
| 286 | Remote_CM_Get_Device_ID_List_Size | |
| 287 | Remote_CM_Get_Device_Interface_Alias | |
| 288 | Remote_CM_Get_Device_Interface_List | |
| 289 | Remote_CM_Get_Device_Interface_List_Size | |
| 290 | Remote_CM_Get_Device_Interface_Property | |
| 291 | Remote_CM_Get_Device_Interface_Property_Keys | |
| 292 | Remote_CM_Get_First_Log_Conf | |
| 293 | Remote_CM_Get_Global_State | |
| 294 | Remote_CM_Get_HW_Prof_Flags | |
| 295 | Remote_CM_Get_Hardware_Profile_Info | |
| 296 | Remote_CM_Get_Log_Conf_Priority | |
| 297 | Remote_CM_Get_Next_Log_Conf | |
| 298 | Remote_CM_Get_Next_Res_Des | |
| 299 | Remote_CM_Get_Parent | |
| 300 | Remote_CM_Get_Res_Des_Data | |
| 301 | Remote_CM_Get_Res_Des_Data_Size | |
| 302 | Remote_CM_Get_Sibling | |
| 303 | Remote_CM_Get_Version | |
| 304 | Remote_CM_Install_DevNode | |
| 305 | Remote_CM_Is_Dock_Station_Present | |
| 306 | Remote_CM_Is_Version_Available | |
| 307 | Remote_CM_Locate_DevNode_Worker | |
| 308 | Remote_CM_Modify_Res_Des | |
| 309 | Remote_CM_Open_Class_Key | |
| 310 | Remote_CM_Open_DevNode_Key | |
| 311 | Remote_CM_Open_Device_Interface_Key | |
| 312 | Remote_CM_Query_And_Remove_SubTree | |
| 313 | Remote_CM_Query_Arbitrator_Free_Data | |
| 314 | Remote_CM_Query_Arbitrator_Free_Size | |
| 315 | Remote_CM_Query_Resource_Conflict_List_Worker | |
| 316 | Remote_CM_Reenumerate_DevNode | |
| 317 | Remote_CM_Register_Device_Driver | |
| 318 | Remote_CM_Register_Device_Interface | |
| 319 | Remote_CM_Request_Device_Eject | |
| 320 | Remote_CM_Request_Eject_PC | |
| 321 | Remote_CM_Run_Detection | |
| 322 | Remote_CM_Set_Class_Property | |
| 323 | Remote_CM_Set_Class_Registry_Property | |
| 324 | Remote_CM_Set_DevNode_Problem | |
| 325 | Remote_CM_Set_DevNode_Property | |
| 326 | Remote_CM_Set_DevNode_Registry_Property | |
| 327 | Remote_CM_Set_Device_Interface_Property | |
| 328 | Remote_CM_Set_HW_Prof | |
| 329 | Remote_CM_Set_HW_Prof_Flags | |
| 330 | Remote_CM_Setup_DevNode | |
| 331 | Remote_CM_Uninstall_DevNode | |
| 332 | Remote_CM_Unregister_Device_Interface | |
| 333 | SetupAddInstallSectionToDiskSpaceListA | |
| 334 | SetupAddInstallSectionToDiskSpaceListW | |
| 335 | SetupAddSectionToDiskSpaceListA | |
| 336 | SetupAddSectionToDiskSpaceListW | |
| 337 | SetupAddToDiskSpaceListA | |
| 338 | SetupAddToDiskSpaceListW | |
| 339 | SetupAddToSourceListA | |
| 340 | SetupAddToSourceListW | |
| 341 | SetupAdjustDiskSpaceListA | |
| 342 | SetupAdjustDiskSpaceListW | |
| 343 | SetupBackupErrorA | |
| 344 | SetupBackupErrorW | |
| 345 | SetupCancelTemporarySourceList | |
| 346 | SetupCloseFileQueue | |
| 347 | SetupCloseInfFile | |
| 348 | SetupCloseLog | |
| 349 | SetupCommitFileQueue | |
| 350 | SetupCommitFileQueueA | |
| 351 | SetupCommitFileQueueW | |
| 352 | SetupConfigureWmiFromInfSectionA | |
| 353 | SetupConfigureWmiFromInfSectionW | |
| 354 | SetupCopyErrorA | |
| 355 | SetupCopyErrorW | |
| 356 | SetupCopyOEMInfA | |
| 357 | SetupCopyOEMInfW | |
| 358 | SetupCreateDiskSpaceListA | |
| 359 | SetupCreateDiskSpaceListW | |
| 360 | SetupDecompressOrCopyFileA | |
| 361 | SetupDecompressOrCopyFileW | |
| 362 | SetupDefaultQueueCallback | |
| 363 | SetupDefaultQueueCallbackA | |
| 364 | SetupDefaultQueueCallbackW | |
| 365 | SetupDeleteErrorA | |
| 366 | SetupDeleteErrorW | |
| 367 | SetupDestroyDiskSpaceList | |
| 368 | SetupDiApplyPowerScheme | |
| 369 | SetupDiAskForOEMDisk | |
| 370 | SetupDiBuildClassInfoList | |
| 371 | SetupDiBuildClassInfoListExA | |
| 372 | SetupDiBuildClassInfoListExW | |
| 373 | SetupDiBuildDriverInfoList | |
| 374 | SetupDiCallClassInstaller | |
| 375 | SetupDiCancelDriverInfoSearch | |
| 376 | SetupDiChangeState | |
| 377 | SetupDiClassGuidsFromNameA | |
| 378 | SetupDiClassGuidsFromNameExA | |
| 379 | SetupDiClassGuidsFromNameExW | |
| 380 | SetupDiClassGuidsFromNameW | |
| 381 | SetupDiClassNameFromGuidA | |
| 382 | SetupDiClassNameFromGuidExA | |
| 383 | SetupDiClassNameFromGuidExW | |
| 384 | SetupDiClassNameFromGuidW | |
| 385 | SetupDiCreateDevRegKeyA | |
| 386 | SetupDiCreateDevRegKeyW | |
| 387 | SetupDiCreateDeviceInfoA | |
| 388 | SetupDiCreateDeviceInfoList | |
| 389 | SetupDiCreateDeviceInfoListExA | |
| 390 | SetupDiCreateDeviceInfoListExW | |
| 391 | SetupDiCreateDeviceInfoW | |
| 392 | SetupDiCreateDeviceInterfaceA | |
| 393 | SetupDiCreateDeviceInterfaceRegKeyA | |
| 394 | SetupDiCreateDeviceInterfaceRegKeyW | |
| 395 | SetupDiCreateDeviceInterfaceW | |
| 396 | SetupDiDeleteDevRegKey | |
| 397 | SetupDiDeleteDeviceInfo | |
| 398 | SetupDiDeleteDeviceInterfaceData | |
| 399 | SetupDiDeleteDeviceInterfaceRegKey | |
| 400 | SetupDiDestroyClassImageList | |
| 401 | SetupDiDestroyDeviceInfoList | |
| 402 | SetupDiDestroyDriverInfoList | |
| 403 | SetupDiDrawMiniIcon | |
| 404 | SetupDiEnumDeviceInfo | |
| 405 | SetupDiEnumDeviceInterfaces | |
| 406 | SetupDiEnumDriverInfoA | |
| 407 | SetupDiEnumDriverInfoW | |
| 408 | SetupDiGetActualModelsSectionA | |
| 409 | SetupDiGetActualModelsSectionW | |
| 410 | SetupDiGetActualSectionToInstallA | |
| 411 | SetupDiGetActualSectionToInstallExA | |
| 412 | SetupDiGetActualSectionToInstallExW | |
| 413 | SetupDiGetActualSectionToInstallW | |
| 414 | SetupDiGetClassBitmapIndex | |
| 415 | SetupDiGetClassDescriptionA | |
| 416 | SetupDiGetClassDescriptionExA | |
| 417 | SetupDiGetClassDescriptionExW | |
| 418 | SetupDiGetClassDescriptionW | |
| 419 | SetupDiGetClassDevPropertySheetsA | |
| 420 | SetupDiGetClassDevPropertySheetsW | |
| 421 | SetupDiGetClassDevsA | |
| 422 | SetupDiGetClassDevsExA | |
| 423 | SetupDiGetClassDevsExW | |
| 424 | SetupDiGetClassDevsW | |
| 425 | SetupDiGetClassImageIndex | |
| 426 | SetupDiGetClassImageList | |
| 427 | SetupDiGetClassImageListExA | |
| 428 | SetupDiGetClassImageListExW | |
| 429 | SetupDiGetClassInstallParamsA | |
| 430 | SetupDiGetClassInstallParamsW | |
| 431 | SetupDiGetClassPropertyExW | |
| 432 | SetupDiGetClassPropertyKeys | |
| 433 | SetupDiGetClassPropertyKeysExW | |
| 434 | SetupDiGetClassPropertyW | |
| 435 | SetupDiGetClassRegistryPropertyA | |
| 436 | SetupDiGetClassRegistryPropertyW | |
| 437 | SetupDiGetCustomDevicePropertyA | |
| 438 | SetupDiGetCustomDevicePropertyW | |
| 439 | SetupDiGetDeviceInfoListClass | |
| 440 | SetupDiGetDeviceInfoListDetailA | |
| 441 | SetupDiGetDeviceInfoListDetailW | |
| 442 | SetupDiGetDeviceInstallParamsA | |
| 443 | SetupDiGetDeviceInstallParamsW | |
| 444 | SetupDiGetDeviceInstanceIdA | |
| 445 | SetupDiGetDeviceInstanceIdW | |
| 446 | SetupDiGetDeviceInterfaceAlias | |
| 447 | SetupDiGetDeviceInterfaceDetailA | |
| 448 | SetupDiGetDeviceInterfaceDetailW | |
| 449 | SetupDiGetDeviceInterfacePropertyKeys | |
| 450 | SetupDiGetDeviceInterfacePropertyW | |
| 451 | SetupDiGetDevicePropertyKeys | |
| 452 | SetupDiGetDevicePropertyW | |
| 453 | SetupDiGetDeviceRegistryPropertyA | |
| 454 | SetupDiGetDeviceRegistryPropertyW | |
| 455 | SetupDiGetDriverInfoDetailA | |
| 456 | SetupDiGetDriverInfoDetailW | |
| 457 | SetupDiGetDriverInstallParamsA | |
| 458 | SetupDiGetDriverInstallParamsW | |
| 459 | SetupDiGetHwProfileFriendlyNameA | |
| 460 | SetupDiGetHwProfileFriendlyNameExA | |
| 461 | SetupDiGetHwProfileFriendlyNameExW | |
| 462 | SetupDiGetHwProfileFriendlyNameW | |
| 463 | SetupDiGetHwProfileList | |
| 464 | SetupDiGetHwProfileListExA | |
| 465 | SetupDiGetHwProfileListExW | |
| 466 | SetupDiGetINFClassA | |
| 467 | SetupDiGetINFClassW | |
| 468 | SetupDiGetSelectedDevice | |
| 469 | SetupDiGetSelectedDriverA | |
| 470 | SetupDiGetSelectedDriverW | |
| 471 | SetupDiGetWizardPage | |
| 472 | SetupDiInstallClassA | |
| 473 | SetupDiInstallClassExA | |
| 474 | SetupDiInstallClassExW | |
| 475 | SetupDiInstallClassW | |
| 476 | SetupDiInstallDevice | |
| 477 | SetupDiInstallDeviceInterfaces | |
| 478 | SetupDiInstallDriverFiles | |
| 479 | SetupDiLoadClassIcon | |
| 480 | SetupDiLoadDeviceIcon | |
| 481 | SetupDiMoveDuplicateDevice | |
| 482 | SetupDiOpenClassRegKey | |
| 483 | SetupDiOpenClassRegKeyExA | |
| 484 | SetupDiOpenClassRegKeyExW | |
| 485 | SetupDiOpenDevRegKey | |
| 486 | SetupDiOpenDeviceInfoA | |
| 487 | SetupDiOpenDeviceInfoW | |
| 488 | SetupDiOpenDeviceInterfaceA | |
| 489 | SetupDiOpenDeviceInterfaceRegKey | |
| 490 | SetupDiOpenDeviceInterfaceW | |
| 491 | SetupDiRegisterCoDeviceInstallers | |
| 492 | SetupDiRegisterDeviceInfo | |
| 493 | SetupDiRemoveDevice | |
| 494 | SetupDiRemoveDeviceInterface | |
| 495 | SetupDiReportAdditionalSoftwareRequested | |
| 496 | SetupDiReportDeviceInstallError | |
| 497 | SetupDiReportDriverNotFoundError | |
| 498 | SetupDiReportDriverPackageImportationError | |
| 499 | SetupDiReportGenericDriverInstalled | |
| 500 | SetupDiReportPnPDeviceProblem | |
| 501 | SetupDiRestartDevices | |
| 502 | SetupDiSelectBestCompatDrv | |
| 503 | SetupDiSelectDevice | |
| 504 | SetupDiSelectOEMDrv | |
| 505 | SetupDiSetClassInstallParamsA | |
| 506 | SetupDiSetClassInstallParamsW | |
| 507 | SetupDiSetClassPropertyExW | |
| 508 | SetupDiSetClassPropertyW | |
| 509 | SetupDiSetClassRegistryPropertyA | |
| 510 | SetupDiSetClassRegistryPropertyW | |
| 511 | SetupDiSetDeviceInstallParamsA | |
| 512 | SetupDiSetDeviceInstallParamsW | |
| 513 | SetupDiSetDeviceInterfaceDefault | |
| 514 | SetupDiSetDeviceInterfacePropertyW | |
| 515 | SetupDiSetDevicePropertyW | |
| 516 | SetupDiSetDeviceRegistryPropertyA | |
| 517 | SetupDiSetDeviceRegistryPropertyW | |
| 518 | SetupDiSetDriverInstallParamsA | |
| 519 | SetupDiSetDriverInstallParamsW | |
| 520 | SetupDiSetSelectedDevice | |
| 521 | SetupDiSetSelectedDriverA | |
| 522 | SetupDiSetSelectedDriverW | |
| 523 | SetupDiUnremoveDevice | |
| 524 | SetupDuplicateDiskSpaceListA | |
| 525 | SetupDuplicateDiskSpaceListW | |
| 526 | SetupEnumInfSectionsA | |
| 527 | SetupEnumInfSectionsW | |
| 528 | SetupEnumPublishedInfA | |
| 529 | SetupEnumPublishedInfW | |
| 530 | SetupFindFirstLineA | |
| 531 | SetupFindFirstLineW | |
| 532 | SetupFindNextLine | |
| 533 | SetupFindNextMatchLineA | |
| 534 | SetupFindNextMatchLineW | |
| 535 | SetupFreeSourceListA | |
| 536 | SetupFreeSourceListW | |
| 537 | SetupGetBackupInformationA | |
| 538 | SetupGetBackupInformationW | |
| 539 | SetupGetBinaryField | |
| 540 | SetupGetFieldCount | |
| 541 | SetupGetFileCompressionInfoA | |
| 542 | SetupGetFileCompressionInfoExA | |
| 543 | SetupGetFileCompressionInfoExW | |
| 544 | SetupGetFileCompressionInfoW | |
| 545 | SetupGetFileQueueCount | |
| 546 | SetupGetFileQueueFlags | |
| 547 | SetupGetInfDriverStoreLocationA | |
| 548 | SetupGetInfDriverStoreLocationW | |
| 549 | SetupGetInfFileListA | |
| 550 | SetupGetInfFileListW | |
| 551 | SetupGetInfInformationA | |
| 552 | SetupGetInfInformationW | |
| 553 | SetupGetInfPublishedNameA | |
| 554 | SetupGetInfPublishedNameW | |
| 555 | SetupGetInfSections | |
| 556 | SetupGetIntField | |
| 557 | SetupGetLineByIndexA | |
| 558 | SetupGetLineByIndexW | |
| 559 | SetupGetLineCountA | |
| 560 | SetupGetLineCountW | |
| 561 | SetupGetLineTextA | |
| 562 | SetupGetLineTextW | |
| 563 | SetupGetMultiSzFieldA | |
| 564 | SetupGetMultiSzFieldW | |
| 565 | SetupGetNonInteractiveMode | |
| 566 | SetupGetSourceFileLocationA | |
| 567 | SetupGetSourceFileLocationW | |
| 568 | SetupGetSourceFileSizeA | |
| 569 | SetupGetSourceFileSizeW | |
| 570 | SetupGetSourceInfoA | |
| 571 | SetupGetSourceInfoW | |
| 572 | SetupGetStringFieldA | |
| 573 | SetupGetStringFieldW | |
| 574 | SetupGetTargetPathA | |
| 575 | SetupGetTargetPathW | |
| 576 | SetupGetThreadLogToken | |
| 577 | SetupInitDefaultQueueCallback | |
| 578 | SetupInitDefaultQueueCallbackEx | |
| 579 | SetupInitializeFileLogA | |
| 580 | SetupInitializeFileLogW | |
| 581 | SetupInstallFileA | |
| 582 | SetupInstallFileExA | |
| 583 | SetupInstallFileExW | |
| 584 | SetupInstallFileW | |
| 585 | SetupInstallFilesFromInfSectionA | |
| 586 | SetupInstallFilesFromInfSectionW | |
| 587 | SetupInstallFromInfSectionA | |
| 588 | SetupInstallFromInfSectionW | |
| 589 | SetupInstallLogCloseEventGroup | |
| 590 | SetupInstallLogCreateEventGroup | |
| 591 | SetupInstallServicesFromInfSectionA | |
| 592 | SetupInstallServicesFromInfSectionExA | |
| 593 | SetupInstallServicesFromInfSectionExW | |
| 594 | SetupInstallServicesFromInfSectionW | |
| 595 | SetupIterateCabinetA | |
| 596 | SetupIterateCabinetW | |
| 597 | SetupLogErrorA | |
| 598 | SetupLogErrorW | |
| 599 | SetupLogFileA | |
| 600 | SetupLogFileW | |
| 601 | SetupOpenAppendInfFileA | |
| 602 | SetupOpenAppendInfFileW | |
| 603 | SetupOpenFileQueue | |
| 604 | SetupOpenInfFileA | |
| 605 | SetupOpenInfFileW | |
| 606 | SetupOpenLog | |
| 607 | SetupOpenMasterInf | |
| 608 | SetupPrepareQueueForRestoreA | |
| 609 | SetupPrepareQueueForRestoreW | |
| 610 | SetupPromptForDiskA | |
| 611 | SetupPromptForDiskW | |
| 612 | SetupPromptReboot | |
| 613 | SetupQueryDrivesInDiskSpaceListA | |
| 614 | SetupQueryDrivesInDiskSpaceListW | |
| 615 | SetupQueryFileLogA | |
| 616 | SetupQueryFileLogW | |
| 617 | SetupQueryInfFileInformationA | |
| 618 | SetupQueryInfFileInformationW | |
| 619 | SetupQueryInfOriginalFileInformationA | |
| 620 | SetupQueryInfOriginalFileInformationW | |
| 621 | SetupQueryInfVersionInformationA | |
| 622 | SetupQueryInfVersionInformationW | |
| 623 | SetupQuerySourceListA | |
| 624 | SetupQuerySourceListW | |
| 625 | SetupQuerySpaceRequiredOnDriveA | |
| 626 | SetupQuerySpaceRequiredOnDriveW | |
| 627 | SetupQueueCopyA | |
| 628 | SetupQueueCopyIndirectA | |
| 629 | SetupQueueCopyIndirectW | |
| 630 | SetupQueueCopySectionA | |
| 631 | SetupQueueCopySectionW | |
| 632 | SetupQueueCopyW | |
| 633 | SetupQueueDefaultCopyA | |
| 634 | SetupQueueDefaultCopyW | |
| 635 | SetupQueueDeleteA | |
| 636 | SetupQueueDeleteSectionA | |
| 637 | SetupQueueDeleteSectionW | |
| 638 | SetupQueueDeleteW | |
| 639 | SetupQueueRenameA | |
| 640 | SetupQueueRenameSectionA | |
| 641 | SetupQueueRenameSectionW | |
| 642 | SetupQueueRenameW | |
| 643 | SetupRemoveFileLogEntryA | |
| 644 | SetupRemoveFileLogEntryW | |
| 645 | SetupRemoveFromDiskSpaceListA | |
| 646 | SetupRemoveFromDiskSpaceListW | |
| 647 | SetupRemoveFromSourceListA | |
| 648 | SetupRemoveFromSourceListW | |
| 649 | SetupRemoveInstallSectionFromDiskSpaceListA | |
| 650 | SetupRemoveInstallSectionFromDiskSpaceListW | |
| 651 | SetupRemoveSectionFromDiskSpaceListA | |
| 652 | SetupRemoveSectionFromDiskSpaceListW | |
| 653 | SetupRenameErrorA | |
| 654 | SetupRenameErrorW | |
| 655 | SetupScanFileQueue | |
| 656 | SetupScanFileQueueA | |
| 657 | SetupScanFileQueueW | |
| 658 | SetupSetDirectoryIdA | |
| 659 | SetupSetDirectoryIdExA | |
| 660 | SetupSetDirectoryIdExW | |
| 661 | SetupSetDirectoryIdW | |
| 662 | SetupSetFileQueueAlternatePlatformA | |
| 663 | SetupSetFileQueueAlternatePlatformW | |
| 664 | SetupSetFileQueueFlags | |
| 665 | SetupSetNonInteractiveMode | |
| 666 | SetupSetPlatformPathOverrideA | |
| 667 | SetupSetPlatformPathOverrideW | |
| 668 | SetupSetSourceListA | |
| 669 | SetupSetSourceListW | |
| 670 | SetupSetThreadLogToken | |
| 671 | SetupTermDefaultQueueCallback | |
| 672 | SetupTerminateFileLog | |
| 673 | SetupUninstallNewlyCopiedInfs | |
| 674 | SetupUninstallOEMInfA | |
| 675 | SetupUninstallOEMInfW | |
| 676 | SetupVerifyInfFileA | |
| 677 | SetupVerifyInfFileW | |
| 678 | SetupWriteTextLog | |
| 679 | SetupWriteTextLogError | |
| 680 | SetupWriteTextLogInfLine | |
| 681 | UnicodeToMultiByte | |
| 682 | VerifyCatalogFile | |
| 683 | pGetDriverPackageHash | |
| 684 | pSetupAccessRunOnceNodeList | |
| 685 | pSetupAddMiniIconToList | |
| 686 | pSetupAddTagToGroupOrderListEntry | |
| 687 | pSetupAppendPath | |
| 688 | pSetupCaptureAndConvertAnsiArg | |
| 689 | pSetupCenterWindowRelativeToParent | |
| 690 | pSetupCloseTextLogSection | |
| 691 | pSetupConcatenatePaths | |
| 692 | pSetupCreateTextLogSectionA | |
| 693 | pSetupCreateTextLogSectionW | |
| 694 | pSetupDestroyRunOnceNodeList | |
| 695 | pSetupDiBuildInfoDataFromStrongName | |
| 696 | pSetupDiCrimsonLogDeviceInstall | |
| 697 | pSetupDiEnumSelectedDrivers | |
| 698 | pSetupDiGetDriverInfoExtensionId | |
| 699 | pSetupDiGetStrongNameForDriverNode | |
| 700 | pSetupDiInvalidateHelperModules | |
| 701 | pSetupDoLastKnownGoodBackup | |
| 702 | pSetupDoesUserHavePrivilege | |
| 703 | pSetupDuplicateString | |
| 704 | pSetupEnablePrivilege | |
| 705 | pSetupFree | |
| 706 | pSetupGetCurrentDriverSigningPolicy | |
| 707 | pSetupGetDriverDate | |
| 708 | pSetupGetDriverVersion | |
| 709 | pSetupGetField | |
| 710 | pSetupGetFileTitle | |
| 711 | pSetupGetGlobalFlags | |
| 712 | pSetupGetIndirectStringsFromDriverInfo | |
| 713 | pSetupGetInfSections | |
| 714 | pSetupGetQueueFlags | |
| 715 | pSetupGetRealSystemTime | |
| 716 | pSetupGuidFromString | |
| 717 | pSetupHandleFailedVerification | |
| 718 | pSetupInfGetDigitalSignatureInfo | |
| 719 | pSetupInfIsInbox | |
| 720 | pSetupInfSetDigitalSignatureInfo | |
| 721 | pSetupInstallCatalog | |
| 722 | pSetupIsBiDiLocalizedSystemEx | |
| 723 | pSetupIsGuidNull | |
| 724 | pSetupIsLocalSystem | |
| 725 | pSetupIsUserAdmin | |
| 726 | pSetupIsUserTrustedInstaller | |
| 727 | pSetupLoadIndirectString | |
| 728 | pSetupMakeSurePathExists | |
| 729 | pSetupMalloc | |
| 730 | pSetupModifyGlobalFlags | |
| 731 | pSetupMultiByteToUnicode | |
| 732 | pSetupOpenAndMapFileForRead | |
| 733 | pSetupOutOfMemory | |
| 734 | pSetupQueryMultiSzValueToArray | |
| 735 | pSetupRealloc | |
| 736 | pSetupRegistryDelnode | |
| 737 | pSetupRetrieveServiceConfig | |
| 738 | pSetupSetArrayToMultiSzValue | |
| 739 | pSetupSetDriverPackageRestorePoint | |
| 740 | pSetupSetGlobalFlags | |
| 741 | pSetupSetQueueFlags | |
| 742 | pSetupShouldDeviceBeExcluded | |
| 743 | pSetupStringFromGuid | |
| 744 | pSetupStringTableAddString | |
| 745 | pSetupStringTableAddStringEx | |
| 746 | pSetupStringTableDestroy | |
| 747 | pSetupStringTableDuplicate | |
| 748 | pSetupStringTableEnum | |
| 749 | pSetupStringTableGetExtraData | |
| 750 | pSetupStringTableInitialize | |
| 751 | pSetupStringTableInitializeEx | |
| 752 | pSetupStringTableLookUpString | |
| 753 | pSetupStringTableLookUpStringEx | |
| 754 | pSetupStringTableSetExtraData | |
| 755 | pSetupStringTableStringFromId | |
| 756 | pSetupStringTableStringFromIdEx | |
| 757 | pSetupUnicodeToMultiByte | |
| 758 | pSetupUninstallCatalog | |
| 759 | pSetupUnmapAndCloseFile | |
| 760 | pSetupValidateDriverPackage | |
| 761 | pSetupVerifyCatalogFile | |
| 762 | pSetupVerifyQueuedCatalogs | |
| 763 | pSetupWriteLogEntry | |
| 764 | pSetupWriteLogError |
lib/libc/mingw/libarm32/wofutil.def deleted-14| ... | ... | @@ -1,14 +0,0 @@ |
| 1 | ; | |
| 2 | ; Definition file of WOFUTIL.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008-2014 | |
| 5 | ; | |
| 6 | LIBRARY "WOFUTIL.dll" | |
| 7 | EXPORTS | |
| 8 | WofEnumEntries | |
| 9 | WofIsExternalFile | |
| 10 | WofSetFileDataLocation | |
| 11 | WofWimAddEntry | |
| 12 | WofWimEnumFiles | |
| 13 | WofWimRemoveEntry | |
| 14 | WofWimUpdateEntry |
lib/libc/mingw/libsrc/uuid.c+1| ... | ... | @@ -26,6 +26,7 @@ |
| 26 | 26 | #include <urlmon.h> |
| 27 | 27 | #include <d2d1_1.h> |
| 28 | 28 | #include <d3d11_1.h> |
| 29 | #include <directmanipulation.h> | |
| 29 | 30 | #include <netlistmgr.h> |
| 30 | 31 | |
| 31 | 32 | DEFINE_GUID(ARRAYID_PathProperties,0x7ecbba04,0x2d97,0x11cf,0xa2,0x29,0,0xaa,0,0x3d,0x73,0x52); |
lib/libc/mingw/misc/gettimeofday.c+17-2| ... | ... | @@ -41,8 +41,23 @@ int getntptimeofday (struct timespec *tp, struct timezone *z) |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | if (tp != NULL) { |
| 44 | GetSystemTimeAsFileTime (&_now.ft);	 /* 100-nanoseconds since 1-1-1601 */ | |
| 45 | /* The actual accuracy on XP seems to be 125,000 nanoseconds = 125 microseconds = 0.125 milliseconds */ | |
| 44 | typedef void (WINAPI * GetSystemTimeAsFileTime_t)(LPFILETIME); | |
| 45 | static GetSystemTimeAsFileTime_t GetSystemTimeAsFileTime_p /* = 0 */; | |
| 46 | ||
| 47 | /* Set function pointer during first call */ | |
| 48 | GetSystemTimeAsFileTime_t get_time = | |
| 49 | __atomic_load_n (&GetSystemTimeAsFileTime_p, __ATOMIC_RELAXED); | |
| 50 | if (get_time == NULL) { | |
| 51 | /* Use GetSystemTimePreciseAsFileTime() if available (Windows 8 or later) */ | |
| 52 | get_time = (GetSystemTimeAsFileTime_t)(intptr_t) GetProcAddress ( | |
| 53 | GetModuleHandle ("kernel32.dll"), | |
| 54 | "GetSystemTimePreciseAsFileTime"); /* <1us precision on Windows 10 */ | |
| 55 | if (get_time == NULL) | |
| 56 | get_time = GetSystemTimeAsFileTime; /* >15ms precision on Windows 10 */ | |
| 57 | __atomic_store_n (&GetSystemTimeAsFileTime_p, get_time, __ATOMIC_RELAXED); | |
| 58 | } | |
| 59 | ||
| 60 | get_time (&_now.ft);	/* 100 nano-seconds since 1-1-1601 */ | |
| 46 | 61 | _now.ns100 -= FILETIME_1970;	/* 100 nano-seconds since 1-1-1970 */ |
| 47 | 62 | tp->tv_sec = _now.ns100 / HECTONANOSEC_PER_SEC;	/* seconds since 1-1-1970 */ |
| 48 | 63 | tp->tv_nsec = (long) (_now.ns100 % HECTONANOSEC_PER_SEC) * 100; /* nanoseconds */ |
lib/libc/mingw/secapi/vsprintf_s.c-5| ... | ... | @@ -33,13 +33,8 @@ vsprintf_s (char *_DstBuf, size_t _Size, const char *_Format, va_list _ArgList) |
| 33 | 33 | return _stub (_DstBuf, _Size, _Format, _ArgList); |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | #pragma clang diagnostic push | |
| 37 | #pragma clang diagnostic ignored "-Wimplicit-function-declaration" | |
| 38 | ||
| 39 | 36 | static int __cdecl |
| 40 | 37 | _int_vsprintf_s (char *_DstBuf, size_t _Size, const char *_Format, va_list _ArgList) |
| 41 | 38 | { |
| 42 | 39 | return __ms_vsnprintf (_DstBuf, _Size, _Format, _ArgList); |
| 43 | 40 | } |
| 44 | ||
| 45 | #pragma clang diagnostic pop |
lib/libc/mingw/stdio/_getwc_nolock.c+2| ... | ... | @@ -1,3 +1,5 @@ |
| 1 | #undef __MSVCRT_VERSION__ | |
| 2 | #define __MSVCRT_VERSION__ 0x800 | |
| 1 | 3 | #include <stdio.h> |
| 2 | 4 | |
| 3 | 5 | #undef _getwc_nolock |
lib/libc/mingw/stdio/_putwc_nolock.c+2| ... | ... | @@ -1,3 +1,5 @@ |
| 1 | #undef __MSVCRT_VERSION__ | |
| 2 | #define __MSVCRT_VERSION__ 0x800 | |
| 1 | 3 | #include <stdio.h> |
| 2 | 4 | |
| 3 | 5 | #undef _putwc_nolock |
lib/libc/mingw/stdio/vwscanf.c-5| ... | ... | @@ -10,12 +10,7 @@ |
| 10 | 10 | #include <wchar.h> |
| 11 | 11 | #include <stdio.h> |
| 12 | 12 | |
| 13 | #pragma clang diagnostic push | |
| 14 | #pragma clang diagnostic ignored "-Wimplicit-function-declaration" | |
| 15 | ||
| 16 | 13 | int __ms_vwscanf (const wchar_t * __restrict__ format, va_list arg) |
| 17 | 14 | { |
| 18 | 15 | return __ms_vfwscanf(stdin, format, arg); |
| 19 | 16 | } |
| 20 | ||
| 21 | #pragma clang diagnostic pop |