authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-06-04 09:49:36-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-06-04 09:49:36-07:00
log6f4339be3a3f16489bef6de8bed581694c8ef304
tree779efc40319f6b2e1b3d313caf881f7cf3afe5a0
parentd7f00c43897655e3bb6a9cddf1b1191a6c1381e0

update mingw-w64 crt files to v9.0.0


54 files changed, 3113 insertions(+), 6181 deletions(-)

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