mirror of
https://github.com/ziglang/zig.git
synced 2025-12-31 18:43:18 +00:00
Merge pull request #19365 from ziglang/update-mingw-w64
Update mingw-w64 and add Win32 def files
This commit is contained in:
commit
43edd53c33
10
lib/libc/mingw/crt/crtdll.c
vendored
10
lib/libc/mingw/crt/crtdll.c
vendored
@ -35,10 +35,10 @@
|
||||
extern void __cdecl _initterm(_PVFV *,_PVFV *);
|
||||
extern void __main ();
|
||||
extern void _pei386_runtime_relocator (void);
|
||||
extern _CRTALLOC(".CRT$XIA") _PIFV __xi_a[];
|
||||
extern _CRTALLOC(".CRT$XIZ") _PIFV __xi_z[];
|
||||
extern _CRTALLOC(".CRT$XCA") _PVFV __xc_a[];
|
||||
extern _CRTALLOC(".CRT$XCZ") _PVFV __xc_z[];
|
||||
extern _PIFV __xi_a[];
|
||||
extern _PIFV __xi_z[];
|
||||
extern _PVFV __xc_a[];
|
||||
extern _PVFV __xc_z[];
|
||||
|
||||
|
||||
/* TLS initialization hook. */
|
||||
@ -142,7 +142,7 @@ WINBOOL WINAPI DllMainCRTStartup (HANDLE, DWORD, LPVOID);
|
||||
int __mingw_init_ehandler (void);
|
||||
#endif
|
||||
|
||||
__attribute__((used)) /* required due to bug in gcc / ld */
|
||||
__attribute__((used)) /* required due to GNU LD bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30300 */
|
||||
WINBOOL WINAPI
|
||||
DllMainCRTStartup (HANDLE hDllHandle, DWORD dwReason, LPVOID lpreserved)
|
||||
{
|
||||
|
||||
12
lib/libc/mingw/crt/crtexe.c
vendored
12
lib/libc/mingw/crt/crtexe.c
vendored
@ -50,10 +50,10 @@ extern _CRTIMP void __cdecl _initterm(_PVFV *, _PVFV *);
|
||||
|
||||
static int __cdecl check_managed_app (void);
|
||||
|
||||
extern _CRTALLOC(".CRT$XIA") _PIFV __xi_a[];
|
||||
extern _CRTALLOC(".CRT$XIZ") _PIFV __xi_z[];
|
||||
extern _CRTALLOC(".CRT$XCA") _PVFV __xc_a[];
|
||||
extern _CRTALLOC(".CRT$XCZ") _PVFV __xc_z[];
|
||||
extern _PIFV __xi_a[];
|
||||
extern _PIFV __xi_z[];
|
||||
extern _PVFV __xc_a[];
|
||||
extern _PVFV __xc_z[];
|
||||
|
||||
|
||||
/* TLS initialization hook. */
|
||||
@ -146,7 +146,7 @@ static int __tmainCRTStartup (void);
|
||||
|
||||
int WinMainCRTStartup (void);
|
||||
|
||||
__attribute__((used)) /* required due to bug in gcc / ld */
|
||||
__attribute__((used)) /* required due to GNU LD bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30300 */
|
||||
int WinMainCRTStartup (void)
|
||||
{
|
||||
int ret = 255;
|
||||
@ -177,7 +177,7 @@ int mainCRTStartup (void);
|
||||
int __mingw_init_ehandler (void);
|
||||
#endif
|
||||
|
||||
__attribute__((used)) /* required due to bug in gcc / ld */
|
||||
__attribute__((used)) /* required due to GNU LD bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30300 */
|
||||
int mainCRTStartup (void)
|
||||
{
|
||||
int ret = 255;
|
||||
|
||||
16
lib/libc/mingw/def-include/msvcrt-common.def.in
vendored
16
lib/libc/mingw/def-include/msvcrt-common.def.in
vendored
@ -35,17 +35,19 @@ ADD_UNDERSCORE(execv)
|
||||
ADD_UNDERSCORE(execve)
|
||||
ADD_UNDERSCORE(execvp)
|
||||
ADD_UNDERSCORE(execvpe)
|
||||
ADD_UNDERSCORE(fcloseall)
|
||||
ADD_UNDERSCORE(fcvt)
|
||||
ADD_UNDERSCORE(fdopen)
|
||||
ADD_UNDERSCORE(fgetchar)
|
||||
ADD_UNDERSCORE(fgetwchar)
|
||||
ADD_UNDERSCORE(filelength)
|
||||
ADD_UNDERSCORE(fileno)
|
||||
; fpreset)
|
||||
; Alias fpreset is set in CRT_fp10.c and CRT_fp8.c.
|
||||
; ADD_UNDERSCORE(fpreset)
|
||||
ADD_UNDERSCORE(fputchar)
|
||||
ADD_UNDERSCORE(fputwchar)
|
||||
;fstat)
|
||||
;ftime)
|
||||
; ADD_UNDERSCORE(fstat)
|
||||
; ADD_UNDERSCORE(ftime)
|
||||
ADD_UNDERSCORE(gcvt)
|
||||
ADD_UNDERSCORE(getch)
|
||||
ADD_UNDERSCORE(getche)
|
||||
@ -90,7 +92,7 @@ ADD_UNDERSCORE(spawnv)
|
||||
ADD_UNDERSCORE(spawnve)
|
||||
ADD_UNDERSCORE(spawnvp)
|
||||
ADD_UNDERSCORE(spawnvpe)
|
||||
;stat)
|
||||
; ADD_UNDERSCORE(stat)
|
||||
#ifndef UCRTBASE
|
||||
ADD_UNDERSCORE(strcmpi)
|
||||
#endif
|
||||
@ -134,13 +136,13 @@ ADD_UNDERSCORE(y0)
|
||||
ADD_UNDERSCORE(y1)
|
||||
ADD_UNDERSCORE(yn)
|
||||
ADD_UNDERSCORE(chgsign)
|
||||
;scalb
|
||||
; ADD_UNDERSCORE(scalb)
|
||||
ADD_UNDERSCORE(finite)
|
||||
ADD_UNDERSCORE(fpclass)
|
||||
; C99 functions
|
||||
;cabs
|
||||
; ADD_UNDERSCORE(cabs)
|
||||
ADD_UNDERSCORE(hypot)
|
||||
;logb
|
||||
; ADD_UNDERSCORE(logb)
|
||||
ADD_UNDERSCORE(nextafter)
|
||||
|
||||
#ifndef UCRTBASE
|
||||
|
||||
1
lib/libc/mingw/lib-common/acledit.def
vendored
1
lib/libc/mingw/lib-common/acledit.def
vendored
@ -9,7 +9,6 @@ EXPORTS
|
||||
EditAuditInfo
|
||||
EditOwnerInfo
|
||||
EditPermissionInfo
|
||||
DllMain
|
||||
FMExtensionProcW
|
||||
SedDiscretionaryAclEditor
|
||||
SedSystemAclEditor
|
||||
|
||||
37
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-0.def
vendored
Normal file
37
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-0.def
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
LIBRARY api-ms-win-appmodel-runtime-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
ClosePackageInfo
|
||||
CreateDeviceAccessInstance
|
||||
GetApplicationUserModelId
|
||||
GetCurrentApplicationUserModelId
|
||||
GetCurrentPackageFamilyName
|
||||
GetCurrentPackageFullName
|
||||
GetCurrentPackageId
|
||||
GetCurrentPackageInfo
|
||||
GetCurrentPackagePath
|
||||
GetPackageFamilyName
|
||||
GetPackageFullName
|
||||
GetPackageId
|
||||
GetPackageInfo
|
||||
GetPackagePath
|
||||
GetPackagesByPackageFamily
|
||||
OpenPackageInfoByFullName
|
||||
PackageFamilyNameFromFullName
|
||||
PackageFamilyNameFromId
|
||||
PackageFullNameFromId
|
||||
PackageIdFromFullName
|
||||
PackageNameAndPublisherIdFromFamilyName
|
||||
ProcessTrackerInsertOrWait
|
||||
ProcessTrackerRemove
|
||||
TokenBindingDeleteAllBindings
|
||||
TokenBindingDeleteBinding
|
||||
TokenBindingGenerateBinding
|
||||
TokenBindingGenerateID
|
||||
TokenBindingGenerateIDForUri
|
||||
TokenBindingGenerateMessage
|
||||
TokenBindingGetHighestSupportedVersion
|
||||
TokenBindingGetKeyTypesClient
|
||||
TokenBindingGetKeyTypesServer
|
||||
TokenBindingVerifyMessage
|
||||
25
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-0_windowsapp.def
vendored
Normal file
25
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
LIBRARY api-ms-win-appmodel-runtime-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
ClosePackageInfo
|
||||
CreateDeviceAccessInstance
|
||||
GetApplicationUserModelId
|
||||
GetCurrentApplicationUserModelId
|
||||
GetCurrentPackageFamilyName
|
||||
GetCurrentPackageFullName
|
||||
GetCurrentPackageId
|
||||
GetCurrentPackageInfo
|
||||
GetCurrentPackagePath
|
||||
GetPackageFamilyName
|
||||
GetPackageFullName
|
||||
GetPackageId
|
||||
GetPackageInfo
|
||||
GetPackagePath
|
||||
GetPackagesByPackageFamily
|
||||
OpenPackageInfoByFullName
|
||||
PackageFamilyNameFromFullName
|
||||
PackageFamilyNameFromId
|
||||
PackageFullNameFromId
|
||||
PackageIdFromFullName
|
||||
PackageNameAndPublisherIdFromFamilyName
|
||||
20
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-1.def
vendored
Normal file
20
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-1.def
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
LIBRARY api-ms-win-appmodel-runtime-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
FindPackagesByPackageFamily
|
||||
FormatApplicationUserModelId
|
||||
GetApplicationUserModelIdFromToken
|
||||
GetPackageApplicationIds
|
||||
GetPackageFamilyNameFromToken
|
||||
GetPackageFullNameFromToken
|
||||
GetPackagePathByFullName
|
||||
GetStagedPackageOrigin
|
||||
GetStagedPackagePathByFullName
|
||||
OpenPackageInfoByFullNameForUser
|
||||
ParseApplicationUserModelId
|
||||
VerifyApplicationUserModelId
|
||||
VerifyPackageFamilyName
|
||||
VerifyPackageFullName
|
||||
VerifyPackageId
|
||||
VerifyPackageRelativeApplicationId
|
||||
19
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-1_windowsapp.def
vendored
Normal file
19
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-1_windowsapp.def
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
LIBRARY api-ms-win-appmodel-runtime-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
FindPackagesByPackageFamily
|
||||
FormatApplicationUserModelId
|
||||
GetApplicationUserModelIdFromToken
|
||||
GetPackageApplicationIds
|
||||
GetPackageFamilyNameFromToken
|
||||
GetPackageFullNameFromToken
|
||||
GetPackagePathByFullName
|
||||
GetStagedPackagePathByFullName
|
||||
OpenPackageInfoByFullNameForUser
|
||||
ParseApplicationUserModelId
|
||||
VerifyApplicationUserModelId
|
||||
VerifyPackageFamilyName
|
||||
VerifyPackageFullName
|
||||
VerifyPackageId
|
||||
VerifyPackageRelativeApplicationId
|
||||
12
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-2.def
vendored
Normal file
12
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-2.def
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
LIBRARY api-ms-win-appmodel-runtime-l1-1-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
AppPolicyGetClrCompat
|
||||
AppPolicyGetCreateFileAccess
|
||||
AppPolicyGetLifecycleManagement
|
||||
AppPolicyGetMediaFoundationCodecLoading
|
||||
AppPolicyGetProcessTerminationMethod
|
||||
AppPolicyGetShowDeveloperDiagnostic
|
||||
AppPolicyGetThreadInitializationType
|
||||
AppPolicyGetWindowingModel
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-3.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-3.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-appmodel-runtime-l1-1-3
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetCurrentPackageInfo2
|
||||
GetCurrentPackagePath2
|
||||
GetPackageInfo2
|
||||
GetPackagePathByFullName2
|
||||
GetStagedPackagePathByFullName2
|
||||
15
lib/libc/mingw/lib-common/api-ms-win-core-apiquery-l2-1-0.def
vendored
Normal file
15
lib/libc/mingw/lib-common/api-ms-win-core-apiquery-l2-1-0.def
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
LIBRARY api-ms-win-core-apiquery-l2-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
IsApiSetImplemented
|
||||
TokenBindingDeleteAllBindings
|
||||
TokenBindingDeleteBinding
|
||||
TokenBindingGenerateBinding
|
||||
TokenBindingGenerateID
|
||||
TokenBindingGenerateIDForUri
|
||||
TokenBindingGenerateMessage
|
||||
TokenBindingGetHighestSupportedVersion
|
||||
TokenBindingGetKeyTypesClient
|
||||
TokenBindingGetKeyTypesServer
|
||||
TokenBindingVerifyMessage
|
||||
21
lib/libc/mingw/lib-common/api-ms-win-core-atoms-l1-1-0.def
vendored
Normal file
21
lib/libc/mingw/lib-common/api-ms-win-core-atoms-l1-1-0.def
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
LIBRARY api-ms-win-core-atoms-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
AddAtomA
|
||||
AddAtomW
|
||||
DeleteAtom
|
||||
FindAtomA
|
||||
FindAtomW
|
||||
GetAtomNameA
|
||||
GetAtomNameW
|
||||
GlobalAddAtomA
|
||||
GlobalAddAtomExA
|
||||
GlobalAddAtomExW
|
||||
GlobalAddAtomW
|
||||
GlobalDeleteAtom
|
||||
GlobalFindAtomA
|
||||
GlobalFindAtomW
|
||||
GlobalGetAtomNameA
|
||||
GlobalGetAtomNameW
|
||||
InitAtomTable
|
||||
11
lib/libc/mingw/lib-common/api-ms-win-core-atoms-l1-1-0_windowsapp.def
vendored
Normal file
11
lib/libc/mingw/lib-common/api-ms-win-core-atoms-l1-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
LIBRARY api-ms-win-core-atoms-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
AddAtomA
|
||||
AddAtomW
|
||||
DeleteAtom
|
||||
FindAtomA
|
||||
FindAtomW
|
||||
GetAtomNameA
|
||||
GetAtomNameW
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-backgroundtask-l1-1-0.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-backgroundtask-l1-1-0.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-backgroundtask-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
RaiseCustomSystemEventTrigger
|
||||
11
lib/libc/mingw/lib-common/api-ms-win-core-calendar-l1-1-0.def
vendored
Normal file
11
lib/libc/mingw/lib-common/api-ms-win-core-calendar-l1-1-0.def
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
LIBRARY api-ms-win-core-calendar-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
AdjustCalendarDate
|
||||
ConvertCalDateTimeToSystemTime
|
||||
ConvertSystemTimeToCalDateTime
|
||||
GetCalendarDateFormatEx
|
||||
GetCalendarSupportedDateRange
|
||||
IsCalendarLeapYear
|
||||
UpdateCalendarDayOfWeek
|
||||
84
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-0.def
vendored
Normal file
84
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-0.def
vendored
Normal file
@ -0,0 +1,84 @@
|
||||
LIBRARY api-ms-win-core-com-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CLSIDFromProgID
|
||||
CLSIDFromString
|
||||
CoAddRefServerProcess
|
||||
CoAllowUnmarshalerCLSID
|
||||
CoCancelCall
|
||||
CoCopyProxy
|
||||
CoCreateFreeThreadedMarshaler
|
||||
CoCreateGuid
|
||||
CoCreateInstance
|
||||
CoCreateInstanceEx
|
||||
CoCreateInstanceFromApp
|
||||
CoDecodeProxy
|
||||
CoDecrementMTAUsage
|
||||
CoDisableCallCancellation
|
||||
CoDisconnectContext
|
||||
CoDisconnectObject
|
||||
CoEnableCallCancellation
|
||||
CoFreeUnusedLibraries
|
||||
CoFreeUnusedLibrariesEx
|
||||
CoGetApartmentType
|
||||
CoGetCallContext
|
||||
CoGetCallerTID
|
||||
CoGetCancelObject
|
||||
CoGetClassObject
|
||||
CoGetContextToken
|
||||
CoGetCurrentLogicalThreadId
|
||||
CoGetCurrentProcess
|
||||
CoGetDefaultContext
|
||||
CoGetInterfaceAndReleaseStream
|
||||
CoGetMalloc
|
||||
CoGetMarshalSizeMax
|
||||
CoGetObjectContext
|
||||
CoGetPSClsid
|
||||
CoGetStandardMarshal
|
||||
CoGetStdMarshalEx
|
||||
CoGetTreatAsClass
|
||||
CoImpersonateClient
|
||||
CoIncrementMTAUsage
|
||||
CoInitializeEx
|
||||
CoInitializeSecurity
|
||||
CoInvalidateRemoteMachineBindings
|
||||
CoIsHandlerConnected
|
||||
CoLockObjectExternal
|
||||
CoMarshalHresult
|
||||
CoMarshalInterface
|
||||
CoMarshalInterThreadInterfaceInStream
|
||||
CoQueryAuthenticationServices
|
||||
CoQueryClientBlanket
|
||||
CoQueryProxyBlanket
|
||||
CoRegisterClassObject
|
||||
CoRegisterPSClsid
|
||||
CoRegisterSurrogate
|
||||
CoReleaseMarshalData
|
||||
CoReleaseServerProcess
|
||||
CoResumeClassObjects
|
||||
CoRevertToSelf
|
||||
CoRevokeClassObject
|
||||
CoSetCancelObject
|
||||
CoSetProxyBlanket
|
||||
CoSuspendClassObjects
|
||||
CoSwitchCallContext
|
||||
CoTaskMemAlloc
|
||||
CoTaskMemFree
|
||||
CoTaskMemRealloc
|
||||
CoTestCancel
|
||||
CoUninitialize
|
||||
CoUnmarshalHresult
|
||||
CoUnmarshalInterface
|
||||
CoWaitForMultipleHandles
|
||||
CoWaitForMultipleObjects
|
||||
CreateStreamOnHGlobal
|
||||
FreePropVariantArray
|
||||
GetHGlobalFromStream
|
||||
IIDFromString
|
||||
ProgIDFromCLSID
|
||||
PropVariantClear
|
||||
PropVariantCopy
|
||||
StringFromCLSID
|
||||
StringFromGUID2
|
||||
StringFromIID
|
||||
57
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-0_windowsapp.def
vendored
Normal file
57
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
LIBRARY api-ms-win-core-com-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CLSIDFromProgID
|
||||
CLSIDFromString
|
||||
CoAddRefServerProcess
|
||||
CoCreateFreeThreadedMarshaler
|
||||
CoCreateGuid
|
||||
CoCreateInstance
|
||||
CoCreateInstanceEx
|
||||
CoCreateInstanceFromApp
|
||||
CoDecrementMTAUsage
|
||||
CoDisconnectObject
|
||||
CoFreeUnusedLibraries
|
||||
CoFreeUnusedLibrariesEx
|
||||
CoGetApartmentType
|
||||
CoGetClassObject
|
||||
CoGetContextToken
|
||||
CoGetCurrentLogicalThreadId
|
||||
CoGetInterfaceAndReleaseStream
|
||||
CoGetMalloc
|
||||
CoGetMarshalSizeMax
|
||||
CoGetObjectContext
|
||||
CoGetStandardMarshal
|
||||
CoIncrementMTAUsage
|
||||
CoInitializeEx
|
||||
CoInitializeSecurity
|
||||
CoLockObjectExternal
|
||||
CoMarshalInterface
|
||||
CoMarshalInterThreadInterfaceInStream
|
||||
CoRegisterClassObject
|
||||
CoRegisterPSClsid
|
||||
CoReleaseMarshalData
|
||||
CoReleaseServerProcess
|
||||
CoResumeClassObjects
|
||||
CoRevokeClassObject
|
||||
CoSetProxyBlanket
|
||||
CoSuspendClassObjects
|
||||
CoSwitchCallContext
|
||||
CoTaskMemAlloc
|
||||
CoTaskMemFree
|
||||
CoTaskMemRealloc
|
||||
CoUninitialize
|
||||
CoUnmarshalInterface
|
||||
CoWaitForMultipleHandles
|
||||
CoWaitForMultipleObjects
|
||||
CreateStreamOnHGlobal
|
||||
FreePropVariantArray
|
||||
GetHGlobalFromStream
|
||||
IIDFromString
|
||||
ProgIDFromCLSID
|
||||
PropVariantClear
|
||||
PropVariantCopy
|
||||
StringFromCLSID
|
||||
StringFromGUID2
|
||||
StringFromIID
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-1.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-1.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-com-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
CoRegisterActivationFilter
|
||||
RoGetAgileReference
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-1_windowsapp.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-1_windowsapp.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-com-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
RoGetAgileReference
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-2.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-2.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-com-l1-1-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
CLSIDFromProgIDEx
|
||||
CoFileTimeNow
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-3.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-com-l1-1-3.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-com-l1-1-3
|
||||
|
||||
EXPORTS
|
||||
|
||||
CoRegisterDeviceCatalog
|
||||
CoRevokeDeviceCatalog
|
||||
25
lib/libc/mingw/lib-common/api-ms-win-core-com-l2-1-1.def
vendored
Normal file
25
lib/libc/mingw/lib-common/api-ms-win-core-com-l2-1-1.def
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
LIBRARY api-ms-win-core-com-l2-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
CreateILockBytesOnHGlobal
|
||||
FmtIdToPropStgName
|
||||
GetConvertStg
|
||||
GetHGlobalFromILockBytes
|
||||
PropStgNameToFmtId
|
||||
ReadClassStg
|
||||
ReadClassStm
|
||||
StgCreateDocfile
|
||||
StgCreateDocfileOnILockBytes
|
||||
StgCreatePropSetStg
|
||||
StgCreatePropStg
|
||||
StgCreateStorageEx
|
||||
StgIsStorageFile
|
||||
StgIsStorageILockBytes
|
||||
StgOpenPropStg
|
||||
StgOpenStorage
|
||||
StgOpenStorageEx
|
||||
StgOpenStorageOnILockBytes
|
||||
StgSetTimes
|
||||
WriteClassStg
|
||||
WriteClassStm
|
||||
77
lib/libc/mingw/lib-common/api-ms-win-core-com-midlproxystub-l1-1-0.def
vendored
Normal file
77
lib/libc/mingw/lib-common/api-ms-win-core-com-midlproxystub-l1-1-0.def
vendored
Normal file
@ -0,0 +1,77 @@
|
||||
LIBRARY api-ms-win-core-com-midlproxystub-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
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
|
||||
22
lib/libc/mingw/lib-common/api-ms-win-core-comm-l1-1-0.def
vendored
Normal file
22
lib/libc/mingw/lib-common/api-ms-win-core-comm-l1-1-0.def
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
LIBRARY api-ms-win-core-comm-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
ClearCommBreak
|
||||
ClearCommError
|
||||
EscapeCommFunction
|
||||
GetCommConfig
|
||||
GetCommMask
|
||||
GetCommModemStatus
|
||||
GetCommProperties
|
||||
GetCommState
|
||||
GetCommTimeouts
|
||||
PurgeComm
|
||||
SetCommBreak
|
||||
SetCommConfig
|
||||
SetCommMask
|
||||
SetCommState
|
||||
SetCommTimeouts
|
||||
SetupComm
|
||||
TransmitCommChar
|
||||
WaitCommEvent
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-comm-l1-1-1.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-comm-l1-1-1.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-comm-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
OpenCommPort
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-comm-l1-1-2.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-comm-l1-1-2.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-comm-l1-1-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetCommPorts
|
||||
17
lib/libc/mingw/lib-common/api-ms-win-core-console-l1-1-0.def
vendored
Normal file
17
lib/libc/mingw/lib-common/api-ms-win-core-console-l1-1-0.def
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
LIBRARY api-ms-win-core-console-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
AllocConsole
|
||||
GetConsoleCP
|
||||
GetConsoleMode
|
||||
GetConsoleOutputCP
|
||||
GetNumberOfConsoleInputEvents
|
||||
ReadConsoleA
|
||||
ReadConsoleInputA
|
||||
ReadConsoleInputW
|
||||
ReadConsoleW
|
||||
SetConsoleCtrlHandler
|
||||
SetConsoleMode
|
||||
WriteConsoleA
|
||||
WriteConsoleW
|
||||
8
lib/libc/mingw/lib-common/api-ms-win-core-console-l1-2-0.def
vendored
Normal file
8
lib/libc/mingw/lib-common/api-ms-win-core-console-l1-2-0.def
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
LIBRARY api-ms-win-core-console-l1-2-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
AttachConsole
|
||||
FreeConsole
|
||||
PeekConsoleInputA
|
||||
PeekConsoleInputW
|
||||
7
lib/libc/mingw/lib-common/api-ms-win-core-console-l1-2-1.def
vendored
Normal file
7
lib/libc/mingw/lib-common/api-ms-win-core-console-l1-2-1.def
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
LIBRARY api-ms-win-core-console-l1-2-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
ClosePseudoConsole
|
||||
CreatePseudoConsole
|
||||
ResizePseudoConsole
|
||||
37
lib/libc/mingw/lib-common/api-ms-win-core-console-l2-1-0.def
vendored
Normal file
37
lib/libc/mingw/lib-common/api-ms-win-core-console-l2-1-0.def
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
LIBRARY api-ms-win-core-console-l2-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CreateConsoleScreenBuffer
|
||||
FillConsoleOutputAttribute
|
||||
FillConsoleOutputCharacterA
|
||||
FillConsoleOutputCharacterW
|
||||
FlushConsoleInputBuffer
|
||||
GenerateConsoleCtrlEvent
|
||||
GetConsoleCursorInfo
|
||||
GetConsoleScreenBufferInfo
|
||||
GetConsoleScreenBufferInfoEx
|
||||
GetLargestConsoleWindowSize
|
||||
ReadConsoleOutputA
|
||||
ReadConsoleOutputAttribute
|
||||
ReadConsoleOutputCharacterA
|
||||
ReadConsoleOutputCharacterW
|
||||
ReadConsoleOutputW
|
||||
ScrollConsoleScreenBufferA
|
||||
ScrollConsoleScreenBufferW
|
||||
SetConsoleActiveScreenBuffer
|
||||
SetConsoleCP
|
||||
SetConsoleCursorInfo
|
||||
SetConsoleCursorPosition
|
||||
SetConsoleOutputCP
|
||||
SetConsoleScreenBufferInfoEx
|
||||
SetConsoleScreenBufferSize
|
||||
SetConsoleTextAttribute
|
||||
SetConsoleWindowInfo
|
||||
WriteConsoleInputA
|
||||
WriteConsoleInputW
|
||||
WriteConsoleOutputA
|
||||
WriteConsoleOutputAttribute
|
||||
WriteConsoleOutputCharacterA
|
||||
WriteConsoleOutputCharacterW
|
||||
WriteConsoleOutputW
|
||||
10
lib/libc/mingw/lib-common/api-ms-win-core-console-l2-2-0.def
vendored
Normal file
10
lib/libc/mingw/lib-common/api-ms-win-core-console-l2-2-0.def
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
LIBRARY api-ms-win-core-console-l2-2-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetConsoleOriginalTitleA
|
||||
GetConsoleOriginalTitleW
|
||||
GetConsoleTitleA
|
||||
GetConsoleTitleW
|
||||
SetConsoleTitleA
|
||||
SetConsoleTitleW
|
||||
36
lib/libc/mingw/lib-common/api-ms-win-core-console-l3-2-0.def
vendored
Normal file
36
lib/libc/mingw/lib-common/api-ms-win-core-console-l3-2-0.def
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
LIBRARY api-ms-win-core-console-l3-2-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
AddConsoleAliasA
|
||||
AddConsoleAliasW
|
||||
ExpungeConsoleCommandHistoryA
|
||||
ExpungeConsoleCommandHistoryW
|
||||
GetConsoleAliasA
|
||||
GetConsoleAliasesA
|
||||
GetConsoleAliasesLengthA
|
||||
GetConsoleAliasesLengthW
|
||||
GetConsoleAliasesW
|
||||
GetConsoleAliasExesA
|
||||
GetConsoleAliasExesLengthA
|
||||
GetConsoleAliasExesLengthW
|
||||
GetConsoleAliasExesW
|
||||
GetConsoleAliasW
|
||||
GetConsoleCommandHistoryA
|
||||
GetConsoleCommandHistoryLengthA
|
||||
GetConsoleCommandHistoryLengthW
|
||||
GetConsoleCommandHistoryW
|
||||
GetConsoleDisplayMode
|
||||
GetConsoleFontSize
|
||||
GetConsoleHistoryInfo
|
||||
GetConsoleProcessList
|
||||
GetConsoleSelectionInfo
|
||||
GetConsoleWindow
|
||||
GetCurrentConsoleFont
|
||||
GetCurrentConsoleFontEx
|
||||
GetNumberOfConsoleMouseButtons
|
||||
SetConsoleDisplayMode
|
||||
SetConsoleHistoryInfo
|
||||
SetConsoleNumberOfCommandsA
|
||||
SetConsoleNumberOfCommandsW
|
||||
SetCurrentConsoleFontEx
|
||||
8
lib/libc/mingw/lib-common/api-ms-win-core-datetime-l1-1-0.def
vendored
Normal file
8
lib/libc/mingw/lib-common/api-ms-win-core-datetime-l1-1-0.def
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
LIBRARY api-ms-win-core-datetime-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetDateFormatA
|
||||
GetDateFormatW
|
||||
GetTimeFormatA
|
||||
GetTimeFormatW
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-datetime-l1-1-1.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-datetime-l1-1-1.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-datetime-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetDateFormatEx
|
||||
GetTimeFormatEx
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-datetime-l1-1-2.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-datetime-l1-1-2.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-datetime-l1-1-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetDurationFormatEx
|
||||
8
lib/libc/mingw/lib-common/api-ms-win-core-debug-l1-1-0.def
vendored
Normal file
8
lib/libc/mingw/lib-common/api-ms-win-core-debug-l1-1-0.def
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
LIBRARY api-ms-win-core-debug-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
DebugBreak
|
||||
IsDebuggerPresent
|
||||
OutputDebugStringA
|
||||
OutputDebugStringW
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-core-debug-l1-1-1.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-core-debug-l1-1-1.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-core-debug-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
CheckRemoteDebuggerPresent
|
||||
ContinueDebugEvent
|
||||
DebugActiveProcess
|
||||
DebugActiveProcessStop
|
||||
WaitForDebugEvent
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-debug-l1-1-2.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-debug-l1-1-2.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-debug-l1-1-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
WaitForDebugEventEx
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-debug-minidump-l1-1-0.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-debug-minidump-l1-1-0.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-debug-minidump-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
MiniDumpReadDumpStream
|
||||
MiniDumpWriteDump
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-delayload-l1-1-0.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-delayload-l1-1-0.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-delayload-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
DelayLoadFailureHook
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-delayload-l1-1-1.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-delayload-l1-1-1.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-delayload-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
ResolveDelayLoadedAPI
|
||||
ResolveDelayLoadsFromDll
|
||||
8
lib/libc/mingw/lib-common/api-ms-win-core-enclave-l1-1-0.def
vendored
Normal file
8
lib/libc/mingw/lib-common/api-ms-win-core-enclave-l1-1-0.def
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
LIBRARY api-ms-win-core-enclave-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CreateEnclave
|
||||
InitializeEnclave
|
||||
IsEnclaveTypeSupported
|
||||
LoadEnclaveData
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-core-enclave-l1-1-1.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-core-enclave-l1-1-1.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-core-enclave-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
CallEnclave
|
||||
DeleteEnclave
|
||||
LoadEnclaveImageA
|
||||
LoadEnclaveImageW
|
||||
TerminateEnclave
|
||||
11
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-0.def
vendored
Normal file
11
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-0.def
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
LIBRARY api-ms-win-core-errorhandling-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetErrorMode
|
||||
GetLastError
|
||||
RaiseException
|
||||
SetErrorMode
|
||||
SetLastError
|
||||
SetUnhandledExceptionFilter
|
||||
UnhandledExceptionFilter
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-1.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-1.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-core-errorhandling-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
AddVectoredContinueHandler
|
||||
AddVectoredExceptionHandler
|
||||
RemoveVectoredContinueHandler
|
||||
RemoveVectoredExceptionHandler
|
||||
RestoreLastError
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-1_windowsapp.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-1_windowsapp.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-errorhandling-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
AddVectoredExceptionHandler
|
||||
RemoveVectoredExceptionHandler
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-2.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-2.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-errorhandling-l1-1-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
RaiseFailFastException
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-3.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-3.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-core-errorhandling-l1-1-3
|
||||
|
||||
EXPORTS
|
||||
|
||||
FatalAppExitA
|
||||
FatalAppExitW
|
||||
GetThreadErrorMode
|
||||
SetThreadErrorMode
|
||||
TerminateProcessOnMemoryExhaustion
|
||||
8
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-3_windowsapp.def
vendored
Normal file
8
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-3_windowsapp.def
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
LIBRARY api-ms-win-core-errorhandling-l1-1-3
|
||||
|
||||
EXPORTS
|
||||
|
||||
FatalAppExitA
|
||||
FatalAppExitW
|
||||
GetThreadErrorMode
|
||||
SetThreadErrorMode
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-core-featurestaging-l1-1-0.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-core-featurestaging-l1-1-0.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-core-featurestaging-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetFeatureEnabledState
|
||||
RecordFeatureError
|
||||
RecordFeatureUsage
|
||||
SubscribeFeatureStateChangeNotification
|
||||
UnsubscribeFeatureStateChangeNotification
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-featurestaging-l1-1-1.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-featurestaging-l1-1-1.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-featurestaging-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetFeatureVariant
|
||||
8
lib/libc/mingw/lib-common/api-ms-win-core-fibers-l1-1-0.def
vendored
Normal file
8
lib/libc/mingw/lib-common/api-ms-win-core-fibers-l1-1-0.def
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
LIBRARY api-ms-win-core-fibers-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
FlsAlloc
|
||||
FlsFree
|
||||
FlsGetValue
|
||||
FlsSetValue
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-fibers-l1-1-1.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-fibers-l1-1-1.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-fibers-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
IsThreadAFiber
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-core-fibers-l2-1-0.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-core-fibers-l2-1-0.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-core-fibers-l2-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
ConvertFiberToThread
|
||||
ConvertThreadToFiber
|
||||
CreateFiber
|
||||
DeleteFiber
|
||||
SwitchToFiber
|
||||
7
lib/libc/mingw/lib-common/api-ms-win-core-fibers-l2-1-0_windowsapp.def
vendored
Normal file
7
lib/libc/mingw/lib-common/api-ms-win-core-fibers-l2-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
LIBRARY api-ms-win-core-fibers-l2-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
ConvertFiberToThread
|
||||
DeleteFiber
|
||||
SwitchToFiber
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-fibers-l2-1-1.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-fibers-l2-1-1.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-fibers-l2-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
ConvertThreadToFiberEx
|
||||
CreateFiberEx
|
||||
13
lib/libc/mingw/lib-common/api-ms-win-core-file-ansi-l1-1-0.def
vendored
Normal file
13
lib/libc/mingw/lib-common/api-ms-win-core-file-ansi-l1-1-0.def
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
LIBRARY api-ms-win-core-file-ansi-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
DefineDosDeviceA
|
||||
DeleteVolumeMountPointA
|
||||
FindFirstVolumeA
|
||||
FindNextVolumeA
|
||||
GetLogicalDriveStringsA
|
||||
GetVolumeNameForVolumeMountPointA
|
||||
GetVolumePathNameA
|
||||
GetVolumePathNamesForVolumeNameA
|
||||
QueryDosDeviceA
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-core-file-ansi-l1-1-0_windowsapp.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-core-file-ansi-l1-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-core-file-ansi-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
DeleteVolumeMountPointA
|
||||
FindFirstVolumeA
|
||||
FindNextVolumeA
|
||||
GetLogicalDriveStringsA
|
||||
GetVolumePathNameA
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-core-file-ansi-l2-1-0.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-core-file-ansi-l2-1-0.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-core-file-ansi-l2-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CopyFileExA
|
||||
CreateDirectoryExA
|
||||
CreateSymbolicLinkA
|
||||
MoveFileWithProgressA
|
||||
ReplaceFileA
|
||||
8
lib/libc/mingw/lib-common/api-ms-win-core-file-ansi-l2-1-0_windowsapp.def
vendored
Normal file
8
lib/libc/mingw/lib-common/api-ms-win-core-file-ansi-l2-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
LIBRARY api-ms-win-core-file-ansi-l2-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CopyFileExA
|
||||
CreateDirectoryExA
|
||||
MoveFileWithProgressA
|
||||
ReplaceFileA
|
||||
15
lib/libc/mingw/lib-common/api-ms-win-core-file-fromapp-l1-1-0.def
vendored
Normal file
15
lib/libc/mingw/lib-common/api-ms-win-core-file-fromapp-l1-1-0.def
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
LIBRARY api-ms-win-core-file-fromapp-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CopyFileFromAppW
|
||||
CreateDirectoryFromAppW
|
||||
CreateFile2FromAppW
|
||||
CreateFileFromAppW
|
||||
DeleteFileFromAppW
|
||||
FindFirstFileExFromAppW
|
||||
GetFileAttributesExFromAppW
|
||||
MoveFileFromAppW
|
||||
RemoveDirectoryFromAppW
|
||||
ReplaceFileFromAppW
|
||||
SetFileAttributesFromAppW
|
||||
79
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-1-0.def
vendored
Normal file
79
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-1-0.def
vendored
Normal file
@ -0,0 +1,79 @@
|
||||
LIBRARY api-ms-win-core-file-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CompareFileTime
|
||||
CreateDirectoryA
|
||||
CreateDirectoryW
|
||||
CreateFileA
|
||||
CreateFileW
|
||||
DefineDosDeviceW
|
||||
DeleteFileA
|
||||
DeleteFileW
|
||||
DeleteVolumeMountPointW
|
||||
FileTimeToLocalFileTime
|
||||
FindClose
|
||||
FindCloseChangeNotification
|
||||
FindFirstChangeNotificationA
|
||||
FindFirstChangeNotificationW
|
||||
FindFirstFileA
|
||||
FindFirstFileExA
|
||||
FindFirstFileExW
|
||||
FindFirstFileW
|
||||
FindFirstVolumeW
|
||||
FindNextChangeNotification
|
||||
FindNextFileA
|
||||
FindNextFileW
|
||||
FindNextVolumeW
|
||||
FindVolumeClose
|
||||
FlushFileBuffers
|
||||
GetDiskFreeSpaceA
|
||||
GetDiskFreeSpaceExA
|
||||
GetDiskFreeSpaceExW
|
||||
GetDiskFreeSpaceW
|
||||
GetDriveTypeA
|
||||
GetDriveTypeW
|
||||
GetFileAttributesA
|
||||
GetFileAttributesExA
|
||||
GetFileAttributesExW
|
||||
GetFileAttributesW
|
||||
GetFileInformationByHandle
|
||||
GetFileSize
|
||||
GetFileSizeEx
|
||||
GetFileTime
|
||||
GetFileType
|
||||
GetFinalPathNameByHandleA
|
||||
GetFinalPathNameByHandleW
|
||||
GetFullPathNameA
|
||||
GetFullPathNameW
|
||||
GetLogicalDrives
|
||||
GetLogicalDriveStringsW
|
||||
GetLongPathNameA
|
||||
GetLongPathNameW
|
||||
GetShortPathNameW
|
||||
GetTempFileNameW
|
||||
GetVolumeInformationByHandleW
|
||||
GetVolumeInformationW
|
||||
GetVolumePathNameW
|
||||
LocalFileTimeToFileTime
|
||||
LockFile
|
||||
LockFileEx
|
||||
QueryDosDeviceW
|
||||
ReadFile
|
||||
ReadFileEx
|
||||
ReadFileScatter
|
||||
RemoveDirectoryA
|
||||
RemoveDirectoryW
|
||||
SetEndOfFile
|
||||
SetFileAttributesA
|
||||
SetFileAttributesW
|
||||
SetFileInformationByHandle
|
||||
SetFilePointer
|
||||
SetFilePointerEx
|
||||
SetFileTime
|
||||
SetFileValidData
|
||||
UnlockFile
|
||||
UnlockFileEx
|
||||
WriteFile
|
||||
WriteFileEx
|
||||
WriteFileGather
|
||||
77
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-1-0_windowsapp.def
vendored
Normal file
77
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,77 @@
|
||||
LIBRARY api-ms-win-core-file-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CompareFileTime
|
||||
CreateDirectoryA
|
||||
CreateDirectoryW
|
||||
CreateFileA
|
||||
CreateFileW
|
||||
DeleteFileA
|
||||
DeleteFileW
|
||||
DeleteVolumeMountPointW
|
||||
FileTimeToLocalFileTime
|
||||
FindClose
|
||||
FindCloseChangeNotification
|
||||
FindFirstChangeNotificationA
|
||||
FindFirstChangeNotificationW
|
||||
FindFirstFileA
|
||||
FindFirstFileExA
|
||||
FindFirstFileExW
|
||||
FindFirstFileW
|
||||
FindFirstVolumeW
|
||||
FindNextChangeNotification
|
||||
FindNextFileA
|
||||
FindNextFileW
|
||||
FindNextVolumeW
|
||||
FindVolumeClose
|
||||
FlushFileBuffers
|
||||
GetDiskFreeSpaceA
|
||||
GetDiskFreeSpaceExA
|
||||
GetDiskFreeSpaceExW
|
||||
GetDiskFreeSpaceW
|
||||
GetDriveTypeA
|
||||
GetDriveTypeW
|
||||
GetFileAttributesA
|
||||
GetFileAttributesExA
|
||||
GetFileAttributesExW
|
||||
GetFileAttributesW
|
||||
GetFileInformationByHandle
|
||||
GetFileSize
|
||||
GetFileSizeEx
|
||||
GetFileTime
|
||||
GetFileType
|
||||
GetFinalPathNameByHandleA
|
||||
GetFinalPathNameByHandleW
|
||||
GetFullPathNameA
|
||||
GetFullPathNameW
|
||||
GetLogicalDrives
|
||||
GetLogicalDriveStringsW
|
||||
GetLongPathNameA
|
||||
GetLongPathNameW
|
||||
GetShortPathNameW
|
||||
GetTempFileNameW
|
||||
GetVolumeInformationByHandleW
|
||||
GetVolumeInformationW
|
||||
GetVolumePathNameW
|
||||
LocalFileTimeToFileTime
|
||||
LockFile
|
||||
LockFileEx
|
||||
ReadFile
|
||||
ReadFileEx
|
||||
ReadFileScatter
|
||||
RemoveDirectoryA
|
||||
RemoveDirectoryW
|
||||
SetEndOfFile
|
||||
SetFileAttributesA
|
||||
SetFileAttributesW
|
||||
SetFileInformationByHandle
|
||||
SetFilePointer
|
||||
SetFilePointerEx
|
||||
SetFileTime
|
||||
SetFileValidData
|
||||
UnlockFile
|
||||
UnlockFileEx
|
||||
WriteFile
|
||||
WriteFileEx
|
||||
WriteFileGather
|
||||
8
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-2-0.def
vendored
Normal file
8
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-2-0.def
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
LIBRARY api-ms-win-core-file-l1-2-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CreateFile2
|
||||
GetTempPathW
|
||||
GetVolumeNameForVolumeMountPointW
|
||||
GetVolumePathNamesForVolumeNameW
|
||||
7
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-2-1.def
vendored
Normal file
7
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-2-1.def
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
LIBRARY api-ms-win-core-file-l1-2-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetCompressedFileSizeA
|
||||
GetCompressedFileSizeW
|
||||
SetFileIoOverlappedRange
|
||||
14
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-2-2.def
vendored
Normal file
14
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-2-2.def
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
LIBRARY api-ms-win-core-file-l1-2-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
AreFileApisANSI
|
||||
FindFirstFileNameW
|
||||
FindFirstStreamW
|
||||
FindNextFileNameW
|
||||
FindNextStreamW
|
||||
GetTempFileNameA
|
||||
GetTempPathA
|
||||
GetVolumeInformationA
|
||||
SetFileApisToANSI
|
||||
SetFileApisToOEM
|
||||
8
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-2-2_windowsapp.def
vendored
Normal file
8
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-2-2_windowsapp.def
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
LIBRARY api-ms-win-core-file-l1-2-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
AreFileApisANSI
|
||||
GetTempFileNameA
|
||||
GetTempPathA
|
||||
GetVolumeInformationA
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-2-3.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-file-l1-2-3.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-file-l1-2-3
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetDiskSpaceInformationA
|
||||
GetDiskSpaceInformationW
|
||||
15
lib/libc/mingw/lib-common/api-ms-win-core-file-l2-1-0.def
vendored
Normal file
15
lib/libc/mingw/lib-common/api-ms-win-core-file-l2-1-0.def
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
LIBRARY api-ms-win-core-file-l2-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CopyFile2
|
||||
CopyFileExW
|
||||
CreateDirectoryExW
|
||||
CreateHardLinkW
|
||||
CreateSymbolicLinkW
|
||||
GetFileInformationByHandleEx
|
||||
MoveFileExW
|
||||
MoveFileWithProgressW
|
||||
ReadDirectoryChangesW
|
||||
ReOpenFile
|
||||
ReplaceFileW
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-file-l2-1-1.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-file-l2-1-1.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-file-l2-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
OpenFileById
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-file-l2-1-2.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-file-l2-1-2.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-file-l2-1-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
CopyFileW
|
||||
CreateHardLinkA
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-file-l2-1-2_windowsapp.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-file-l2-1-2_windowsapp.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-file-l2-1-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
CopyFileW
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-file-l2-1-3.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-file-l2-1-3.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-file-l2-1-3
|
||||
|
||||
EXPORTS
|
||||
|
||||
ReadDirectoryChangesExW
|
||||
12
lib/libc/mingw/lib-common/api-ms-win-core-firmware-l1-1-0.def
vendored
Normal file
12
lib/libc/mingw/lib-common/api-ms-win-core-firmware-l1-1-0.def
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
LIBRARY api-ms-win-core-firmware-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetFirmwareEnvironmentVariableA
|
||||
GetFirmwareEnvironmentVariableExA
|
||||
GetFirmwareEnvironmentVariableExW
|
||||
GetFirmwareEnvironmentVariableW
|
||||
SetFirmwareEnvironmentVariableA
|
||||
SetFirmwareEnvironmentVariableExA
|
||||
SetFirmwareEnvironmentVariableExW
|
||||
SetFirmwareEnvironmentVariableW
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-core-handle-l1-1-0.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-core-handle-l1-1-0.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-core-handle-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CloseHandle
|
||||
CompareObjectHandles
|
||||
DuplicateHandle
|
||||
GetHandleInformation
|
||||
SetHandleInformation
|
||||
19
lib/libc/mingw/lib-common/api-ms-win-core-heap-l1-1-0.def
vendored
Normal file
19
lib/libc/mingw/lib-common/api-ms-win-core-heap-l1-1-0.def
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
LIBRARY api-ms-win-core-heap-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetProcessHeap
|
||||
GetProcessHeaps
|
||||
HeapAlloc
|
||||
HeapCompact
|
||||
HeapCreate
|
||||
HeapDestroy
|
||||
HeapFree
|
||||
HeapLock
|
||||
HeapQueryInformation
|
||||
HeapReAlloc
|
||||
HeapSetInformation
|
||||
HeapSize
|
||||
HeapUnlock
|
||||
HeapValidate
|
||||
HeapWalk
|
||||
11
lib/libc/mingw/lib-common/api-ms-win-core-heap-l2-1-0.def
vendored
Normal file
11
lib/libc/mingw/lib-common/api-ms-win-core-heap-l2-1-0.def
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
LIBRARY api-ms-win-core-heap-l2-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
GlobalAlloc
|
||||
GlobalFree
|
||||
LocalAlloc
|
||||
LocalFree
|
||||
LocalLock
|
||||
LocalReAlloc
|
||||
LocalUnlock
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-core-heap-l2-1-0_windowsapp.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-core-heap-l2-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-core-heap-l2-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
GlobalAlloc
|
||||
GlobalFree
|
||||
LocalAlloc
|
||||
LocalFree
|
||||
LocalReAlloc
|
||||
12
lib/libc/mingw/lib-common/api-ms-win-core-heap-obsolete-l1-1-0.def
vendored
Normal file
12
lib/libc/mingw/lib-common/api-ms-win-core-heap-obsolete-l1-1-0.def
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
LIBRARY api-ms-win-core-heap-obsolete-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
GlobalFlags
|
||||
GlobalHandle
|
||||
GlobalLock
|
||||
GlobalReAlloc
|
||||
GlobalSize
|
||||
GlobalUnlock
|
||||
LocalFlags
|
||||
LocalSize
|
||||
8
lib/libc/mingw/lib-common/api-ms-win-core-heap-obsolete-l1-1-0_windowsapp.def
vendored
Normal file
8
lib/libc/mingw/lib-common/api-ms-win-core-heap-obsolete-l1-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
LIBRARY api-ms-win-core-heap-obsolete-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
GlobalLock
|
||||
GlobalReAlloc
|
||||
GlobalSize
|
||||
GlobalUnlock
|
||||
9
lib/libc/mingw/lib-common/api-ms-win-core-interlocked-l1-1-0.def
vendored
Normal file
9
lib/libc/mingw/lib-common/api-ms-win-core-interlocked-l1-1-0.def
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
LIBRARY api-ms-win-core-interlocked-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
InitializeSListHead
|
||||
InterlockedFlushSList
|
||||
InterlockedPopEntrySList
|
||||
InterlockedPushEntrySList
|
||||
QueryDepthSList
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-interlocked-l1-2-0.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-interlocked-l1-2-0.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-interlocked-l1-2-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
InterlockedPushListSListEx
|
||||
11
lib/libc/mingw/lib-common/api-ms-win-core-io-l1-1-0.def
vendored
Normal file
11
lib/libc/mingw/lib-common/api-ms-win-core-io-l1-1-0.def
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
LIBRARY api-ms-win-core-io-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CancelIoEx
|
||||
CreateIoCompletionPort
|
||||
DeviceIoControl
|
||||
GetOverlappedResult
|
||||
GetQueuedCompletionStatus
|
||||
GetQueuedCompletionStatusEx
|
||||
PostQueuedCompletionStatus
|
||||
7
lib/libc/mingw/lib-common/api-ms-win-core-io-l1-1-1.def
vendored
Normal file
7
lib/libc/mingw/lib-common/api-ms-win-core-io-l1-1-1.def
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
LIBRARY api-ms-win-core-io-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
CancelIo
|
||||
CancelSynchronousIo
|
||||
GetOverlappedResultEx
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-io-l1-1-1_windowsapp.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-io-l1-1-1_windowsapp.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-io-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
CancelIo
|
||||
GetOverlappedResultEx
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-job-l1-1-0.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-job-l1-1-0.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-job-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
IsProcessInJob
|
||||
10
lib/libc/mingw/lib-common/api-ms-win-core-job-l2-1-0.def
vendored
Normal file
10
lib/libc/mingw/lib-common/api-ms-win-core-job-l2-1-0.def
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
LIBRARY api-ms-win-core-job-l2-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
AssignProcessToJobObject
|
||||
CreateJobObjectW
|
||||
OpenJobObjectW
|
||||
QueryInformationJobObject
|
||||
SetInformationJobObject
|
||||
TerminateJobObject
|
||||
7
lib/libc/mingw/lib-common/api-ms-win-core-job-l2-1-0_windowsapp.def
vendored
Normal file
7
lib/libc/mingw/lib-common/api-ms-win-core-job-l2-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
LIBRARY api-ms-win-core-job-l2-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
AssignProcessToJobObject
|
||||
CreateJobObjectW
|
||||
SetInformationJobObject
|
||||
7
lib/libc/mingw/lib-common/api-ms-win-core-job-l2-1-1.def
vendored
Normal file
7
lib/libc/mingw/lib-common/api-ms-win-core-job-l2-1-1.def
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
LIBRARY api-ms-win-core-job-l2-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
FreeMemoryJobObject
|
||||
QueryIoRateControlInformationJobObject
|
||||
SetIoRateControlInformationJobObject
|
||||
15
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-ansi-l1-1-0.def
vendored
Normal file
15
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-ansi-l1-1-0.def
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
LIBRARY api-ms-win-core-kernel32-legacy-ansi-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
AddLocalAlternateComputerNameA
|
||||
CreateFileMappingNumaA
|
||||
CreateFileTransactedA
|
||||
CreateJobObjectA
|
||||
FindFirstVolumeMountPointA
|
||||
FindNextVolumeMountPointA
|
||||
GetFileAttributesTransactedA
|
||||
OpenJobObjectA
|
||||
SetDllDirectoryA
|
||||
SetVolumeLabelA
|
||||
SetVolumeMountPointA
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-ansi-l1-1-0_windowsapp.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-ansi-l1-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-kernel32-legacy-ansi-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
SetDllDirectoryA
|
||||
SetVolumeLabelA
|
||||
41
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-0.def
vendored
Normal file
41
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-0.def
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
LIBRARY api-ms-win-core-kernel32-legacy-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
AddLocalAlternateComputerNameW
|
||||
BackupRead
|
||||
BackupWrite
|
||||
BindIoCompletionCallback
|
||||
CopyFileA
|
||||
CreateFileMappingA
|
||||
CreateFileTransactedW
|
||||
CreateMailslotA
|
||||
CreateNamedPipeA
|
||||
DnsHostnameToComputerNameW
|
||||
DosDateTimeToFileTime
|
||||
FileTimeToDosDateTime
|
||||
FindResourceA
|
||||
FindResourceExA
|
||||
GetComputerNameA
|
||||
GetComputerNameW
|
||||
GetMaximumProcessorGroupCount
|
||||
GetNamedPipeClientProcessId
|
||||
GetNamedPipeServerProcessId
|
||||
GetShortPathNameA
|
||||
GetStartupInfoA
|
||||
GetSystemPowerStatus
|
||||
GetTapeParameters
|
||||
GetThreadSelectorEntry
|
||||
GlobalMemoryStatus
|
||||
MoveFileA
|
||||
MoveFileExA
|
||||
MoveFileW
|
||||
OpenFile
|
||||
PulseEvent
|
||||
RegisterWaitForSingleObject
|
||||
SetFileCompletionNotificationModes
|
||||
SetHandleCount
|
||||
SetMailslotInfo
|
||||
SetVolumeLabelW
|
||||
UnregisterWait
|
||||
WTSGetActiveConsoleSessionId
|
||||
23
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-0_windowsapp.def
vendored
Normal file
23
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-0_windowsapp.def
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
LIBRARY api-ms-win-core-kernel32-legacy-l1-1-0
|
||||
|
||||
EXPORTS
|
||||
|
||||
CopyFileA
|
||||
CreateFileMappingA
|
||||
CreateNamedPipeA
|
||||
DosDateTimeToFileTime
|
||||
FileTimeToDosDateTime
|
||||
FindResourceA
|
||||
GetComputerNameA
|
||||
GetComputerNameW
|
||||
GetShortPathNameA
|
||||
GetStartupInfoA
|
||||
GetSystemPowerStatus
|
||||
GlobalMemoryStatus
|
||||
MoveFileA
|
||||
MoveFileExA
|
||||
MoveFileW
|
||||
RegisterWaitForSingleObject
|
||||
SetFileCompletionNotificationModes
|
||||
SetVolumeLabelW
|
||||
UnregisterWait
|
||||
18
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-1.def
vendored
Normal file
18
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-1.def
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
LIBRARY api-ms-win-core-kernel32-legacy-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
FindFirstVolumeMountPointW
|
||||
FindNextVolumeMountPointW
|
||||
FindVolumeMountPointClose
|
||||
GetFileAttributesTransactedW
|
||||
GetFirmwareType
|
||||
GetNumaAvailableMemoryNodeEx
|
||||
GetNumaNodeProcessorMask
|
||||
GetNumaProcessorNodeEx
|
||||
PowerClearRequest
|
||||
PowerCreateRequest
|
||||
PowerSetRequest
|
||||
SetDllDirectoryW
|
||||
SetVolumeMountPointW
|
||||
VerifyVersionInfoW
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-1_windowsapp.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-1_windowsapp.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-kernel32-legacy-l1-1-1
|
||||
|
||||
EXPORTS
|
||||
|
||||
SetDllDirectoryW
|
||||
VerifyVersionInfoW
|
||||
12
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-2.def
vendored
Normal file
12
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-2.def
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
LIBRARY api-ms-win-core-kernel32-legacy-l1-1-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetBinaryTypeW
|
||||
Module32First
|
||||
Module32Next
|
||||
OpenFileMappingA
|
||||
Process32First
|
||||
Process32Next
|
||||
SetTermsrvAppInstallMode
|
||||
VerifyVersionInfoA
|
||||
8
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-2_windowsapp.def
vendored
Normal file
8
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-2_windowsapp.def
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
LIBRARY api-ms-win-core-kernel32-legacy-l1-1-2
|
||||
|
||||
EXPORTS
|
||||
|
||||
OpenFileMappingA
|
||||
Process32First
|
||||
Process32Next
|
||||
VerifyVersionInfoA
|
||||
18
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-3.def
vendored
Normal file
18
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-3.def
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
LIBRARY api-ms-win-core-kernel32-legacy-l1-1-3
|
||||
|
||||
EXPORTS
|
||||
|
||||
CopyFileTransactedW
|
||||
CreateDirectoryTransactedW
|
||||
CreateHardLinkTransactedW
|
||||
CreateMailslotW
|
||||
CreateSymbolicLinkTransactedW
|
||||
DeleteFileTransactedW
|
||||
FindFirstFileTransactedW
|
||||
GetBinaryTypeA
|
||||
GetCompressedFileSizeTransactedW
|
||||
GetFullPathNameTransactedW
|
||||
GetLongPathNameTransactedW
|
||||
MoveFileTransactedW
|
||||
RemoveDirectoryTransactedW
|
||||
SetFileAttributesTransactedW
|
||||
5
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-4.def
vendored
Normal file
5
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-4.def
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
LIBRARY api-ms-win-core-kernel32-legacy-l1-1-4
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetMailslotInfo
|
||||
6
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-5.def
vendored
Normal file
6
lib/libc/mingw/lib-common/api-ms-win-core-kernel32-legacy-l1-1-5.def
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
LIBRARY api-ms-win-core-kernel32-legacy-l1-1-5
|
||||
|
||||
EXPORTS
|
||||
|
||||
GetDllDirectoryW
|
||||
SetThreadExecutionState
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user