[SDK][NDK] Move SYSTEM_POWER_INFORMATION to ntpoapi.h (#869)
[reactos.git] / sdk / include / crt / _mingw.h
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
7 #ifndef _INC_MINGW
8 #define _INC_MINGW
9
10 #define _INTEGRAL_MAX_BITS 64
11
12 #ifndef MINGW64
13 #define MINGW64
14 #define MINGW64_VERSION 1.0
15 #define MINGW64_VERSION_MAJOR 1
16 #define MINGW64_VERSION_MINOR 0
17 #define MINGW64_VERSION_STATE "alpha"
18 #endif
19
20 #ifdef _WIN64
21 #ifdef __stdcall
22 #undef __stdcall
23 #endif
24 #define __stdcall
25 #endif
26
27 #ifdef __GNUC__
28 /* These compilers do support __declspec */
29 # if !defined(__MINGW32__) && !defined(__MINGW64__) && !defined(__CYGWIN32__)
30 # define __declspec(x) __attribute__((x))
31 # endif
32 #endif
33
34 #ifdef _MSC_VER
35 #define __restrict__ /* nothing */
36 #endif
37
38 #if defined (__GNUC__) && defined (__GNUC_MINOR__)
39 #define __MINGW_GNUC_PREREQ(major, minor) \
40 (__GNUC__ > (major) \
41 || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)))
42 #else
43 #define __MINGW_GNUC_PREREQ(major, minor) 0
44 #endif
45
46 #if defined (_MSC_VER)
47 #define __MINGW_MSC_PREREQ(major, minor) (_MSC_VER >= (major * 100 + minor * 10))
48 #else
49 #define __MINGW_MSC_PREREQ(major, minor) 0
50 #endif
51
52 #define USE___UUIDOF 0
53
54 #ifdef __cplusplus
55 # define __CRT_INLINE inline
56 #elif defined(_MSC_VER)
57 # define __CRT_INLINE __inline
58 #elif defined(__GNUC__)
59 # if defined(__clang__) || ( __MINGW_GNUC_PREREQ(4, 3) && __STDC_VERSION__ >= 199901L)
60 # define __CRT_INLINE extern inline __attribute__((__always_inline__,__gnu_inline__))
61 # else
62 # define __CRT_INLINE extern __inline__ __attribute__((__always_inline__))
63 # endif
64 #endif
65
66 #ifdef __cplusplus
67 # define __UNUSED_PARAM(x)
68 #else
69 # ifdef __GNUC__
70 # define __UNUSED_PARAM(x) x __attribute__ ((__unused__))
71 # else
72 # define __UNUSED_PARAM(x) x
73 # endif
74 #endif
75
76 #ifdef __cplusplus
77 # define __unaligned
78 #else
79 # ifdef __GNUC__
80 # define __unaligned
81 # elif defined(_MSC_VER) && !defined(_M_IA64) && !defined(_M_AMD64)
82 # define __unaligned
83 # else
84 # define __unaligned
85 # endif
86 #endif
87
88 #ifdef __GNUC__
89 #define __MINGW_ATTRIB_NORETURN __attribute__ ((__noreturn__))
90 #define __MINGW_ATTRIB_CONST __attribute__ ((__const__))
91 #elif __MINGW_MSC_PREREQ(12, 0)
92 #define __MINGW_ATTRIB_NORETURN __declspec(noreturn)
93 #define __MINGW_ATTRIB_CONST
94 #else
95 #define __MINGW_ATTRIB_NORETURN
96 #define __MINGW_ATTRIB_CONST
97 #endif
98
99 #if __MINGW_GNUC_PREREQ (3, 0)
100 #define __MINGW_ATTRIB_MALLOC __attribute__ ((__malloc__))
101 #define __MINGW_ATTRIB_PURE __attribute__ ((__pure__))
102 #elif __MINGW_MSC_PREREQ(14, 0)
103 #define __MINGW_ATTRIB_MALLOC __declspec(noalias) __declspec(restrict)
104 #define __MINGW_ATTRIB_PURE
105 #else
106 #define __MINGW_ATTRIB_MALLOC
107 #define __MINGW_ATTRIB_PURE
108 #endif
109
110 /* Attribute `nonnull' was valid as of gcc 3.3. We don't use GCC's
111 variadiac macro facility, because variadic macros cause syntax
112 errors with --traditional-cpp. */
113 #if __MINGW_GNUC_PREREQ (3, 3)
114 #define __MINGW_ATTRIB_NONNULL(arg) __attribute__ ((__nonnull__ (arg)))
115 #else
116 #define __MINGW_ATTRIB_NONNULL(arg)
117 #endif /* GNUC >= 3.3 */
118
119 #ifdef __GNUC__
120 #define __MINGW_ATTRIB_UNUSED __attribute__ ((__unused__))
121 #else
122 #define __MINGW_ATTRIB_UNUSED
123 #endif /* ATTRIBUTE_UNUSED */
124
125 #if __MINGW_GNUC_PREREQ (3, 1)
126 #define __MINGW_ATTRIB_DEPRECATED __attribute__ ((__deprecated__))
127 #elif __MINGW_MSC_PREREQ(12, 0)
128 #define __MINGW_ATTRIB_DEPRECATED __declspec(deprecated)
129 #else
130 #define __MINGW_ATTRIB_DEPRECATED
131 #endif
132
133 #if __MINGW_GNUC_PREREQ (3, 3)
134 #define __MINGW_NOTHROW __attribute__ ((__nothrow__))
135 #elif __MINGW_MSC_PREREQ(12, 0) && defined (__cplusplus)
136 #define __MINGW_NOTHROW __declspec(nothrow)
137 #else
138 #define __MINGW_NOTHROW
139 #endif
140
141 /* TODO: Mark (almost) all CRT functions as __MINGW_NOTHROW. This will
142 allow GCC to optimize away some EH unwind code, at least in DW2 case. */
143
144 #ifndef __MINGW_EXTENSION
145 #if defined(__GNUC__) || defined(__GNUG__)
146 #define __MINGW_EXTENSION __extension__
147 #else
148 #define __MINGW_EXTENSION
149 #endif
150 #endif
151
152 #ifndef __MSVCRT_VERSION__
153 /* High byte is the major version, low byte is the minor. */
154 # define __MSVCRT_VERSION__ 0x0700
155 #endif
156
157 //#ifndef WINVER
158 //#define WINVER 0x0502
159 //#endif
160
161 //#ifndef _WIN32_WINNT
162 //#define _WIN32_WINNT 0x502
163 //#endif
164
165 #ifdef __GNUC__
166 #define __int8 char
167 #define __int16 short
168 #define __int32 int
169 #define __int64 long long
170 #ifdef _WIN64
171 typedef int __int128 __attribute__ ((mode (TI)));
172 # endif
173 # define __ptr32
174 # define __ptr64
175 # if ( __MINGW_GNUC_PREREQ(4, 3) && __STDC_VERSION__ >= 199901L)
176 # define __forceinline extern inline __attribute__((__always_inline__,__gnu_inline__))
177 # else
178 # define __forceinline extern __inline__ __attribute__((__always_inline__))
179 # endif
180 #endif
181
182 #ifdef __cplusplus
183 #ifndef __nothrow
184 #define __nothrow __declspec(nothrow)
185 #endif
186 #else
187 #ifndef __nothrow
188 #define __nothrow
189 #endif
190 #endif
191
192 #if defined(_WIN64) && !defined(_MSC_VER)
193 #undef USE_MINGW_SETJMP_TWO_ARGS
194 #define USE_MINGW_SETJMP_TWO_ARGS
195 #endif
196
197 /* Disable deprecation for now! */
198 #define _CRT_SECURE_NO_DEPRECATE
199 #define _CRT_SECURE_NO_DEPRECATE_CORE
200 #ifdef __WINESRC__
201 #define _CRT_NONSTDC_NO_DEPRECATE
202 #endif
203
204 #define __crt_typefix(ctype)
205
206 #ifndef _CRT_UNUSED
207 #define _CRT_UNUSED(x) (void)x
208 #endif
209
210 #ifdef _MSC_VER
211 #define ATTRIB_NORETURN
212 #define _DECLSPEC_INTRIN_TYPE __declspec(intrin_type)
213 #else
214 #define ATTRIB_NORETURN DECLSPEC_NORETURN
215 #define _DECLSPEC_INTRIN_TYPE
216 #endif
217
218 /* Define to a function attribute for Microsoft hotpatch assembly prefix. */
219 #ifndef DECLSPEC_HOTPATCH
220 #if defined(_MSC_VER) || defined(__clang__)
221 /* FIXME: http://llvm.org/bugs/show_bug.cgi?id=20888 */
222 #define DECLSPEC_HOTPATCH
223 #else
224 #define DECLSPEC_HOTPATCH __attribute__((__ms_hook_prologue__))
225 #endif
226 #endif /* DECLSPEC_HOTPATCH */
227
228 #include "_mingw_mac.h"
229
230 #endif /* !_INC_MINGW */
231