crt: Get rid of unnecessary/unused aliases in api-ms-win-core-*.def

These (from a mingw-w64 point of view) nonsense aliases were a byproduct
of the script generating these def files. Whatever their purpose was,
it isn't how def file aliases are used within mingw def files.

GNU binutils dlltool actually doesn't seem to do anything with the part of
a line after a single '=' character, but it requires '==' to produce an
alias. llvm-dlltool on the other hand interprets both '=' and '==' the same,
producing aliases of both.

This fixes using the api-ms-win-core-* import libraries and libwindowsapp.a,
when built with llvm-dlltool.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2017-09-07 16:11:14 +03:00
parent cff7cb7dfe
commit 766b19304d
130 changed files with 1095 additions and 1095 deletions

View File

@ -2,42 +2,42 @@ LIBRARY api-ms-win-core-com-l1-1-1
EXPORTS
CLSIDFromString@8=api-ms-win-core-com-l1-1-1._CLSIDFromString@8
CoCreateFreeThreadedMarshaler@8=api-ms-win-core-com-l1-1-1._CoCreateFreeThreadedMarshaler@8
CoCreateGuid@4=api-ms-win-core-com-l1-1-1._CoCreateGuid@4
CoCreateInstanceFromApp@24=api-ms-win-core-com-l1-1-1._CoCreateInstanceFromApp@24
CoDisconnectObject@8=api-ms-win-core-com-l1-1-1._CoDisconnectObject@8
CoFreeUnusedLibraries@0=api-ms-win-core-com-l1-1-1._CoFreeUnusedLibraries@0
CoFreeUnusedLibrariesEx@8=api-ms-win-core-com-l1-1-1._CoFreeUnusedLibrariesEx@8
CoGetApartmentType@8=api-ms-win-core-com-l1-1-1._CoGetApartmentType@8
CoGetContextToken@4=api-ms-win-core-com-l1-1-1._CoGetContextToken@4
CoGetCurrentLogicalThreadId@4=api-ms-win-core-com-l1-1-1._CoGetCurrentLogicalThreadId@4
CoGetInterfaceAndReleaseStream@12=api-ms-win-core-com-l1-1-1._CoGetInterfaceAndReleaseStream@12
CoGetMarshalSizeMax@24=api-ms-win-core-com-l1-1-1._CoGetMarshalSizeMax@24
CoGetObjectContext@8=api-ms-win-core-com-l1-1-1._CoGetObjectContext@8
CoGetStandardMarshal@24=api-ms-win-core-com-l1-1-1._CoGetStandardMarshal@24
CoInitializeEx@8=api-ms-win-core-com-l1-1-1._CoInitializeEx@8
CoInitializeSecurity@36=api-ms-win-core-com-l1-1-1._CoInitializeSecurity@36
CoMarshalInterface@24=api-ms-win-core-com-l1-1-1._CoMarshalInterface@24
CoMarshalInterThreadInterfaceInStream@12=api-ms-win-core-com-l1-1-1._CoMarshalInterThreadInterfaceInStream@12
CoRegisterClassObject@20=api-ms-win-core-com-l1-1-1._CoRegisterClassObject@20
CoReleaseMarshalData@4=api-ms-win-core-com-l1-1-1._CoReleaseMarshalData@4
CoResumeClassObjects@0=api-ms-win-core-com-l1-1-1._CoResumeClassObjects@0
CoRevokeClassObject@4=api-ms-win-core-com-l1-1-1._CoRevokeClassObject@4
CoSuspendClassObjects@0=api-ms-win-core-com-l1-1-1._CoSuspendClassObjects@0
CoSwitchCallContext@8=api-ms-win-core-com-l1-1-1._CoSwitchCallContext@8
CoTaskMemAlloc@4=api-ms-win-core-com-l1-1-1._CoTaskMemAlloc@4
CoTaskMemFree@4=api-ms-win-core-com-l1-1-1._CoTaskMemFree@4
CoTaskMemRealloc@8=api-ms-win-core-com-l1-1-1._CoTaskMemRealloc@8
CoUninitialize@0=api-ms-win-core-com-l1-1-1._CoUninitialize@0
CoUnmarshalInterface@12=api-ms-win-core-com-l1-1-1._CoUnmarshalInterface@12
CreateStreamOnHGlobal@12=api-ms-win-core-com-l1-1-1._CreateStreamOnHGlobal@12
FreePropVariantArray@8=api-ms-win-core-com-l1-1-1._FreePropVariantArray@8
GetHGlobalFromStream@8=api-ms-win-core-com-l1-1-1._GetHGlobalFromStream@8
IIDFromString@8=api-ms-win-core-com-l1-1-1._IIDFromString@8
PropVariantClear@4=api-ms-win-core-com-l1-1-1._PropVariantClear@4
PropVariantCopy@8=api-ms-win-core-com-l1-1-1._PropVariantCopy@8
RoGetAgileReference@16=api-ms-win-core-com-l1-1-1._RoGetAgileReference@16
StringFromCLSID@8=api-ms-win-core-com-l1-1-1._StringFromCLSID@8
StringFromGUID2@12=api-ms-win-core-com-l1-1-1._StringFromGUID2@12
StringFromIID@8=api-ms-win-core-com-l1-1-1._StringFromIID@8
CLSIDFromString@8
CoCreateFreeThreadedMarshaler@8
CoCreateGuid@4
CoCreateInstanceFromApp@24
CoDisconnectObject@8
CoFreeUnusedLibraries@0
CoFreeUnusedLibrariesEx@8
CoGetApartmentType@8
CoGetContextToken@4
CoGetCurrentLogicalThreadId@4
CoGetInterfaceAndReleaseStream@12
CoGetMarshalSizeMax@24
CoGetObjectContext@8
CoGetStandardMarshal@24
CoInitializeEx@8
CoInitializeSecurity@36
CoMarshalInterface@24
CoMarshalInterThreadInterfaceInStream@12
CoRegisterClassObject@20
CoReleaseMarshalData@4
CoResumeClassObjects@0
CoRevokeClassObject@4
CoSuspendClassObjects@0
CoSwitchCallContext@8
CoTaskMemAlloc@4
CoTaskMemFree@4
CoTaskMemRealloc@8
CoUninitialize@0
CoUnmarshalInterface@12
CreateStreamOnHGlobal@12
FreePropVariantArray@8
GetHGlobalFromStream@8
IIDFromString@8
PropVariantClear@4
PropVariantCopy@8
RoGetAgileReference@16
StringFromCLSID@8
StringFromGUID2@12
StringFromIID@8

View File

@ -2,24 +2,24 @@ LIBRARY api-ms-win-core-com-l2-1-1
EXPORTS
CreateILockBytesOnHGlobal@12=api-ms-win-core-com-l2-1-1._CreateILockBytesOnHGlobal@12
FmtIdToPropStgName@8=api-ms-win-core-com-l2-1-1._FmtIdToPropStgName@8
GetConvertStg@4=api-ms-win-core-com-l2-1-1._GetConvertStg@4
GetHGlobalFromILockBytes@8=api-ms-win-core-com-l2-1-1._GetHGlobalFromILockBytes@8
PropStgNameToFmtId@8=api-ms-win-core-com-l2-1-1._PropStgNameToFmtId@8
ReadClassStg@8=api-ms-win-core-com-l2-1-1._ReadClassStg@8
ReadClassStm@8=api-ms-win-core-com-l2-1-1._ReadClassStm@8
StgCreateDocfile@16=api-ms-win-core-com-l2-1-1._StgCreateDocfile@16
StgCreateDocfileOnILockBytes@16=api-ms-win-core-com-l2-1-1._StgCreateDocfileOnILockBytes@16
StgCreatePropSetStg@12=api-ms-win-core-com-l2-1-1._StgCreatePropSetStg@12
StgCreatePropStg@24=api-ms-win-core-com-l2-1-1._StgCreatePropStg@24
StgCreateStorageEx@32=api-ms-win-core-com-l2-1-1._StgCreateStorageEx@32
StgIsStorageFile@4=api-ms-win-core-com-l2-1-1._StgIsStorageFile@4
StgIsStorageILockBytes@4=api-ms-win-core-com-l2-1-1._StgIsStorageILockBytes@4
StgOpenPropStg@20=api-ms-win-core-com-l2-1-1._StgOpenPropStg@20
StgOpenStorage@24=api-ms-win-core-com-l2-1-1._StgOpenStorage@24
StgOpenStorageEx@32=api-ms-win-core-com-l2-1-1._StgOpenStorageEx@32
StgOpenStorageOnILockBytes@24=api-ms-win-core-com-l2-1-1._StgOpenStorageOnILockBytes@24
StgSetTimes@16=api-ms-win-core-com-l2-1-1._StgSetTimes@16
WriteClassStg@8=api-ms-win-core-com-l2-1-1._WriteClassStg@8
WriteClassStm@8=api-ms-win-core-com-l2-1-1._WriteClassStm@8
CreateILockBytesOnHGlobal@12
FmtIdToPropStgName@8
GetConvertStg@4
GetHGlobalFromILockBytes@8
PropStgNameToFmtId@8
ReadClassStg@8
ReadClassStm@8
StgCreateDocfile@16
StgCreateDocfileOnILockBytes@16
StgCreatePropSetStg@12
StgCreatePropStg@24
StgCreateStorageEx@32
StgIsStorageFile@4
StgIsStorageILockBytes@4
StgOpenPropStg@20
StgOpenStorage@24
StgOpenStorageEx@32
StgOpenStorageOnILockBytes@24
StgSetTimes@16
WriteClassStg@8
WriteClassStm@8

View File

@ -2,76 +2,76 @@ LIBRARY api-ms-win-core-com-midlproxystub-l1-1-0
EXPORTS
CStdAsyncStubBuffer_AddRef@4=api-ms-win-core-com-midlproxystub-l1-1-0._CStdAsyncStubBuffer_AddRef@4
CStdAsyncStubBuffer_Connect@8=api-ms-win-core-com-midlproxystub-l1-1-0._CStdAsyncStubBuffer_Connect@8
CStdAsyncStubBuffer_Disconnect@4=api-ms-win-core-com-midlproxystub-l1-1-0._CStdAsyncStubBuffer_Disconnect@4
CStdAsyncStubBuffer_Invoke@12=api-ms-win-core-com-midlproxystub-l1-1-0._CStdAsyncStubBuffer_Invoke@12
CStdAsyncStubBuffer_QueryInterface@12=api-ms-win-core-com-midlproxystub-l1-1-0._CStdAsyncStubBuffer_QueryInterface@12
CStdAsyncStubBuffer_Release@4=api-ms-win-core-com-midlproxystub-l1-1-0._CStdAsyncStubBuffer_Release@4
CStdAsyncStubBuffer2_Connect@8=api-ms-win-core-com-midlproxystub-l1-1-0._CStdAsyncStubBuffer2_Connect@8
CStdAsyncStubBuffer2_Disconnect@4=api-ms-win-core-com-midlproxystub-l1-1-0._CStdAsyncStubBuffer2_Disconnect@4
CStdAsyncStubBuffer2_Release@4=api-ms-win-core-com-midlproxystub-l1-1-0._CStdAsyncStubBuffer2_Release@4
CStdStubBuffer2_Connect@8=api-ms-win-core-com-midlproxystub-l1-1-0._CStdStubBuffer2_Connect@8
CStdStubBuffer2_CountRefs@4=api-ms-win-core-com-midlproxystub-l1-1-0._CStdStubBuffer2_CountRefs@4
CStdStubBuffer2_Disconnect@4=api-ms-win-core-com-midlproxystub-l1-1-0._CStdStubBuffer2_Disconnect@4
CStdStubBuffer2_QueryInterface@12=api-ms-win-core-com-midlproxystub-l1-1-0._CStdStubBuffer2_QueryInterface@12
NdrProxyForwardingFunction10@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction10@0
NdrProxyForwardingFunction11@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction11@0
NdrProxyForwardingFunction12@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction12@0
NdrProxyForwardingFunction13@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction13@0
NdrProxyForwardingFunction14@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction14@0
NdrProxyForwardingFunction15@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction15@0
NdrProxyForwardingFunction16@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction16@0
NdrProxyForwardingFunction17@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction17@0
NdrProxyForwardingFunction18@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction18@0
NdrProxyForwardingFunction19@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction19@0
NdrProxyForwardingFunction20@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction20@0
NdrProxyForwardingFunction21@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction21@0
NdrProxyForwardingFunction22@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction22@0
NdrProxyForwardingFunction23@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction23@0
NdrProxyForwardingFunction24@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction24@0
NdrProxyForwardingFunction25@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction25@0
NdrProxyForwardingFunction26@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction26@0
NdrProxyForwardingFunction27@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction27@0
NdrProxyForwardingFunction28@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction28@0
NdrProxyForwardingFunction29@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction29@0
NdrProxyForwardingFunction3@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction3@0
NdrProxyForwardingFunction30@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction30@0
NdrProxyForwardingFunction31@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction31@0
NdrProxyForwardingFunction32@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction32@0
NdrProxyForwardingFunction4@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction4@0
NdrProxyForwardingFunction5@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction5@0
NdrProxyForwardingFunction6@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction6@0
NdrProxyForwardingFunction7@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction7@0
NdrProxyForwardingFunction8@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction8@0
NdrProxyForwardingFunction9@0=api-ms-win-core-com-midlproxystub-l1-1-0._NdrProxyForwardingFunction9@0
ObjectStublessClient10@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient10@0
ObjectStublessClient11@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient11@0
ObjectStublessClient12@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient12@0
ObjectStublessClient13@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient13@0
ObjectStublessClient14@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient14@0
ObjectStublessClient15@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient15@0
ObjectStublessClient16@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient16@0
ObjectStublessClient17@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient17@0
ObjectStublessClient18@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient18@0
ObjectStublessClient19@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient19@0
ObjectStublessClient20@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient20@0
ObjectStublessClient21@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient21@0
ObjectStublessClient22@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient22@0
ObjectStublessClient23@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient23@0
ObjectStublessClient24@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient24@0
ObjectStublessClient25@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient25@0
ObjectStublessClient26@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient26@0
ObjectStublessClient27@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient27@0
ObjectStublessClient28@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient28@0
ObjectStublessClient29@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient29@0
ObjectStublessClient3@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient3@0
ObjectStublessClient30@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient30@0
ObjectStublessClient31@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient31@0
ObjectStublessClient32@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient32@0
ObjectStublessClient4@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient4@0
ObjectStublessClient5@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient5@0
ObjectStublessClient6@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient6@0
ObjectStublessClient7@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient7@0
ObjectStublessClient8@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient8@0
ObjectStublessClient9@0=api-ms-win-core-com-midlproxystub-l1-1-0._ObjectStublessClient9@0
CStdAsyncStubBuffer_AddRef@4
CStdAsyncStubBuffer_Connect@8
CStdAsyncStubBuffer_Disconnect@4
CStdAsyncStubBuffer_Invoke@12
CStdAsyncStubBuffer_QueryInterface@12
CStdAsyncStubBuffer_Release@4
CStdAsyncStubBuffer2_Connect@8
CStdAsyncStubBuffer2_Disconnect@4
CStdAsyncStubBuffer2_Release@4
CStdStubBuffer2_Connect@8
CStdStubBuffer2_CountRefs@4
CStdStubBuffer2_Disconnect@4
CStdStubBuffer2_QueryInterface@12
NdrProxyForwardingFunction10@0
NdrProxyForwardingFunction11@0
NdrProxyForwardingFunction12@0
NdrProxyForwardingFunction13@0
NdrProxyForwardingFunction14@0
NdrProxyForwardingFunction15@0
NdrProxyForwardingFunction16@0
NdrProxyForwardingFunction17@0
NdrProxyForwardingFunction18@0
NdrProxyForwardingFunction19@0
NdrProxyForwardingFunction20@0
NdrProxyForwardingFunction21@0
NdrProxyForwardingFunction22@0
NdrProxyForwardingFunction23@0
NdrProxyForwardingFunction24@0
NdrProxyForwardingFunction25@0
NdrProxyForwardingFunction26@0
NdrProxyForwardingFunction27@0
NdrProxyForwardingFunction28@0
NdrProxyForwardingFunction29@0
NdrProxyForwardingFunction3@0
NdrProxyForwardingFunction30@0
NdrProxyForwardingFunction31@0
NdrProxyForwardingFunction32@0
NdrProxyForwardingFunction4@0
NdrProxyForwardingFunction5@0
NdrProxyForwardingFunction6@0
NdrProxyForwardingFunction7@0
NdrProxyForwardingFunction8@0
NdrProxyForwardingFunction9@0
ObjectStublessClient10@0
ObjectStublessClient11@0
ObjectStublessClient12@0
ObjectStublessClient13@0
ObjectStublessClient14@0
ObjectStublessClient15@0
ObjectStublessClient16@0
ObjectStublessClient17@0
ObjectStublessClient18@0
ObjectStublessClient19@0
ObjectStublessClient20@0
ObjectStublessClient21@0
ObjectStublessClient22@0
ObjectStublessClient23@0
ObjectStublessClient24@0
ObjectStublessClient25@0
ObjectStublessClient26@0
ObjectStublessClient27@0
ObjectStublessClient28@0
ObjectStublessClient29@0
ObjectStublessClient3@0
ObjectStublessClient30@0
ObjectStublessClient31@0
ObjectStublessClient32@0
ObjectStublessClient4@0
ObjectStublessClient5@0
ObjectStublessClient6@0
ObjectStublessClient7@0
ObjectStublessClient8@0
ObjectStublessClient9@0

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-datetime-l1-1-1
EXPORTS
GetDateFormatEx@28=api-ms-win-core-datetime-l1-1-1._GetDateFormatEx@28
GetTimeFormatEx@24=api-ms-win-core-datetime-l1-1-1._GetTimeFormatEx@24
GetDateFormatEx@28
GetTimeFormatEx@24

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-datetime-l1-1-2
EXPORTS
GetDurationFormatEx@32=api-ms-win-core-datetime-l1-1-2._GetDurationFormatEx@32
GetDurationFormatEx@32

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-debug-l1-1-1
EXPORTS
IsDebuggerPresent@0=api-ms-win-core-debug-l1-1-1._IsDebuggerPresent@0
OutputDebugStringA@4=api-ms-win-core-debug-l1-1-1._OutputDebugStringA@4
OutputDebugStringW@4=api-ms-win-core-debug-l1-1-1._OutputDebugStringW@4
IsDebuggerPresent@0
OutputDebugStringA@4
OutputDebugStringW@4

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-delayload-l1-1-1
EXPORTS
DelayLoadFailureHook@8=api-ms-win-core-delayload-l1-1-1._DelayLoadFailureHook@8
ResolveDelayLoadedAPI@24=api-ms-win-core-delayload-l1-1-1._ResolveDelayLoadedAPI@24
ResolveDelayLoadsFromDll@12=api-ms-win-core-delayload-l1-1-1._ResolveDelayLoadsFromDll@12
DelayLoadFailureHook@8
ResolveDelayLoadedAPI@24
ResolveDelayLoadsFromDll@12

View File

@ -2,7 +2,7 @@ LIBRARY api-ms-win-core-errorhandling-l1-1-1
EXPORTS
GetLastError@0=api-ms-win-core-errorhandling-l1-1-1._GetLastError@0
RaiseException@16=api-ms-win-core-errorhandling-l1-1-1._RaiseException@16
SetLastError@4=api-ms-win-core-errorhandling-l1-1-1._SetLastError@4
SetUnhandledExceptionFilter@4=api-ms-win-core-errorhandling-l1-1-1._SetUnhandledExceptionFilter@4
GetLastError@0
RaiseException@16
SetLastError@4
SetUnhandledExceptionFilter@4

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-errorhandling-l1-1-3
EXPORTS
RaiseFailFastException@12=api-ms-win-core-errorhandling-l1-1-3._RaiseFailFastException@12
RaiseFailFastException@12

View File

@ -2,8 +2,8 @@ LIBRARY api-ms-win-core-featurestaging-l1-1-0
EXPORTS
GetFeatureEnabledState@8=api-ms-win-core-featurestaging-l1-1-0._GetFeatureEnabledState@8
RecordFeatureError@8=api-ms-win-core-featurestaging-l1-1-0._RecordFeatureError@8
RecordFeatureUsage@16=api-ms-win-core-featurestaging-l1-1-0._RecordFeatureUsage@16
SubscribeFeatureStateChangeNotification@12=api-ms-win-core-featurestaging-l1-1-0._SubscribeFeatureStateChangeNotification@12
UnsubscribeFeatureStateChangeNotification@4=api-ms-win-core-featurestaging-l1-1-0._UnsubscribeFeatureStateChangeNotification@4
GetFeatureEnabledState@8
RecordFeatureError@8
RecordFeatureUsage@16
SubscribeFeatureStateChangeNotification@12
UnsubscribeFeatureStateChangeNotification@4

View File

@ -2,8 +2,8 @@ LIBRARY api-ms-win-core-fibers-l1-1-1
EXPORTS
FlsAlloc@4=api-ms-win-core-fibers-l1-1-1._FlsAlloc@4
FlsFree@4=api-ms-win-core-fibers-l1-1-1._FlsFree@4
FlsGetValue@4=api-ms-win-core-fibers-l1-1-1._FlsGetValue@4
FlsSetValue@8=api-ms-win-core-fibers-l1-1-1._FlsSetValue@8
IsThreadAFiber@0=api-ms-win-core-fibers-l1-1-1._IsThreadAFiber@0
FlsAlloc@4
FlsFree@4
FlsGetValue@4
FlsSetValue@8
IsThreadAFiber@0

View File

@ -2,8 +2,8 @@ LIBRARY api-ms-win-core-fibers-l2-1-1
EXPORTS
ConvertFiberToThread@0=api-ms-win-core-fibers-l2-1-1._ConvertFiberToThread@0
ConvertThreadToFiberEx@8=api-ms-win-core-fibers-l2-1-1._ConvertThreadToFiberEx@8
CreateFiberEx@20=api-ms-win-core-fibers-l2-1-1._CreateFiberEx@20
DeleteFiber@4=api-ms-win-core-fibers-l2-1-1._DeleteFiber@4
SwitchToFiber@4=api-ms-win-core-fibers-l2-1-1._SwitchToFiber@4
ConvertFiberToThread@0
ConvertThreadToFiberEx@8
CreateFiberEx@20
DeleteFiber@4
SwitchToFiber@4

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-file-ansi-l2-1-0
EXPORTS
ReplaceFileA@24=api-ms-win-core-file-ansi-l2-1-0._ReplaceFileA@24
ReplaceFileA@24

View File

@ -2,51 +2,51 @@ LIBRARY api-ms-win-core-file-l1-2-1
EXPORTS
CompareFileTime@8=api-ms-win-core-file-l1-2-1._CompareFileTime@8
CreateDirectoryA@8=api-ms-win-core-file-l1-2-1._CreateDirectoryA@8
CreateDirectoryW@8=api-ms-win-core-file-l1-2-1._CreateDirectoryW@8
CreateFile2@20=api-ms-win-core-file-l1-2-1._CreateFile2@20
DeleteFileA@4=api-ms-win-core-file-l1-2-1._DeleteFileA@4
DeleteFileW@4=api-ms-win-core-file-l1-2-1._DeleteFileW@4
FileTimeToLocalFileTime@8=api-ms-win-core-file-l1-2-1._FileTimeToLocalFileTime@8
FindClose@4=api-ms-win-core-file-l1-2-1._FindClose@4
FindFirstFileA@8=api-ms-win-core-file-l1-2-1._FindFirstFileA@8
FindFirstFileExA@24=api-ms-win-core-file-l1-2-1._FindFirstFileExA@24
FindFirstFileExW@24=api-ms-win-core-file-l1-2-1._FindFirstFileExW@24
FindFirstFileW@8=api-ms-win-core-file-l1-2-1._FindFirstFileW@8
FindNextFileA@8=api-ms-win-core-file-l1-2-1._FindNextFileA@8
FindNextFileW@8=api-ms-win-core-file-l1-2-1._FindNextFileW@8
FlushFileBuffers@4=api-ms-win-core-file-l1-2-1._FlushFileBuffers@4
GetDiskFreeSpaceA@20=api-ms-win-core-file-l1-2-1._GetDiskFreeSpaceA@20
GetDiskFreeSpaceExA@16=api-ms-win-core-file-l1-2-1._GetDiskFreeSpaceExA@16
GetDiskFreeSpaceExW@16=api-ms-win-core-file-l1-2-1._GetDiskFreeSpaceExW@16
GetDiskFreeSpaceW@20=api-ms-win-core-file-l1-2-1._GetDiskFreeSpaceW@20
GetFileAttributesA@4=api-ms-win-core-file-l1-2-1._GetFileAttributesA@4
GetFileAttributesExA@12=api-ms-win-core-file-l1-2-1._GetFileAttributesExA@12
GetFileAttributesExW@12=api-ms-win-core-file-l1-2-1._GetFileAttributesExW@12
GetFileAttributesW@4=api-ms-win-core-file-l1-2-1._GetFileAttributesW@4
GetFileSizeEx@8=api-ms-win-core-file-l1-2-1._GetFileSizeEx@8
GetFileTime@16=api-ms-win-core-file-l1-2-1._GetFileTime@16
GetFileType@4=api-ms-win-core-file-l1-2-1._GetFileType@4
GetFinalPathNameByHandleA@16=api-ms-win-core-file-l1-2-1._GetFinalPathNameByHandleA@16
GetFinalPathNameByHandleW@16=api-ms-win-core-file-l1-2-1._GetFinalPathNameByHandleW@16
GetFullPathNameW@16=api-ms-win-core-file-l1-2-1._GetFullPathNameW@16
GetLongPathNameW@12=api-ms-win-core-file-l1-2-1._GetLongPathNameW@12
GetTempFileNameW@16=api-ms-win-core-file-l1-2-1._GetTempFileNameW@16
GetTempPathW@8=api-ms-win-core-file-l1-2-1._GetTempPathW@8
LocalFileTimeToFileTime@8=api-ms-win-core-file-l1-2-1._LocalFileTimeToFileTime@8
LockFileEx@24=api-ms-win-core-file-l1-2-1._LockFileEx@24
ReadFile@20=api-ms-win-core-file-l1-2-1._ReadFile@20
ReadFileEx@20=api-ms-win-core-file-l1-2-1._ReadFileEx@20
RemoveDirectoryA@4=api-ms-win-core-file-l1-2-1._RemoveDirectoryA@4
RemoveDirectoryW@4=api-ms-win-core-file-l1-2-1._RemoveDirectoryW@4
SetEndOfFile@4=api-ms-win-core-file-l1-2-1._SetEndOfFile@4
SetFileAttributesA@8=api-ms-win-core-file-l1-2-1._SetFileAttributesA@8
SetFileAttributesW@8=api-ms-win-core-file-l1-2-1._SetFileAttributesW@8
SetFileInformationByHandle@16=api-ms-win-core-file-l1-2-1._SetFileInformationByHandle@16
SetFilePointer@16=api-ms-win-core-file-l1-2-1._SetFilePointer@16
SetFilePointerEx@20=api-ms-win-core-file-l1-2-1._SetFilePointerEx@20
SetFileTime@16=api-ms-win-core-file-l1-2-1._SetFileTime@16
UnlockFileEx@20=api-ms-win-core-file-l1-2-1._UnlockFileEx@20
WriteFile@20=api-ms-win-core-file-l1-2-1._WriteFile@20
WriteFileEx@20=api-ms-win-core-file-l1-2-1._WriteFileEx@20
CompareFileTime@8
CreateDirectoryA@8
CreateDirectoryW@8
CreateFile2@20
DeleteFileA@4
DeleteFileW@4
FileTimeToLocalFileTime@8
FindClose@4
FindFirstFileA@8
FindFirstFileExA@24
FindFirstFileExW@24
FindFirstFileW@8
FindNextFileA@8
FindNextFileW@8
FlushFileBuffers@4
GetDiskFreeSpaceA@20
GetDiskFreeSpaceExA@16
GetDiskFreeSpaceExW@16
GetDiskFreeSpaceW@20
GetFileAttributesA@4
GetFileAttributesExA@12
GetFileAttributesExW@12
GetFileAttributesW@4
GetFileSizeEx@8
GetFileTime@16
GetFileType@4
GetFinalPathNameByHandleA@16
GetFinalPathNameByHandleW@16
GetFullPathNameW@16
GetLongPathNameW@12
GetTempFileNameW@16
GetTempPathW@8
LocalFileTimeToFileTime@8
LockFileEx@24
ReadFile@20
ReadFileEx@20
RemoveDirectoryA@4
RemoveDirectoryW@4
SetEndOfFile@4
SetFileAttributesA@8
SetFileAttributesW@8
SetFileInformationByHandle@16
SetFilePointer@16
SetFilePointerEx@20
SetFileTime@16
UnlockFileEx@20
WriteFile@20
WriteFileEx@20

View File

@ -2,7 +2,7 @@ LIBRARY api-ms-win-core-file-l2-1-1
EXPORTS
CopyFile2@12=api-ms-win-core-file-l2-1-1._CopyFile2@12
GetFileInformationByHandleEx@16=api-ms-win-core-file-l2-1-1._GetFileInformationByHandleEx@16
MoveFileExW@12=api-ms-win-core-file-l2-1-1._MoveFileExW@12
ReplaceFileW@24=api-ms-win-core-file-l2-1-1._ReplaceFileW@24
CopyFile2@12
GetFileInformationByHandleEx@16
MoveFileExW@12
ReplaceFileW@24

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-handle-l1-1-0
EXPORTS
CloseHandle@4=api-ms-win-core-handle-l1-1-0._CloseHandle@4
CompareObjectHandles@8=api-ms-win-core-handle-l1-1-0._CompareObjectHandles@8
DuplicateHandle@28=api-ms-win-core-handle-l1-1-0._DuplicateHandle@28
CloseHandle@4
CompareObjectHandles@8
DuplicateHandle@28

View File

@ -2,12 +2,12 @@ LIBRARY api-ms-win-core-heap-l1-2-0
EXPORTS
GetProcessHeap@0=api-ms-win-core-heap-l1-2-0._GetProcessHeap@0
HeapAlloc@12=api-ms-win-core-heap-l1-2-0._HeapAlloc@12
HeapCompact@8=api-ms-win-core-heap-l1-2-0._HeapCompact@8
HeapCreate@12=api-ms-win-core-heap-l1-2-0._HeapCreate@12
HeapDestroy@4=api-ms-win-core-heap-l1-2-0._HeapDestroy@4
HeapFree@12=api-ms-win-core-heap-l1-2-0._HeapFree@12
HeapReAlloc@16=api-ms-win-core-heap-l1-2-0._HeapReAlloc@16
HeapSetInformation@16=api-ms-win-core-heap-l1-2-0._HeapSetInformation@16
HeapSize@12=api-ms-win-core-heap-l1-2-0._HeapSize@12
GetProcessHeap@0
HeapAlloc@12
HeapCompact@8
HeapCreate@12
HeapDestroy@4
HeapFree@12
HeapReAlloc@16
HeapSetInformation@16
HeapSize@12

View File

@ -2,8 +2,8 @@ LIBRARY api-ms-win-core-heap-l2-1-0
EXPORTS
GlobalAlloc@8=api-ms-win-core-heap-l2-1-0._GlobalAlloc@8
GlobalFree@4=api-ms-win-core-heap-l2-1-0._GlobalFree@4
LocalAlloc@8=api-ms-win-core-heap-l2-1-0._LocalAlloc@8
LocalFree@4=api-ms-win-core-heap-l2-1-0._LocalFree@4
LocalReAlloc@12=api-ms-win-core-heap-l2-1-0._LocalReAlloc@12
GlobalAlloc@8
GlobalFree@4
LocalAlloc@8
LocalFree@4
LocalReAlloc@12

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-heap-obsolete-l1-1-0
EXPORTS
GlobalReAlloc@12=api-ms-win-core-heap-obsolete-l1-1-0._GlobalReAlloc@12
GlobalReAlloc@12

View File

@ -2,15 +2,15 @@ LIBRARY api-ms-win-core-interlocked-l1-2-0
EXPORTS
InitializeSListHead@4=api-ms-win-core-interlocked-l1-2-0._InitializeSListHead@4
InterlockedCompareExchange@12=api-ms-win-core-interlocked-l1-2-0._InterlockedCompareExchange@12
InterlockedCompareExchange64@20=api-ms-win-core-interlocked-l1-2-0._InterlockedCompareExchange64@20
InterlockedDecrement@4=api-ms-win-core-interlocked-l1-2-0._InterlockedDecrement@4
InterlockedExchange@8=api-ms-win-core-interlocked-l1-2-0._InterlockedExchange@8
InterlockedExchangeAdd@8=api-ms-win-core-interlocked-l1-2-0._InterlockedExchangeAdd@8
InterlockedFlushSList@4=api-ms-win-core-interlocked-l1-2-0._InterlockedFlushSList@4
InterlockedIncrement@4=api-ms-win-core-interlocked-l1-2-0._InterlockedIncrement@4
InterlockedPopEntrySList@4=api-ms-win-core-interlocked-l1-2-0._InterlockedPopEntrySList@4
InterlockedPushEntrySList@8=api-ms-win-core-interlocked-l1-2-0._InterlockedPushEntrySList@8
InterlockedPushListSListEx@16=api-ms-win-core-interlocked-l1-2-0._InterlockedPushListSListEx@16
QueryDepthSList@4=api-ms-win-core-interlocked-l1-2-0._QueryDepthSList@4
InitializeSListHead@4
InterlockedCompareExchange@12
InterlockedCompareExchange64@20
InterlockedDecrement@4
InterlockedExchange@8
InterlockedExchangeAdd@8
InterlockedFlushSList@4
InterlockedIncrement@4
InterlockedPopEntrySList@4
InterlockedPushEntrySList@8
InterlockedPushListSListEx@16
QueryDepthSList@4

View File

@ -2,11 +2,11 @@ LIBRARY api-ms-win-core-io-l1-1-1
EXPORTS
CancelIo@4=api-ms-win-core-io-l1-1-1._CancelIo@4
CancelIoEx@8=api-ms-win-core-io-l1-1-1._CancelIoEx@8
CreateIoCompletionPort@16=api-ms-win-core-io-l1-1-1._CreateIoCompletionPort@16
GetOverlappedResult@16=api-ms-win-core-io-l1-1-1._GetOverlappedResult@16
GetOverlappedResultEx@20=api-ms-win-core-io-l1-1-1._GetOverlappedResultEx@20
GetQueuedCompletionStatus@20=api-ms-win-core-io-l1-1-1._GetQueuedCompletionStatus@20
GetQueuedCompletionStatusEx@24=api-ms-win-core-io-l1-1-1._GetQueuedCompletionStatusEx@24
PostQueuedCompletionStatus@16=api-ms-win-core-io-l1-1-1._PostQueuedCompletionStatus@16
CancelIo@4
CancelIoEx@8
CreateIoCompletionPort@16
GetOverlappedResult@16
GetOverlappedResultEx@20
GetQueuedCompletionStatus@20
GetQueuedCompletionStatusEx@24
PostQueuedCompletionStatus@16

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-kernel32-legacy-l1-1-1
EXPORTS
MoveFileExA@12=api-ms-win-core-kernel32-legacy-l1-1-1._MoveFileExA@12
MoveFileExA@12

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-largeinteger-l1-1-0
EXPORTS
MulDiv@12=api-ms-win-core-largeinteger-l1-1-0._MulDiv@12
MulDiv@12

View File

@ -2,10 +2,10 @@ LIBRARY api-ms-win-core-libraryloader-l1-2-0
EXPORTS
DisableThreadLibraryCalls@4=api-ms-win-core-libraryloader-l1-2-0._DisableThreadLibraryCalls@4
FindStringOrdinal@24=api-ms-win-core-libraryloader-l1-2-0._FindStringOrdinal@24
FreeLibrary@4=api-ms-win-core-libraryloader-l1-2-0._FreeLibrary@4
FreeLibraryAndExitThread@8=api-ms-win-core-libraryloader-l1-2-0._FreeLibraryAndExitThread@8
GetModuleFileNameA@12=api-ms-win-core-libraryloader-l1-2-0._GetModuleFileNameA@12
GetModuleFileNameW@12=api-ms-win-core-libraryloader-l1-2-0._GetModuleFileNameW@12
GetProcAddress@8=api-ms-win-core-libraryloader-l1-2-0._GetProcAddress@8
DisableThreadLibraryCalls@4
FindStringOrdinal@24
FreeLibrary@4
FreeLibraryAndExitThread@8
GetModuleFileNameA@12
GetModuleFileNameW@12
GetProcAddress@8

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-libraryloader-l2-1-0
EXPORTS
LoadPackagedLibrary@8=api-ms-win-core-libraryloader-l2-1-0._LoadPackagedLibrary@8
QueryOptionalDelayLoadedAPI@16=api-ms-win-core-libraryloader-l2-1-0._QueryOptionalDelayLoadedAPI@16
LoadPackagedLibrary@8
QueryOptionalDelayLoadedAPI@16

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-localization-ansi-l1-1-0
EXPORTS
GetStringTypeExA@20=api-ms-win-core-localization-ansi-l1-1-0._GetStringTypeExA@20
GetStringTypeExA@20

View File

@ -2,24 +2,24 @@ LIBRARY api-ms-win-core-localization-l1-2-1
EXPORTS
EnumSystemGeoID@12=api-ms-win-core-localization-l1-2-1._EnumSystemGeoID@12
EnumSystemLocalesEx@16=api-ms-win-core-localization-l1-2-1._EnumSystemLocalesEx@16
FindNLSStringEx@40=api-ms-win-core-localization-l1-2-1._FindNLSStringEx@40
FormatMessageA@28=api-ms-win-core-localization-l1-2-1._FormatMessageA@28
FormatMessageW@28=api-ms-win-core-localization-l1-2-1._FormatMessageW@28
GetCalendarInfoEx@28=api-ms-win-core-localization-l1-2-1._GetCalendarInfoEx@28
GetCPInfo@8=api-ms-win-core-localization-l1-2-1._GetCPInfo@8
GetCPInfoExW@12=api-ms-win-core-localization-l1-2-1._GetCPInfoExW@12
GetGeoInfoW@20=api-ms-win-core-localization-l1-2-1._GetGeoInfoW@20
GetLocaleInfoEx@16=api-ms-win-core-localization-l1-2-1._GetLocaleInfoEx@16
GetNLSVersionEx@12=api-ms-win-core-localization-l1-2-1._GetNLSVersionEx@12
GetUserDefaultLocaleName@8=api-ms-win-core-localization-l1-2-1._GetUserDefaultLocaleName@8
GetUserGeoID@4=api-ms-win-core-localization-l1-2-1._GetUserGeoID@4
IdnToAscii@20=api-ms-win-core-localization-l1-2-1._IdnToAscii@20
IdnToUnicode@20=api-ms-win-core-localization-l1-2-1._IdnToUnicode@20
IsValidCodePage@4=api-ms-win-core-localization-l1-2-1._IsValidCodePage@4
IsValidLocaleName@4=api-ms-win-core-localization-l1-2-1._IsValidLocaleName@4
IsValidNLSVersion@12=api-ms-win-core-localization-l1-2-1._IsValidNLSVersion@12
LCMapStringEx@36=api-ms-win-core-localization-l1-2-1._LCMapStringEx@36
LocaleNameToLCID@8=api-ms-win-core-localization-l1-2-1._LocaleNameToLCID@8
ResolveLocaleName@12=api-ms-win-core-localization-l1-2-1._ResolveLocaleName@12
EnumSystemGeoID@12
EnumSystemLocalesEx@16
FindNLSStringEx@40
FormatMessageA@28
FormatMessageW@28
GetCalendarInfoEx@28
GetCPInfo@8
GetCPInfoExW@12
GetGeoInfoW@20
GetLocaleInfoEx@16
GetNLSVersionEx@12
GetUserDefaultLocaleName@8
GetUserGeoID@4
IdnToAscii@20
IdnToUnicode@20
IsValidCodePage@4
IsValidLocaleName@4
IsValidNLSVersion@12
LCMapStringEx@36
LocaleNameToLCID@8
ResolveLocaleName@12

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-localization-l1-2-2
EXPORTS
GetSystemDefaultLocaleName@8=api-ms-win-core-localization-l1-2-2._GetSystemDefaultLocaleName@8
LCIDToLocaleName@16=api-ms-win-core-localization-l1-2-2._LCIDToLocaleName@16
GetSystemDefaultLocaleName@8
LCIDToLocaleName@16

View File

@ -2,9 +2,9 @@ LIBRARY api-ms-win-core-localization-l2-1-0
EXPORTS
EnumCalendarInfoExEx@24=api-ms-win-core-localization-l2-1-0._EnumCalendarInfoExEx@24
EnumDateFormatsExEx@16=api-ms-win-core-localization-l2-1-0._EnumDateFormatsExEx@16
EnumSystemCodePagesW@8=api-ms-win-core-localization-l2-1-0._EnumSystemCodePagesW@8
EnumTimeFormatsEx@16=api-ms-win-core-localization-l2-1-0._EnumTimeFormatsEx@16
GetCurrencyFormatEx@24=api-ms-win-core-localization-l2-1-0._GetCurrencyFormatEx@24
GetNumberFormatEx@24=api-ms-win-core-localization-l2-1-0._GetNumberFormatEx@24
EnumCalendarInfoExEx@24
EnumDateFormatsExEx@16
EnumSystemCodePagesW@8
EnumTimeFormatsEx@16
GetCurrencyFormatEx@24
GetNumberFormatEx@24

View File

@ -2,15 +2,15 @@ LIBRARY api-ms-win-core-memory-l1-1-2
EXPORTS
CreateFileMappingFromApp@24=api-ms-win-core-memory-l1-1-2._CreateFileMappingFromApp@24
DiscardVirtualMemory@8=api-ms-win-core-memory-l1-1-2._DiscardVirtualMemory@8
FlushViewOfFile@8=api-ms-win-core-memory-l1-1-2._FlushViewOfFile@8
GetWriteWatch@24=api-ms-win-core-memory-l1-1-2._GetWriteWatch@24
MapViewOfFileFromApp@20=api-ms-win-core-memory-l1-1-2._MapViewOfFileFromApp@20
OfferVirtualMemory@12=api-ms-win-core-memory-l1-1-2._OfferVirtualMemory@12
ReclaimVirtualMemory@8=api-ms-win-core-memory-l1-1-2._ReclaimVirtualMemory@8
ResetWriteWatch@8=api-ms-win-core-memory-l1-1-2._ResetWriteWatch@8
UnmapViewOfFile@4=api-ms-win-core-memory-l1-1-2._UnmapViewOfFile@4
UnmapViewOfFileEx@8=api-ms-win-core-memory-l1-1-2._UnmapViewOfFileEx@8
VirtualFree@12=api-ms-win-core-memory-l1-1-2._VirtualFree@12
VirtualQuery@12=api-ms-win-core-memory-l1-1-2._VirtualQuery@12
CreateFileMappingFromApp@24
DiscardVirtualMemory@8
FlushViewOfFile@8
GetWriteWatch@24
MapViewOfFileFromApp@20
OfferVirtualMemory@12
ReclaimVirtualMemory@8
ResetWriteWatch@8
UnmapViewOfFile@4
UnmapViewOfFileEx@8
VirtualFree@12
VirtualQuery@12

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-memory-l1-1-4
EXPORTS
OpenFileMappingFromApp@12=api-ms-win-core-memory-l1-1-4._OpenFileMappingFromApp@12
VirtualAllocFromApp@16=api-ms-win-core-memory-l1-1-4._VirtualAllocFromApp@16
VirtualProtectFromApp@16=api-ms-win-core-memory-l1-1-4._VirtualProtectFromApp@16
OpenFileMappingFromApp@12
VirtualAllocFromApp@16
VirtualProtectFromApp@16

View File

@ -2,8 +2,8 @@ LIBRARY api-ms-win-core-normalization-l1-1-0
EXPORTS
GetStringScripts@20=api-ms-win-core-normalization-l1-1-0._GetStringScripts@20
IdnToNameprepUnicode@20=api-ms-win-core-normalization-l1-1-0._IdnToNameprepUnicode@20
IsNormalizedString@12=api-ms-win-core-normalization-l1-1-0._IsNormalizedString@12
NormalizeString@20=api-ms-win-core-normalization-l1-1-0._NormalizeString@20
VerifyScripts@20=api-ms-win-core-normalization-l1-1-0._VerifyScripts@20
GetStringScripts@20
IdnToNameprepUnicode@20
IsNormalizedString@12
NormalizeString@20
VerifyScripts@20

View File

@ -2,7 +2,7 @@ LIBRARY api-ms-win-core-processenvironment-l1-2-0
EXPORTS
GetCommandLineA@0=api-ms-win-core-processenvironment-l1-2-0._GetCommandLineA@0
GetCommandLineW@0=api-ms-win-core-processenvironment-l1-2-0._GetCommandLineW@0
GetCurrentDirectoryW@8=api-ms-win-core-processenvironment-l1-2-0._GetCurrentDirectoryW@8
SetCurrentDirectoryW@4=api-ms-win-core-processenvironment-l1-2-0._SetCurrentDirectoryW@4
GetCommandLineA@0
GetCommandLineW@0
GetCurrentDirectoryW@8
SetCurrentDirectoryW@4

View File

@ -2,27 +2,27 @@ LIBRARY api-ms-win-core-processthreads-l1-1-2
EXPORTS
CreateThread@24=api-ms-win-core-processthreads-l1-1-2._CreateThread@24
ExitThread@4=api-ms-win-core-processthreads-l1-1-2._ExitThread@4
FlushProcessWriteBuffers@0=api-ms-win-core-processthreads-l1-1-2._FlushProcessWriteBuffers@0
GetCurrentProcess@0=api-ms-win-core-processthreads-l1-1-2._GetCurrentProcess@0
GetCurrentProcessId@0=api-ms-win-core-processthreads-l1-1-2._GetCurrentProcessId@0
GetCurrentThread@0=api-ms-win-core-processthreads-l1-1-2._GetCurrentThread@0
GetCurrentThreadId@0=api-ms-win-core-processthreads-l1-1-2._GetCurrentThreadId@0
GetExitCodeThread@8=api-ms-win-core-processthreads-l1-1-2._GetExitCodeThread@8
GetThreadContext@8=api-ms-win-core-processthreads-l1-1-2._GetThreadContext@8
GetThreadId@4=api-ms-win-core-processthreads-l1-1-2._GetThreadId@4
GetThreadPriority@4=api-ms-win-core-processthreads-l1-1-2._GetThreadPriority@4
IsProcessorFeaturePresent@4=api-ms-win-core-processthreads-l1-1-2._IsProcessorFeaturePresent@4
OpenProcess@12=api-ms-win-core-processthreads-l1-1-2._OpenProcess@12
QueueUserAPC@12=api-ms-win-core-processthreads-l1-1-2._QueueUserAPC@12
ResumeThread@4=api-ms-win-core-processthreads-l1-1-2._ResumeThread@4
SetThreadIdealProcessorEx@12=api-ms-win-core-processthreads-l1-1-2._SetThreadIdealProcessorEx@12
SetThreadPriority@8=api-ms-win-core-processthreads-l1-1-2._SetThreadPriority@8
SuspendThread@4=api-ms-win-core-processthreads-l1-1-2._SuspendThread@4
SwitchToThread@0=api-ms-win-core-processthreads-l1-1-2._SwitchToThread@0
TerminateProcess@8=api-ms-win-core-processthreads-l1-1-2._TerminateProcess@8
TlsAlloc@0=api-ms-win-core-processthreads-l1-1-2._TlsAlloc@0
TlsFree@4=api-ms-win-core-processthreads-l1-1-2._TlsFree@4
TlsGetValue@4=api-ms-win-core-processthreads-l1-1-2._TlsGetValue@4
TlsSetValue@8=api-ms-win-core-processthreads-l1-1-2._TlsSetValue@8
CreateThread@24
ExitThread@4
FlushProcessWriteBuffers@0
GetCurrentProcess@0
GetCurrentProcessId@0
GetCurrentThread@0
GetCurrentThreadId@0
GetExitCodeThread@8
GetThreadContext@8
GetThreadId@4
GetThreadPriority@4
IsProcessorFeaturePresent@4
OpenProcess@12
QueueUserAPC@12
ResumeThread@4
SetThreadIdealProcessorEx@12
SetThreadPriority@8
SuspendThread@4
SwitchToThread@0
TerminateProcess@8
TlsAlloc@0
TlsFree@4
TlsGetValue@4
TlsSetValue@8

View File

@ -2,11 +2,11 @@ LIBRARY api-ms-win-core-processthreads-l1-1-3
EXPORTS
GetProcessDefaultCpuSets@16=api-ms-win-core-processthreads-l1-1-3._GetProcessDefaultCpuSets@16
GetProcessInformation@16=api-ms-win-core-processthreads-l1-1-3._GetProcessInformation@16
GetSystemCpuSetInformation@20=api-ms-win-core-processthreads-l1-1-3._GetSystemCpuSetInformation@20
GetThreadSelectedCpuSets@16=api-ms-win-core-processthreads-l1-1-3._GetThreadSelectedCpuSets@16
SetProcessDefaultCpuSets@12=api-ms-win-core-processthreads-l1-1-3._SetProcessDefaultCpuSets@12
SetProcessInformation@16=api-ms-win-core-processthreads-l1-1-3._SetProcessInformation@16
SetThreadIdealProcessor@8=api-ms-win-core-processthreads-l1-1-3._SetThreadIdealProcessor@8
SetThreadSelectedCpuSets@12=api-ms-win-core-processthreads-l1-1-3._SetThreadSelectedCpuSets@12
GetProcessDefaultCpuSets@16
GetProcessInformation@16
GetSystemCpuSetInformation@20
GetThreadSelectedCpuSets@16
SetProcessDefaultCpuSets@12
SetProcessInformation@16
SetThreadIdealProcessor@8
SetThreadSelectedCpuSets@12

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-profile-l1-1-0
EXPORTS
QueryPerformanceCounter@4=api-ms-win-core-profile-l1-1-0._QueryPerformanceCounter@4
QueryPerformanceFrequency@4=api-ms-win-core-profile-l1-1-0._QueryPerformanceFrequency@4
QueryPerformanceCounter@4
QueryPerformanceFrequency@4

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-psapi-l1-1-0
EXPORTS
K32GetModuleInformation@16=api-ms-win-core-psapi-l1-1-0._K32GetModuleInformation@16
K32GetProcessMemoryInfo@12=api-ms-win-core-psapi-l1-1-0._K32GetProcessMemoryInfo@12
K32GetModuleInformation@16
K32GetProcessMemoryInfo@12

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-realtime-l1-1-0
EXPORTS
QueryUnbiasedInterruptTime@4=api-ms-win-core-realtime-l1-1-0._QueryUnbiasedInterruptTime@4
QueryUnbiasedInterruptTime@4

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-realtime-l1-1-1
EXPORTS
QueryInterruptTime@4=api-ms-win-core-realtime-l1-1-1._QueryInterruptTime@4
QueryInterruptTimePrecise@4=api-ms-win-core-realtime-l1-1-1._QueryInterruptTimePrecise@4
QueryUnbiasedInterruptTimePrecise@4=api-ms-win-core-realtime-l1-1-1._QueryUnbiasedInterruptTimePrecise@4
QueryInterruptTime@4
QueryInterruptTimePrecise@4
QueryUnbiasedInterruptTimePrecise@4

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-rtlsupport-l1-2-0
EXPORTS
RtlCaptureStackBackTrace@16=api-ms-win-core-rtlsupport-l1-2-0._RtlCaptureStackBackTrace@16
RtlPcToFileHeader@8=api-ms-win-core-rtlsupport-l1-2-0._RtlPcToFileHeader@8
RtlUnwind@16=api-ms-win-core-rtlsupport-l1-2-0._RtlUnwind@16
RtlCaptureStackBackTrace@16
RtlPcToFileHeader@8
RtlUnwind@16

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-slapi-l1-1-0
EXPORTS
SLQueryLicenseValueFromApp@20=api-ms-win-core-slapi-l1-1-0._SLQueryLicenseValueFromApp@20
SLQueryLicenseValueFromApp2@4=api-ms-win-core-slapi-l1-1-0._SLQueryLicenseValueFromApp2@4
SLQueryLicenseValueFromApp@20
SLQueryLicenseValueFromApp2@4

View File

@ -2,9 +2,9 @@ LIBRARY api-ms-win-core-string-l1-1-0
EXPORTS
CompareStringEx@36=api-ms-win-core-string-l1-1-0._CompareStringEx@36
CompareStringOrdinal@20=api-ms-win-core-string-l1-1-0._CompareStringOrdinal@20
GetStringTypeExW@20=api-ms-win-core-string-l1-1-0._GetStringTypeExW@20
GetStringTypeW@16=api-ms-win-core-string-l1-1-0._GetStringTypeW@16
MultiByteToWideChar@24=api-ms-win-core-string-l1-1-0._MultiByteToWideChar@24
WideCharToMultiByte@32=api-ms-win-core-string-l1-1-0._WideCharToMultiByte@32
CompareStringEx@36
CompareStringOrdinal@20
GetStringTypeExW@20
GetStringTypeW@16
MultiByteToWideChar@24
WideCharToMultiByte@32

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-synch-ansi-l1-1-0
EXPORTS
CreateSemaphoreA@16=api-ms-win-core-synch-ansi-l1-1-0._CreateSemaphoreA@16
CreateSemaphoreExA@24=api-ms-win-core-synch-ansi-l1-1-0._CreateSemaphoreExA@24
OpenMutexA@12=api-ms-win-core-synch-ansi-l1-1-0._OpenMutexA@12
CreateSemaphoreA@16
CreateSemaphoreExA@24
OpenMutexA@12

View File

@ -2,52 +2,52 @@ LIBRARY api-ms-win-core-synch-l1-2-0
EXPORTS
AcquireSRWLockExclusive@4=api-ms-win-core-synch-l1-2-0._AcquireSRWLockExclusive@4
AcquireSRWLockShared@4=api-ms-win-core-synch-l1-2-0._AcquireSRWLockShared@4
CreateEventA@16=api-ms-win-core-synch-l1-2-0._CreateEventA@16
CreateEventExA@16=api-ms-win-core-synch-l1-2-0._CreateEventExA@16
CreateEventExW@16=api-ms-win-core-synch-l1-2-0._CreateEventExW@16
CreateEventW@16=api-ms-win-core-synch-l1-2-0._CreateEventW@16
CreateMutexA@12=api-ms-win-core-synch-l1-2-0._CreateMutexA@12
CreateMutexExA@16=api-ms-win-core-synch-l1-2-0._CreateMutexExA@16
CreateMutexExW@16=api-ms-win-core-synch-l1-2-0._CreateMutexExW@16
CreateMutexW@12=api-ms-win-core-synch-l1-2-0._CreateMutexW@12
CreateSemaphoreExW@24=api-ms-win-core-synch-l1-2-0._CreateSemaphoreExW@24
DeleteCriticalSection@4=api-ms-win-core-synch-l1-2-0._DeleteCriticalSection@4
EnterCriticalSection@4=api-ms-win-core-synch-l1-2-0._EnterCriticalSection@4
InitializeConditionVariable@4=api-ms-win-core-synch-l1-2-0._InitializeConditionVariable@4
InitializeCriticalSection@4=api-ms-win-core-synch-l1-2-0._InitializeCriticalSection@4
InitializeCriticalSectionAndSpinCount@8=api-ms-win-core-synch-l1-2-0._InitializeCriticalSectionAndSpinCount@8
InitializeCriticalSectionEx@12=api-ms-win-core-synch-l1-2-0._InitializeCriticalSectionEx@12
InitializeSRWLock@4=api-ms-win-core-synch-l1-2-0._InitializeSRWLock@4
InitOnceBeginInitialize@16=api-ms-win-core-synch-l1-2-0._InitOnceBeginInitialize@16
InitOnceComplete@12=api-ms-win-core-synch-l1-2-0._InitOnceComplete@12
InitOnceExecuteOnce@16=api-ms-win-core-synch-l1-2-0._InitOnceExecuteOnce@16
InitOnceInitialize@4=api-ms-win-core-synch-l1-2-0._InitOnceInitialize@4
LeaveCriticalSection@4=api-ms-win-core-synch-l1-2-0._LeaveCriticalSection@4
OpenEventA@12=api-ms-win-core-synch-l1-2-0._OpenEventA@12
OpenEventW@12=api-ms-win-core-synch-l1-2-0._OpenEventW@12
OpenMutexW@12=api-ms-win-core-synch-l1-2-0._OpenMutexW@12
OpenSemaphoreW@12=api-ms-win-core-synch-l1-2-0._OpenSemaphoreW@12
ReleaseMutex@4=api-ms-win-core-synch-l1-2-0._ReleaseMutex@4
ReleaseSemaphore@12=api-ms-win-core-synch-l1-2-0._ReleaseSemaphore@12
ReleaseSRWLockExclusive@4=api-ms-win-core-synch-l1-2-0._ReleaseSRWLockExclusive@4
ReleaseSRWLockShared@4=api-ms-win-core-synch-l1-2-0._ReleaseSRWLockShared@4
ResetEvent@4=api-ms-win-core-synch-l1-2-0._ResetEvent@4
SetCriticalSectionSpinCount@8=api-ms-win-core-synch-l1-2-0._SetCriticalSectionSpinCount@8
SetEvent@4=api-ms-win-core-synch-l1-2-0._SetEvent@4
Sleep@4=api-ms-win-core-synch-l1-2-0._Sleep@4
SleepConditionVariableCS@12=api-ms-win-core-synch-l1-2-0._SleepConditionVariableCS@12
SleepConditionVariableSRW@16=api-ms-win-core-synch-l1-2-0._SleepConditionVariableSRW@16
SleepEx@8=api-ms-win-core-synch-l1-2-0._SleepEx@8
TryAcquireSRWLockExclusive@4=api-ms-win-core-synch-l1-2-0._TryAcquireSRWLockExclusive@4
TryAcquireSRWLockShared@4=api-ms-win-core-synch-l1-2-0._TryAcquireSRWLockShared@4
TryEnterCriticalSection@4=api-ms-win-core-synch-l1-2-0._TryEnterCriticalSection@4
WaitForMultipleObjectsEx@20=api-ms-win-core-synch-l1-2-0._WaitForMultipleObjectsEx@20
WaitForSingleObject@8=api-ms-win-core-synch-l1-2-0._WaitForSingleObject@8
WaitForSingleObjectEx@12=api-ms-win-core-synch-l1-2-0._WaitForSingleObjectEx@12
WaitOnAddress@16=api-ms-win-core-synch-l1-2-0._WaitOnAddress@16
WakeAllConditionVariable@4=api-ms-win-core-synch-l1-2-0._WakeAllConditionVariable@4
WakeByAddressAll@4=api-ms-win-core-synch-l1-2-0._WakeByAddressAll@4
WakeByAddressSingle@4=api-ms-win-core-synch-l1-2-0._WakeByAddressSingle@4
WakeConditionVariable@4=api-ms-win-core-synch-l1-2-0._WakeConditionVariable@4
AcquireSRWLockExclusive@4
AcquireSRWLockShared@4
CreateEventA@16
CreateEventExA@16
CreateEventExW@16
CreateEventW@16
CreateMutexA@12
CreateMutexExA@16
CreateMutexExW@16
CreateMutexW@12
CreateSemaphoreExW@24
DeleteCriticalSection@4
EnterCriticalSection@4
InitializeConditionVariable@4
InitializeCriticalSection@4
InitializeCriticalSectionAndSpinCount@8
InitializeCriticalSectionEx@12
InitializeSRWLock@4
InitOnceBeginInitialize@16
InitOnceComplete@12
InitOnceExecuteOnce@16
InitOnceInitialize@4
LeaveCriticalSection@4
OpenEventA@12
OpenEventW@12
OpenMutexW@12
OpenSemaphoreW@12
ReleaseMutex@4
ReleaseSemaphore@12
ReleaseSRWLockExclusive@4
ReleaseSRWLockShared@4
ResetEvent@4
SetCriticalSectionSpinCount@8
SetEvent@4
Sleep@4
SleepConditionVariableCS@12
SleepConditionVariableSRW@16
SleepEx@8
TryAcquireSRWLockExclusive@4
TryAcquireSRWLockShared@4
TryEnterCriticalSection@4
WaitForMultipleObjectsEx@20
WaitForSingleObject@8
WaitForSingleObjectEx@12
WaitOnAddress@16
WakeAllConditionVariable@4
WakeByAddressAll@4
WakeByAddressSingle@4
WakeConditionVariable@4

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-synch-l1-2-1
EXPORTS
CreateSemaphoreW@16=api-ms-win-core-synch-l1-2-1._CreateSemaphoreW@16
WaitForMultipleObjects@16=api-ms-win-core-synch-l1-2-1._WaitForMultipleObjects@16
CreateSemaphoreW@16
WaitForMultipleObjects@16

View File

@ -2,13 +2,13 @@ LIBRARY api-ms-win-core-sysinfo-l1-2-1
EXPORTS
GetLocalTime@4=api-ms-win-core-sysinfo-l1-2-1._GetLocalTime@4
GetLogicalProcessorInformation@8=api-ms-win-core-sysinfo-l1-2-1._GetLogicalProcessorInformation@8
GetLogicalProcessorInformationEx@12=api-ms-win-core-sysinfo-l1-2-1._GetLogicalProcessorInformationEx@12
GetNativeSystemInfo@4=api-ms-win-core-sysinfo-l1-2-1._GetNativeSystemInfo@4
GetSystemInfo@4=api-ms-win-core-sysinfo-l1-2-1._GetSystemInfo@4
GetSystemTime@4=api-ms-win-core-sysinfo-l1-2-1._GetSystemTime@4
GetSystemTimeAsFileTime@4=api-ms-win-core-sysinfo-l1-2-1._GetSystemTimeAsFileTime@4
GetSystemTimePreciseAsFileTime@4=api-ms-win-core-sysinfo-l1-2-1._GetSystemTimePreciseAsFileTime@4
GetTickCount64@0=api-ms-win-core-sysinfo-l1-2-1._GetTickCount64@0
GlobalMemoryStatusEx@4=api-ms-win-core-sysinfo-l1-2-1._GlobalMemoryStatusEx@4
GetLocalTime@4
GetLogicalProcessorInformation@8
GetLogicalProcessorInformationEx@12
GetNativeSystemInfo@4
GetSystemInfo@4
GetSystemTime@4
GetSystemTimeAsFileTime@4
GetSystemTimePreciseAsFileTime@4
GetTickCount64@0
GlobalMemoryStatusEx@4

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-sysinfo-l1-2-3
EXPORTS
GetIntegratedDisplaySize@4=api-ms-win-core-sysinfo-l1-2-3._GetIntegratedDisplaySize@4
GetIntegratedDisplaySize@4

View File

@ -2,40 +2,40 @@ LIBRARY api-ms-win-core-threadpool-l1-2-0
EXPORTS
CallbackMayRunLong@4=api-ms-win-core-threadpool-l1-2-0._CallbackMayRunLong@4
CancelThreadpoolIo@4=api-ms-win-core-threadpool-l1-2-0._CancelThreadpoolIo@4
CloseThreadpool@4=api-ms-win-core-threadpool-l1-2-0._CloseThreadpool@4
CloseThreadpoolCleanupGroup@4=api-ms-win-core-threadpool-l1-2-0._CloseThreadpoolCleanupGroup@4
CloseThreadpoolCleanupGroupMembers@12=api-ms-win-core-threadpool-l1-2-0._CloseThreadpoolCleanupGroupMembers@12
CloseThreadpoolIo@4=api-ms-win-core-threadpool-l1-2-0._CloseThreadpoolIo@4
CloseThreadpoolTimer@4=api-ms-win-core-threadpool-l1-2-0._CloseThreadpoolTimer@4
CloseThreadpoolWait@4=api-ms-win-core-threadpool-l1-2-0._CloseThreadpoolWait@4
CloseThreadpoolWork@4=api-ms-win-core-threadpool-l1-2-0._CloseThreadpoolWork@4
CreateThreadpool@4=api-ms-win-core-threadpool-l1-2-0._CreateThreadpool@4
CreateThreadpoolCleanupGroup@0=api-ms-win-core-threadpool-l1-2-0._CreateThreadpoolCleanupGroup@0
CreateThreadpoolIo@16=api-ms-win-core-threadpool-l1-2-0._CreateThreadpoolIo@16
CreateThreadpoolTimer@12=api-ms-win-core-threadpool-l1-2-0._CreateThreadpoolTimer@12
CreateThreadpoolWait@12=api-ms-win-core-threadpool-l1-2-0._CreateThreadpoolWait@12
CreateThreadpoolWork@12=api-ms-win-core-threadpool-l1-2-0._CreateThreadpoolWork@12
DisassociateCurrentThreadFromCallback@4=api-ms-win-core-threadpool-l1-2-0._DisassociateCurrentThreadFromCallback@4
FreeLibraryWhenCallbackReturns@8=api-ms-win-core-threadpool-l1-2-0._FreeLibraryWhenCallbackReturns@8
IsThreadpoolTimerSet@4=api-ms-win-core-threadpool-l1-2-0._IsThreadpoolTimerSet@4
LeaveCriticalSectionWhenCallbackReturns@8=api-ms-win-core-threadpool-l1-2-0._LeaveCriticalSectionWhenCallbackReturns@8
QueryThreadpoolStackInformation@8=api-ms-win-core-threadpool-l1-2-0._QueryThreadpoolStackInformation@8
ReleaseMutexWhenCallbackReturns@8=api-ms-win-core-threadpool-l1-2-0._ReleaseMutexWhenCallbackReturns@8
ReleaseSemaphoreWhenCallbackReturns@12=api-ms-win-core-threadpool-l1-2-0._ReleaseSemaphoreWhenCallbackReturns@12
SetEventWhenCallbackReturns@8=api-ms-win-core-threadpool-l1-2-0._SetEventWhenCallbackReturns@8
SetThreadpoolStackInformation@8=api-ms-win-core-threadpool-l1-2-0._SetThreadpoolStackInformation@8
SetThreadpoolThreadMaximum@8=api-ms-win-core-threadpool-l1-2-0._SetThreadpoolThreadMaximum@8
SetThreadpoolThreadMinimum@8=api-ms-win-core-threadpool-l1-2-0._SetThreadpoolThreadMinimum@8
SetThreadpoolTimer@16=api-ms-win-core-threadpool-l1-2-0._SetThreadpoolTimer@16
SetThreadpoolTimerEx@16=api-ms-win-core-threadpool-l1-2-0._SetThreadpoolTimerEx@16
SetThreadpoolWait@12=api-ms-win-core-threadpool-l1-2-0._SetThreadpoolWait@12
SetThreadpoolWaitEx@16=api-ms-win-core-threadpool-l1-2-0._SetThreadpoolWaitEx@16
StartThreadpoolIo@4=api-ms-win-core-threadpool-l1-2-0._StartThreadpoolIo@4
SubmitThreadpoolWork@4=api-ms-win-core-threadpool-l1-2-0._SubmitThreadpoolWork@4
TrySubmitThreadpoolCallback@12=api-ms-win-core-threadpool-l1-2-0._TrySubmitThreadpoolCallback@12
WaitForThreadpoolIoCallbacks@8=api-ms-win-core-threadpool-l1-2-0._WaitForThreadpoolIoCallbacks@8
WaitForThreadpoolTimerCallbacks@8=api-ms-win-core-threadpool-l1-2-0._WaitForThreadpoolTimerCallbacks@8
WaitForThreadpoolWaitCallbacks@8=api-ms-win-core-threadpool-l1-2-0._WaitForThreadpoolWaitCallbacks@8
WaitForThreadpoolWorkCallbacks@8=api-ms-win-core-threadpool-l1-2-0._WaitForThreadpoolWorkCallbacks@8
CallbackMayRunLong@4
CancelThreadpoolIo@4
CloseThreadpool@4
CloseThreadpoolCleanupGroup@4
CloseThreadpoolCleanupGroupMembers@12
CloseThreadpoolIo@4
CloseThreadpoolTimer@4
CloseThreadpoolWait@4
CloseThreadpoolWork@4
CreateThreadpool@4
CreateThreadpoolCleanupGroup@0
CreateThreadpoolIo@16
CreateThreadpoolTimer@12
CreateThreadpoolWait@12
CreateThreadpoolWork@12
DisassociateCurrentThreadFromCallback@4
FreeLibraryWhenCallbackReturns@8
IsThreadpoolTimerSet@4
LeaveCriticalSectionWhenCallbackReturns@8
QueryThreadpoolStackInformation@8
ReleaseMutexWhenCallbackReturns@8
ReleaseSemaphoreWhenCallbackReturns@12
SetEventWhenCallbackReturns@8
SetThreadpoolStackInformation@8
SetThreadpoolThreadMaximum@8
SetThreadpoolThreadMinimum@8
SetThreadpoolTimer@16
SetThreadpoolTimerEx@16
SetThreadpoolWait@12
SetThreadpoolWaitEx@16
StartThreadpoolIo@4
SubmitThreadpoolWork@4
TrySubmitThreadpoolCallback@12
WaitForThreadpoolIoCallbacks@8
WaitForThreadpoolTimerCallbacks@8
WaitForThreadpoolWaitCallbacks@8
WaitForThreadpoolWorkCallbacks@8

View File

@ -2,14 +2,14 @@ LIBRARY api-ms-win-core-timezone-l1-1-0
EXPORTS
EnumDynamicTimeZoneInformation@8=api-ms-win-core-timezone-l1-1-0._EnumDynamicTimeZoneInformation@8
FileTimeToSystemTime@8=api-ms-win-core-timezone-l1-1-0._FileTimeToSystemTime@8
GetDynamicTimeZoneInformation@4=api-ms-win-core-timezone-l1-1-0._GetDynamicTimeZoneInformation@4
GetDynamicTimeZoneInformationEffectiveYears@12=api-ms-win-core-timezone-l1-1-0._GetDynamicTimeZoneInformationEffectiveYears@12
GetTimeZoneInformation@4=api-ms-win-core-timezone-l1-1-0._GetTimeZoneInformation@4
GetTimeZoneInformationForYear@12=api-ms-win-core-timezone-l1-1-0._GetTimeZoneInformationForYear@12
SystemTimeToFileTime@8=api-ms-win-core-timezone-l1-1-0._SystemTimeToFileTime@8
SystemTimeToTzSpecificLocalTime@12=api-ms-win-core-timezone-l1-1-0._SystemTimeToTzSpecificLocalTime@12
SystemTimeToTzSpecificLocalTimeEx@12=api-ms-win-core-timezone-l1-1-0._SystemTimeToTzSpecificLocalTimeEx@12
TzSpecificLocalTimeToSystemTime@12=api-ms-win-core-timezone-l1-1-0._TzSpecificLocalTimeToSystemTime@12
TzSpecificLocalTimeToSystemTimeEx@12=api-ms-win-core-timezone-l1-1-0._TzSpecificLocalTimeToSystemTimeEx@12
EnumDynamicTimeZoneInformation@8
FileTimeToSystemTime@8
GetDynamicTimeZoneInformation@4
GetDynamicTimeZoneInformationEffectiveYears@12
GetTimeZoneInformation@4
GetTimeZoneInformationForYear@12
SystemTimeToFileTime@8
SystemTimeToTzSpecificLocalTime@12
SystemTimeToTzSpecificLocalTimeEx@12
TzSpecificLocalTimeToSystemTime@12
TzSpecificLocalTimeToSystemTimeEx@12

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-util-l1-1-0
EXPORTS
DecodePointer@4=api-ms-win-core-util-l1-1-0._DecodePointer@4
EncodePointer@4=api-ms-win-core-util-l1-1-0._EncodePointer@4
DecodePointer@4
EncodePointer@4

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-windowsceip-l1-1-0
EXPORTS
CeipIsOptedIn@0=api-ms-win-core-windowsceip-l1-1-0._CeipIsOptedIn@0
CeipIsOptedIn@0

View File

@ -2,7 +2,7 @@ LIBRARY api-ms-win-core-windowserrorreporting-l1-1-0
EXPORTS
WerRegisterFile@12=api-ms-win-core-windowserrorreporting-l1-1-0._WerRegisterFile@12
WerRegisterMemoryBlock@8=api-ms-win-core-windowserrorreporting-l1-1-0._WerRegisterMemoryBlock@8
WerUnregisterFile@4=api-ms-win-core-windowserrorreporting-l1-1-0._WerUnregisterFile@4
WerUnregisterMemoryBlock@4=api-ms-win-core-windowserrorreporting-l1-1-0._WerUnregisterMemoryBlock@4
WerRegisterFile@12
WerRegisterMemoryBlock@8
WerUnregisterFile@4
WerUnregisterMemoryBlock@4

View File

@ -2,15 +2,15 @@ LIBRARY api-ms-win-core-winrt-error-l1-1-1
EXPORTS
GetRestrictedErrorInfo@4=api-ms-win-core-winrt-error-l1-1-1._GetRestrictedErrorInfo@4
RoCaptureErrorContext@4=api-ms-win-core-winrt-error-l1-1-1._RoCaptureErrorContext@4
RoFailFastWithErrorContext@4=api-ms-win-core-winrt-error-l1-1-1._RoFailFastWithErrorContext@4
RoGetErrorReportingFlags@4=api-ms-win-core-winrt-error-l1-1-1._RoGetErrorReportingFlags@4
RoOriginateError@8=api-ms-win-core-winrt-error-l1-1-1._RoOriginateError@8
RoOriginateErrorW@12=api-ms-win-core-winrt-error-l1-1-1._RoOriginateErrorW@12
RoOriginateLanguageException@12=api-ms-win-core-winrt-error-l1-1-1._RoOriginateLanguageException@12
RoReportUnhandledError@4=api-ms-win-core-winrt-error-l1-1-1._RoReportUnhandledError@4
RoSetErrorReportingFlags@4=api-ms-win-core-winrt-error-l1-1-1._RoSetErrorReportingFlags@4
RoTransformError@12=api-ms-win-core-winrt-error-l1-1-1._RoTransformError@12
RoTransformErrorW@16=api-ms-win-core-winrt-error-l1-1-1._RoTransformErrorW@16
SetRestrictedErrorInfo@4=api-ms-win-core-winrt-error-l1-1-1._SetRestrictedErrorInfo@4
GetRestrictedErrorInfo@4
RoCaptureErrorContext@4
RoFailFastWithErrorContext@4
RoGetErrorReportingFlags@4
RoOriginateError@8
RoOriginateErrorW@12
RoOriginateLanguageException@12
RoReportUnhandledError@4
RoSetErrorReportingFlags@4
RoTransformError@12
RoTransformErrorW@16
SetRestrictedErrorInfo@4

View File

@ -2,12 +2,12 @@ LIBRARY api-ms-win-core-winrt-l1-1-0
EXPORTS
RoActivateInstance@8=api-ms-win-core-winrt-l1-1-0._RoActivateInstance@8
RoGetActivationFactory@12=api-ms-win-core-winrt-l1-1-0._RoGetActivationFactory@12
RoGetApartmentIdentifier@4=api-ms-win-core-winrt-l1-1-0._RoGetApartmentIdentifier@4
RoInitialize@4=api-ms-win-core-winrt-l1-1-0._RoInitialize@4
RoRegisterActivationFactories@16=api-ms-win-core-winrt-l1-1-0._RoRegisterActivationFactories@16
RoRegisterForApartmentShutdown@12=api-ms-win-core-winrt-l1-1-0._RoRegisterForApartmentShutdown@12
RoRevokeActivationFactories@4=api-ms-win-core-winrt-l1-1-0._RoRevokeActivationFactories@4
RoUninitialize@0=api-ms-win-core-winrt-l1-1-0._RoUninitialize@0
RoUnregisterForApartmentShutdown@4=api-ms-win-core-winrt-l1-1-0._RoUnregisterForApartmentShutdown@4
RoActivateInstance@8
RoGetActivationFactory@12
RoGetApartmentIdentifier@4
RoInitialize@4
RoRegisterActivationFactories@16
RoRegisterForApartmentShutdown@12
RoRevokeActivationFactories@4
RoUninitialize@0
RoUnregisterForApartmentShutdown@4

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-winrt-registration-l1-1-0
EXPORTS
RoGetActivatableClassRegistration@8=api-ms-win-core-winrt-registration-l1-1-0._RoGetActivatableClassRegistration@8
RoGetServerActivatableClasses@12=api-ms-win-core-winrt-registration-l1-1-0._RoGetServerActivatableClasses@12
RoGetActivatableClassRegistration@8
RoGetServerActivatableClasses@12

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-winrt-robuffer-l1-1-0
EXPORTS
RoGetBufferMarshaler@4=api-ms-win-core-winrt-robuffer-l1-1-0._RoGetBufferMarshaler@4
RoGetBufferMarshaler@4

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-winrt-roparameterizediid-l1-1-0
EXPORTS
RoFreeParameterizedTypeExtra@4=api-ms-win-core-winrt-roparameterizediid-l1-1-0._RoFreeParameterizedTypeExtra@4
RoGetParameterizedTypeInstanceIID@20=api-ms-win-core-winrt-roparameterizediid-l1-1-0._RoGetParameterizedTypeInstanceIID@20
RoParameterizedTypeExtraGetTypeSignature@4=api-ms-win-core-winrt-roparameterizediid-l1-1-0._RoParameterizedTypeExtraGetTypeSignature@4
RoFreeParameterizedTypeExtra@4
RoGetParameterizedTypeInstanceIID@20
RoParameterizedTypeExtraGetTypeSignature@4

View File

@ -2,25 +2,25 @@ LIBRARY api-ms-win-core-winrt-string-l1-1-0
EXPORTS
HSTRING_UserFree@8=api-ms-win-core-winrt-string-l1-1-0._HSTRING_UserFree@8
HSTRING_UserMarshal@12=api-ms-win-core-winrt-string-l1-1-0._HSTRING_UserMarshal@12
HSTRING_UserSize@12=api-ms-win-core-winrt-string-l1-1-0._HSTRING_UserSize@12
HSTRING_UserUnmarshal@12=api-ms-win-core-winrt-string-l1-1-0._HSTRING_UserUnmarshal@12
WindowsCompareStringOrdinal@12=api-ms-win-core-winrt-string-l1-1-0._WindowsCompareStringOrdinal@12
WindowsConcatString@12=api-ms-win-core-winrt-string-l1-1-0._WindowsConcatString@12
WindowsCreateString@12=api-ms-win-core-winrt-string-l1-1-0._WindowsCreateString@12
WindowsCreateStringReference@16=api-ms-win-core-winrt-string-l1-1-0._WindowsCreateStringReference@16
WindowsDeleteString@4=api-ms-win-core-winrt-string-l1-1-0._WindowsDeleteString@4
WindowsDeleteStringBuffer@4=api-ms-win-core-winrt-string-l1-1-0._WindowsDeleteStringBuffer@4
WindowsDuplicateString@8=api-ms-win-core-winrt-string-l1-1-0._WindowsDuplicateString@8
WindowsGetStringLen@4=api-ms-win-core-winrt-string-l1-1-0._WindowsGetStringLen@4
WindowsGetStringRawBuffer@8=api-ms-win-core-winrt-string-l1-1-0._WindowsGetStringRawBuffer@8
WindowsIsStringEmpty@4=api-ms-win-core-winrt-string-l1-1-0._WindowsIsStringEmpty@4
WindowsPreallocateStringBuffer@12=api-ms-win-core-winrt-string-l1-1-0._WindowsPreallocateStringBuffer@12
WindowsPromoteStringBuffer@8=api-ms-win-core-winrt-string-l1-1-0._WindowsPromoteStringBuffer@8
WindowsReplaceString@16=api-ms-win-core-winrt-string-l1-1-0._WindowsReplaceString@16
WindowsStringHasEmbeddedNull@8=api-ms-win-core-winrt-string-l1-1-0._WindowsStringHasEmbeddedNull@8
WindowsSubstring@12=api-ms-win-core-winrt-string-l1-1-0._WindowsSubstring@12
WindowsSubstringWithSpecifiedLength@16=api-ms-win-core-winrt-string-l1-1-0._WindowsSubstringWithSpecifiedLength@16
WindowsTrimStringEnd@12=api-ms-win-core-winrt-string-l1-1-0._WindowsTrimStringEnd@12
WindowsTrimStringStart@12=api-ms-win-core-winrt-string-l1-1-0._WindowsTrimStringStart@12
HSTRING_UserFree@8
HSTRING_UserMarshal@12
HSTRING_UserSize@12
HSTRING_UserUnmarshal@12
WindowsCompareStringOrdinal@12
WindowsConcatString@12
WindowsCreateString@12
WindowsCreateStringReference@16
WindowsDeleteString@4
WindowsDeleteStringBuffer@4
WindowsDuplicateString@8
WindowsGetStringLen@4
WindowsGetStringRawBuffer@8
WindowsIsStringEmpty@4
WindowsPreallocateStringBuffer@12
WindowsPromoteStringBuffer@8
WindowsReplaceString@16
WindowsStringHasEmbeddedNull@8
WindowsSubstring@12
WindowsSubstringWithSpecifiedLength@16
WindowsTrimStringEnd@12
WindowsTrimStringStart@12

View File

@ -2,7 +2,7 @@ LIBRARY api-ms-win-core-xstate-l2-1-0
EXPORTS
GetEnabledXStateFeatures@0=api-ms-win-core-xstate-l2-1-0._GetEnabledXStateFeatures@0
GetXStateFeaturesMask@8=api-ms-win-core-xstate-l2-1-0._GetXStateFeaturesMask@8
InitializeContext@16=api-ms-win-core-xstate-l2-1-0._InitializeContext@16
LocateXStateFeature@12=api-ms-win-core-xstate-l2-1-0._LocateXStateFeature@12
GetEnabledXStateFeatures@0
GetXStateFeaturesMask@8
InitializeContext@16
LocateXStateFeature@12

View File

@ -2,9 +2,9 @@ LIBRARY api-ms-win-eventing-classicprovider-l1-1-0
EXPORTS
GetTraceEnableFlags@8=api-ms-win-eventing-classicprovider-l1-1-0._GetTraceEnableFlags@8
GetTraceEnableLevel@8=api-ms-win-eventing-classicprovider-l1-1-0._GetTraceEnableLevel@8
GetTraceLoggerHandle@4=api-ms-win-eventing-classicprovider-l1-1-0._GetTraceLoggerHandle@4
RegisterTraceGuidsW@32=api-ms-win-eventing-classicprovider-l1-1-0._RegisterTraceGuidsW@32
TraceMessage=api-ms-win-eventing-classicprovider-l1-1-0._TraceMessage
UnregisterTraceGuids@8=api-ms-win-eventing-classicprovider-l1-1-0._UnregisterTraceGuids@8
GetTraceEnableFlags@8
GetTraceEnableLevel@8
GetTraceLoggerHandle@4
RegisterTraceGuidsW@32
TraceMessage
UnregisterTraceGuids@8

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-eventing-consumer-l1-1-0
EXPORTS
CloseTrace@8=api-ms-win-eventing-consumer-l1-1-0._CloseTrace@8
OpenTraceW@4=api-ms-win-eventing-consumer-l1-1-0._OpenTraceW@4
ProcessTrace@16=api-ms-win-eventing-consumer-l1-1-0._ProcessTrace@16
CloseTrace@8
OpenTraceW@4
ProcessTrace@16

View File

@ -2,7 +2,7 @@ LIBRARY api-ms-win-eventing-controller-l1-1-0
EXPORTS
ControlTraceW@20=api-ms-win-eventing-controller-l1-1-0._ControlTraceW@20
EnableTraceEx2@44=api-ms-win-eventing-controller-l1-1-0._EnableTraceEx2@44
StartTraceW@12=api-ms-win-eventing-controller-l1-1-0._StartTraceW@12
StopTraceW@16=api-ms-win-eventing-controller-l1-1-0._StopTraceW@16
ControlTraceW@20
EnableTraceEx2@44
StartTraceW@12
StopTraceW@16

View File

@ -2,7 +2,7 @@ LIBRARY api-ms-win-eventing-legacy-l1-1-0
EXPORTS
EnableTrace@24=api-ms-win-eventing-legacy-l1-1-0._EnableTrace@24
EnableTraceEx@48=api-ms-win-eventing-legacy-l1-1-0._EnableTraceEx@48
FlushTraceW@16=api-ms-win-eventing-legacy-l1-1-0._FlushTraceW@16
QueryTraceW@16=api-ms-win-eventing-legacy-l1-1-0._QueryTraceW@16
EnableTrace@24
EnableTraceEx@48
FlushTraceW@16
QueryTraceW@16

View File

@ -2,11 +2,11 @@ LIBRARY api-ms-win-eventing-provider-l1-1-0
EXPORTS
EventActivityIdControl@8=api-ms-win-eventing-provider-l1-1-0._EventActivityIdControl@8
EventRegister@16=api-ms-win-eventing-provider-l1-1-0._EventRegister@16
EventSetInformation@20=api-ms-win-eventing-provider-l1-1-0._EventSetInformation@20
EventUnregister@8=api-ms-win-eventing-provider-l1-1-0._EventUnregister@8
EventWrite@20=api-ms-win-eventing-provider-l1-1-0._EventWrite@20
EventWriteEx@40=api-ms-win-eventing-provider-l1-1-0._EventWriteEx@40
EventWriteString@24=api-ms-win-eventing-provider-l1-1-0._EventWriteString@24
EventWriteTransfer@28=api-ms-win-eventing-provider-l1-1-0._EventWriteTransfer@28
EventActivityIdControl@8
EventRegister@16
EventSetInformation@20
EventUnregister@8
EventWrite@20
EventWriteEx@40
EventWriteString@24
EventWriteTransfer@28

View File

@ -2,19 +2,19 @@ LIBRARY api-ms-win-gaming-tcui-l1-1-2
EXPORTS
CheckGamingPrivilegeSilently@16=api-ms-win-gaming-tcui-l1-1-2._CheckGamingPrivilegeSilently@16
CheckGamingPrivilegeSilentlyForUser@20=api-ms-win-gaming-tcui-l1-1-2._CheckGamingPrivilegeSilentlyForUser@20
CheckGamingPrivilegeWithUI@24=api-ms-win-gaming-tcui-l1-1-2._CheckGamingPrivilegeWithUI@24
CheckGamingPrivilegeWithUIForUser@28=api-ms-win-gaming-tcui-l1-1-2._CheckGamingPrivilegeWithUIForUser@28
ProcessPendingGameUI@4=api-ms-win-gaming-tcui-l1-1-2._ProcessPendingGameUI@4
ShowChangeFriendRelationshipUI@12=api-ms-win-gaming-tcui-l1-1-2._ShowChangeFriendRelationshipUI@12
ShowChangeFriendRelationshipUIForUser@16=api-ms-win-gaming-tcui-l1-1-2._ShowChangeFriendRelationshipUIForUser@16
ShowGameInviteUI@24=api-ms-win-gaming-tcui-l1-1-2._ShowGameInviteUI@24
ShowGameInviteUIForUser@28=api-ms-win-gaming-tcui-l1-1-2._ShowGameInviteUIForUser@28
ShowPlayerPickerUI@36=api-ms-win-gaming-tcui-l1-1-2._ShowPlayerPickerUI@36
ShowPlayerPickerUIForUser@40=api-ms-win-gaming-tcui-l1-1-2._ShowPlayerPickerUIForUser@40
ShowProfileCardUI@12=api-ms-win-gaming-tcui-l1-1-2._ShowProfileCardUI@12
ShowProfileCardUIForUser@16=api-ms-win-gaming-tcui-l1-1-2._ShowProfileCardUIForUser@16
ShowTitleAchievementsUI@12=api-ms-win-gaming-tcui-l1-1-2._ShowTitleAchievementsUI@12
ShowTitleAchievementsUIForUser@16=api-ms-win-gaming-tcui-l1-1-2._ShowTitleAchievementsUIForUser@16
TryCancelPendingGameUI@0=api-ms-win-gaming-tcui-l1-1-2._TryCancelPendingGameUI@0
CheckGamingPrivilegeSilently@16
CheckGamingPrivilegeSilentlyForUser@20
CheckGamingPrivilegeWithUI@24
CheckGamingPrivilegeWithUIForUser@28
ProcessPendingGameUI@4
ShowChangeFriendRelationshipUI@12
ShowChangeFriendRelationshipUIForUser@16
ShowGameInviteUI@24
ShowGameInviteUIForUser@28
ShowPlayerPickerUI@36
ShowPlayerPickerUIForUser@40
ShowProfileCardUI@12
ShowProfileCardUIForUser@16
ShowTitleAchievementsUI@12
ShowTitleAchievementsUIForUser@16
TryCancelPendingGameUI@0

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-ro-typeresolution-l1-1-0
EXPORTS
RoGetMetaDataFile@20=api-ms-win-ro-typeresolution-l1-1-0._RoGetMetaDataFile@20
RoParseTypeName@12=api-ms-win-ro-typeresolution-l1-1-0._RoParseTypeName@12
RoResolveNamespace@32=api-ms-win-ro-typeresolution-l1-1-0._RoResolveNamespace@32
RoGetMetaDataFile@20
RoParseTypeName@12
RoResolveNamespace@32

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-security-base-l1-2-1
EXPORTS
CveEventWrite@8=api-ms-win-security-base-l1-2-1._CveEventWrite@8
CveEventWrite@8

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-security-cryptoapi-l1-1-0
EXPORTS
CryptReleaseContext@8=api-ms-win-security-cryptoapi-l1-1-0._CryptReleaseContext@8
CryptReleaseContext@8

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-shcore-stream-winrt-l1-1-0
EXPORTS
CreateRandomAccessStreamOnFile@16=api-ms-win-shcore-stream-winrt-l1-1-0._CreateRandomAccessStreamOnFile@16
CreateRandomAccessStreamOverStream@16=api-ms-win-shcore-stream-winrt-l1-1-0._CreateRandomAccessStreamOverStream@16
CreateStreamOverRandomAccessStream@12=api-ms-win-shcore-stream-winrt-l1-1-0._CreateStreamOverRandomAccessStream@12
CreateRandomAccessStreamOnFile@16
CreateRandomAccessStreamOverStream@16
CreateStreamOverRandomAccessStream@12

View File

@ -2,42 +2,42 @@ LIBRARY api-ms-win-core-com-l1-1-1
EXPORTS
CLSIDFromString=api-ms-win-core-com-l1-1-1.CLSIDFromString
CoCreateFreeThreadedMarshaler=api-ms-win-core-com-l1-1-1.CoCreateFreeThreadedMarshaler
CoCreateGuid=api-ms-win-core-com-l1-1-1.CoCreateGuid
CoCreateInstanceFromApp=api-ms-win-core-com-l1-1-1.CoCreateInstanceFromApp
CoDisconnectObject=api-ms-win-core-com-l1-1-1.CoDisconnectObject
CoFreeUnusedLibraries=api-ms-win-core-com-l1-1-1.CoFreeUnusedLibraries
CoFreeUnusedLibrariesEx=api-ms-win-core-com-l1-1-1.CoFreeUnusedLibrariesEx
CoGetApartmentType=api-ms-win-core-com-l1-1-1.CoGetApartmentType
CoGetContextToken=api-ms-win-core-com-l1-1-1.CoGetContextToken
CoGetCurrentLogicalThreadId=api-ms-win-core-com-l1-1-1.CoGetCurrentLogicalThreadId
CoGetInterfaceAndReleaseStream=api-ms-win-core-com-l1-1-1.CoGetInterfaceAndReleaseStream
CoGetMarshalSizeMax=api-ms-win-core-com-l1-1-1.CoGetMarshalSizeMax
CoGetObjectContext=api-ms-win-core-com-l1-1-1.CoGetObjectContext
CoGetStandardMarshal=api-ms-win-core-com-l1-1-1.CoGetStandardMarshal
CoInitializeEx=api-ms-win-core-com-l1-1-1.CoInitializeEx
CoInitializeSecurity=api-ms-win-core-com-l1-1-1.CoInitializeSecurity
CoMarshalInterface=api-ms-win-core-com-l1-1-1.CoMarshalInterface
CoMarshalInterThreadInterfaceInStream=api-ms-win-core-com-l1-1-1.CoMarshalInterThreadInterfaceInStream
CoRegisterClassObject=api-ms-win-core-com-l1-1-1.CoRegisterClassObject
CoReleaseMarshalData=api-ms-win-core-com-l1-1-1.CoReleaseMarshalData
CoResumeClassObjects=api-ms-win-core-com-l1-1-1.CoResumeClassObjects
CoRevokeClassObject=api-ms-win-core-com-l1-1-1.CoRevokeClassObject
CoSuspendClassObjects=api-ms-win-core-com-l1-1-1.CoSuspendClassObjects
CoSwitchCallContext=api-ms-win-core-com-l1-1-1.CoSwitchCallContext
CoTaskMemAlloc=api-ms-win-core-com-l1-1-1.CoTaskMemAlloc
CoTaskMemFree=api-ms-win-core-com-l1-1-1.CoTaskMemFree
CoTaskMemRealloc=api-ms-win-core-com-l1-1-1.CoTaskMemRealloc
CoUninitialize=api-ms-win-core-com-l1-1-1.CoUninitialize
CoUnmarshalInterface=api-ms-win-core-com-l1-1-1.CoUnmarshalInterface
CreateStreamOnHGlobal=api-ms-win-core-com-l1-1-1.CreateStreamOnHGlobal
FreePropVariantArray=api-ms-win-core-com-l1-1-1.FreePropVariantArray
GetHGlobalFromStream=api-ms-win-core-com-l1-1-1.GetHGlobalFromStream
IIDFromString=api-ms-win-core-com-l1-1-1.IIDFromString
PropVariantClear=api-ms-win-core-com-l1-1-1.PropVariantClear
PropVariantCopy=api-ms-win-core-com-l1-1-1.PropVariantCopy
RoGetAgileReference=api-ms-win-core-com-l1-1-1.RoGetAgileReference
StringFromCLSID=api-ms-win-core-com-l1-1-1.StringFromCLSID
StringFromGUID2=api-ms-win-core-com-l1-1-1.StringFromGUID2
StringFromIID=api-ms-win-core-com-l1-1-1.StringFromIID
CLSIDFromString
CoCreateFreeThreadedMarshaler
CoCreateGuid
CoCreateInstanceFromApp
CoDisconnectObject
CoFreeUnusedLibraries
CoFreeUnusedLibrariesEx
CoGetApartmentType
CoGetContextToken
CoGetCurrentLogicalThreadId
CoGetInterfaceAndReleaseStream
CoGetMarshalSizeMax
CoGetObjectContext
CoGetStandardMarshal
CoInitializeEx
CoInitializeSecurity
CoMarshalInterface
CoMarshalInterThreadInterfaceInStream
CoRegisterClassObject
CoReleaseMarshalData
CoResumeClassObjects
CoRevokeClassObject
CoSuspendClassObjects
CoSwitchCallContext
CoTaskMemAlloc
CoTaskMemFree
CoTaskMemRealloc
CoUninitialize
CoUnmarshalInterface
CreateStreamOnHGlobal
FreePropVariantArray
GetHGlobalFromStream
IIDFromString
PropVariantClear
PropVariantCopy
RoGetAgileReference
StringFromCLSID
StringFromGUID2
StringFromIID

View File

@ -2,24 +2,24 @@ LIBRARY api-ms-win-core-com-l2-1-1
EXPORTS
CreateILockBytesOnHGlobal=api-ms-win-core-com-l2-1-1.CreateILockBytesOnHGlobal
FmtIdToPropStgName=api-ms-win-core-com-l2-1-1.FmtIdToPropStgName
GetConvertStg=api-ms-win-core-com-l2-1-1.GetConvertStg
GetHGlobalFromILockBytes=api-ms-win-core-com-l2-1-1.GetHGlobalFromILockBytes
PropStgNameToFmtId=api-ms-win-core-com-l2-1-1.PropStgNameToFmtId
ReadClassStg=api-ms-win-core-com-l2-1-1.ReadClassStg
ReadClassStm=api-ms-win-core-com-l2-1-1.ReadClassStm
StgCreateDocfile=api-ms-win-core-com-l2-1-1.StgCreateDocfile
StgCreateDocfileOnILockBytes=api-ms-win-core-com-l2-1-1.StgCreateDocfileOnILockBytes
StgCreatePropSetStg=api-ms-win-core-com-l2-1-1.StgCreatePropSetStg
StgCreatePropStg=api-ms-win-core-com-l2-1-1.StgCreatePropStg
StgCreateStorageEx=api-ms-win-core-com-l2-1-1.StgCreateStorageEx
StgIsStorageFile=api-ms-win-core-com-l2-1-1.StgIsStorageFile
StgIsStorageILockBytes=api-ms-win-core-com-l2-1-1.StgIsStorageILockBytes
StgOpenPropStg=api-ms-win-core-com-l2-1-1.StgOpenPropStg
StgOpenStorage=api-ms-win-core-com-l2-1-1.StgOpenStorage
StgOpenStorageEx=api-ms-win-core-com-l2-1-1.StgOpenStorageEx
StgOpenStorageOnILockBytes=api-ms-win-core-com-l2-1-1.StgOpenStorageOnILockBytes
StgSetTimes=api-ms-win-core-com-l2-1-1.StgSetTimes
WriteClassStg=api-ms-win-core-com-l2-1-1.WriteClassStg
WriteClassStm=api-ms-win-core-com-l2-1-1.WriteClassStm
CreateILockBytesOnHGlobal
FmtIdToPropStgName
GetConvertStg
GetHGlobalFromILockBytes
PropStgNameToFmtId
ReadClassStg
ReadClassStm
StgCreateDocfile
StgCreateDocfileOnILockBytes
StgCreatePropSetStg
StgCreatePropStg
StgCreateStorageEx
StgIsStorageFile
StgIsStorageILockBytes
StgOpenPropStg
StgOpenStorage
StgOpenStorageEx
StgOpenStorageOnILockBytes
StgSetTimes
WriteClassStg
WriteClassStm

View File

@ -2,76 +2,76 @@ LIBRARY api-ms-win-core-com-midlproxystub-l1-1-0
EXPORTS
CStdAsyncStubBuffer_AddRef=api-ms-win-core-com-midlproxystub-l1-1-0.CStdAsyncStubBuffer_AddRef
CStdAsyncStubBuffer_Connect=api-ms-win-core-com-midlproxystub-l1-1-0.CStdAsyncStubBuffer_Connect
CStdAsyncStubBuffer_Disconnect=api-ms-win-core-com-midlproxystub-l1-1-0.CStdAsyncStubBuffer_Disconnect
CStdAsyncStubBuffer_Invoke=api-ms-win-core-com-midlproxystub-l1-1-0.CStdAsyncStubBuffer_Invoke
CStdAsyncStubBuffer_QueryInterface=api-ms-win-core-com-midlproxystub-l1-1-0.CStdAsyncStubBuffer_QueryInterface
CStdAsyncStubBuffer_Release=api-ms-win-core-com-midlproxystub-l1-1-0.CStdAsyncStubBuffer_Release
CStdAsyncStubBuffer2_Connect=api-ms-win-core-com-midlproxystub-l1-1-0.CStdAsyncStubBuffer2_Connect
CStdAsyncStubBuffer2_Disconnect=api-ms-win-core-com-midlproxystub-l1-1-0.CStdAsyncStubBuffer2_Disconnect
CStdAsyncStubBuffer2_Release=api-ms-win-core-com-midlproxystub-l1-1-0.CStdAsyncStubBuffer2_Release
CStdStubBuffer2_Connect=api-ms-win-core-com-midlproxystub-l1-1-0.CStdStubBuffer2_Connect
CStdStubBuffer2_CountRefs=api-ms-win-core-com-midlproxystub-l1-1-0.CStdStubBuffer2_CountRefs
CStdStubBuffer2_Disconnect=api-ms-win-core-com-midlproxystub-l1-1-0.CStdStubBuffer2_Disconnect
CStdStubBuffer2_QueryInterface=api-ms-win-core-com-midlproxystub-l1-1-0.CStdStubBuffer2_QueryInterface
NdrProxyForwardingFunction10=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction10
NdrProxyForwardingFunction11=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction11
NdrProxyForwardingFunction12=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction12
NdrProxyForwardingFunction13=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction13
NdrProxyForwardingFunction14=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction14
NdrProxyForwardingFunction15=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction15
NdrProxyForwardingFunction16=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction16
NdrProxyForwardingFunction17=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction17
NdrProxyForwardingFunction18=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction18
NdrProxyForwardingFunction19=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction19
NdrProxyForwardingFunction20=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction20
NdrProxyForwardingFunction21=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction21
NdrProxyForwardingFunction22=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction22
NdrProxyForwardingFunction23=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction23
NdrProxyForwardingFunction24=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction24
NdrProxyForwardingFunction25=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction25
NdrProxyForwardingFunction26=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction26
NdrProxyForwardingFunction27=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction27
NdrProxyForwardingFunction28=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction28
NdrProxyForwardingFunction29=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction29
NdrProxyForwardingFunction3=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction3
NdrProxyForwardingFunction30=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction30
NdrProxyForwardingFunction31=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction31
NdrProxyForwardingFunction32=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction32
NdrProxyForwardingFunction4=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction4
NdrProxyForwardingFunction5=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction5
NdrProxyForwardingFunction6=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction6
NdrProxyForwardingFunction7=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction7
NdrProxyForwardingFunction8=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction8
NdrProxyForwardingFunction9=api-ms-win-core-com-midlproxystub-l1-1-0.NdrProxyForwardingFunction9
ObjectStublessClient10=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient10
ObjectStublessClient11=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient11
ObjectStublessClient12=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient12
ObjectStublessClient13=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient13
ObjectStublessClient14=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient14
ObjectStublessClient15=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient15
ObjectStublessClient16=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient16
ObjectStublessClient17=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient17
ObjectStublessClient18=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient18
ObjectStublessClient19=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient19
ObjectStublessClient20=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient20
ObjectStublessClient21=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient21
ObjectStublessClient22=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient22
ObjectStublessClient23=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient23
ObjectStublessClient24=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient24
ObjectStublessClient25=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient25
ObjectStublessClient26=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient26
ObjectStublessClient27=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient27
ObjectStublessClient28=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient28
ObjectStublessClient29=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient29
ObjectStublessClient3=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient3
ObjectStublessClient30=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient30
ObjectStublessClient31=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient31
ObjectStublessClient32=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient32
ObjectStublessClient4=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient4
ObjectStublessClient5=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient5
ObjectStublessClient6=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient6
ObjectStublessClient7=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient7
ObjectStublessClient8=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient8
ObjectStublessClient9=api-ms-win-core-com-midlproxystub-l1-1-0.ObjectStublessClient9
CStdAsyncStubBuffer_AddRef
CStdAsyncStubBuffer_Connect
CStdAsyncStubBuffer_Disconnect
CStdAsyncStubBuffer_Invoke
CStdAsyncStubBuffer_QueryInterface
CStdAsyncStubBuffer_Release
CStdAsyncStubBuffer2_Connect
CStdAsyncStubBuffer2_Disconnect
CStdAsyncStubBuffer2_Release
CStdStubBuffer2_Connect
CStdStubBuffer2_CountRefs
CStdStubBuffer2_Disconnect
CStdStubBuffer2_QueryInterface
NdrProxyForwardingFunction10
NdrProxyForwardingFunction11
NdrProxyForwardingFunction12
NdrProxyForwardingFunction13
NdrProxyForwardingFunction14
NdrProxyForwardingFunction15
NdrProxyForwardingFunction16
NdrProxyForwardingFunction17
NdrProxyForwardingFunction18
NdrProxyForwardingFunction19
NdrProxyForwardingFunction20
NdrProxyForwardingFunction21
NdrProxyForwardingFunction22
NdrProxyForwardingFunction23
NdrProxyForwardingFunction24
NdrProxyForwardingFunction25
NdrProxyForwardingFunction26
NdrProxyForwardingFunction27
NdrProxyForwardingFunction28
NdrProxyForwardingFunction29
NdrProxyForwardingFunction3
NdrProxyForwardingFunction30
NdrProxyForwardingFunction31
NdrProxyForwardingFunction32
NdrProxyForwardingFunction4
NdrProxyForwardingFunction5
NdrProxyForwardingFunction6
NdrProxyForwardingFunction7
NdrProxyForwardingFunction8
NdrProxyForwardingFunction9
ObjectStublessClient10
ObjectStublessClient11
ObjectStublessClient12
ObjectStublessClient13
ObjectStublessClient14
ObjectStublessClient15
ObjectStublessClient16
ObjectStublessClient17
ObjectStublessClient18
ObjectStublessClient19
ObjectStublessClient20
ObjectStublessClient21
ObjectStublessClient22
ObjectStublessClient23
ObjectStublessClient24
ObjectStublessClient25
ObjectStublessClient26
ObjectStublessClient27
ObjectStublessClient28
ObjectStublessClient29
ObjectStublessClient3
ObjectStublessClient30
ObjectStublessClient31
ObjectStublessClient32
ObjectStublessClient4
ObjectStublessClient5
ObjectStublessClient6
ObjectStublessClient7
ObjectStublessClient8
ObjectStublessClient9

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-datetime-l1-1-1
EXPORTS
GetDateFormatEx=api-ms-win-core-datetime-l1-1-1.GetDateFormatEx
GetTimeFormatEx=api-ms-win-core-datetime-l1-1-1.GetTimeFormatEx
GetDateFormatEx
GetTimeFormatEx

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-datetime-l1-1-2
EXPORTS
GetDurationFormatEx=api-ms-win-core-datetime-l1-1-2.GetDurationFormatEx
GetDurationFormatEx

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-debug-l1-1-1
EXPORTS
IsDebuggerPresent=api-ms-win-core-debug-l1-1-1.IsDebuggerPresent
OutputDebugStringA=api-ms-win-core-debug-l1-1-1.OutputDebugStringA
OutputDebugStringW=api-ms-win-core-debug-l1-1-1.OutputDebugStringW
IsDebuggerPresent
OutputDebugStringA
OutputDebugStringW

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-delayload-l1-1-1
EXPORTS
DelayLoadFailureHook=api-ms-win-core-delayload-l1-1-1.DelayLoadFailureHook
ResolveDelayLoadedAPI=api-ms-win-core-delayload-l1-1-1.ResolveDelayLoadedAPI
ResolveDelayLoadsFromDll=api-ms-win-core-delayload-l1-1-1.ResolveDelayLoadsFromDll
DelayLoadFailureHook
ResolveDelayLoadedAPI
ResolveDelayLoadsFromDll

View File

@ -2,7 +2,7 @@ LIBRARY api-ms-win-core-errorhandling-l1-1-1
EXPORTS
GetLastError=api-ms-win-core-errorhandling-l1-1-1.GetLastError
RaiseException=api-ms-win-core-errorhandling-l1-1-1.RaiseException
SetLastError=api-ms-win-core-errorhandling-l1-1-1.SetLastError
SetUnhandledExceptionFilter=api-ms-win-core-errorhandling-l1-1-1.SetUnhandledExceptionFilter
GetLastError
RaiseException
SetLastError
SetUnhandledExceptionFilter

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-errorhandling-l1-1-3
EXPORTS
RaiseFailFastException=api-ms-win-core-errorhandling-l1-1-3.RaiseFailFastException
RaiseFailFastException

View File

@ -2,8 +2,8 @@ LIBRARY api-ms-win-core-fibers-l1-1-1
EXPORTS
FlsAlloc=api-ms-win-core-fibers-l1-1-1.FlsAlloc
FlsFree=api-ms-win-core-fibers-l1-1-1.FlsFree
FlsGetValue=api-ms-win-core-fibers-l1-1-1.FlsGetValue
FlsSetValue=api-ms-win-core-fibers-l1-1-1.FlsSetValue
IsThreadAFiber=api-ms-win-core-fibers-l1-1-1.IsThreadAFiber
FlsAlloc
FlsFree
FlsGetValue
FlsSetValue
IsThreadAFiber

View File

@ -2,8 +2,8 @@ LIBRARY api-ms-win-core-fibers-l2-1-1
EXPORTS
ConvertFiberToThread=api-ms-win-core-fibers-l2-1-1.ConvertFiberToThread
ConvertThreadToFiberEx=api-ms-win-core-fibers-l2-1-1.ConvertThreadToFiberEx
CreateFiberEx=api-ms-win-core-fibers-l2-1-1.CreateFiberEx
DeleteFiber=api-ms-win-core-fibers-l2-1-1.DeleteFiber
SwitchToFiber=api-ms-win-core-fibers-l2-1-1.SwitchToFiber
ConvertFiberToThread
ConvertThreadToFiberEx
CreateFiberEx
DeleteFiber
SwitchToFiber

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-file-ansi-l2-1-0
EXPORTS
ReplaceFileA=api-ms-win-core-file-ansi-l2-1-0.ReplaceFileA
ReplaceFileA

View File

@ -2,38 +2,38 @@ LIBRARY api-ms-win-core-file-l1-2-1
EXPORTS
CompareFileTime=api-ms-win-core-file-l1-2-1.CompareFileTime
CreateDirectoryA=api-ms-win-core-file-l1-2-1.CreateDirectoryA
CreateDirectoryW=api-ms-win-core-file-l1-2-1.CreateDirectoryW
CreateFile2=api-ms-win-core-file-l1-2-1.CreateFile2
DeleteFileA=api-ms-win-core-file-l1-2-1.DeleteFileA
DeleteFileW=api-ms-win-core-file-l1-2-1.DeleteFileW
FindClose=api-ms-win-core-file-l1-2-1.FindClose
FindFirstFileExA=api-ms-win-core-file-l1-2-1.FindFirstFileExA
FindFirstFileExW=api-ms-win-core-file-l1-2-1.FindFirstFileExW
FindNextFileA=api-ms-win-core-file-l1-2-1.FindNextFileA
FindNextFileW=api-ms-win-core-file-l1-2-1.FindNextFileW
FlushFileBuffers=api-ms-win-core-file-l1-2-1.FlushFileBuffers
GetDiskFreeSpaceExA=api-ms-win-core-file-l1-2-1.GetDiskFreeSpaceExA
GetDiskFreeSpaceExW=api-ms-win-core-file-l1-2-1.GetDiskFreeSpaceExW
GetFileAttributesExA=api-ms-win-core-file-l1-2-1.GetFileAttributesExA
GetFileAttributesExW=api-ms-win-core-file-l1-2-1.GetFileAttributesExW
GetFileSizeEx=api-ms-win-core-file-l1-2-1.GetFileSizeEx
GetFileTime=api-ms-win-core-file-l1-2-1.GetFileTime
GetFileType=api-ms-win-core-file-l1-2-1.GetFileType
GetFullPathNameW=api-ms-win-core-file-l1-2-1.GetFullPathNameW
GetLongPathNameW=api-ms-win-core-file-l1-2-1.GetLongPathNameW
GetTempFileNameW=api-ms-win-core-file-l1-2-1.GetTempFileNameW
GetTempPathW=api-ms-win-core-file-l1-2-1.GetTempPathW
LockFileEx=api-ms-win-core-file-l1-2-1.LockFileEx
ReadFile=api-ms-win-core-file-l1-2-1.ReadFile
RemoveDirectoryA=api-ms-win-core-file-l1-2-1.RemoveDirectoryA
RemoveDirectoryW=api-ms-win-core-file-l1-2-1.RemoveDirectoryW
SetEndOfFile=api-ms-win-core-file-l1-2-1.SetEndOfFile
SetFileAttributesA=api-ms-win-core-file-l1-2-1.SetFileAttributesA
SetFileAttributesW=api-ms-win-core-file-l1-2-1.SetFileAttributesW
SetFileInformationByHandle=api-ms-win-core-file-l1-2-1.SetFileInformationByHandle
SetFilePointerEx=api-ms-win-core-file-l1-2-1.SetFilePointerEx
SetFileTime=api-ms-win-core-file-l1-2-1.SetFileTime
UnlockFileEx=api-ms-win-core-file-l1-2-1.UnlockFileEx
WriteFile=api-ms-win-core-file-l1-2-1.WriteFile
CompareFileTime
CreateDirectoryA
CreateDirectoryW
CreateFile2
DeleteFileA
DeleteFileW
FindClose
FindFirstFileExA
FindFirstFileExW
FindNextFileA
FindNextFileW
FlushFileBuffers
GetDiskFreeSpaceExA
GetDiskFreeSpaceExW
GetFileAttributesExA
GetFileAttributesExW
GetFileSizeEx
GetFileTime
GetFileType
GetFullPathNameW
GetLongPathNameW
GetTempFileNameW
GetTempPathW
LockFileEx
ReadFile
RemoveDirectoryA
RemoveDirectoryW
SetEndOfFile
SetFileAttributesA
SetFileAttributesW
SetFileInformationByHandle
SetFilePointerEx
SetFileTime
UnlockFileEx
WriteFile

View File

@ -2,7 +2,7 @@ LIBRARY api-ms-win-core-file-l2-1-1
EXPORTS
CopyFile2=api-ms-win-core-file-l2-1-1.CopyFile2
GetFileInformationByHandleEx=api-ms-win-core-file-l2-1-1.GetFileInformationByHandleEx
MoveFileExW=api-ms-win-core-file-l2-1-1.MoveFileExW
ReplaceFileW=api-ms-win-core-file-l2-1-1.ReplaceFileW
CopyFile2
GetFileInformationByHandleEx
MoveFileExW
ReplaceFileW

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-handle-l1-1-0
EXPORTS
CloseHandle=api-ms-win-core-handle-l1-1-0.CloseHandle
CompareObjectHandles=api-ms-win-core-handle-l1-1-0.CompareObjectHandles
DuplicateHandle=api-ms-win-core-handle-l1-1-0.DuplicateHandle
CloseHandle
CompareObjectHandles
DuplicateHandle

View File

@ -2,12 +2,12 @@ LIBRARY api-ms-win-core-heap-l1-2-0
EXPORTS
GetProcessHeap=api-ms-win-core-heap-l1-2-0.GetProcessHeap
HeapAlloc=api-ms-win-core-heap-l1-2-0.HeapAlloc
HeapCompact=api-ms-win-core-heap-l1-2-0.HeapCompact
HeapCreate=api-ms-win-core-heap-l1-2-0.HeapCreate
HeapDestroy=api-ms-win-core-heap-l1-2-0.HeapDestroy
HeapFree=api-ms-win-core-heap-l1-2-0.HeapFree
HeapReAlloc=api-ms-win-core-heap-l1-2-0.HeapReAlloc
HeapSetInformation=api-ms-win-core-heap-l1-2-0.HeapSetInformation
HeapSize=api-ms-win-core-heap-l1-2-0.HeapSize
GetProcessHeap
HeapAlloc
HeapCompact
HeapCreate
HeapDestroy
HeapFree
HeapReAlloc
HeapSetInformation
HeapSize

View File

@ -2,9 +2,9 @@ LIBRARY api-ms-win-core-interlocked-l1-2-0
EXPORTS
InitializeSListHead=api-ms-win-core-interlocked-l1-2-0.InitializeSListHead
InterlockedFlushSList=api-ms-win-core-interlocked-l1-2-0.InterlockedFlushSList
InterlockedPopEntrySList=api-ms-win-core-interlocked-l1-2-0.InterlockedPopEntrySList
InterlockedPushEntrySList=api-ms-win-core-interlocked-l1-2-0.InterlockedPushEntrySList
InterlockedPushListSListEx=api-ms-win-core-interlocked-l1-2-0.InterlockedPushListSListEx
QueryDepthSList=api-ms-win-core-interlocked-l1-2-0.QueryDepthSList
InitializeSListHead
InterlockedFlushSList
InterlockedPopEntrySList
InterlockedPushEntrySList
InterlockedPushListSListEx
QueryDepthSList

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-io-l1-1-1
EXPORTS
CancelIoEx=api-ms-win-core-io-l1-1-1.CancelIoEx
GetOverlappedResultEx=api-ms-win-core-io-l1-1-1.GetOverlappedResultEx
CancelIoEx
GetOverlappedResultEx

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-kernel32-legacy-l1-1-1
EXPORTS
MoveFileExA=api-ms-win-core-kernel32-legacy-l1-1-1.MoveFileExA
MoveFileExA

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-largeinteger-l1-1-0
EXPORTS
MulDiv=api-ms-win-core-largeinteger-l1-1-0.MulDiv
MulDiv

View File

@ -2,10 +2,10 @@ LIBRARY api-ms-win-core-libraryloader-l1-2-0
EXPORTS
DisableThreadLibraryCalls=api-ms-win-core-libraryloader-l1-2-0.DisableThreadLibraryCalls
FindStringOrdinal=api-ms-win-core-libraryloader-l1-2-0.FindStringOrdinal
FreeLibrary=api-ms-win-core-libraryloader-l1-2-0.FreeLibrary
FreeLibraryAndExitThread=api-ms-win-core-libraryloader-l1-2-0.FreeLibraryAndExitThread
GetModuleFileNameA=api-ms-win-core-libraryloader-l1-2-0.GetModuleFileNameA
GetModuleFileNameW=api-ms-win-core-libraryloader-l1-2-0.GetModuleFileNameW
GetProcAddress=api-ms-win-core-libraryloader-l1-2-0.GetProcAddress
DisableThreadLibraryCalls
FindStringOrdinal
FreeLibrary
FreeLibraryAndExitThread
GetModuleFileNameA
GetModuleFileNameW
GetProcAddress

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-libraryloader-l2-1-0
EXPORTS
LoadPackagedLibrary=api-ms-win-core-libraryloader-l2-1-0.LoadPackagedLibrary
QueryOptionalDelayLoadedAPI=api-ms-win-core-libraryloader-l2-1-0.QueryOptionalDelayLoadedAPI
LoadPackagedLibrary
QueryOptionalDelayLoadedAPI

View File

@ -2,4 +2,4 @@ LIBRARY api-ms-win-core-localization-ansi-l1-1-0
EXPORTS
GetStringTypeExA=api-ms-win-core-localization-ansi-l1-1-0.GetStringTypeExA
GetStringTypeExA

View File

@ -2,24 +2,24 @@ LIBRARY api-ms-win-core-localization-l1-2-1
EXPORTS
EnumSystemGeoID=api-ms-win-core-localization-l1-2-1.EnumSystemGeoID
EnumSystemLocalesEx=api-ms-win-core-localization-l1-2-1.EnumSystemLocalesEx
FindNLSStringEx=api-ms-win-core-localization-l1-2-1.FindNLSStringEx
FormatMessageA=api-ms-win-core-localization-l1-2-1.FormatMessageA
FormatMessageW=api-ms-win-core-localization-l1-2-1.FormatMessageW
GetCalendarInfoEx=api-ms-win-core-localization-l1-2-1.GetCalendarInfoEx
GetCPInfo=api-ms-win-core-localization-l1-2-1.GetCPInfo
GetCPInfoExW=api-ms-win-core-localization-l1-2-1.GetCPInfoExW
GetGeoInfoW=api-ms-win-core-localization-l1-2-1.GetGeoInfoW
GetLocaleInfoEx=api-ms-win-core-localization-l1-2-1.GetLocaleInfoEx
GetNLSVersionEx=api-ms-win-core-localization-l1-2-1.GetNLSVersionEx
GetUserDefaultLocaleName=api-ms-win-core-localization-l1-2-1.GetUserDefaultLocaleName
GetUserGeoID=api-ms-win-core-localization-l1-2-1.GetUserGeoID
IdnToAscii=api-ms-win-core-localization-l1-2-1.IdnToAscii
IdnToUnicode=api-ms-win-core-localization-l1-2-1.IdnToUnicode
IsValidCodePage=api-ms-win-core-localization-l1-2-1.IsValidCodePage
IsValidLocaleName=api-ms-win-core-localization-l1-2-1.IsValidLocaleName
IsValidNLSVersion=api-ms-win-core-localization-l1-2-1.IsValidNLSVersion
LCMapStringEx=api-ms-win-core-localization-l1-2-1.LCMapStringEx
LocaleNameToLCID=api-ms-win-core-localization-l1-2-1.LocaleNameToLCID
ResolveLocaleName=api-ms-win-core-localization-l1-2-1.ResolveLocaleName
EnumSystemGeoID
EnumSystemLocalesEx
FindNLSStringEx
FormatMessageA
FormatMessageW
GetCalendarInfoEx
GetCPInfo
GetCPInfoExW
GetGeoInfoW
GetLocaleInfoEx
GetNLSVersionEx
GetUserDefaultLocaleName
GetUserGeoID
IdnToAscii
IdnToUnicode
IsValidCodePage
IsValidLocaleName
IsValidNLSVersion
LCMapStringEx
LocaleNameToLCID
ResolveLocaleName

View File

@ -2,5 +2,5 @@ LIBRARY api-ms-win-core-localization-l1-2-2
EXPORTS
GetSystemDefaultLocaleName=api-ms-win-core-localization-l1-2-2.GetSystemDefaultLocaleName
LCIDToLocaleName=api-ms-win-core-localization-l1-2-2.LCIDToLocaleName
GetSystemDefaultLocaleName
LCIDToLocaleName

View File

@ -2,9 +2,9 @@ LIBRARY api-ms-win-core-localization-l2-1-0
EXPORTS
EnumCalendarInfoExEx=api-ms-win-core-localization-l2-1-0.EnumCalendarInfoExEx
EnumDateFormatsExEx=api-ms-win-core-localization-l2-1-0.EnumDateFormatsExEx
EnumSystemCodePagesW=api-ms-win-core-localization-l2-1-0.EnumSystemCodePagesW
EnumTimeFormatsEx=api-ms-win-core-localization-l2-1-0.EnumTimeFormatsEx
GetCurrencyFormatEx=api-ms-win-core-localization-l2-1-0.GetCurrencyFormatEx
GetNumberFormatEx=api-ms-win-core-localization-l2-1-0.GetNumberFormatEx
EnumCalendarInfoExEx
EnumDateFormatsExEx
EnumSystemCodePagesW
EnumTimeFormatsEx
GetCurrencyFormatEx
GetNumberFormatEx

View File

@ -2,14 +2,14 @@ LIBRARY api-ms-win-core-memory-l1-1-2
EXPORTS
CreateFileMappingFromApp=api-ms-win-core-memory-l1-1-2.CreateFileMappingFromApp
DiscardVirtualMemory=api-ms-win-core-memory-l1-1-2.DiscardVirtualMemory
FlushViewOfFile=api-ms-win-core-memory-l1-1-2.FlushViewOfFile
GetWriteWatch=api-ms-win-core-memory-l1-1-2.GetWriteWatch
MapViewOfFileFromApp=api-ms-win-core-memory-l1-1-2.MapViewOfFileFromApp
OfferVirtualMemory=api-ms-win-core-memory-l1-1-2.OfferVirtualMemory
ReclaimVirtualMemory=api-ms-win-core-memory-l1-1-2.ReclaimVirtualMemory
ResetWriteWatch=api-ms-win-core-memory-l1-1-2.ResetWriteWatch
UnmapViewOfFile=api-ms-win-core-memory-l1-1-2.UnmapViewOfFile
VirtualFree=api-ms-win-core-memory-l1-1-2.VirtualFree
VirtualQuery=api-ms-win-core-memory-l1-1-2.VirtualQuery
CreateFileMappingFromApp
DiscardVirtualMemory
FlushViewOfFile
GetWriteWatch
MapViewOfFileFromApp
OfferVirtualMemory
ReclaimVirtualMemory
ResetWriteWatch
UnmapViewOfFile
VirtualFree
VirtualQuery

View File

@ -2,6 +2,6 @@ LIBRARY api-ms-win-core-memory-l1-1-3
EXPORTS
OpenFileMappingFromApp=api-ms-win-core-memory-l1-1-3.OpenFileMappingFromApp
VirtualAllocFromApp=api-ms-win-core-memory-l1-1-3.VirtualAllocFromApp
VirtualProtectFromApp=api-ms-win-core-memory-l1-1-3.VirtualProtectFromApp
OpenFileMappingFromApp
VirtualAllocFromApp
VirtualProtectFromApp

View File

@ -2,8 +2,8 @@ LIBRARY api-ms-win-core-normalization-l1-1-0
EXPORTS
GetStringScripts=api-ms-win-core-normalization-l1-1-0.GetStringScripts
IdnToNameprepUnicode=api-ms-win-core-normalization-l1-1-0.IdnToNameprepUnicode
IsNormalizedString=api-ms-win-core-normalization-l1-1-0.IsNormalizedString
NormalizeString=api-ms-win-core-normalization-l1-1-0.NormalizeString
VerifyScripts=api-ms-win-core-normalization-l1-1-0.VerifyScripts
GetStringScripts
IdnToNameprepUnicode
IsNormalizedString
NormalizeString
VerifyScripts

View File

@ -2,7 +2,7 @@ LIBRARY api-ms-win-core-processenvironment-l1-2-0
EXPORTS
GetCommandLineA=api-ms-win-core-processenvironment-l1-2-0.GetCommandLineA
GetCommandLineW=api-ms-win-core-processenvironment-l1-2-0.GetCommandLineW
GetCurrentDirectoryW=api-ms-win-core-processenvironment-l1-2-0.GetCurrentDirectoryW
SetCurrentDirectoryW=api-ms-win-core-processenvironment-l1-2-0.SetCurrentDirectoryW
GetCommandLineA
GetCommandLineW
GetCurrentDirectoryW
SetCurrentDirectoryW

View File

@ -2,23 +2,23 @@ LIBRARY api-ms-win-core-processthreads-l1-1-2
EXPORTS
CreateThread=api-ms-win-core-processthreads-l1-1-2.CreateThread
ExitThread=api-ms-win-core-processthreads-l1-1-2.ExitThread
FlushProcessWriteBuffers=api-ms-win-core-processthreads-l1-1-2.FlushProcessWriteBuffers
GetCurrentProcess=api-ms-win-core-processthreads-l1-1-2.GetCurrentProcess
GetCurrentProcessId=api-ms-win-core-processthreads-l1-1-2.GetCurrentProcessId
GetCurrentThread=api-ms-win-core-processthreads-l1-1-2.GetCurrentThread
GetCurrentThreadId=api-ms-win-core-processthreads-l1-1-2.GetCurrentThreadId
GetExitCodeThread=api-ms-win-core-processthreads-l1-1-2.GetExitCodeThread
GetThreadContext=api-ms-win-core-processthreads-l1-1-2.GetThreadContext
GetThreadId=api-ms-win-core-processthreads-l1-1-2.GetThreadId
GetThreadPriority=api-ms-win-core-processthreads-l1-1-2.GetThreadPriority
IsProcessorFeaturePresent=api-ms-win-core-processthreads-l1-1-2.IsProcessorFeaturePresent
OpenProcess=api-ms-win-core-processthreads-l1-1-2.OpenProcess
QueueUserAPC=api-ms-win-core-processthreads-l1-1-2.QueueUserAPC
ResumeThread=api-ms-win-core-processthreads-l1-1-2.ResumeThread
SetThreadIdealProcessorEx=api-ms-win-core-processthreads-l1-1-2.SetThreadIdealProcessorEx
SetThreadPriority=api-ms-win-core-processthreads-l1-1-2.SetThreadPriority
SuspendThread=api-ms-win-core-processthreads-l1-1-2.SuspendThread
SwitchToThread=api-ms-win-core-processthreads-l1-1-2.SwitchToThread
TerminateProcess=api-ms-win-core-processthreads-l1-1-2.TerminateProcess
CreateThread
ExitThread
FlushProcessWriteBuffers
GetCurrentProcess
GetCurrentProcessId
GetCurrentThread
GetCurrentThreadId
GetExitCodeThread
GetThreadContext
GetThreadId
GetThreadPriority
IsProcessorFeaturePresent
OpenProcess
QueueUserAPC
ResumeThread
SetThreadIdealProcessorEx
SetThreadPriority
SuspendThread
SwitchToThread
TerminateProcess

Some files were not shown because too many files have changed in this diff Show More