Sync with trunk r64509.
[reactos.git] / include / crt / crtdefs.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 #include <_mingw.h>
7 #include <specstrings.h>
8
9 #ifndef _INC_CRTDEFS
10 #define _INC_CRTDEFS
11
12 #ifdef _USE_32BIT_TIME_T
13 #ifdef _WIN64
14 #error You cannot use 32-bit time_t (_USE_32BIT_TIME_T) with _WIN64
15 #undef _USE_32BIT_TIME_T
16 #endif
17 #else
18 #if _INTEGRAL_MAX_BITS < 64
19 #define _USE_32BIT_TIME_T
20 #endif
21 #endif
22
23 #undef _CRT_PACKING
24 #define _CRT_PACKING 8
25 #pragma pack(push,_CRT_PACKING)
26
27 /* Disable non-ANSI C definitions if compiling with __STDC__ */
28 //HACK: Disabled
29 //#if __STDC__
30 //#define NO_OLDNAMES
31 //#endif
32
33
34 /** Properties ***************************************************************/
35
36 #ifndef _CRT_STRINGIZE
37 #define __CRT_STRINGIZE(_Value) #_Value
38 #define _CRT_STRINGIZE(_Value) __CRT_STRINGIZE(_Value)
39 #endif
40
41 #ifndef _CRT_WIDE
42 #define __CRT_WIDE(_String) L ## _String
43 #define _CRT_WIDE(_String) __CRT_WIDE(_String)
44 #endif
45
46 #ifndef _W64
47 #if !defined(_midl) && defined(_X86_) && _MSC_VER >= 1300
48 #define _W64 __w64
49 #else
50 #define _W64
51 #endif
52 #endif
53
54 #ifndef _CRTIMP
55 #ifdef CRTDLL /* Defined for ntdll, crtdll, msvcrt, etc */
56 #define _CRTIMP
57 #elif defined(_DLL)
58 #define _CRTIMP __declspec(dllimport)
59 #else /* !CRTDLL && !_DLL */
60 #define _CRTIMP
61 #endif /* CRTDLL || _DLL */
62 #endif /* !_CRTIMP */
63
64 //#define _CRT_ALTERNATIVE_INLINES
65
66 #ifndef _CRTIMP_ALT
67 #ifdef _DLL
68 #ifdef _CRT_ALTERNATIVE_INLINES
69 #define _CRTIMP_ALT
70 #else
71 #define _CRTIMP_ALT _CRTIMP
72 #define _CRT_ALTERNATIVE_IMPORTED
73 #endif
74 #else
75 #define _CRTIMP_ALT
76 #endif
77 #endif
78
79 #ifndef _CRTDATA
80 #ifdef _M_CEE_PURE
81 #define _CRTDATA(x) x
82 #else
83 #define _CRTDATA(x) _CRTIMP x
84 #endif
85 #endif
86
87 #ifndef _CRTIMP2
88 #define _CRTIMP2 _CRTIMP
89 #endif
90
91 #ifndef _CRTIMP_PURE
92 #define _CRTIMP_PURE _CRTIMP
93 #endif
94
95 #ifndef _CRTIMP_ALTERNATIVE
96 #define _CRTIMP_ALTERNATIVE _CRTIMP
97 #define _CRT_ALTERNATIVE_IMPORTED
98 #endif
99
100 #ifndef _CRTIMP_NOIA64
101 #ifdef __ia64__
102 #define _CRTIMP_NOIA64
103 #else
104 #define _CRTIMP_NOIA64 _CRTIMP
105 #endif
106 #endif
107
108 #ifndef _MRTIMP2
109 #define _MRTIMP2 _CRTIMP
110 #endif
111
112 #ifndef _MCRTIMP
113 #define _MCRTIMP _CRTIMP
114 #endif
115
116 #ifndef _PGLOBAL
117 #define _PGLOBAL
118 #endif
119
120 #ifndef _AGLOBAL
121 #define _AGLOBAL
122 #endif
123
124 #ifndef _CONST_RETURN
125 #define _CONST_RETURN
126 #endif
127
128 #ifndef UNALIGNED
129 #if defined(__ia64__) || defined(__x86_64) || defined(__arm__)
130 #define UNALIGNED __unaligned
131 #else
132 #define UNALIGNED
133 #endif
134 #endif
135
136 #ifndef _CRT_ALIGN
137 #if defined (__midl) || defined(__WIDL__)
138 #define _CRT_ALIGN(x)
139 #elif defined(_MSC_VER)
140 #define _CRT_ALIGN(x) __declspec(align(x))
141 #else
142 #define _CRT_ALIGN(x) __attribute__ ((aligned(x)))
143 #endif
144 #endif
145
146 #ifndef _CRTNOALIAS
147 #define _CRTNOALIAS
148 #endif
149
150 #ifndef _CRTRESTRICT
151 #define _CRTRESTRICT
152 #endif
153
154 #ifndef __CRTDECL
155 #define __CRTDECL __cdecl
156 #endif
157
158 #ifndef _CRT_UNUSED
159 #define _CRT_UNUSED(x) (void)x
160 #endif
161
162 #ifndef _CONST_RETURN
163 #ifdef __cplusplus
164 #define _CONST_RETURN const
165 #define _CRT_CONST_CORRECT_OVERLOADS
166 #else
167 #define _CONST_RETURN
168 #endif
169 #endif
170
171 #define __crt_typefix(ctype)
172
173
174 /** Deprecated ***************************************************************/
175
176 #ifdef __GNUC__
177 #define _CRT_DEPRECATE_TEXT(_Text) __attribute__ ((deprecated))
178 #elif defined(_MSC_VER)
179 #define _CRT_DEPRECATE_TEXT(_Text) __declspec(deprecated(_Text))
180 #else
181 #define _CRT_DEPRECATE_TEXT(_Text)
182 #endif
183
184 #ifndef __STDC_WANT_SECURE_LIB__
185 #define __STDC_WANT_SECURE_LIB__ 1
186 #endif
187
188 #ifndef _CRT_INSECURE_DEPRECATE
189 # ifdef _CRT_SECURE_NO_DEPRECATE
190 # define _CRT_INSECURE_DEPRECATE(_Replacement)
191 # else
192 # define _CRT_INSECURE_DEPRECATE(_Replacement) \
193 _CRT_DEPRECATE_TEXT("This may be unsafe, Try " #_Replacement " instead!")
194 # endif
195 #endif
196
197 #ifndef _CRT_INSECURE_DEPRECATE_CORE
198 # ifdef _CRT_SECURE_NO_DEPRECATE_CORE
199 # define _CRT_INSECURE_DEPRECATE_CORE(_Replacement)
200 # else
201 # define _CRT_INSECURE_DEPRECATE_CORE(_Replacement) \
202 _CRT_DEPRECATE_TEXT("This may be unsafe, Try " #_Replacement " instead! Enable _CRT_SECURE_NO_DEPRECATE to avoid thie warning.")
203 # endif
204 #endif
205
206 #ifndef _CRT_NONSTDC_DEPRECATE
207 # ifdef _CRT_NONSTDC_NO_DEPRECATE
208 # define _CRT_NONSTDC_DEPRECATE(_Replacement)
209 # else
210 # define _CRT_NONSTDC_DEPRECATE(_Replacement) \
211 _CRT_DEPRECATE_TEXT("Deprecated POSIX name, Try " #_Replacement " instead!")
212 # endif
213 #endif
214
215 #ifndef _CRT_INSECURE_DEPRECATE_MEMORY
216 #define _CRT_INSECURE_DEPRECATE_MEMORY(_Replacement)
217 #endif
218
219 #ifndef _CRT_INSECURE_DEPRECATE_GLOBALS
220 #define _CRT_INSECURE_DEPRECATE_GLOBALS(_Replacement)
221 #endif
222
223 #ifndef _CRT_MANAGED_HEAP_DEPRECATE
224 #define _CRT_MANAGED_HEAP_DEPRECATE
225 #endif
226
227 #ifndef _CRT_OBSOLETE
228 #define _CRT_OBSOLETE(_NewItem)
229 #endif
230
231
232 /** Constants ****************************************************************/
233
234 #define _ARGMAX 100
235
236 #ifndef _TRUNCATE
237 #define _TRUNCATE ((size_t)-1)
238 #endif
239
240 #ifndef __REACTOS__
241 #define __STDC_SECURE_LIB__ 200411L
242 #define __GOT_SECURE_LIB__ __STDC_SECURE_LIB__
243 #define _SECURECRT_FILL_BUFFER_PATTERN 0xFD
244 #endif
245
246
247 /** Type definitions *********************************************************/
248
249 #ifdef __cplusplus
250 extern "C" {
251 #endif
252
253 #ifndef _SIZE_T_DEFINED
254 #define _SIZE_T_DEFINED
255 #undef size_t
256 #ifdef _WIN64
257 #if defined(__GNUC__) && defined(__STRICT_ANSI__)
258 typedef unsigned int size_t __attribute__ ((mode (DI)));
259 #else
260 __MINGW_EXTENSION typedef unsigned __int64 size_t;
261 #endif
262 #else
263 typedef unsigned int size_t;
264 #endif
265 #endif
266
267 #ifndef _INTPTR_T_DEFINED
268 #define _INTPTR_T_DEFINED
269 #ifndef __intptr_t_defined
270 #define __intptr_t_defined
271 #undef intptr_t
272 #ifdef _WIN64
273 #if defined(__GNUC__) && defined(__STRICT_ANSI__)
274 typedef int intptr_t __attribute__ ((mode (DI)));
275 #else
276 __MINGW_EXTENSION typedef __int64 intptr_t;
277 #endif
278 #else
279 typedef int intptr_t;
280 #endif
281 #endif
282 #endif
283
284 #ifndef _UINTPTR_T_DEFINED
285 #define _UINTPTR_T_DEFINED
286 #ifndef __uintptr_t_defined
287 #define __uintptr_t_defined
288 #undef uintptr_t
289 #ifdef _WIN64
290 #if defined(__GNUC__) && defined(__STRICT_ANSI__)
291 typedef unsigned int uintptr_t __attribute__ ((mode (DI)));
292 #else
293 __MINGW_EXTENSION typedef unsigned __int64 uintptr_t;
294 #endif
295 #else
296 typedef unsigned int uintptr_t;
297 #endif
298 #endif
299 #endif
300
301 #ifndef _PTRDIFF_T_DEFINED
302 #define _PTRDIFF_T_DEFINED
303 #ifndef _PTRDIFF_T_
304 #undef ptrdiff_t
305 #ifdef _WIN64
306 #if defined(__GNUC__) && defined(__STRICT_ANSI__)
307 typedef int ptrdiff_t __attribute__ ((mode (DI)));
308 #else
309 __MINGW_EXTENSION typedef __int64 ptrdiff_t;
310 #endif
311 #else
312 typedef int ptrdiff_t;
313 #endif
314 #endif
315 #endif
316
317 #ifndef _WCHAR_T_DEFINED
318 #define _WCHAR_T_DEFINED
319 #if defined(_MSC_VER) || !defined(__cplusplus)
320 typedef unsigned short wchar_t;
321 #endif
322 #endif
323
324 #ifndef _WCTYPE_T_DEFINED
325 #define _WCTYPE_T_DEFINED
326 typedef unsigned short wint_t;
327 typedef unsigned short wctype_t;
328 #endif
329
330 #ifdef __GNUC__
331 #ifndef __GNUC_VA_LIST
332 #define __GNUC_VA_LIST
333 typedef __builtin_va_list __gnuc_va_list;
334 #endif
335 #endif
336
337 #ifndef _VA_LIST_DEFINED
338 #define _VA_LIST_DEFINED
339 #if defined(__GNUC__)
340 typedef __gnuc_va_list va_list;
341 #elif defined(_MSC_VER)
342 typedef _Writable_bytes_(_Inexpressible_("length varies")) char * va_list;
343 #endif
344 #endif
345
346 #ifndef _ERRCODE_DEFINED
347 #define _ERRCODE_DEFINED
348 typedef int errcode;
349 typedef int errno_t;
350 #endif
351
352 #ifndef _TIME32_T_DEFINED
353 #define _TIME32_T_DEFINED
354 typedef long __time32_t;
355 #endif
356
357 #ifndef _TIME64_T_DEFINED
358 #define _TIME64_T_DEFINED
359 #if _INTEGRAL_MAX_BITS >= 64
360 __MINGW_EXTENSION typedef __int64 __time64_t;
361 #endif
362 #endif
363
364 #ifndef _TIME_T_DEFINED
365 #define _TIME_T_DEFINED
366 #ifdef _USE_32BIT_TIME_T
367 typedef __time32_t time_t;
368 #else
369 typedef __time64_t time_t;
370 #endif
371 #endif
372
373 struct threadmbcinfostruct;
374 typedef struct threadmbcinfostruct *pthreadmbcinfo;
375
376 #ifndef _TAGLC_ID_DEFINED
377 #define _TAGLC_ID_DEFINED
378 typedef struct tagLC_ID {
379 unsigned short wLanguage;
380 unsigned short wCountry;
381 unsigned short wCodePage;
382 } LC_ID,*LPLC_ID;
383 #endif
384
385 #ifndef _THREADLOCALEINFO
386 #define _THREADLOCALEINFO
387 typedef struct threadlocaleinfostruct {
388 int refcount;
389 unsigned int lc_codepage;
390 unsigned int lc_collate_cp;
391 unsigned long lc_handle[6];
392 LC_ID lc_id[6];
393 struct {
394 char *locale;
395 wchar_t *wlocale;
396 int *refcount;
397 int *wrefcount;
398 } lc_category[6];
399 int lc_clike;
400 int mb_cur_max;
401 int *lconv_intl_refcount;
402 int *lconv_num_refcount;
403 int *lconv_mon_refcount;
404 struct lconv *lconv;
405 int *ctype1_refcount;
406 unsigned short *ctype1;
407 const unsigned short *pctype;
408 const unsigned char *pclmap;
409 const unsigned char *pcumap;
410 struct __lc_time_data *lc_time_curr;
411 } threadlocinfo, *pthreadlocinfo;
412 #endif
413
414 struct __lc_time_data;
415
416 typedef struct localeinfo_struct {
417 pthreadlocinfo locinfo;
418 pthreadmbcinfo mbcinfo;
419 }_locale_tstruct,*_locale_t;
420
421 #ifdef __cplusplus
422 }
423 #endif
424
425 #pragma pack(pop)
426
427 #endif /* !_INC_CRTDEFS */