mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
Merge pull request #22999 from alexrp/mingw-update
This commit is contained in:
commit
bedf806672
340 changed files with 8156 additions and 4988 deletions
22
lib/libc/include/any-windows-any/_mingw.h
vendored
22
lib/libc/include/any-windows-any/_mingw.h
vendored
|
|
@ -237,6 +237,10 @@ limitations in handling dllimport attribute. */
|
|||
# endif
|
||||
#endif
|
||||
|
||||
#if !defined(__CRTDLL__) && __MSVCRT_VERSION__ == 0x00
|
||||
#define __CRTDLL__
|
||||
#endif
|
||||
|
||||
#if !defined(_UCRT) && ((__MSVCRT_VERSION__ >= 0x1400) || (__MSVCRT_VERSION__ >= 0xE00 && __MSVCRT_VERSION__ < 0x1000))
|
||||
/* Allow both 0x1400 and 0xE00 to identify UCRT */
|
||||
#define _UCRT
|
||||
|
|
@ -594,12 +598,12 @@ extern "C" {
|
|||
void __cdecl __debugbreak(void);
|
||||
__MINGW_INTRIN_INLINE void __cdecl __debugbreak(void)
|
||||
{
|
||||
#if defined(__i386__) || defined(__x86_64__)
|
||||
#if defined(__aarch64__) || defined(__arm64ec__)
|
||||
__asm__ __volatile__("brk #0xf000");
|
||||
#elif defined(__i386__) || defined(__x86_64__)
|
||||
__asm__ __volatile__("int {$}3":);
|
||||
#elif defined(__arm__)
|
||||
__asm__ __volatile__("udf #0xfe");
|
||||
#elif defined(__aarch64__)
|
||||
__asm__ __volatile__("brk #0xf000");
|
||||
#else
|
||||
__asm__ __volatile__("unimplemented");
|
||||
#endif
|
||||
|
|
@ -615,14 +619,14 @@ __MINGW_INTRIN_INLINE void __cdecl __debugbreak(void)
|
|||
void __cdecl __MINGW_ATTRIB_NORETURN __fastfail(unsigned int code);
|
||||
__MINGW_INTRIN_INLINE void __cdecl __MINGW_ATTRIB_NORETURN __fastfail(unsigned int code)
|
||||
{
|
||||
#if defined(__i386__) || defined(__x86_64__)
|
||||
#if defined(__aarch64__) || defined(__arm64ec__)
|
||||
register unsigned int w0 __asm__("w0") = code;
|
||||
__asm__ __volatile__("brk #0xf003"::"r"(w0));
|
||||
#elif defined(__i386__) || defined(__x86_64__)
|
||||
__asm__ __volatile__("int {$}0x29"::"c"(code));
|
||||
#elif defined(__arm__)
|
||||
register unsigned int r0 __asm__("r0") = code;
|
||||
__asm__ __volatile__("udf #0xfb"::"r"(r0));
|
||||
#elif defined(__aarch64__)
|
||||
register unsigned int w0 __asm__("w0") = code;
|
||||
__asm__ __volatile__("brk #0xf003"::"r"(w0));
|
||||
#else
|
||||
__asm__ __volatile__("unimplemented");
|
||||
#endif
|
||||
|
|
@ -636,13 +640,13 @@ __MINGW_INTRIN_INLINE void __cdecl __MINGW_ATTRIB_NORETURN __fastfail(unsigned i
|
|||
#define __MINGW_PREFETCH_IMPL 1
|
||||
#endif
|
||||
#if __MINGW_PREFETCH_IMPL == 1
|
||||
#if defined(__arm__) || defined(__aarch64__)
|
||||
#if defined(__arm__) || defined(__aarch64__) || defined(__arm64ec__)
|
||||
void __cdecl __prefetch(const void *addr);
|
||||
__MINGW_INTRIN_INLINE void __cdecl __prefetch(const void *addr)
|
||||
{
|
||||
#if defined(__arm__)
|
||||
__asm__ __volatile__("pld [%0]"::"r"(addr));
|
||||
#elif defined(__aarch64__)
|
||||
#elif defined(__aarch64__) || defined(__arm64ec__)
|
||||
__asm__ __volatile__("prfm pldl1keep, [%0]"::"r"(addr));
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
22
lib/libc/include/any-windows-any/_mingw_mac.h
vendored
22
lib/libc/include/any-windows-any/_mingw_mac.h
vendored
|
|
@ -7,6 +7,9 @@
|
|||
#ifndef _INC_CRTDEFS_MACRO
|
||||
#define _INC_CRTDEFS_MACRO
|
||||
|
||||
#define __MINGW64_PASTE2(x, y) x ## y
|
||||
#define __MINGW64_PASTE(x, y) __MINGW64_PASTE2(x, y)
|
||||
|
||||
#define __STRINGIFY(x) #x
|
||||
#define __MINGW64_STRINGIFY(x) \
|
||||
__STRINGIFY(x)
|
||||
|
|
@ -88,6 +91,13 @@
|
|||
# endif
|
||||
#endif
|
||||
|
||||
#if defined(__arm64ec__) && !defined(_M_ARM64EC)
|
||||
# define _M_ARM64EC 1
|
||||
# ifndef _ARM64EC_
|
||||
# define _ARM64EC_ 1
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifndef _X86_
|
||||
/* MS does not prefix symbols by underscores for 64-bit. */
|
||||
# ifndef __MINGW_USE_UNDERSCORE_PREFIX
|
||||
|
|
@ -116,14 +126,14 @@
|
|||
#endif /* ifndef _X86_ */
|
||||
|
||||
#if __MINGW_USE_UNDERSCORE_PREFIX == 0
|
||||
# define __MINGW_IMP_SYMBOL(sym) __imp_##sym
|
||||
# define __MINGW_IMP_LSYMBOL(sym) __imp_##sym
|
||||
# define __MINGW_IMP_SYMBOL(sym) __MINGW64_PASTE(__imp_,sym)
|
||||
# define __MINGW_IMP_LSYMBOL(sym) __MINGW64_PASTE(__imp_,sym)
|
||||
# define __MINGW_USYMBOL(sym) sym
|
||||
# define __MINGW_LSYMBOL(sym) _##sym
|
||||
# define __MINGW_LSYMBOL(sym) __MINGW64_PASTE(_,sym)
|
||||
#else /* ! if __MINGW_USE_UNDERSCORE_PREFIX == 0 */
|
||||
# define __MINGW_IMP_SYMBOL(sym) _imp__##sym
|
||||
# define __MINGW_IMP_LSYMBOL(sym) __imp__##sym
|
||||
# define __MINGW_USYMBOL(sym) _##sym
|
||||
# define __MINGW_IMP_SYMBOL(sym) __MINGW64_PASTE(_imp__,sym)
|
||||
# define __MINGW_IMP_LSYMBOL(sym) __MINGW64_PASTE(__imp__,sym)
|
||||
# define __MINGW_USYMBOL(sym) __MINGW64_PASTE(_,sym)
|
||||
# define __MINGW_LSYMBOL(sym) sym
|
||||
#endif /* if __MINGW_USE_UNDERSCORE_PREFIX == 0 */
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/activation.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/activation.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/activaut.h
vendored
2
lib/libc/include/any-windows-any/activaut.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/activaut.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/activaut.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/activdbg.h
vendored
2
lib/libc/include/any-windows-any/activdbg.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/activdbg.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/activdbg.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/activdbg100.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/activdbg100.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/activprof.h
vendored
2
lib/libc/include/any-windows-any/activprof.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/activprof.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/activprof.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/activscp.h
vendored
2
lib/libc/include/any-windows-any/activscp.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/activscp.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/activscp.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/adhoc.h
vendored
2
lib/libc/include/any-windows-any/adhoc.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/adhoc.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/adhoc.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/alg.h
vendored
2
lib/libc/include/any-windows-any/alg.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/alg.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/alg.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/amstream.h
vendored
2
lib/libc/include/any-windows-any/amstream.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/amstream.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/amstream.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/amvideo.h
vendored
2
lib/libc/include/any-windows-any/amvideo.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/amvideo.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/amvideo.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/asyncinfo.h
vendored
2
lib/libc/include/any-windows-any/asyncinfo.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/asyncinfo.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/asyncinfo.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/audioclient.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/audioclient.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/audioendpoints.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/audioendpoints.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/audiopolicy.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/audiopolicy.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/austream.h
vendored
2
lib/libc/include/any-windows-any/austream.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/austream.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/austream.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/bdaiface.h
vendored
2
lib/libc/include/any-windows-any/bdaiface.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/bdaiface.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/bdaiface.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/bits.h
vendored
2
lib/libc/include/any-windows-any/bits.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/bits.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/bits.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/bits1_5.h
vendored
2
lib/libc/include/any-windows-any/bits1_5.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/bits1_5.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/bits1_5.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/bits2_0.h
vendored
2
lib/libc/include/any-windows-any/bits2_0.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/bits2_0.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/bits2_0.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/bits2_5.h
vendored
2
lib/libc/include/any-windows-any/bits2_5.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/bits2_5.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/bits2_5.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/bits3_0.h
vendored
2
lib/libc/include/any-windows-any/bits3_0.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/bits3_0.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/bits3_0.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/bits5_0.h
vendored
2
lib/libc/include/any-windows-any/bits5_0.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/bits5_0.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/bits5_0.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/comadmin.h
vendored
2
lib/libc/include/any-windows-any/comadmin.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/comadmin.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/comadmin.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
11
lib/libc/include/any-windows-any/combaseapi.h
vendored
11
lib/libc/include/any-windows-any/combaseapi.h
vendored
|
|
@ -354,6 +354,17 @@ WINOLEAPI CoGetTreatAsClass (REFCLSID clsidOld, LPCLSID pClsidNew);
|
|||
WINOLEAPI CoInvalidateRemoteMachineBindings (LPOLESTR pszMachineName);
|
||||
#endif
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WINBLUE)
|
||||
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
|
||||
enum AgileReferenceOptions {
|
||||
AGILEREFERENCE_DEFAULT = 0,
|
||||
AGILEREFERENCE_DELAYEDMARSHAL = 1
|
||||
};
|
||||
|
||||
WINOLEAPI RoGetAgileReference(enum AgileReferenceOptions options, REFIID riid, IUnknown *pUnk, IAgileReference **ppAgileReference);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_APP)
|
||||
typedef HRESULT (STDAPICALLTYPE *LPFNGETCLASSOBJECT) (REFCLSID, REFIID, LPVOID *);
|
||||
typedef HRESULT (STDAPICALLTYPE *LPFNCANUNLOADNOW) (void);
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/comcat.h
vendored
2
lib/libc/include/any-windows-any/comcat.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/comcat.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/comcat.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/commoncontrols.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/commoncontrols.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
139
lib/libc/include/any-windows-any/consoleapi.h
vendored
Normal file
139
lib/libc/include/any-windows-any/consoleapi.h
vendored
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
/**
|
||||
* This file has no copyright assigned and is placed in the Public Domain.
|
||||
* This file is part of the mingw-w64 runtime package.
|
||||
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
||||
*/
|
||||
|
||||
#ifndef _APISETCONSOLE_
|
||||
#define _APISETCONSOLE_
|
||||
|
||||
#include <_mingw_unicode.h>
|
||||
|
||||
#include <apiset.h>
|
||||
#include <apisetcconv.h>
|
||||
#include <minwinbase.h>
|
||||
#include <minwindef.h>
|
||||
|
||||
#include <wincontypes.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI AllocConsole(void);
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN11_GE)
|
||||
|
||||
typedef enum ALLOC_CONSOLE_MODE {
|
||||
ALLOC_CONSOLE_MODE_DEFAULT = 0,
|
||||
ALLOC_CONSOLE_MODE_NEW_WINDOW = 1,
|
||||
ALLOC_CONSOLE_MODE_NO_WINDOW = 2
|
||||
} ALLOC_CONSOLE_MODE;
|
||||
|
||||
typedef struct ALLOC_CONSOLE_OPTIONS {
|
||||
ALLOC_CONSOLE_MODE mode;
|
||||
WINBOOL useShowWindow;
|
||||
WORD showWindow;
|
||||
} ALLOC_CONSOLE_OPTIONS, *PALLOC_CONSOLE_OPTIONS;
|
||||
|
||||
typedef enum ALLOC_CONSOLE_RESULT {
|
||||
ALLOC_CONSOLE_RESULT_NO_CONSOLE = 0,
|
||||
ALLOC_CONSOLE_RESULT_NEW_CONSOLE = 1,
|
||||
ALLOC_CONSOLE_RESULT_EXISTING_CONSOLE = 2
|
||||
} ALLOC_CONSOLE_RESULT, *PALLOC_CONSOLE_RESULT;
|
||||
|
||||
WINBASEAPI HRESULT WINAPI AllocConsoleWithOptions(PALLOC_CONSOLE_OPTIONS options, PALLOC_CONSOLE_RESULT result);
|
||||
|
||||
#endif /* NTDDI_VERSION >= NTDDI_WIN11_GE */
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI FreeConsole(void);
|
||||
|
||||
#if (_WIN32_WINNT >= 0x0500)
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI AttachConsole(DWORD process_id);
|
||||
|
||||
#define ATTACH_PARENT_PROCESS ((DWORD)-1)
|
||||
|
||||
#endif /* _WIN32_WINNT >= 0x0500 */
|
||||
|
||||
WINBASEAPI UINT WINAPI GetConsoleCP(void);
|
||||
WINBASEAPI UINT WINAPI GetConsoleOutputCP(void);
|
||||
|
||||
#define ENABLE_PROCESSED_INPUT 0x0001
|
||||
#define ENABLE_LINE_INPUT 0x0002
|
||||
#define ENABLE_ECHO_INPUT 0x0004
|
||||
#define ENABLE_WINDOW_INPUT 0x0008
|
||||
#define ENABLE_MOUSE_INPUT 0x0010
|
||||
#define ENABLE_INSERT_MODE 0x0020
|
||||
#define ENABLE_QUICK_EDIT_MODE 0x0040
|
||||
#define ENABLE_EXTENDED_FLAGS 0x0080
|
||||
#define ENABLE_AUTO_POSITION 0x0100
|
||||
#define ENABLE_VIRTUAL_TERMINAL_INPUT 0x0200
|
||||
|
||||
#define ENABLE_PROCESSED_OUTPUT 0x0001
|
||||
#define ENABLE_WRAP_AT_EOL_OUTPUT 0x0002
|
||||
#define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
|
||||
#define DISABLE_NEWLINE_AUTO_RETURN 0x0008
|
||||
#define ENABLE_LVB_GRID_WORLDWIDE 0x0010
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI GetConsoleMode(HANDLE console_handle, LPDWORD mode);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleMode(HANDLE console_handle, DWORD mode);
|
||||
WINBASEAPI WINBOOL WINAPI GetNumberOfConsoleInputEvents(HANDLE console_input, LPDWORD number_of_events);
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI ReadConsoleInputA(HANDLE console_input, PINPUT_RECORD buffer, DWORD length, LPDWORD number_of_events_read);
|
||||
WINBASEAPI WINBOOL WINAPI ReadConsoleInputW(HANDLE console_input, PINPUT_RECORD buffer, DWORD length, LPDWORD number_of_events_read);
|
||||
#define ReadConsoleInput __MINGW_NAME_AW(ReadConsoleInput)
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI PeekConsoleInputA(HANDLE console_input, PINPUT_RECORD buffer, DWORD length, LPDWORD number_of_events_read);
|
||||
WINBASEAPI WINBOOL WINAPI PeekConsoleInputW(HANDLE console_input, PINPUT_RECORD buffer, DWORD length, LPDWORD number_of_events_read);
|
||||
#define PeekConsoleInput __MINGW_NAME_AW(PeekConsoleInput)
|
||||
|
||||
typedef struct _CONSOLE_READCONSOLE_CONTROL {
|
||||
ULONG nLength;
|
||||
ULONG nInitialChars;
|
||||
ULONG dwCtrlWakeupMask;
|
||||
ULONG dwControlKeyState;
|
||||
} CONSOLE_READCONSOLE_CONTROL, *PCONSOLE_READCONSOLE_CONTROL;
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI ReadConsoleA(HANDLE console_input, LPVOID buffer, DWORD number_of_chars_to_read, LPDWORD number_of_chars_read, PCONSOLE_READCONSOLE_CONTROL input_control);
|
||||
WINBASEAPI WINBOOL WINAPI ReadConsoleW(HANDLE console_input, LPVOID buffer, DWORD number_of_chars_to_read, LPDWORD number_of_chars_read, PCONSOLE_READCONSOLE_CONTROL input_control);
|
||||
#define ReadConsole __MINGW_NAME_AW(ReadConsole)
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI WriteConsoleA(HANDLE console_output, const void *buffer, DWORD number_of_chars_to_write, LPDWORD number_of_chars_written, LPVOID reserved);
|
||||
WINBASEAPI WINBOOL WINAPI WriteConsoleW(HANDLE console_output, const void *buffer, DWORD number_of_chars_to_write, LPDWORD number_of_chars_written, LPVOID reserved);
|
||||
#define WriteConsole __MINGW_NAME_AW(WriteConsole)
|
||||
|
||||
#define CTRL_C_EVENT 0
|
||||
#define CTRL_BREAK_EVENT 1
|
||||
#define CTRL_CLOSE_EVENT 2
|
||||
#define CTRL_LOGOFF_EVENT 5
|
||||
#define CTRL_SHUTDOWN_EVENT 6
|
||||
|
||||
typedef WINBOOL (WINAPI *PHANDLER_ROUTINE)(DWORD ctrl_type);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleCtrlHandler(PHANDLER_ROUTINE handler_routine, WINBOOL add);
|
||||
|
||||
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) */
|
||||
|
||||
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN10_RS5)
|
||||
#define PSEUDOCONSOLE_INHERIT_CURSOR (0x1)
|
||||
|
||||
WINBASEAPI HRESULT WINAPI CreatePseudoConsole(COORD size, HANDLE input, HANDLE output, DWORD flags, HPCON *pc);
|
||||
WINBASEAPI HRESULT WINAPI ResizePseudoConsole(HPCON pc, COORD size);
|
||||
WINBASEAPI void WINAPI ClosePseudoConsole(HPCON pc);
|
||||
#endif
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN11_GE)
|
||||
WINBASEAPI HRESULT WINAPI ReleasePseudoConsole(HPCON pc);
|
||||
#endif
|
||||
|
||||
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _APISETCONSOLE_ */
|
||||
144
lib/libc/include/any-windows-any/consoleapi2.h
vendored
Normal file
144
lib/libc/include/any-windows-any/consoleapi2.h
vendored
Normal file
|
|
@ -0,0 +1,144 @@
|
|||
/**
|
||||
* This file has no copyright assigned and is placed in the Public Domain.
|
||||
* This file is part of the mingw-w64 runtime package.
|
||||
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
||||
*/
|
||||
|
||||
#ifndef _APISETCONSOLEL2_
|
||||
#define _APISETCONSOLEL2_
|
||||
|
||||
#include <_mingw_unicode.h>
|
||||
|
||||
#include <apiset.h>
|
||||
#include <apisetcconv.h>
|
||||
#include <minwinbase.h>
|
||||
#include <minwindef.h>
|
||||
|
||||
#include <wincontypes.h>
|
||||
#include <windef.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
|
||||
|
||||
#define FOREGROUND_BLUE 0x0001
|
||||
#define FOREGROUND_GREEN 0x0002
|
||||
#define FOREGROUND_RED 0x0004
|
||||
#define FOREGROUND_INTENSITY 0x0008
|
||||
#define BACKGROUND_BLUE 0x0010
|
||||
#define BACKGROUND_GREEN 0x0020
|
||||
#define BACKGROUND_RED 0x0040
|
||||
#define BACKGROUND_INTENSITY 0x0080
|
||||
#define COMMON_LVB_LEADING_BYTE 0x0100
|
||||
#define COMMON_LVB_TRAILING_BYTE 0x0200
|
||||
#define COMMON_LVB_GRID_HORIZONTAL 0x0400
|
||||
#define COMMON_LVB_GRID_LVERTICAL 0x0800
|
||||
#define COMMON_LVB_GRID_RVERTICAL 0x1000
|
||||
#define COMMON_LVB_REVERSE_VIDEO 0x4000
|
||||
#define COMMON_LVB_UNDERSCORE 0x8000
|
||||
|
||||
#define COMMON_LVB_SBCSDBCS 0x0300
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI FillConsoleOutputCharacterA(HANDLE console_output, CHAR character, DWORD length, COORD write_coord, LPDWORD number_of_chars_written);
|
||||
WINBASEAPI WINBOOL WINAPI FillConsoleOutputCharacterW(HANDLE console_output, WCHAR character, DWORD length, COORD write_coord, LPDWORD number_of_chars_written);
|
||||
#define FillConsoleOutputCharacter __MINGW_NAME_AW(FillConsoleOutputCharacter)
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI FillConsoleOutputAttribute(HANDLE console_output, WORD attribute, DWORD length, COORD write_coord, LPDWORD number_of_attrs_written);
|
||||
WINBASEAPI WINBOOL WINAPI GenerateConsoleCtrlEvent(DWORD ctrl_event, DWORD process_group_id);
|
||||
WINBASEAPI HANDLE WINAPI CreateConsoleScreenBuffer(DWORD desired_access, DWORD share_mode, const SECURITY_ATTRIBUTES *security_attributes, DWORD flags, LPVOID screen_buffer_data);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleActiveScreenBuffer(HANDLE console_output);
|
||||
WINBASEAPI WINBOOL WINAPI FlushConsoleInputBuffer(HANDLE console_input);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleCP(UINT code_page_id);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleOutputCP(UINT code_page_id);
|
||||
|
||||
typedef struct _CONSOLE_CURSOR_INFO {
|
||||
DWORD dwSize;
|
||||
WINBOOL bVisible;
|
||||
} CONSOLE_CURSOR_INFO, *PCONSOLE_CURSOR_INFO;
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI GetConsoleCursorInfo(HANDLE console_output, PCONSOLE_CURSOR_INFO console_cursor_info);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleCursorInfo(HANDLE console_output, const CONSOLE_CURSOR_INFO *console_cursor_info);
|
||||
|
||||
typedef struct _CONSOLE_SCREEN_BUFFER_INFO {
|
||||
COORD dwSize;
|
||||
COORD dwCursorPosition;
|
||||
WORD wAttributes;
|
||||
SMALL_RECT srWindow;
|
||||
COORD dwMaximumWindowSize;
|
||||
} CONSOLE_SCREEN_BUFFER_INFO, *PCONSOLE_SCREEN_BUFFER_INFO;
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI GetConsoleScreenBufferInfo(HANDLE console_output, PCONSOLE_SCREEN_BUFFER_INFO console_screen_buffer_info);
|
||||
|
||||
typedef struct _CONSOLE_SCREEN_BUFFER_INFOEX {
|
||||
ULONG cbSize;
|
||||
COORD dwSize;
|
||||
COORD dwCursorPosition;
|
||||
WORD wAttributes;
|
||||
SMALL_RECT srWindow;
|
||||
COORD dwMaximumWindowSize;
|
||||
WORD wPopupAttributes;
|
||||
WINBOOL bFullscreenSupported;
|
||||
COLORREF ColorTable[16];
|
||||
} CONSOLE_SCREEN_BUFFER_INFOEX, *PCONSOLE_SCREEN_BUFFER_INFOEX;
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI GetConsoleScreenBufferInfoEx(HANDLE console_output, PCONSOLE_SCREEN_BUFFER_INFOEX console_screen_buffer_info_ex);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleScreenBufferInfoEx(HANDLE console_output, PCONSOLE_SCREEN_BUFFER_INFOEX console_screen_buffer_info_ex);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleScreenBufferSize(HANDLE console_output, COORD size);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleCursorPosition(HANDLE console_output, COORD cursor_position);
|
||||
WINBASEAPI COORD WINAPI GetLargestConsoleWindowSize(HANDLE console_output);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleTextAttribute(HANDLE console_output, WORD attributes);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleWindowInfo(HANDLE console_output, WINBOOL absolute, const SMALL_RECT *console_window);
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI WriteConsoleOutputCharacterA(HANDLE console_output, LPCSTR character, DWORD length, COORD write_coord, LPDWORD number_of_chars_written);
|
||||
WINBASEAPI WINBOOL WINAPI WriteConsoleOutputCharacterW(HANDLE console_output, LPCWSTR character, DWORD length, COORD write_coord, LPDWORD number_of_chars_written);
|
||||
#define WriteConsoleOutputCharacter __MINGW_NAME_AW(WriteConsoleOutputCharacter)
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI WriteConsoleOutputAttribute(HANDLE console_output, const WORD *attribute, DWORD length, COORD write_coord, LPDWORD number_of_attrs_written);
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI ReadConsoleOutputCharacterA(HANDLE console_output, LPSTR character, DWORD length, COORD read_coord, LPDWORD number_of_chars_read);
|
||||
WINBASEAPI WINBOOL WINAPI ReadConsoleOutputCharacterW(HANDLE console_output, LPWSTR character, DWORD length, COORD read_coord, LPDWORD number_of_chars_read);
|
||||
#define ReadConsoleOutputCharacter __MINGW_NAME_AW(ReadConsoleOutputCharacter)
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI ReadConsoleOutputAttribute(HANDLE console_output, LPWORD attribute, DWORD length, COORD read_coord, LPDWORD number_of_attrs_read);
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI WriteConsoleInputA(HANDLE console_input, const INPUT_RECORD *buffer, DWORD length, LPDWORD number_of_events_written);
|
||||
WINBASEAPI WINBOOL WINAPI WriteConsoleInputW(HANDLE console_input, const INPUT_RECORD *buffer, DWORD length, LPDWORD number_of_events_written);
|
||||
#define WriteConsoleInput __MINGW_NAME_AW(WriteConsoleInput)
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI ScrollConsoleScreenBufferA(HANDLE console_output, const SMALL_RECT *scroll_rectangle, const SMALL_RECT *clip_rectangle, COORD destination_origin, const CHAR_INFO *fill);
|
||||
WINBASEAPI WINBOOL WINAPI ScrollConsoleScreenBufferW(HANDLE console_output, const SMALL_RECT *scroll_rectangle, const SMALL_RECT *clip_rectangle, COORD destination_origin, const CHAR_INFO *fill);
|
||||
#define ScrollConsoleScreenBuffer __MINGW_NAME_AW(ScrollConsoleScreenBuffer)
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI WriteConsoleOutputA(HANDLE console_output, const CHAR_INFO *buffer, COORD buffer_size, COORD buffer_coord, PSMALL_RECT write_region);
|
||||
WINBASEAPI WINBOOL WINAPI WriteConsoleOutputW(HANDLE console_output, const CHAR_INFO *buffer, COORD buffer_size, COORD buffer_coord, PSMALL_RECT write_region);
|
||||
#define WriteConsoleOutput __MINGW_NAME_AW(WriteConsoleOutput)
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI ReadConsoleOutputA(HANDLE console_output, PCHAR_INFO buffer, COORD buffer_size, COORD buffer_coord, PSMALL_RECT read_region);
|
||||
WINBASEAPI WINBOOL WINAPI ReadConsoleOutputW(HANDLE console_output, PCHAR_INFO buffer, COORD buffer_size, COORD buffer_coord, PSMALL_RECT read_region);
|
||||
#define ReadConsoleOutput __MINGW_NAME_AW(ReadConsoleOutput)
|
||||
|
||||
WINBASEAPI DWORD WINAPI GetConsoleTitleA(LPSTR console_title, DWORD size);
|
||||
WINBASEAPI DWORD WINAPI GetConsoleTitleW(LPWSTR console_title, DWORD size);
|
||||
#define GetConsoleTitle __MINGW_NAME_AW(GetConsoleTitle)
|
||||
|
||||
#if (_WIN32_WINNT >= 0x0600)
|
||||
|
||||
WINBASEAPI DWORD WINAPI GetConsoleOriginalTitleA(LPSTR console_title, DWORD size);
|
||||
WINBASEAPI DWORD WINAPI GetConsoleOriginalTitleW(LPWSTR console_title, DWORD size);
|
||||
#define GetConsoleOriginalTitle __MINGW_NAME_AW(GetConsoleOriginalTitle)
|
||||
|
||||
#endif /* _WIN32_WINNT >= 0x0600 */
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleTitleA(LPCSTR console_title);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleTitleW(LPCWSTR console_title);
|
||||
#define SetConsoleTitle __MINGW_NAME_AW(SetConsoleTitle)
|
||||
|
||||
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _APISETCONSOLEL2_ */
|
||||
146
lib/libc/include/any-windows-any/consoleapi3.h
vendored
Normal file
146
lib/libc/include/any-windows-any/consoleapi3.h
vendored
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
/**
|
||||
* This file has no copyright assigned and is placed in the Public Domain.
|
||||
* This file is part of the mingw-w64 runtime package.
|
||||
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
||||
*/
|
||||
|
||||
#ifndef _APISETCONSOLEL3_
|
||||
#define _APISETCONSOLEL3_
|
||||
|
||||
#include <_mingw_unicode.h>
|
||||
|
||||
#include <apiset.h>
|
||||
#include <apisetcconv.h>
|
||||
#include <minwinbase.h>
|
||||
#include <minwindef.h>
|
||||
|
||||
#include <wincontypes.h>
|
||||
#include <windef.h>
|
||||
|
||||
#ifndef NOGDI
|
||||
#include <wingdi.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI GetNumberOfConsoleMouseButtons(LPDWORD number_of_mouse_buttons);
|
||||
|
||||
#if (_WIN32_WINNT >= 0x0500)
|
||||
|
||||
WINBASEAPI COORD WINAPI GetConsoleFontSize(HANDLE console_output, DWORD font);
|
||||
WINBASEAPI WINBOOL WINAPI GetCurrentConsoleFont(HANDLE console_output, WINBOOL maximum_window, PCONSOLE_FONT_INFO console_current_font);
|
||||
|
||||
#ifndef NOGDI
|
||||
|
||||
typedef struct _CONSOLE_FONT_INFOEX {
|
||||
ULONG cbSize;
|
||||
DWORD nFont;
|
||||
COORD dwFontSize;
|
||||
UINT FontFamily;
|
||||
UINT FontWeight;
|
||||
WCHAR FaceName[LF_FACESIZE];
|
||||
} CONSOLE_FONT_INFOEX, *PCONSOLE_FONT_INFOEX;
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI GetCurrentConsoleFontEx(HANDLE console_output, WINBOOL maximum_window, PCONSOLE_FONT_INFOEX console_current_font_ex);
|
||||
WINBASEAPI WINBOOL WINAPI SetCurrentConsoleFontEx(HANDLE console_output, WINBOOL maximum_window, PCONSOLE_FONT_INFOEX console_current_font_ex);
|
||||
|
||||
#endif /* !NOGDI */
|
||||
|
||||
#define CONSOLE_NO_SELECTION 0x0000
|
||||
#define CONSOLE_SELECTION_IN_PROGRESS 0x0001
|
||||
#define CONSOLE_SELECTION_NOT_EMPTY 0x0002
|
||||
#define CONSOLE_MOUSE_SELECTION 0x0004
|
||||
#define CONSOLE_MOUSE_DOWN 0x0008
|
||||
|
||||
typedef struct _CONSOLE_SELECTION_INFO {
|
||||
DWORD dwFlags;
|
||||
COORD dwSelectionAnchor;
|
||||
SMALL_RECT srSelection;
|
||||
} CONSOLE_SELECTION_INFO, *PCONSOLE_SELECTION_INFO;
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI GetConsoleSelectionInfo(PCONSOLE_SELECTION_INFO console_selection_info);
|
||||
|
||||
#define HISTORY_NO_DUP_FLAG 0x1
|
||||
|
||||
typedef struct _CONSOLE_HISTORY_INFO {
|
||||
UINT cbSize;
|
||||
UINT HistoryBufferSize;
|
||||
UINT NumberOfHistoryBuffers;
|
||||
DWORD dwFlags;
|
||||
} CONSOLE_HISTORY_INFO, *PCONSOLE_HISTORY_INFO;
|
||||
|
||||
WINBASEAPI WINBOOL WINAPI GetConsoleHistoryInfo(PCONSOLE_HISTORY_INFO console_history_info);
|
||||
WINBASEAPI WINBOOL WINAPI SetConsoleHistoryInfo(PCONSOLE_HISTORY_INFO console_history_info);
|
||||
|
||||
#define CONSOLE_FULLSCREEN 1
|
||||
#define CONSOLE_FULLSCREEN_HARDWARE 2
|
||||
|
||||
WINBASEAPI WINBOOL APIENTRY GetConsoleDisplayMode(LPDWORD mode_flags);
|
||||
|
||||
#define CONSOLE_FULLSCREEN_MODE 1
|
||||
#define CONSOLE_WINDOWED_MODE 2
|
||||
|
||||
WINBASEAPI WINBOOL APIENTRY SetConsoleDisplayMode(HANDLE console_output, DWORD flags, PCOORD new_screen_buffer_dimensions);
|
||||
WINBASEAPI HWND APIENTRY GetConsoleWindow(void);
|
||||
|
||||
#endif /* _WIN32_WINNT >= 0x0500 */
|
||||
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
|
||||
WINBASEAPI WINBOOL APIENTRY AddConsoleAliasA(LPSTR source, LPSTR target, LPSTR exe_name);
|
||||
WINBASEAPI WINBOOL APIENTRY AddConsoleAliasW(LPWSTR source, LPWSTR target, LPWSTR exe_name);
|
||||
#define AddConsoleAlias __MINGW_NAME_AW(AddConsoleAlias)
|
||||
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleAliasA(LPSTR source, LPSTR target_buffer, DWORD target_buffer_length, LPSTR exe_name);
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleAliasW(LPWSTR source, LPWSTR target_buffer, DWORD target_buffer_length, LPWSTR exe_name);
|
||||
#define GetConsoleAlias __MINGW_NAME_AW(GetConsoleAlias)
|
||||
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleAliasesLengthA(LPSTR exe_name);
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleAliasesLengthW(LPWSTR exe_name);
|
||||
#define GetConsoleAliasesLength __MINGW_NAME_AW(GetConsoleAliasesLength)
|
||||
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleAliasExesLengthA(void);
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleAliasExesLengthW(void);
|
||||
#define GetConsoleAliasExesLength __MINGW_NAME_AW(GetConsoleAliasExesLength)
|
||||
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleAliasesA(LPSTR alias_buffer, DWORD alias_buffer_length, LPSTR exe_name);
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleAliasesW(LPWSTR alias_buffer, DWORD alias_buffer_length, LPWSTR exe_name);
|
||||
#define GetConsoleAliases __MINGW_NAME_AW(GetConsoleAliases)
|
||||
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleAliasExesA(LPSTR exe_name_buffer, DWORD exe_name_buffer_length);
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleAliasExesW(LPWSTR exe_name_buffer, DWORD exe_name_buffer_length);
|
||||
#define GetConsoleAliasExes __MINGW_NAME_AW(GetConsoleAliasExes)
|
||||
|
||||
#endif /* _WIN32_WINNT >= 0x0501 */
|
||||
|
||||
WINBASEAPI void APIENTRY ExpungeConsoleCommandHistoryA(LPSTR exe_name);
|
||||
WINBASEAPI void APIENTRY ExpungeConsoleCommandHistoryW(LPWSTR exe_name);
|
||||
#define ExpungeConsoleCommandHistory __MINGW_NAME_AW(ExpungeConsoleCommandHistory)
|
||||
|
||||
WINBASEAPI WINBOOL APIENTRY SetConsoleNumberOfCommandsA(DWORD number, LPSTR exe_name);
|
||||
WINBASEAPI WINBOOL APIENTRY SetConsoleNumberOfCommandsW(DWORD number, LPWSTR exe_name);
|
||||
#define SetConsoleNumberOfCommands __MINGW_NAME_AW(SetConsoleNumberOfCommands)
|
||||
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleCommandHistoryLengthA(LPSTR exe_name);
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleCommandHistoryLengthW(LPWSTR exe_name);
|
||||
#define GetConsoleCommandHistoryLength __MINGW_NAME_AW(GetConsoleCommandHistoryLength)
|
||||
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleCommandHistoryA(LPSTR commands, DWORD command_buffer_length, LPSTR exe_name);
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleCommandHistoryW(LPWSTR commands, DWORD command_buffer_length, LPWSTR exe_name);
|
||||
#define GetConsoleCommandHistory __MINGW_NAME_AW(GetConsoleCommandHistory)
|
||||
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
WINBASEAPI DWORD APIENTRY GetConsoleProcessList(LPDWORD process_list, DWORD process_count);
|
||||
#endif /* _WIN32_WINNT >= 0x0501 */
|
||||
|
||||
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _APISETCONSOLEL3_ */
|
||||
2
lib/libc/include/any-windows-any/control.h
vendored
2
lib/libc/include/any-windows-any/control.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/control.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/control.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -10,6 +10,15 @@
|
|||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if defined(_DEBUG) && defined(_CRTDBG_MAP_ALLOC)
|
||||
#pragma push_macro("_wdupenv_s")
|
||||
#undef _wdupenv_s
|
||||
#endif
|
||||
_CRTIMP errno_t __cdecl _wdupenv_s(wchar_t **_Buffer,size_t *_BufferSizeInWords,const wchar_t *_VarName);
|
||||
#if defined(_DEBUG) && defined(_CRTDBG_MAP_ALLOC)
|
||||
#pragma pop_macro("_wdupenv_s")
|
||||
#endif
|
||||
|
||||
_CRTIMP errno_t __cdecl _itow_s (int _Val,wchar_t *_DstBuf,size_t _SizeInWords,int _Radix);
|
||||
|
|
@ -24,7 +33,6 @@ extern "C" {
|
|||
_CRTIMP errno_t __cdecl _wgetenv_s(size_t *_ReturnSize,wchar_t *_DstBuf,size_t _DstSizeInWords,const wchar_t *_VarName);
|
||||
__DEFINE_CPP_OVERLOAD_SECURE_FUNC_1_1(errno_t,_wgetenv_s,size_t*,_ReturnSize,wchar_t,_DstBuf,const wchar_t*,_VarName)
|
||||
|
||||
_CRTIMP errno_t __cdecl _wdupenv_s(wchar_t **_Buffer,size_t *_BufferSizeInWords,const wchar_t *_VarName);
|
||||
_CRTIMP errno_t __cdecl _i64tow_s(__int64 _Val,wchar_t *_DstBuf,size_t _SizeInWords,int _Radix);
|
||||
_CRTIMP errno_t __cdecl _ui64tow_s(unsigned __int64 _Val,wchar_t *_DstBuf,size_t _SizeInWords,int _Radix);
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/credentialprovider.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/credentialprovider.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
232
lib/libc/include/any-windows-any/crtdbg.h
vendored
232
lib/libc/include/any-windows-any/crtdbg.h
vendored
|
|
@ -4,6 +4,7 @@
|
|||
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
||||
*/
|
||||
#include <crtdefs.h>
|
||||
#include <sal.h>
|
||||
|
||||
#ifndef _INC_CRTDBG
|
||||
#define _INC_CRTDBG
|
||||
|
|
@ -94,13 +95,21 @@ extern "C" {
|
|||
} _CrtMemState;
|
||||
|
||||
#ifndef _STATIC_ASSERT
|
||||
#if defined(_MSC_VER)
|
||||
#if (defined(__cpp_static_assert) && __cpp_static_assert >= 201411L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L)
|
||||
#define _STATIC_ASSERT(expr) static_assert(expr)
|
||||
#elif defined(__cpp_static_assert)
|
||||
#define _STATIC_ASSERT(expr) static_assert(expr, #expr)
|
||||
#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
||||
#define _STATIC_ASSERT(expr) _Static_assert(expr, #expr)
|
||||
#elif defined(_MSC_VER)
|
||||
#define _STATIC_ASSERT(expr) typedef char __static_assert_t[(expr)]
|
||||
#else
|
||||
#define _STATIC_ASSERT(expr) extern void __static_assert_t(int [(expr)?1:-1])
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef _DEBUG
|
||||
|
||||
#ifndef _ASSERT
|
||||
#define _ASSERT(expr) ((void)0)
|
||||
#endif
|
||||
|
|
@ -208,6 +217,227 @@ extern "C" {
|
|||
#define _CrtSetCheckCount(f) ((int)0)
|
||||
#define _CrtGetCheckCount() ((int)0)
|
||||
|
||||
#else /* _DEBUG */
|
||||
|
||||
_CRTIMP long * __cdecl __p__crtAssertBusy(void);
|
||||
#define _crtAssertBusy (*__p__crtAssertBusy())
|
||||
|
||||
_CRTIMP _CRT_REPORT_HOOK __cdecl _CrtGetReportHook(void);
|
||||
_CRTIMP _CRT_REPORT_HOOK __cdecl _CrtSetReportHook(_CRT_REPORT_HOOK _PFnNewHook);
|
||||
_CRTIMP int __cdecl _CrtSetReportHook2(int _Mode, _CRT_REPORT_HOOK _PFnNewHook);
|
||||
_CRTIMP int __cdecl _CrtSetReportHookW2(int _Mode, _CRT_REPORT_HOOKW _PFnNewHook);
|
||||
_CRTIMP int __cdecl _CrtSetReportMode(int _ReportType, int _ReportMode);
|
||||
_CRTIMP _HFILE __cdecl _CrtSetReportFile(int _ReportType, _HFILE _ReportFile);
|
||||
_CRTIMP int __cdecl _CrtDbgReport(int _ReportType, const char * _Filename, int _Linenumber, const char * _ModuleName, const char * _Format, ...);
|
||||
_CRTIMP size_t __cdecl _CrtSetDebugFillThreshold(size_t _NewDebugFillThreshold);
|
||||
_CRTIMP int __cdecl _CrtDbgReportW(int _ReportType, const wchar_t * _Filename, int _LineNumber, const wchar_t * _ModuleName, const wchar_t * _Format, ...);
|
||||
|
||||
#define _ASSERT_EXPR(expr, msg) \
|
||||
(void) ((!!(expr)) || \
|
||||
(1 != _CrtDbgReportW(_CRT_ASSERT, _CRT_WIDE(__FILE__), __LINE__, NULL, msg)) || \
|
||||
(_CrtDbgBreak(), 0))
|
||||
|
||||
#ifndef _ASSERT
|
||||
#define _ASSERT(expr) _ASSERT_EXPR((expr), NULL)
|
||||
#endif
|
||||
|
||||
#ifndef _ASSERTE
|
||||
#define _ASSERTE(expr) _ASSERT_EXPR((expr), _CRT_WIDE(#expr))
|
||||
#endif
|
||||
|
||||
#ifndef _ASSERT_BASE
|
||||
#define _ASSERT_BASE _ASSERT_EXPR
|
||||
#endif
|
||||
|
||||
#define _RPT_BASE(args) \
|
||||
(void) ((1 != _CrtDbgReport args) || \
|
||||
(_CrtDbgBreak(), 0))
|
||||
|
||||
#define _RPT_BASE_W(args) \
|
||||
(void) ((1 != _CrtDbgReportW args) || \
|
||||
(_CrtDbgBreak(), 0))
|
||||
|
||||
#define _RPT0(rptno, msg) \
|
||||
_RPT_BASE((rptno, NULL, 0, NULL, "%s", msg))
|
||||
|
||||
#define _RPTW0(rptno, msg) \
|
||||
_RPT_BASE_W((rptno, NULL, 0, NULL, L"%s", msg))
|
||||
|
||||
#define _RPT1(rptno, msg, arg1) \
|
||||
_RPT_BASE((rptno, NULL, 0, NULL, msg, arg1))
|
||||
|
||||
#define _RPTW1(rptno, msg, arg1) \
|
||||
_RPT_BASE_W((rptno, NULL, 0, NULL, msg, arg1))
|
||||
|
||||
#define _RPT2(rptno, msg, arg1, arg2) \
|
||||
_RPT_BASE((rptno, NULL, 0, NULL, msg, arg1, arg2))
|
||||
|
||||
#define _RPTW2(rptno, msg, arg1, arg2) \
|
||||
_RPT_BASE_W((rptno, NULL, 0, NULL, msg, arg1, arg2))
|
||||
|
||||
#define _RPT3(rptno, msg, arg1, arg2, arg3) \
|
||||
_RPT_BASE((rptno, NULL, 0, NULL, msg, arg1, arg2, arg3))
|
||||
|
||||
#define _RPTW3(rptno, msg, arg1, arg2, arg3) \
|
||||
_RPT_BASE_W((rptno, NULL, 0, NULL, msg, arg1, arg2, arg3))
|
||||
|
||||
#define _RPT4(rptno, msg, arg1, arg2, arg3, arg4) \
|
||||
_RPT_BASE((rptno, NULL, 0, NULL, msg, arg1, arg2, arg3, arg4))
|
||||
|
||||
#define _RPTW4(rptno, msg, arg1, arg2, arg3, arg4) \
|
||||
_RPT_BASE_W((rptno, NULL, 0, NULL, msg, arg1, arg2, arg3, arg4))
|
||||
|
||||
#define _RPT5(rptno, msg, arg1, arg2, arg3, arg4, arg5) \
|
||||
_RPT_BASE((rptno, NULL, 0, NULL, msg, arg1, arg2, arg3, arg4, arg5))
|
||||
|
||||
#define _RPTW5(rptno, msg, arg1, arg2, arg3, arg4, arg5) \
|
||||
_RPT_BASE_W((rptno, NULL, 0, NULL, msg, arg1, arg2, arg3, arg4, arg5))
|
||||
|
||||
#define _RPTF0(rptno, msg) \
|
||||
_RPT_BASE((rptno, __FILE__, __LINE__, NULL, "%s", msg))
|
||||
|
||||
#define _RPTFW0(rptno, msg) \
|
||||
_RPT_BASE_W((rptno, _CRT_WIDE(__FILE__), __LINE__, NULL, L"%s", msg))
|
||||
|
||||
#define _RPTF1(rptno, msg, arg1) \
|
||||
_RPT_BASE((rptno, __FILE__, __LINE__, NULL, msg, arg1))
|
||||
|
||||
#define _RPTFW1(rptno, msg, arg1) \
|
||||
_RPT_BASE_W((rptno, _CRT_WIDE(__FILE__), __LINE__, NULL, msg, arg1))
|
||||
|
||||
#define _RPTF2(rptno, msg, arg1, arg2) \
|
||||
_RPT_BASE((rptno, __FILE__, __LINE__, NULL, msg, arg1, arg2))
|
||||
|
||||
#define _RPTFW2(rptno, msg, arg1, arg2) \
|
||||
_RPT_BASE_W((rptno, _CRT_WIDE(__FILE__), __LINE__, NULL, msg, arg1, arg2))
|
||||
|
||||
#define _RPTF3(rptno, msg, arg1, arg2, arg3) \
|
||||
_RPT_BASE((rptno, __FILE__, __LINE__, NULL, msg, arg1, arg2, arg3))
|
||||
|
||||
#define _RPTFW3(rptno, msg, arg1, arg2, arg3) \
|
||||
_RPT_BASE_W((rptno, _CRT_WIDE(__FILE__), __LINE__, NULL, msg, arg1, arg2, arg3))
|
||||
|
||||
#define _RPTF4(rptno, msg, arg1, arg2, arg3, arg4) \
|
||||
_RPT_BASE((rptno, __FILE__, __LINE__, NULL, msg, arg1, arg2, arg3, arg4))
|
||||
|
||||
#define _RPTFW4(rptno, msg, arg1, arg2, arg3, arg4) \
|
||||
_RPT_BASE_W((rptno, _CRT_WIDE(__FILE__), __LINE__, NULL, msg, arg1, arg2, arg3, arg4))
|
||||
|
||||
#define _RPTF5(rptno, msg, arg1, arg2, arg3, arg4, arg5) \
|
||||
_RPT_BASE((rptno, __FILE__, __LINE__, NULL, msg, arg1, arg2, arg3, arg4, arg5))
|
||||
|
||||
#define _RPTFW5(rptno, msg, arg1, arg2, arg3, arg4, arg5) \
|
||||
_RPT_BASE_W((rptno, _CRT_WIDE(__FILE__), __LINE__, NULL, msg, arg1, arg2, arg3, arg4, arg5))
|
||||
|
||||
#define _CrtDbgBreak() __debugbreak()
|
||||
|
||||
#ifdef _CRTDBG_MAP_ALLOC
|
||||
|
||||
#define malloc(s) _malloc_dbg(s, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define calloc(c, s) _calloc_dbg(c, s, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define realloc(p, s) _realloc_dbg(p, s, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _recalloc(p, c, s) _recalloc_dbg(p, c, s, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _expand(p, s) _expand_dbg(p, s, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define free(p) _free_dbg(p, _NORMAL_BLOCK)
|
||||
#define _msize(p) _msize_dbg(p, _NORMAL_BLOCK)
|
||||
#define _aligned_msize(p, a, o) _aligned_msize_dbg(p, a, o)
|
||||
#define _aligned_malloc(s, a) _aligned_malloc_dbg(s, a, __FILE__, __LINE__)
|
||||
#define _aligned_realloc(p, s, a) _aligned_realloc_dbg(p, s, a, __FILE__, __LINE__)
|
||||
#define _aligned_recalloc(p, c, s, a) _aligned_recalloc_dbg(p, c, s, a, __FILE__, __LINE__)
|
||||
#define _aligned_offset_malloc(s, a, o) _aligned_offset_malloc_dbg(s, a, o, __FILE__, __LINE__)
|
||||
#define _aligned_offset_realloc(p, s, a, o) _aligned_offset_realloc_dbg(p, s, a, o, __FILE__, __LINE__)
|
||||
#define _aligned_offset_recalloc(p, c, s, a, o) _aligned_offset_recalloc_dbg(p, c, s, a, o, __FILE__, __LINE__)
|
||||
#define _aligned_free(p) _aligned_free_dbg(p)
|
||||
|
||||
#define _malloca(s) _malloca_dbg(s, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _freea(p) _freea_dbg(p, _NORMAL_BLOCK)
|
||||
|
||||
#define _strdup(s) _strdup_dbg(s, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _wcsdup(s) _wcsdup_dbg(s, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _mbsdup(s) _strdup_dbg(s, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _tempnam(s1, s2) _tempnam_dbg(s1, s2, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _wtempnam(s1, s2) _wtempnam_dbg(s1, s2, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _fullpath(s1, s2, le) _fullpath_dbg(s1, s2, le, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _wfullpath(s1, s2, le) _wfullpath_dbg(s1, s2, le, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _getcwd(s, le) _getcwd_dbg(s, le, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _wgetcwd(s, le) _wgetcwd_dbg(s, le, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _getdcwd(d, s, le) _getdcwd_dbg(d, s, le, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _wgetdcwd(d, s, le) _wgetdcwd_dbg(d, s, le, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _getdcwd_nolock(d, s, le) _getdcwd_lk_dbg(d, s, le, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _wgetdcwd_nolock(d, s, le) _wgetdcwd_lk_dbg(d, s, le, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _dupenv_s(ps1, size, s2) _dupenv_s_dbg(ps1, size, s2, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define _wdupenv_s(ps1, size, s2) _wdupenv_s_dbg(ps1, size, s2, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
|
||||
#define strdup(s) _strdup_dbg(s, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define wcsdup(s) _wcsdup_dbg(s, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define tempnam(s1, s2) _tempnam_dbg(s1, s2, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define getcwd(s, le) _getcwd_dbg(s, le, _NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
|
||||
#endif /* _CRTDBG_MAP_ALLOC */
|
||||
|
||||
_CRTIMP long * __cdecl __p__crtBreakAlloc(void);
|
||||
#define _crtBreakAlloc (*__p__crtBreakAlloc())
|
||||
|
||||
_CRTIMP long __cdecl _CrtSetBreakAlloc(long _BreakAlloc);
|
||||
|
||||
_CRTIMP __checkReturn void * __cdecl _malloc_dbg(size_t _Size, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn void * __cdecl _calloc_dbg(size_t _NumOfElements, size_t _SizeOfElements, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn void * __cdecl _realloc_dbg(void * _Memory, size_t _NewSize, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn void * __cdecl _recalloc_dbg(void * _Memory, size_t _NumOfElements, size_t _SizeOfElements, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn void * __cdecl _expand_dbg(void * _Memory, size_t _NewSize, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP void __cdecl _free_dbg(void * _Memory, int _BlockType);
|
||||
_CRTIMP size_t __cdecl _msize_dbg(void * _Memory, int _BlockType);
|
||||
_CRTIMP size_t __cdecl _aligned_msize_dbg(void * _Memory, size_t _Alignment, size_t _Offset);
|
||||
_CRTIMP __checkReturn void * __cdecl _aligned_malloc_dbg(size_t _Size, size_t _Alignment, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn void * __cdecl _aligned_realloc_dbg(void * _Memory, size_t _Size, size_t _Alignment, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn void * __cdecl _aligned_recalloc_dbg(void * _Memory, size_t _NumOfElements, size_t _SizeOfElements, size_t _Alignment, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn void * __cdecl _aligned_offset_malloc_dbg(size_t _Size, size_t _Alignment, size_t _Offset, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn void * __cdecl _aligned_offset_realloc_dbg(void * _Memory, size_t _Size, size_t _Alignment, size_t _Offset, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn void * __cdecl _aligned_offset_recalloc_dbg(void * _Memory, size_t _NumOfElements, size_t _SizeOfElements, size_t _Alignment, size_t _Offset, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP void __cdecl _aligned_free_dbg(void * _Memory);
|
||||
_CRTIMP __checkReturn char * __cdecl _strdup_dbg(const char * _Str, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn wchar_t * __cdecl _wcsdup_dbg(const wchar_t * _Str, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn char * __cdecl _tempnam_dbg(const char * _DirName, const char * _FilePrefix, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn wchar_t * __cdecl _wtempnam_dbg(const wchar_t * _DirName, const wchar_t * _FilePrefix, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn char * __cdecl _fullpath_dbg(char * _FullPath, const char * _Path, size_t _SizeInBytes, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn wchar_t * __cdecl _wfullpath_dbg(wchar_t * _FullPath, const wchar_t * _Path, size_t _SizeInWords, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn char * __cdecl _getcwd_dbg(char * _DstBuf, int _SizeInBytes, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn wchar_t * __cdecl _wgetcwd_dbg(wchar_t * _DstBuf, int _SizeInWords, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn char * __cdecl _getdcwd_dbg(int _Drive, char * _DstBuf, int _SizeInBytes, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn wchar_t * __cdecl _wgetdcwd_dbg(int _Drive, wchar_t * _DstBuf, int _SizeInWords, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
__checkReturn char * __cdecl _getdcwd_lk_dbg(int _Drive, char * _DstBuf, int _SizeInBytes, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
__checkReturn wchar_t * __cdecl _wgetdcwd_lk_dbg(int _Drive, wchar_t * _DstBuf, int _SizeInWords, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn errno_t __cdecl _dupenv_s_dbg(char ** _PBuffer, size_t * _PBufferSizeInBytes, const char * _VarName, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
_CRTIMP __checkReturn errno_t __cdecl _wdupenv_s_dbg(wchar_t ** _PBuffer, size_t * _PBufferSizeInWords, const wchar_t * _VarName, int _BlockType, const char * _Filename, int _LineNumber);
|
||||
|
||||
#define _malloca_dbg(s, t, f, l) _malloc_dbg(s, t, f, l)
|
||||
#define _freea_dbg(p, t) _free_dbg(p, t)
|
||||
|
||||
_CRTIMP _CRT_ALLOC_HOOK __cdecl _CrtGetAllocHook(void);
|
||||
_CRTIMP _CRT_ALLOC_HOOK __cdecl _CrtSetAllocHook(_CRT_ALLOC_HOOK _PfnNewHook);
|
||||
|
||||
_CRTIMP int * __cdecl __p__crtDbgFlag(void);
|
||||
#define _crtDbgFlag (*__p__crtDbgFlag())
|
||||
|
||||
_CRTIMP int __cdecl _CrtCheckMemory(void);
|
||||
_CRTIMP int __cdecl _CrtSetDbgFlag(int _NewFlag);
|
||||
_CRTIMP void __cdecl _CrtDoForAllClientObjects(void (__cdecl *_PFn)(void *, void *), void * _Context);
|
||||
_CRTIMP __checkReturn int __cdecl _CrtIsValidPointer(const void * _Ptr, unsigned int _Bytes, int _ReadWrite);
|
||||
_CRTIMP __checkReturn int __cdecl _CrtIsValidHeapPointer(const void * _HeapPtr);
|
||||
_CRTIMP int __cdecl _CrtIsMemoryBlock(const void * _Memory, unsigned int _Bytes, long * _RequestNumber, char ** _Filename, int * _LineNumber);
|
||||
_CRTIMP __checkReturn int __cdecl _CrtReportBlockType(const void * _Memory);
|
||||
_CRTIMP _CRT_DUMP_CLIENT __cdecl _CrtGetDumpClient(void);
|
||||
_CRTIMP _CRT_DUMP_CLIENT __cdecl _CrtSetDumpClient(_CRT_DUMP_CLIENT _PFnNewDump);
|
||||
_CRTIMP _CRT_MANAGED_HEAP_DEPRECATE void __cdecl _CrtMemCheckpoint(_CrtMemState * _State);
|
||||
_CRTIMP _CRT_MANAGED_HEAP_DEPRECATE int __cdecl _CrtMemDifference(_CrtMemState * _State, const _CrtMemState * _OldState, const _CrtMemState * _NewState);
|
||||
_CRTIMP void __cdecl _CrtMemDumpAllObjectsSince(const _CrtMemState * _State);
|
||||
_CRTIMP void __cdecl _CrtMemDumpStatistics(const _CrtMemState * _State);
|
||||
_CRTIMP int __cdecl _CrtDumpMemoryLeaks(void);
|
||||
_CRTIMP int __cdecl _CrtSetCheckCount(int _CheckCount);
|
||||
_CRTIMP int __cdecl _CrtGetCheckCount(void);
|
||||
|
||||
#endif /* _DEBUG */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
/*
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/ctfutb.h
vendored
2
lib/libc/include/any-windows-any/ctfutb.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/ctfutb.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/ctfutb.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/ctxtcall.h
vendored
2
lib/libc/include/any-windows-any/ctxtcall.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/ctxtcall.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/ctxtcall.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
72
lib/libc/include/any-windows-any/ctype.h
vendored
72
lib/libc/include/any-windows-any/ctype.h
vendored
|
|
@ -111,35 +111,38 @@ extern "C" {
|
|||
_CRTIMP int __cdecl __toascii(int _C);
|
||||
_CRTIMP int __cdecl __iscsymf(int _C);
|
||||
_CRTIMP int __cdecl __iscsym(int _C);
|
||||
|
||||
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || !defined (NO_OLDNAMES) || defined (__cplusplus)
|
||||
int __cdecl isblank(int _C);
|
||||
#endif
|
||||
#if __MSVCRT_VERSION__ >= 0xC00
|
||||
_CRTIMP int __cdecl isblank(int _C);
|
||||
_CRTIMP int __cdecl _isblank_l(int _C,_locale_t _Locale);
|
||||
#else
|
||||
int __cdecl isblank(int _C);
|
||||
#endif /* msvcr120 */
|
||||
#endif
|
||||
|
||||
#ifndef _WCTYPE_DEFINED
|
||||
#define _WCTYPE_DEFINED
|
||||
|
||||
int __cdecl iswalpha(wint_t _C);
|
||||
int __cdecl iswupper(wint_t _C);
|
||||
int __cdecl iswlower(wint_t _C);
|
||||
int __cdecl iswdigit(wint_t _C);
|
||||
int __cdecl iswxdigit(wint_t _C);
|
||||
int __cdecl iswspace(wint_t _C);
|
||||
int __cdecl iswpunct(wint_t _C);
|
||||
int __cdecl iswalnum(wint_t _C);
|
||||
int __cdecl iswprint(wint_t _C);
|
||||
int __cdecl iswgraph(wint_t _C);
|
||||
int __cdecl iswcntrl(wint_t _C);
|
||||
int __cdecl iswascii(wint_t _C);
|
||||
_CRTIMP int __cdecl iswalpha(wint_t _C);
|
||||
_CRTIMP int __cdecl iswupper(wint_t _C);
|
||||
_CRTIMP int __cdecl iswlower(wint_t _C);
|
||||
_CRTIMP int __cdecl iswdigit(wint_t _C);
|
||||
_CRTIMP int __cdecl iswxdigit(wint_t _C);
|
||||
_CRTIMP int __cdecl iswspace(wint_t _C);
|
||||
_CRTIMP int __cdecl iswpunct(wint_t _C);
|
||||
_CRTIMP int __cdecl iswalnum(wint_t _C);
|
||||
_CRTIMP int __cdecl iswprint(wint_t _C);
|
||||
_CRTIMP int __cdecl iswgraph(wint_t _C);
|
||||
_CRTIMP int __cdecl iswcntrl(wint_t _C);
|
||||
_CRTIMP int __cdecl iswascii(wint_t _C);
|
||||
#ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
|
||||
int __cdecl isleadbyte(int _C);
|
||||
_CRTIMP int __cdecl isleadbyte(int _C);
|
||||
#endif /* _CRT_USE_WINAPI_FAMILY_DESKTOP_APP */
|
||||
wint_t __cdecl towupper(wint_t _C);
|
||||
wint_t __cdecl towlower(wint_t _C);
|
||||
int __cdecl iswctype(wint_t _C,wctype_t _Type);
|
||||
#if __MSVCRT_VERSION__ >= 0x800 || (__MSVCRT_VERSION__ == 0x700 && _WIN32_WINNT >= 0x0600)
|
||||
/* These are available since msvcr80.dll, and in msvcrt.dll since Vista. */
|
||||
_CRTIMP wint_t __cdecl towupper(wint_t _C);
|
||||
_CRTIMP wint_t __cdecl towlower(wint_t _C);
|
||||
_CRTIMP int __cdecl iswctype(wint_t _C,wctype_t _Type);
|
||||
#if __MSVCRT_VERSION__ >= 0x800 || (__MSVCRT_VERSION__ == 0x600 && _WIN32_WINNT >= 0x0600)
|
||||
/* These are available since msvcr80.dll (__MSVCRT_VERSION__ >= 0x800), and in
|
||||
* msvcrt.dll (__MSVCRT_VERSION__ == 0x600) since Vista (_WIN32_WINNT >= 0x0600). */
|
||||
_CRTIMP int __cdecl _iswalpha_l(wint_t _C,_locale_t _Locale);
|
||||
_CRTIMP int __cdecl _iswupper_l(wint_t _C,_locale_t _Locale);
|
||||
_CRTIMP int __cdecl _iswlower_l(wint_t _C,_locale_t _Locale);
|
||||
|
|
@ -166,12 +169,15 @@ int __cdecl isblank(int _C);
|
|||
_CRTIMP int __cdecl _iswcsym_l(wint_t _C,_locale_t _Locale);
|
||||
#endif
|
||||
#ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
|
||||
int __cdecl is_wctype(wint_t _C,wctype_t _Type);
|
||||
_CRTIMP int __cdecl is_wctype(wint_t _C,wctype_t _Type);
|
||||
#endif /* _CRT_USE_WINAPI_FAMILY_DESKTOP_APP */
|
||||
|
||||
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || !defined (NO_OLDNAMES) || defined (__cplusplus)
|
||||
int __cdecl iswblank(wint_t _C);
|
||||
#endif
|
||||
#if __MSVCRT_VERSION__ >= 0xC00
|
||||
_CRTIMP int __cdecl iswblank(wint_t _C);
|
||||
_CRTIMP int __cdecl _iswblank_l(wint_t _C,_locale_t _Locale);
|
||||
#else
|
||||
int __cdecl iswblank(wint_t _C);
|
||||
#endif /* msvcr120 */
|
||||
#endif
|
||||
|
||||
#ifndef _CTYPE_DISABLE_MACROS
|
||||
|
|
@ -225,7 +231,8 @@ _CRTIMP int __cdecl ___mb_cur_max_func(void);
|
|||
#define iswgraph(_c) (iswctype(_c,_PUNCT|_ALPHA|_DIGIT))
|
||||
#define iswcntrl(_c) (iswctype(_c,_CONTROL))
|
||||
#define iswascii(_c) ((unsigned)(_c) < 0x80)
|
||||
#if __MSVCRT_VERSION__ >= 0x800 || (__MSVCRT_VERSION__ == 0x700 && _WIN32_WINNT >= 0x0600)
|
||||
#define iswblank(_c) (iswctype(_c,_SPACE) || ((_c)=='\t'))
|
||||
#if __MSVCRT_VERSION__ >= 0x800 || (__MSVCRT_VERSION__ == 0x600 && _WIN32_WINNT >= 0x0600)
|
||||
# define _iswalpha_l(_c,_p) (_iswctype_l(_c,_ALPHA,_p))
|
||||
# define _iswupper_l(_c,_p) (_iswctype_l(_c,_UPPER,_p))
|
||||
# define _iswlower_l(_c,_p) (_iswctype_l(_c,_LOWER,_p))
|
||||
|
|
@ -238,7 +245,10 @@ _CRTIMP int __cdecl ___mb_cur_max_func(void);
|
|||
# define _iswgraph_l(_c,_p) (_iswctype_l(_c,_PUNCT|_ALPHA|_DIGIT,_p))
|
||||
# define _iswcntrl_l(_c,_p) (_iswctype_l(_c,_CONTROL,_p))
|
||||
#endif /* __MSVCRT_VERSION__ >= 0x800 */
|
||||
#if __MSVCRT_VERSION__ >= 0xC00
|
||||
#define _iswblank_l(_c,_p) (_iswctype_l(_c,_BLANK,_p) || ((_c)=='\t'))
|
||||
#endif
|
||||
#endif /* __cplusplus */
|
||||
#endif
|
||||
|
||||
#define __iscsymf(_c) (isalpha(_c) || ((_c)=='_'))
|
||||
|
|
@ -253,10 +263,10 @@ _CRTIMP int __cdecl ___mb_cur_max_func(void);
|
|||
|
||||
#ifndef NO_OLDNAMES
|
||||
#ifndef _CTYPE_DEFINED
|
||||
int __cdecl isascii(int _C) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
int __cdecl toascii(int _C) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
int __cdecl iscsymf(int _C) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
int __cdecl iscsym(int _C) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
_CRTIMP int __cdecl isascii(int _C) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
_CRTIMP int __cdecl toascii(int _C) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
_CRTIMP int __cdecl iscsymf(int _C) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
_CRTIMP int __cdecl iscsym(int _C) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
#else
|
||||
#define isascii __isascii
|
||||
#define toascii __toascii
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/d3d10.h
vendored
2
lib/libc/include/any-windows-any/d3d10.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d10.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d10.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/d3d10_1.h
vendored
2
lib/libc/include/any-windows-any/d3d10_1.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d10_1.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d10_1.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d10effect.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d10effect.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d10sdklayers.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d10sdklayers.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d10shader.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d10shader.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/d3d11.h
vendored
2
lib/libc/include/any-windows-any/d3d11.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d11.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/d3d11_1.h
vendored
2
lib/libc/include/any-windows-any/d3d11_1.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d11_1.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11_1.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/d3d11_2.h
vendored
2
lib/libc/include/any-windows-any/d3d11_2.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d11_2.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11_2.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/d3d11_3.h
vendored
2
lib/libc/include/any-windows-any/d3d11_3.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d11_3.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11_3.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/d3d11_4.h
vendored
2
lib/libc/include/any-windows-any/d3d11_4.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d11_4.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11_4.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/d3d11on12.h
vendored
2
lib/libc/include/any-windows-any/d3d11on12.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d11on12.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11on12.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d11sdklayers.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d11sdklayers.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/d3d12.h
vendored
2
lib/libc/include/any-windows-any/d3d12.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d12.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d12.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d12sdklayers.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d12sdklayers.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d12shader.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d12shader.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3d12video.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3d12video.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/d3dcommon.h
vendored
2
lib/libc/include/any-windows-any/d3dcommon.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/d3dcommon.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/d3dcommon.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dbgprop.h
vendored
2
lib/libc/include/any-windows-any/dbgprop.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dbgprop.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dbgprop.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dcommon.h
vendored
2
lib/libc/include/any-windows-any/dcommon.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dcommon.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dcommon.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dcompanimation.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dcompanimation.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/ddstream.h
vendored
2
lib/libc/include/any-windows-any/ddstream.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/ddstream.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/ddstream.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/devicetopology.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/devicetopology.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dimm.h
vendored
2
lib/libc/include/any-windows-any/dimm.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dimm.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dimm.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dinputd.h
vendored
2
lib/libc/include/any-windows-any/dinputd.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dinputd.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dinputd.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
33
lib/libc/include/any-windows-any/direct.h
vendored
33
lib/libc/include/any-windows-any/direct.h
vendored
|
|
@ -25,10 +25,23 @@ extern "C" {
|
|||
};
|
||||
#endif
|
||||
|
||||
#if defined(_DEBUG) && defined(_CRTDBG_MAP_ALLOC)
|
||||
#pragma push_macro("_getcwd")
|
||||
#undef _getcwd
|
||||
#pragma push_macro("_getdcwd")
|
||||
#undef _getdcwd
|
||||
#pragma push_macro("_getdcwd_nolock")
|
||||
#undef _getdcwd_nolock
|
||||
#endif
|
||||
_CRTIMP char *__cdecl _getcwd(char *_DstBuf,int _SizeInBytes);
|
||||
_CRTIMP char *__cdecl _getdcwd(int _Drive,char *_DstBuf,int _SizeInBytes);
|
||||
#if __MSVCRT_VERSION__ >= 0x800
|
||||
char *__cdecl _getdcwd_nolock(int _Drive,char *_DstBuf,int _SizeInBytes);
|
||||
#endif
|
||||
#if defined(_DEBUG) && defined(_CRTDBG_MAP_ALLOC)
|
||||
#pragma pop_macro("_getcwd")
|
||||
#pragma pop_macro("_getdcwd")
|
||||
#pragma pop_macro("_getdcwd_nolock")
|
||||
#endif
|
||||
_CRTIMP int __cdecl _chdir(const char *_Path);
|
||||
_CRTIMP int __cdecl _mkdir(const char *_Path);
|
||||
|
|
@ -46,10 +59,23 @@ extern "C" {
|
|||
|
||||
#ifndef _WDIRECT_DEFINED
|
||||
#define _WDIRECT_DEFINED
|
||||
#if defined(_DEBUG) && defined(_CRTDBG_MAP_ALLOC)
|
||||
#pragma push_macro("_wgetcwd")
|
||||
#undef _wgetcwd
|
||||
#pragma push_macro("_wgetdcwd")
|
||||
#undef _wgetdcwd
|
||||
#pragma push_macro("_wgetdcwd_nolock")
|
||||
#undef _wgetdcwd_nolock
|
||||
#endif
|
||||
_CRTIMP wchar_t *__cdecl _wgetcwd(wchar_t *_DstBuf,int _SizeInWords);
|
||||
_CRTIMP wchar_t *__cdecl _wgetdcwd(int _Drive,wchar_t *_DstBuf,int _SizeInWords);
|
||||
#if __MSVCRT_VERSION__ >= 0x800
|
||||
wchar_t *__cdecl _wgetdcwd_nolock(int _Drive,wchar_t *_DstBuf,int _SizeInWords);
|
||||
#endif
|
||||
#if defined(_DEBUG) && defined(_CRTDBG_MAP_ALLOC)
|
||||
#pragma pop_macro("_wgetcwd")
|
||||
#pragma pop_macro("_wgetdcwd")
|
||||
#pragma pop_macro("_wgetdcwd_nolock")
|
||||
#endif
|
||||
_CRTIMP int __cdecl _wchdir(const wchar_t *_Path);
|
||||
_CRTIMP int __cdecl _wmkdir(const wchar_t *_Path);
|
||||
|
|
@ -60,7 +86,14 @@ extern "C" {
|
|||
|
||||
#define diskfree_t _diskfree_t
|
||||
|
||||
#if defined(_DEBUG) && defined(_CRTDBG_MAP_ALLOC)
|
||||
#pragma push_macro("getcwd")
|
||||
#undef getcwd
|
||||
#endif
|
||||
char *__cdecl getcwd(char *_DstBuf,int _SizeInBytes) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
#if defined(_DEBUG) && defined(_CRTDBG_MAP_ALLOC)
|
||||
#pragma pop_macro("getcwd")
|
||||
#endif
|
||||
int __cdecl chdir(const char *_Path) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
int __cdecl mkdir(const char *_Path) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
int __cdecl rmdir(const char *_Path) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/directmanipulation.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/directmanipulation.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dispex.h
vendored
2
lib/libc/include/any-windows-any/dispex.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dispex.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dispex.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dmodshow.h
vendored
2
lib/libc/include/any-windows-any/dmodshow.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dmodshow.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dmodshow.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/docobj.h
vendored
2
lib/libc/include/any-windows-any/docobj.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/docobj.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/docobj.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/docobjectservice.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/docobjectservice.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/documenttarget.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/documenttarget.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/downloadmgr.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/downloadmgr.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/drmexternals.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/drmexternals.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dvdif.h
vendored
2
lib/libc/include/any-windows-any/dvdif.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dvdif.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dvdif.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dwrite.h
vendored
2
lib/libc/include/any-windows-any/dwrite.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dwrite.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dwrite.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dwrite_1.h
vendored
2
lib/libc/include/any-windows-any/dwrite_1.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dwrite_1.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dwrite_1.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dwrite_2.h
vendored
2
lib/libc/include/any-windows-any/dwrite_2.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dwrite_2.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dwrite_2.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
1054
lib/libc/include/any-windows-any/dwrite_3.h
vendored
1054
lib/libc/include/any-windows-any/dwrite_3.h
vendored
File diff suppressed because it is too large
Load diff
2
lib/libc/include/any-windows-any/dxgi.h
vendored
2
lib/libc/include/any-windows-any/dxgi.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxgi.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxgi.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dxgi1_2.h
vendored
2
lib/libc/include/any-windows-any/dxgi1_2.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxgi1_2.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxgi1_2.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dxgi1_3.h
vendored
2
lib/libc/include/any-windows-any/dxgi1_3.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxgi1_3.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxgi1_3.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dxgi1_4.h
vendored
2
lib/libc/include/any-windows-any/dxgi1_4.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxgi1_4.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxgi1_4.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dxgi1_5.h
vendored
2
lib/libc/include/any-windows-any/dxgi1_5.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxgi1_5.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxgi1_5.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dxgi1_6.h
vendored
2
lib/libc/include/any-windows-any/dxgi1_6.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxgi1_6.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxgi1_6.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxgicommon.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxgicommon.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dxgidebug.h
vendored
2
lib/libc/include/any-windows-any/dxgidebug.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxgidebug.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxgidebug.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxgiformat.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxgiformat.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dxgitype.h
vendored
2
lib/libc/include/any-windows-any/dxgitype.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxgitype.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxgitype.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/dxva2api.h
vendored
2
lib/libc/include/any-windows-any/dxva2api.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxva2api.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxva2api.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
4
lib/libc/include/any-windows-any/dxvahd.h
vendored
4
lib/libc/include/any-windows-any/dxvahd.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/dxvahd.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/dxvahd.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
@ -415,7 +415,7 @@ typedef struct _DXVAHDSW_CALLBACKS {
|
|||
PDXVAHDSW_DestroyVideoProcessor DestroyVideoProcessor;
|
||||
} DXVAHDSW_CALLBACKS;
|
||||
|
||||
HRESULT DXVAHD_CreateDevice(IDirect3DDevice9Ex *pD3DDevice,const DXVAHD_CONTENT_DESC *pContentDesc,DXVAHD_DEVICE_USAGE Usage,PDXVAHDSW_Plugin pPlugin,IDXVAHD_Device **ppDevice);
|
||||
HRESULT WINAPI DXVAHD_CreateDevice(IDirect3DDevice9Ex *pD3DDevice,const DXVAHD_CONTENT_DESC *pContentDesc,DXVAHD_DEVICE_USAGE Usage,PDXVAHDSW_Plugin pPlugin,IDXVAHD_Device **ppDevice);
|
||||
|
||||
/*****************************************************************************
|
||||
* IDXVAHD_Device interface
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/endpointvolume.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/endpointvolume.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/evr.h
vendored
2
lib/libc/include/any-windows-any/evr.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/evr.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/evr.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/evr9.h
vendored
2
lib/libc/include/any-windows-any/evr9.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/evr9.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/evr9.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/exdisp.h
vendored
2
lib/libc/include/any-windows-any/exdisp.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/exdisp.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/exdisp.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
5
lib/libc/include/any-windows-any/fibersapi.h
vendored
5
lib/libc/include/any-windows-any/fibersapi.h
vendored
|
|
@ -25,6 +25,11 @@ extern "C" {
|
|||
WINBASEAPI WINBOOL WINAPI FlsFree (DWORD dwFlsIndex);
|
||||
WINBASEAPI WINBOOL WINAPI IsThreadAFiber (VOID);
|
||||
#endif
|
||||
|
||||
#if (_WIN32_WINNT >= _WIN32_WINNT_WIN10)
|
||||
WINBASEAPI PVOID WINAPI FlsGetValue2(DWORD dwTlsIndex);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/filter.h
vendored
2
lib/libc/include/any-windows-any/filter.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/filter.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/filter.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/fsrm.h
vendored
2
lib/libc/include/any-windows-any/fsrm.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/fsrm.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/fsrm.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/fsrmenums.h
vendored
2
lib/libc/include/any-windows-any/fsrmenums.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/fsrmenums.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/fsrmenums.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/fsrmquota.h
vendored
2
lib/libc/include/any-windows-any/fsrmquota.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/fsrmquota.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/fsrmquota.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/fsrmreports.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/fsrmreports.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/fsrmscreen.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/fsrmscreen.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
2
lib/libc/include/any-windows-any/fusion.h
vendored
2
lib/libc/include/any-windows-any/fusion.h
vendored
|
|
@ -1,4 +1,4 @@
|
|||
/*** Autogenerated by WIDL 9.20 from include/fusion.idl - Do not edit ***/
|
||||
/*** Autogenerated by WIDL 10.0-rc1 from include/fusion.idl - Do not edit ***/
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef __REQUIRED_RPCNDR_H_VERSION__
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue