Mercurial > games > semicongine
comparison fuhtark_test/include/winapi/windows.h @ 1500:91c8c3b7cbf0
add: futhark tests for generating vulkan api
| author | sam <sam@basx.dev> |
|---|---|
| date | Wed, 26 Nov 2025 21:36:48 +0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1499:1f58458b7ef7 | 1500:91c8c3b7cbf0 |
|---|---|
| 1 /** | |
| 2 * This file has no copyright assigned and is placed in the Public Domain. | |
| 3 * This file is part of the w64 mingw-runtime package. | |
| 4 * No warranty is given; refer to the file DISCLAIMER within this package. | |
| 5 */ | |
| 6 #ifndef _WINDOWS_ | |
| 7 #define _WINDOWS_ | |
| 8 | |
| 9 #ifndef WINVER | |
| 10 #define WINVER 0x0502 | |
| 11 #endif | |
| 12 | |
| 13 #include <_mingw.h> | |
| 14 | |
| 15 #ifndef _INC_WINDOWS | |
| 16 #define _INC_WINDOWS | |
| 17 | |
| 18 #if defined(RC_INVOKED) && !defined(NOWINRES) | |
| 19 | |
| 20 #include <winresrc.h> | |
| 21 #else | |
| 22 | |
| 23 #ifdef RC_INVOKED | |
| 24 #define NOATOM | |
| 25 #define NOGDI | |
| 26 #define NOGDICAPMASKS | |
| 27 #define NOMETAFILE | |
| 28 #define NOMINMAX | |
| 29 #define NOMSG | |
| 30 #define NOOPENFILE | |
| 31 #define NORASTEROPS | |
| 32 #define NOSCROLL | |
| 33 #define NOSOUND | |
| 34 #define NOSYSMETRICS | |
| 35 #define NOTEXTMETRIC | |
| 36 #define NOWH | |
| 37 #define NOCOMM | |
| 38 #define NOKANJI | |
| 39 #define NOCRYPT | |
| 40 #define NOMCX | |
| 41 #endif | |
| 42 | |
| 43 #if !defined(I_X86_) && !defined(_IA64_) && !defined(_AMD64_) && (defined(_X86_) && !defined(__x86_64)) | |
| 44 #define I_X86_ | |
| 45 #endif | |
| 46 | |
| 47 #if !defined(I_X86_) && !defined(_IA64_) && !defined(_AMD64_) && defined(__x86_64) | |
| 48 #define _AMD64_ | |
| 49 #endif | |
| 50 | |
| 51 #if !defined(I_X86_) && !(defined(_X86_) && !defined(__x86_64)) && !defined(_AMD64_) && defined(__ia64__) | |
| 52 #if !defined(_IA64_) | |
| 53 #define _IA64_ | |
| 54 #endif | |
| 55 #endif | |
| 56 | |
| 57 #ifndef RC_INVOKED | |
| 58 #include <excpt.h> | |
| 59 #include <stdarg.h> | |
| 60 #endif | |
| 61 | |
| 62 #include <windef.h> | |
| 63 #include <winbase.h> | |
| 64 #include <wingdi.h> | |
| 65 #include <winuser.h> | |
| 66 #include <winnls.h> | |
| 67 #include <wincon.h> | |
| 68 #include <winver.h> | |
| 69 #include <winreg.h> | |
| 70 #include <winnetwk.h> | |
| 71 | |
| 72 #ifndef WIN32_LEAN_AND_MEAN | |
| 73 #include <cderr.h> | |
| 74 #include <dde.h> | |
| 75 #include <ddeml.h> | |
| 76 #include <dlgs.h> | |
| 77 #include <lzexpand.h> | |
| 78 #include <mmsystem.h> | |
| 79 #include <nb30.h> | |
| 80 #include <rpc.h> | |
| 81 #include <shellapi.h> | |
| 82 #include <winperf.h> | |
| 83 #include <winsock.h> | |
| 84 #ifndef NOCRYPT | |
| 85 #include <wincrypt.h> | |
| 86 #include <winefs.h> | |
| 87 #include <winscard.h> | |
| 88 #endif | |
| 89 | |
| 90 #ifndef NOUSER | |
| 91 #ifndef NOGDI | |
| 92 #include <winspool.h> | |
| 93 #ifdef INC_OLE1 | |
| 94 #include <ole.h> | |
| 95 #else | |
| 96 #include <ole2.h> | |
| 97 #endif | |
| 98 #include <commdlg.h> | |
| 99 #endif | |
| 100 #endif | |
| 101 #endif | |
| 102 | |
| 103 #include <stralign.h> | |
| 104 | |
| 105 #ifdef INC_OLE2 | |
| 106 #include <ole2.h> | |
| 107 #endif | |
| 108 | |
| 109 #ifndef NOSERVICE | |
| 110 #include <winsvc.h> | |
| 111 #endif | |
| 112 | |
| 113 #ifndef NOMCX | |
| 114 #include <mcx.h> | |
| 115 #endif | |
| 116 | |
| 117 #ifndef NOIME | |
| 118 #include <imm.h> | |
| 119 #endif | |
| 120 | |
| 121 #endif | |
| 122 #endif | |
| 123 #endif |
