d3dx9: Use parameter data for the first constant only in d3dx_set_shader_const_state().
[wine.git] / dlls / msvcrt / msvcrt.h
blobeba545f4bfe25729184b896c1a0632985e2eac02
1 /*
2 * Copyright 2001 Jon Griffiths
3 * Copyright 2004 Dimitrie O. Paun
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 * NOTES
20 * Naming conventions
21 * - Symbols are prefixed with MSVCRT_ if they conflict
22 * with libc symbols
23 * - Internal symbols are usually prefixed by msvcrt_.
24 * - Exported symbols that are not present in the public
25 * headers are usually kept the same as the original.
26 * Other conventions
27 * - To avoid conflicts with the standard C library,
28 * no msvcrt headers are included in the implementation.
29 * - Instead, symbols are duplicated here, prefixed with
30 * MSVCRT_, as explained above.
31 * - To avoid inconsistencies, a test for each symbol is
32 * added into tests/headers.c. Please always add a
33 * corresponding test when you add a new symbol!
36 #ifndef __WINE_MSVCRT_H
37 #define __WINE_MSVCRT_H
39 #include <stdarg.h>
41 #include "windef.h"
42 #include "winbase.h"
44 #define MSVCRT_LONG_MAX 0x7fffffff
45 #define MSVCRT_LONG_MIN (-MSVCRT_LONG_MAX-1)
46 #define MSVCRT_ULONG_MAX 0xffffffff
47 #define MSVCRT_I64_MAX (((__int64)0x7fffffff << 32) | 0xffffffff)
48 #define MSVCRT_I64_MIN (-MSVCRT_I64_MAX-1)
49 #define MSVCRT_UI64_MAX (((unsigned __int64)0xffffffff << 32) | 0xffffffff)
50 #define MSVCRT_MB_LEN_MAX 5
51 #ifdef _WIN64
52 #define MSVCRT_SIZE_MAX MSVCRT_UI64_MAX
53 #else
54 #define MSVCRT_SIZE_MAX MSVCRT_ULONG_MAX
55 #endif
57 #define MSVCRT__MAX_DRIVE 3
58 #define MSVCRT__MAX_DIR 256
59 #define MSVCRT__MAX_FNAME 256
60 #define MSVCRT__MAX_EXT 256
62 typedef unsigned char MSVCRT_bool;
63 typedef unsigned short MSVCRT_wchar_t;
64 typedef unsigned short MSVCRT_wint_t;
65 typedef unsigned short MSVCRT_wctype_t;
66 typedef unsigned short MSVCRT__ino_t;
67 typedef unsigned int MSVCRT__fsize_t;
68 typedef int MSVCRT_long;
69 typedef unsigned int MSVCRT_ulong;
70 typedef __int64 MSVCRT_longlong;
71 #ifdef _WIN64
72 typedef unsigned __int64 MSVCRT_size_t;
73 typedef __int64 MSVCRT_intptr_t;
74 typedef unsigned __int64 MSVCRT_uintptr_t;
75 #else
76 typedef unsigned long MSVCRT_size_t;
77 typedef long MSVCRT_intptr_t;
78 typedef unsigned long MSVCRT_uintptr_t;
79 #endif
80 typedef unsigned int MSVCRT__dev_t;
81 typedef int MSVCRT__off_t;
82 typedef int MSVCRT_clock_t;
83 typedef int MSVCRT___time32_t;
84 typedef __int64 DECLSPEC_ALIGN(8) MSVCRT___time64_t;
85 typedef __int64 DECLSPEC_ALIGN(8) MSVCRT_fpos_t;
86 typedef int MSVCRT_mbstate_t;
88 typedef void (__cdecl *MSVCRT_terminate_handler)(void);
89 typedef void (__cdecl *MSVCRT_terminate_function)(void);
90 typedef void (__cdecl *MSVCRT_unexpected_handler)(void);
91 typedef void (__cdecl *MSVCRT_unexpected_function)(void);
92 typedef void (__cdecl *MSVCRT__se_translator_function)(unsigned int code, struct _EXCEPTION_POINTERS *info);
93 typedef void (__cdecl *MSVCRT__beginthread_start_routine_t)(void *);
94 typedef unsigned int (__stdcall *MSVCRT__beginthreadex_start_routine_t)(void *);
95 typedef int (__cdecl *MSVCRT__onexit_t)(void);
96 typedef void (__cdecl *MSVCRT_invalid_parameter_handler)(const MSVCRT_wchar_t*, const MSVCRT_wchar_t*, const MSVCRT_wchar_t*, unsigned, MSVCRT_uintptr_t);
97 typedef void (__cdecl *MSVCRT_purecall_handler)(void);
98 typedef void (__cdecl *MSVCRT_security_error_handler)(int, void *);
100 typedef struct {ULONG x80[3];} MSVCRT__LDOUBLE; /* Intel 80 bit FP format has sizeof() 12 */
102 struct MSVCRT_tm {
103 int tm_sec;
104 int tm_min;
105 int tm_hour;
106 int tm_mday;
107 int tm_mon;
108 int tm_year;
109 int tm_wday;
110 int tm_yday;
111 int tm_isdst;
114 typedef struct MSVCRT_tagLC_ID {
115 unsigned short wLanguage;
116 unsigned short wCountry;
117 unsigned short wCodePage;
118 } MSVCRT_LC_ID, *MSVCRT_LPLC_ID;
120 typedef struct {
121 union {
122 char *str[43];
123 struct {
124 char *short_wday[7];
125 char *wday[7];
126 char *short_mon[12];
127 char *mon[12];
128 char *am;
129 char *pm;
130 char *short_date;
131 char *date;
132 char *time;
133 } names;
134 } str;
135 #if _MSVCR_VER < 110
136 LCID lcid;
137 #endif
138 int unk[2];
139 union {
140 MSVCRT_wchar_t *wstr[43];
141 struct {
142 MSVCRT_wchar_t *short_wday[7];
143 MSVCRT_wchar_t *wday[7];
144 MSVCRT_wchar_t *short_mon[12];
145 MSVCRT_wchar_t *mon[12];
146 MSVCRT_wchar_t *am;
147 MSVCRT_wchar_t *pm;
148 MSVCRT_wchar_t *short_date;
149 MSVCRT_wchar_t *date;
150 MSVCRT_wchar_t *time;
151 } names;
152 } wstr;
153 #if _MSVCR_VER >= 110
154 MSVCRT_wchar_t *locname;
155 #endif
156 char data[1];
157 } MSVCRT___lc_time_data;
159 typedef struct MSVCRT_threadlocaleinfostruct {
160 int refcount;
161 unsigned int lc_codepage;
162 unsigned int lc_collate_cp;
163 MSVCRT_ulong lc_handle[6];
164 MSVCRT_LC_ID lc_id[6];
165 struct {
166 char *locale;
167 MSVCRT_wchar_t *wlocale;
168 int *refcount;
169 int *wrefcount;
170 } lc_category[6];
171 int lc_clike;
172 int mb_cur_max;
173 int *lconv_intl_refcount;
174 int *lconv_num_refcount;
175 int *lconv_mon_refcount;
176 struct MSVCRT_lconv *lconv;
177 int *ctype1_refcount;
178 unsigned short *ctype1;
179 unsigned short *pctype;
180 unsigned char *pclmap;
181 unsigned char *pcumap;
182 MSVCRT___lc_time_data *lc_time_curr;
183 #if _MSVCR_VER >= 110
184 MSVCRT_wchar_t *lc_name[6];
185 #endif
186 } MSVCRT_threadlocinfo;
188 typedef struct MSVCRT_threadmbcinfostruct {
189 int refcount;
190 int mbcodepage;
191 int ismbcodepage;
192 int mblcid;
193 unsigned short mbulinfo[6];
194 unsigned char mbctype[257];
195 unsigned char mbcasemap[256];
196 } MSVCRT_threadmbcinfo;
198 typedef struct MSVCRT_threadlocaleinfostruct *MSVCRT_pthreadlocinfo;
199 typedef struct MSVCRT_threadmbcinfostruct *MSVCRT_pthreadmbcinfo;
201 typedef struct MSVCRT_localeinfo_struct
203 MSVCRT_pthreadlocinfo locinfo;
204 MSVCRT_pthreadmbcinfo mbcinfo;
205 } MSVCRT__locale_tstruct, *MSVCRT__locale_t;
207 typedef struct _frame_info
209 void *object;
210 struct _frame_info *next;
211 } frame_info;
213 typedef struct
215 frame_info frame_info;
216 EXCEPTION_RECORD *rec;
217 CONTEXT *context;
218 } cxx_frame_info;
220 frame_info* __cdecl _CreateFrameInfo(frame_info *fi, void *obj);
221 BOOL __cdecl __CxxRegisterExceptionObject(EXCEPTION_POINTERS*, cxx_frame_info*);
222 void __cdecl __CxxUnregisterExceptionObject(cxx_frame_info*, BOOL);
223 void CDECL __DestructExceptionObject(EXCEPTION_RECORD*);
225 /* TLS data */
226 extern DWORD msvcrt_tls_index DECLSPEC_HIDDEN;
228 /* Keep in sync with msvcr90/tests/msvcr90.c */
229 struct __thread_data {
230 DWORD tid;
231 HANDLE handle;
232 int thread_errno;
233 MSVCRT_ulong thread_doserrno;
234 int unk1;
235 unsigned int random_seed; /* seed for rand() */
236 char *strtok_next; /* next ptr for strtok() */
237 MSVCRT_wchar_t *wcstok_next; /* next ptr for wcstok() */
238 unsigned char *mbstok_next; /* next ptr for mbstok() */
239 char *strerror_buffer; /* buffer for strerror */
240 MSVCRT_wchar_t *wcserror_buffer; /* buffer for wcserror */
241 char *tmpnam_buffer; /* buffer for tmpname() */
242 MSVCRT_wchar_t *wtmpnam_buffer; /* buffer for wtmpname() */
243 void *unk2[2];
244 char *asctime_buffer; /* buffer for asctime */
245 MSVCRT_wchar_t *wasctime_buffer; /* buffer for wasctime */
246 struct MSVCRT_tm *time_buffer; /* buffer for localtime/gmtime */
247 char *efcvt_buffer; /* buffer for ecvt/fcvt */
248 int unk3[2];
249 void *unk4[3];
250 EXCEPTION_POINTERS *xcptinfo;
251 int fpecode;
252 MSVCRT_pthreadmbcinfo mbcinfo;
253 MSVCRT_pthreadlocinfo locinfo;
254 BOOL have_locale;
255 int unk5[1];
256 MSVCRT_terminate_function terminate_handler;
257 MSVCRT_unexpected_function unexpected_handler;
258 MSVCRT__se_translator_function se_translator;
259 void *unk6[3];
260 int unk7;
261 EXCEPTION_RECORD *exc_record;
262 CONTEXT *ctx_record;
263 int processing_throw;
264 frame_info *frame_info_head;
265 void *unk8[6];
266 LCID cached_lcid;
267 BOOL cached_sname;
268 int unk9[2];
269 DWORD cached_cp;
270 char cached_locale[131];
271 void *unk10[100];
272 #if _MSVCR_VER >= 140
273 MSVCRT_invalid_parameter_handler invalid_parameter_handler;
274 #endif
277 typedef struct __thread_data thread_data_t;
279 extern thread_data_t *msvcrt_get_thread_data(void) DECLSPEC_HIDDEN;
281 LCID MSVCRT_locale_to_LCID(const char*, unsigned short*, BOOL*) DECLSPEC_HIDDEN;
282 extern MSVCRT__locale_t MSVCRT_locale DECLSPEC_HIDDEN;
283 extern unsigned int MSVCRT___lc_codepage;
284 extern int MSVCRT___lc_collate_cp;
285 extern WORD MSVCRT__ctype [257];
286 extern BOOL initial_locale DECLSPEC_HIDDEN;
288 void msvcrt_set_errno(int) DECLSPEC_HIDDEN;
289 #if _MSVCR_VER >= 80
290 typedef enum {
291 EXCEPTION_BAD_ALLOC,
292 #if _MSVCR_VER >= 100
293 EXCEPTION_SCHEDULER_RESOURCE_ALLOCATION_ERROR,
294 EXCEPTION_IMPROPER_LOCK,
295 EXCEPTION_INVALID_SCHEDULER_POLICY_KEY,
296 EXCEPTION_INVALID_SCHEDULER_POLICY_VALUE,
297 EXCEPTION_INVALID_SCHEDULER_POLICY_THREAD_SPECIFICATION,
298 EXCEPTION_IMPROPER_SCHEDULER_ATTACH,
299 EXCEPTION_IMPROPER_SCHEDULER_DETACH,
300 #endif
301 } exception_type;
302 void throw_exception(exception_type, HRESULT, const char*) DECLSPEC_HIDDEN;
303 #endif
305 void __cdecl _purecall(void);
306 void __cdecl _amsg_exit(int errnum);
308 extern char **MSVCRT__environ;
309 extern MSVCRT_wchar_t **MSVCRT__wenviron;
311 extern char ** msvcrt_SnapshotOfEnvironmentA(char **) DECLSPEC_HIDDEN;
312 extern MSVCRT_wchar_t ** msvcrt_SnapshotOfEnvironmentW(MSVCRT_wchar_t **) DECLSPEC_HIDDEN;
314 MSVCRT_wchar_t *msvcrt_wstrdupa(const char *) DECLSPEC_HIDDEN;
316 extern unsigned int MSVCRT__commode;
318 /* FIXME: This should be declared in new.h but it's not an extern "C" so
319 * it would not be much use anyway. Even for Winelib applications.
321 int __cdecl MSVCRT__set_new_mode(int mode);
323 void* __cdecl MSVCRT_operator_new(MSVCRT_size_t);
324 void __cdecl MSVCRT_operator_delete(void*);
326 typedef void* (__cdecl *malloc_func_t)(MSVCRT_size_t);
327 typedef void (__cdecl *free_func_t)(void*);
329 /* Setup and teardown multi threaded locks */
330 extern void msvcrt_init_mt_locks(void) DECLSPEC_HIDDEN;
331 extern void msvcrt_free_locks(void) DECLSPEC_HIDDEN;
333 extern void msvcrt_init_exception(void*) DECLSPEC_HIDDEN;
334 extern BOOL msvcrt_init_locale(void) DECLSPEC_HIDDEN;
335 extern void msvcrt_init_math(void) DECLSPEC_HIDDEN;
336 extern void msvcrt_init_io(void) DECLSPEC_HIDDEN;
337 extern void msvcrt_free_io(void) DECLSPEC_HIDDEN;
338 extern void msvcrt_init_console(void) DECLSPEC_HIDDEN;
339 extern void msvcrt_free_console(void) DECLSPEC_HIDDEN;
340 extern void msvcrt_init_args(void) DECLSPEC_HIDDEN;
341 extern void msvcrt_free_args(void) DECLSPEC_HIDDEN;
342 extern void msvcrt_init_signals(void) DECLSPEC_HIDDEN;
343 extern void msvcrt_free_signals(void) DECLSPEC_HIDDEN;
344 extern void msvcrt_free_popen_data(void) DECLSPEC_HIDDEN;
345 extern BOOL msvcrt_init_heap(void) DECLSPEC_HIDDEN;
346 extern void msvcrt_destroy_heap(void) DECLSPEC_HIDDEN;
348 #if _MSVCR_VER >= 100
349 extern void msvcrt_init_scheduler(void*) DECLSPEC_HIDDEN;
350 extern void msvcrt_free_scheduler(void) DECLSPEC_HIDDEN;
351 extern void msvcrt_free_scheduler_thread(void) DECLSPEC_HIDDEN;
352 #endif
354 extern unsigned msvcrt_create_io_inherit_block(WORD*, BYTE**) DECLSPEC_HIDDEN;
356 extern unsigned int __cdecl _control87(unsigned int, unsigned int);
358 /* run-time error codes */
359 #define _RT_STACK 0
360 #define _RT_NULLPTR 1
361 #define _RT_FLOAT 2
362 #define _RT_INTDIV 3
363 #define _RT_EXECMEM 5
364 #define _RT_EXECFORM 6
365 #define _RT_EXECENV 7
366 #define _RT_SPACEARG 8
367 #define _RT_SPACEENV 9
368 #define _RT_ABORT 10
369 #define _RT_NPTR 12
370 #define _RT_FPTR 13
371 #define _RT_BREAK 14
372 #define _RT_INT 15
373 #define _RT_THREAD 16
374 #define _RT_LOCK 17
375 #define _RT_HEAP 18
376 #define _RT_OPENCON 19
377 #define _RT_QWIN 20
378 #define _RT_NOMAIN 21
379 #define _RT_NONCONT 22
380 #define _RT_INVALDISP 23
381 #define _RT_ONEXIT 24
382 #define _RT_PUREVIRT 25
383 #define _RT_STDIOINIT 26
384 #define _RT_LOWIOINIT 27
385 #define _RT_HEAPINIT 28
386 #define _RT_DOMAIN 120
387 #define _RT_SING 121
388 #define _RT_TLOSS 122
389 #define _RT_CRNL 252
390 #define _RT_BANNER 255
392 struct MSVCRT___timeb32 {
393 MSVCRT___time32_t time;
394 unsigned short millitm;
395 short timezone;
396 short dstflag;
399 struct MSVCRT___timeb64 {
400 MSVCRT___time64_t time;
401 unsigned short millitm;
402 short timezone;
403 short dstflag;
406 struct MSVCRT__iobuf {
407 char* _ptr;
408 int _cnt;
409 char* _base;
410 int _flag;
411 int _file;
412 int _charbuf;
413 int _bufsiz;
414 char* _tmpfname;
417 typedef struct MSVCRT__iobuf MSVCRT_FILE;
419 struct MSVCRT_lconv {
420 char* decimal_point;
421 char* thousands_sep;
422 char* grouping;
423 char* int_curr_symbol;
424 char* currency_symbol;
425 char* mon_decimal_point;
426 char* mon_thousands_sep;
427 char* mon_grouping;
428 char* positive_sign;
429 char* negative_sign;
430 char int_frac_digits;
431 char frac_digits;
432 char p_cs_precedes;
433 char p_sep_by_space;
434 char n_cs_precedes;
435 char n_sep_by_space;
436 char p_sign_posn;
437 char n_sign_posn;
438 #if _MSVCR_VER >= 100
439 MSVCRT_wchar_t* _W_decimal_point;
440 MSVCRT_wchar_t* _W_thousands_sep;
441 MSVCRT_wchar_t* _W_int_curr_symbol;
442 MSVCRT_wchar_t* _W_currency_symbol;
443 MSVCRT_wchar_t* _W_mon_decimal_point;
444 MSVCRT_wchar_t* _W_mon_thousands_sep;
445 MSVCRT_wchar_t* _W_positive_sign;
446 MSVCRT_wchar_t* _W_negative_sign;
447 #endif
450 struct MSVCRT__exception {
451 int type;
452 char* name;
453 double arg1;
454 double arg2;
455 double retval;
458 struct MSVCRT__complex {
459 double x; /* Real part */
460 double y; /* Imaginary part */
462 typedef struct MSVCRT__complex _Dcomplex;
464 typedef struct MSVCRT__div_t {
465 int quot; /* quotient */
466 int rem; /* remainder */
467 } MSVCRT_div_t;
469 typedef struct MSVCRT__ldiv_t {
470 MSVCRT_long quot; /* quotient */
471 MSVCRT_long rem; /* remainder */
472 } MSVCRT_ldiv_t;
474 typedef struct MSVCRT__lldiv_t {
475 MSVCRT_longlong quot; /* quotient */
476 MSVCRT_longlong rem; /* remainder */
477 } MSVCRT_lldiv_t;
479 struct MSVCRT__heapinfo {
480 int* _pentry;
481 MSVCRT_size_t _size;
482 int _useflag;
485 #ifdef __i386__
486 struct MSVCRT___JUMP_BUFFER {
487 unsigned long Ebp;
488 unsigned long Ebx;
489 unsigned long Edi;
490 unsigned long Esi;
491 unsigned long Esp;
492 unsigned long Eip;
493 unsigned long Registration;
494 unsigned long TryLevel;
495 /* Start of new struct members */
496 unsigned long Cookie;
497 unsigned long UnwindFunc;
498 unsigned long UnwindData[6];
500 #elif defined(__x86_64__)
501 struct MSVCRT__SETJMP_FLOAT128
503 unsigned __int64 DECLSPEC_ALIGN(16) Part[2];
505 struct MSVCRT___JUMP_BUFFER
507 unsigned __int64 Frame;
508 unsigned __int64 Rbx;
509 unsigned __int64 Rsp;
510 unsigned __int64 Rbp;
511 unsigned __int64 Rsi;
512 unsigned __int64 Rdi;
513 unsigned __int64 R12;
514 unsigned __int64 R13;
515 unsigned __int64 R14;
516 unsigned __int64 R15;
517 unsigned __int64 Rip;
518 unsigned __int64 Spare;
519 struct MSVCRT__SETJMP_FLOAT128 Xmm6;
520 struct MSVCRT__SETJMP_FLOAT128 Xmm7;
521 struct MSVCRT__SETJMP_FLOAT128 Xmm8;
522 struct MSVCRT__SETJMP_FLOAT128 Xmm9;
523 struct MSVCRT__SETJMP_FLOAT128 Xmm10;
524 struct MSVCRT__SETJMP_FLOAT128 Xmm11;
525 struct MSVCRT__SETJMP_FLOAT128 Xmm12;
526 struct MSVCRT__SETJMP_FLOAT128 Xmm13;
527 struct MSVCRT__SETJMP_FLOAT128 Xmm14;
528 struct MSVCRT__SETJMP_FLOAT128 Xmm15;
530 #elif defined(__arm__)
531 struct MSVCRT___JUMP_BUFFER
533 unsigned long Frame;
534 unsigned long R4;
535 unsigned long R5;
536 unsigned long R6;
537 unsigned long R7;
538 unsigned long R8;
539 unsigned long R9;
540 unsigned long R10;
541 unsigned long R11;
542 unsigned long Sp;
543 unsigned long Pc;
544 unsigned long Fpscr;
545 unsigned long long D[8];
547 #elif defined(__aarch64__)
548 struct MSVCRT___JUMP_BUFFER
550 unsigned __int64 Frame;
551 unsigned __int64 Reserved;
552 unsigned __int64 X19;
553 unsigned __int64 X20;
554 unsigned __int64 X21;
555 unsigned __int64 X22;
556 unsigned __int64 X23;
557 unsigned __int64 X24;
558 unsigned __int64 X25;
559 unsigned __int64 X26;
560 unsigned __int64 X27;
561 unsigned __int64 X28;
562 unsigned __int64 Fp;
563 unsigned __int64 Lr;
564 unsigned __int64 Sp;
565 unsigned long Fpcr;
566 unsigned long Fpsr;
567 double D[8];
569 #endif /* __i386__ */
571 struct MSVCRT__diskfree_t {
572 unsigned int total_clusters;
573 unsigned int avail_clusters;
574 unsigned int sectors_per_cluster;
575 unsigned int bytes_per_sector;
578 struct MSVCRT__finddata32_t {
579 unsigned int attrib;
580 MSVCRT___time32_t time_create;
581 MSVCRT___time32_t time_access;
582 MSVCRT___time32_t time_write;
583 MSVCRT__fsize_t size;
584 char name[260];
587 struct MSVCRT__finddata32i64_t {
588 unsigned int attrib;
589 MSVCRT___time32_t time_create;
590 MSVCRT___time32_t time_access;
591 MSVCRT___time32_t time_write;
592 __int64 DECLSPEC_ALIGN(8) size;
593 char name[260];
596 struct MSVCRT__finddata64i32_t {
597 unsigned int attrib;
598 MSVCRT___time64_t time_create;
599 MSVCRT___time64_t time_access;
600 MSVCRT___time64_t time_write;
601 MSVCRT__fsize_t size;
602 char name[260];
605 struct MSVCRT__finddata64_t {
606 unsigned int attrib;
607 MSVCRT___time64_t time_create;
608 MSVCRT___time64_t time_access;
609 MSVCRT___time64_t time_write;
610 __int64 DECLSPEC_ALIGN(8) size;
611 char name[260];
614 struct MSVCRT__wfinddata32_t {
615 unsigned int attrib;
616 MSVCRT___time32_t time_create;
617 MSVCRT___time32_t time_access;
618 MSVCRT___time32_t time_write;
619 MSVCRT__fsize_t size;
620 MSVCRT_wchar_t name[260];
623 struct MSVCRT__wfinddata32i64_t {
624 unsigned int attrib;
625 MSVCRT___time32_t time_create;
626 MSVCRT___time32_t time_access;
627 MSVCRT___time32_t time_write;
628 __int64 DECLSPEC_ALIGN(8) size;
629 MSVCRT_wchar_t name[260];
632 struct MSVCRT__wfinddata64i32_t {
633 unsigned int attrib;
634 MSVCRT___time64_t time_create;
635 MSVCRT___time64_t time_access;
636 MSVCRT___time64_t time_write;
637 MSVCRT__fsize_t size;
638 MSVCRT_wchar_t name[260];
641 struct MSVCRT__wfinddata64_t {
642 unsigned int attrib;
643 MSVCRT___time64_t time_create;
644 MSVCRT___time64_t time_access;
645 MSVCRT___time64_t time_write;
646 __int64 DECLSPEC_ALIGN(8) size;
647 MSVCRT_wchar_t name[260];
650 struct MSVCRT___utimbuf32
652 MSVCRT___time32_t actime;
653 MSVCRT___time32_t modtime;
656 struct MSVCRT___utimbuf64
658 MSVCRT___time64_t actime;
659 MSVCRT___time64_t modtime;
662 /* for FreeBSD */
663 #undef st_atime
664 #undef st_ctime
665 #undef st_mtime
667 struct MSVCRT__stat32 {
668 MSVCRT__dev_t st_dev;
669 MSVCRT__ino_t st_ino;
670 unsigned short st_mode;
671 short st_nlink;
672 short st_uid;
673 short st_gid;
674 MSVCRT__dev_t st_rdev;
675 MSVCRT__off_t st_size;
676 MSVCRT___time32_t st_atime;
677 MSVCRT___time32_t st_mtime;
678 MSVCRT___time32_t st_ctime;
681 struct MSVCRT__stat32i64 {
682 MSVCRT__dev_t st_dev;
683 MSVCRT__ino_t st_ino;
684 unsigned short st_mode;
685 short st_nlink;
686 short st_uid;
687 short st_gid;
688 MSVCRT__dev_t st_rdev;
689 __int64 DECLSPEC_ALIGN(8) st_size;
690 MSVCRT___time32_t st_atime;
691 MSVCRT___time32_t st_mtime;
692 MSVCRT___time32_t st_ctime;
695 struct MSVCRT__stat64i32 {
696 MSVCRT__dev_t st_dev;
697 MSVCRT__ino_t st_ino;
698 unsigned short st_mode;
699 short st_nlink;
700 short st_uid;
701 short st_gid;
702 MSVCRT__dev_t st_rdev;
703 MSVCRT__off_t st_size;
704 MSVCRT___time64_t st_atime;
705 MSVCRT___time64_t st_mtime;
706 MSVCRT___time64_t st_ctime;
709 struct MSVCRT__stat64 {
710 MSVCRT__dev_t st_dev;
711 MSVCRT__ino_t st_ino;
712 unsigned short st_mode;
713 short st_nlink;
714 short st_uid;
715 short st_gid;
716 MSVCRT__dev_t st_rdev;
717 __int64 DECLSPEC_ALIGN(8) st_size;
718 MSVCRT___time64_t st_atime;
719 MSVCRT___time64_t st_mtime;
720 MSVCRT___time64_t st_ctime;
723 #ifdef _WIN64
724 #define MSVCRT__finddata_t MSVCRT__finddata64i32_t
725 #define MSVCRT__finddatai64_t MSVCRT__finddata64_t
726 #define MSVCRT__wfinddata_t MSVCRT__wfinddata64i32_t
727 #define MSVCRT__wfinddatai64_t MSVCRT__wfinddata64_t
728 #define MSVCRT__stat MSVCRT__stat64i32
729 #define MSVCRT__stati64 MSVCRT__stat64
730 #else
731 #define MSVCRT__finddata_t MSVCRT__finddata32_t
732 #define MSVCRT__finddatai64_t MSVCRT__finddata32i64_t
733 #define MSVCRT__wfinddata_t MSVCRT__wfinddata32_t
734 #define MSVCRT__wfinddatai64_t MSVCRT__wfinddata32i64_t
735 #define MSVCRT__stat MSVCRT__stat32
736 #define MSVCRT__stati64 MSVCRT__stat32i64
737 #endif
739 #define MSVCRT_WEOF (MSVCRT_wint_t)(0xFFFF)
740 #define MSVCRT_EOF (-1)
741 #define MSVCRT_TMP_MAX 0x7fff
742 #define MSVCRT_TMP_MAX_S 0x7fffffff
743 #define MSVCRT_RAND_MAX 0x7fff
744 #define MSVCRT_BUFSIZ 512
746 #define MSVCRT_SEEK_SET 0
747 #define MSVCRT_SEEK_CUR 1
748 #define MSVCRT_SEEK_END 2
750 #define MSVCRT_NO_CONSOLE_FD (-2)
751 #define MSVCRT_NO_CONSOLE ((HANDLE)MSVCRT_NO_CONSOLE_FD)
753 #define MSVCRT_STDIN_FILENO 0
754 #define MSVCRT_STDOUT_FILENO 1
755 #define MSVCRT_STDERR_FILENO 2
757 /* more file._flag flags, but these conflict with Unix */
758 #define MSVCRT__IOFBF 0x0000
759 #define MSVCRT__IONBF 0x0004
760 #define MSVCRT__IOLBF 0x0040
762 #define MSVCRT_FILENAME_MAX 260
763 #define MSVCRT_DRIVE_MAX 3
764 #define MSVCRT_FNAME_MAX 256
765 #define MSVCRT_DIR_MAX 256
766 #define MSVCRT_EXT_MAX 256
767 #define MSVCRT_PATH_MAX 260
768 #define MSVCRT_stdin (MSVCRT__iob+MSVCRT_STDIN_FILENO)
769 #define MSVCRT_stdout (MSVCRT__iob+MSVCRT_STDOUT_FILENO)
770 #define MSVCRT_stderr (MSVCRT__iob+MSVCRT_STDERR_FILENO)
772 #define MSVCRT__P_WAIT 0
773 #define MSVCRT__P_NOWAIT 1
774 #define MSVCRT__P_OVERLAY 2
775 #define MSVCRT__P_NOWAITO 3
776 #define MSVCRT__P_DETACH 4
778 #define MSVCRT_EPERM 1
779 #define MSVCRT_ENOENT 2
780 #define MSVCRT_ESRCH 3
781 #define MSVCRT_EINTR 4
782 #define MSVCRT_EIO 5
783 #define MSVCRT_ENXIO 6
784 #define MSVCRT_E2BIG 7
785 #define MSVCRT_ENOEXEC 8
786 #define MSVCRT_EBADF 9
787 #define MSVCRT_ECHILD 10
788 #define MSVCRT_EAGAIN 11
789 #define MSVCRT_ENOMEM 12
790 #define MSVCRT_EACCES 13
791 #define MSVCRT_EFAULT 14
792 #define MSVCRT_EBUSY 16
793 #define MSVCRT_EEXIST 17
794 #define MSVCRT_EXDEV 18
795 #define MSVCRT_ENODEV 19
796 #define MSVCRT_ENOTDIR 20
797 #define MSVCRT_EISDIR 21
798 #define MSVCRT_EINVAL 22
799 #define MSVCRT_ENFILE 23
800 #define MSVCRT_EMFILE 24
801 #define MSVCRT_ENOTTY 25
802 #define MSVCRT_EFBIG 27
803 #define MSVCRT_ENOSPC 28
804 #define MSVCRT_ESPIPE 29
805 #define MSVCRT_EROFS 30
806 #define MSVCRT_EMLINK 31
807 #define MSVCRT_EPIPE 32
808 #define MSVCRT_EDOM 33
809 #define MSVCRT_ERANGE 34
810 #define MSVCRT_EDEADLK 36
811 #define MSVCRT_EDEADLOCK MSVCRT_EDEADLK
812 #define MSVCRT_ENAMETOOLONG 38
813 #define MSVCRT_ENOLCK 39
814 #define MSVCRT_ENOSYS 40
815 #define MSVCRT_ENOTEMPTY 41
816 #define MSVCRT_EILSEQ 42
817 #define MSVCRT_STRUNCATE 80
819 #define MSVCRT_LC_ALL 0
820 #define MSVCRT_LC_COLLATE 1
821 #define MSVCRT_LC_CTYPE 2
822 #define MSVCRT_LC_MONETARY 3
823 #define MSVCRT_LC_NUMERIC 4
824 #define MSVCRT_LC_TIME 5
825 #define MSVCRT_LC_MIN MSVCRT_LC_ALL
826 #define MSVCRT_LC_MAX MSVCRT_LC_TIME
828 #define MSVCRT__HEAPEMPTY -1
829 #define MSVCRT__HEAPOK -2
830 #define MSVCRT__HEAPBADBEGIN -3
831 #define MSVCRT__HEAPBADNODE -4
832 #define MSVCRT__HEAPEND -5
833 #define MSVCRT__HEAPBADPTR -6
835 #define MSVCRT__FREEENTRY 0
836 #define MSVCRT__USEDENTRY 1
838 #define MSVCRT__OUT_TO_DEFAULT 0
839 #define MSVCRT__OUT_TO_STDERR 1
840 #define MSVCRT__OUT_TO_MSGBOX 2
841 #define MSVCRT__REPORT_ERRMODE 3
843 /* ASCII char classification table - binary compatible */
844 #define MSVCRT__UPPER 0x0001 /* C1_UPPER */
845 #define MSVCRT__LOWER 0x0002 /* C1_LOWER */
846 #define MSVCRT__DIGIT 0x0004 /* C1_DIGIT */
847 #define MSVCRT__SPACE 0x0008 /* C1_SPACE */
848 #define MSVCRT__PUNCT 0x0010 /* C1_PUNCT */
849 #define MSVCRT__CONTROL 0x0020 /* C1_CNTRL */
850 #define MSVCRT__BLANK 0x0040 /* C1_BLANK */
851 #define MSVCRT__HEX 0x0080 /* C1_XDIGIT */
852 #define MSVCRT__LEADBYTE 0x8000
853 #define MSVCRT__ALPHA (0x0100|MSVCRT__UPPER|MSVCRT__LOWER) /* (C1_ALPHA|_UPPER|_LOWER) */
855 #define MSVCRT__IOREAD 0x0001
856 #define MSVCRT__IOWRT 0x0002
857 #define MSVCRT__IOMYBUF 0x0008
858 #define MSVCRT__IOEOF 0x0010
859 #define MSVCRT__IOERR 0x0020
860 #define MSVCRT__IOSTRG 0x0040
861 #define MSVCRT__IORW 0x0080
862 #define MSVCRT__USERBUF 0x0100
863 #define MSVCRT__IOCOMMIT 0x4000
865 #define MSVCRT__S_IEXEC 0x0040
866 #define MSVCRT__S_IWRITE 0x0080
867 #define MSVCRT__S_IREAD 0x0100
868 #define MSVCRT__S_IFIFO 0x1000
869 #define MSVCRT__S_IFCHR 0x2000
870 #define MSVCRT__S_IFDIR 0x4000
871 #define MSVCRT__S_IFREG 0x8000
872 #define MSVCRT__S_IFMT 0xF000
874 #define MSVCRT__LK_UNLCK 0
875 #define MSVCRT__LK_LOCK 1
876 #define MSVCRT__LK_NBLCK 2
877 #define MSVCRT__LK_RLCK 3
878 #define MSVCRT__LK_NBRLCK 4
880 #define MSVCRT__SH_COMPAT 0x00 /* Compatibility */
881 #define MSVCRT__SH_DENYRW 0x10 /* Deny read/write */
882 #define MSVCRT__SH_DENYWR 0x20 /* Deny write */
883 #define MSVCRT__SH_DENYRD 0x30 /* Deny read */
884 #define MSVCRT__SH_DENYNO 0x40 /* Deny nothing */
886 #define MSVCRT__O_RDONLY 0
887 #define MSVCRT__O_WRONLY 1
888 #define MSVCRT__O_RDWR 2
889 #define MSVCRT__O_ACCMODE (MSVCRT__O_RDONLY|MSVCRT__O_WRONLY|MSVCRT__O_RDWR)
890 #define MSVCRT__O_APPEND 0x0008
891 #define MSVCRT__O_RANDOM 0x0010
892 #define MSVCRT__O_SEQUENTIAL 0x0020
893 #define MSVCRT__O_TEMPORARY 0x0040
894 #define MSVCRT__O_NOINHERIT 0x0080
895 #define MSVCRT__O_CREAT 0x0100
896 #define MSVCRT__O_TRUNC 0x0200
897 #define MSVCRT__O_EXCL 0x0400
898 #define MSVCRT__O_SHORT_LIVED 0x1000
899 #define MSVCRT__O_TEXT 0x4000
900 #define MSVCRT__O_BINARY 0x8000
901 #define MSVCRT__O_RAW MSVCRT__O_BINARY
902 #define MSVCRT__O_WTEXT 0x10000
903 #define MSVCRT__O_U16TEXT 0x20000
904 #define MSVCRT__O_U8TEXT 0x40000
906 /* _statusfp bit flags */
907 #define MSVCRT__SW_INEXACT 0x00000001 /* inexact (precision) */
908 #define MSVCRT__SW_UNDERFLOW 0x00000002 /* underflow */
909 #define MSVCRT__SW_OVERFLOW 0x00000004 /* overflow */
910 #define MSVCRT__SW_ZERODIVIDE 0x00000008 /* zero divide */
911 #define MSVCRT__SW_INVALID 0x00000010 /* invalid */
913 #define MSVCRT__SW_UNEMULATED 0x00000040 /* unemulated instruction */
914 #define MSVCRT__SW_SQRTNEG 0x00000080 /* square root of a neg number */
915 #define MSVCRT__SW_STACKOVERFLOW 0x00000200 /* FP stack overflow */
916 #define MSVCRT__SW_STACKUNDERFLOW 0x00000400 /* FP stack underflow */
918 #define MSVCRT__SW_DENORMAL 0x00080000 /* denormal status bit */
920 /* fpclass constants */
921 #define MSVCRT__FPCLASS_SNAN 0x0001 /* Signaling "Not a Number" */
922 #define MSVCRT__FPCLASS_QNAN 0x0002 /* Quiet "Not a Number" */
923 #define MSVCRT__FPCLASS_NINF 0x0004 /* Negative Infinity */
924 #define MSVCRT__FPCLASS_NN 0x0008 /* Negative Normal */
925 #define MSVCRT__FPCLASS_ND 0x0010 /* Negative Denormal */
926 #define MSVCRT__FPCLASS_NZ 0x0020 /* Negative Zero */
927 #define MSVCRT__FPCLASS_PZ 0x0040 /* Positive Zero */
928 #define MSVCRT__FPCLASS_PD 0x0080 /* Positive Denormal */
929 #define MSVCRT__FPCLASS_PN 0x0100 /* Positive Normal */
930 #define MSVCRT__FPCLASS_PINF 0x0200 /* Positive Infinity */
932 /* fpclassify constants */
933 #define MSVCRT_FP_INFINITE 1
934 #define MSVCRT_FP_NAN 2
935 #define MSVCRT_FP_NORMAL -1
936 #define MSVCRT_FP_SUBNORMAL -2
937 #define MSVCRT_FP_ZERO 0
939 #define MSVCRT__MCW_EM 0x0008001f
940 #define MSVCRT__MCW_IC 0x00040000
941 #define MSVCRT__MCW_RC 0x00000300
942 #define MSVCRT__MCW_PC 0x00030000
943 #define MSVCRT__MCW_DN 0x03000000
945 #define MSVCRT__EM_INVALID 0x00000010
946 #define MSVCRT__EM_DENORMAL 0x00080000
947 #define MSVCRT__EM_ZERODIVIDE 0x00000008
948 #define MSVCRT__EM_OVERFLOW 0x00000004
949 #define MSVCRT__EM_UNDERFLOW 0x00000002
950 #define MSVCRT__EM_INEXACT 0x00000001
951 #define MSVCRT__IC_AFFINE 0x00040000
952 #define MSVCRT__IC_PROJECTIVE 0x00000000
953 #define MSVCRT__RC_CHOP 0x00000300
954 #define MSVCRT__RC_UP 0x00000200
955 #define MSVCRT__RC_DOWN 0x00000100
956 #define MSVCRT__RC_NEAR 0x00000000
957 #define MSVCRT__PC_24 0x00020000
958 #define MSVCRT__PC_53 0x00010000
959 #define MSVCRT__PC_64 0x00000000
960 #define MSVCRT__DN_SAVE 0x00000000
961 #define MSVCRT__DN_FLUSH 0x01000000
962 #define MSVCRT__DN_FLUSH_OPERANDS_SAVE_RESULTS 0x02000000
963 #define MSVCRT__DN_SAVE_OPERANDS_FLUSH_RESULTS 0x03000000
964 #define MSVCRT__EM_AMBIGUOUS 0x80000000
966 typedef struct
968 unsigned int control;
969 unsigned int status;
970 } MSVCRT_fenv_t;
972 #define MSVCRT_CLOCKS_PER_SEC 1000
974 /* signals */
975 #define MSVCRT_SIGINT 2
976 #define MSVCRT_SIGILL 4
977 #define MSVCRT_SIGFPE 8
978 #define MSVCRT_SIGSEGV 11
979 #define MSVCRT_SIGTERM 15
980 #define MSVCRT_SIGBREAK 21
981 #define MSVCRT_SIGABRT 22
982 #define MSVCRT_NSIG (MSVCRT_SIGABRT + 1)
984 typedef void (__cdecl *MSVCRT___sighandler_t)(int);
986 #define MSVCRT_SIG_DFL ((MSVCRT___sighandler_t)0)
987 #define MSVCRT_SIG_IGN ((MSVCRT___sighandler_t)1)
988 #define MSVCRT_SIG_ERR ((MSVCRT___sighandler_t)-1)
990 #define MSVCRT__FPE_INVALID 0x81
991 #define MSVCRT__FPE_DENORMAL 0x82
992 #define MSVCRT__FPE_ZERODIVIDE 0x83
993 #define MSVCRT__FPE_OVERFLOW 0x84
994 #define MSVCRT__FPE_UNDERFLOW 0x85
995 #define MSVCRT__FPE_INEXACT 0x86
996 #define MSVCRT__FPE_UNEMULATED 0x87
997 #define MSVCRT__FPE_SQRTNEG 0x88
998 #define MSVCRT__FPE_STACKOVERFLOW 0x8a
999 #define MSVCRT__FPE_STACKUNDERFLOW 0x8b
1000 #define MSVCRT__FPE_EXPLICITGEN 0x8c
1002 #define _MS 0x01
1003 #define _MP 0x02
1004 #define _M1 0x04
1005 #define _M2 0x08
1007 #define _SBUP 0x10
1008 #define _SBLOW 0x20
1010 #define _MBC_SINGLE 0
1011 #define _MBC_LEAD 1
1012 #define _MBC_TRAIL 2
1013 #define _MBC_ILLEGAL -1
1015 #define _MB_CP_SBCS 0
1016 #define _MB_CP_OEM -2
1017 #define _MB_CP_ANSI -3
1018 #define _MB_CP_LOCALE -4
1020 #define MSVCRT__TRUNCATE ((MSVCRT_size_t)-1)
1022 #define _MAX__TIME64_T (((MSVCRT___time64_t)0x00000007 << 32) | 0x93406FFF)
1024 /* _set_abort_behavior codes */
1025 #define MSVCRT__WRITE_ABORT_MSG 1
1026 #define MSVCRT__CALL_REPORTFAULT 2
1028 /* _get_output_format return code */
1029 #define MSVCRT__TWO_DIGIT_EXPONENT 0x1
1031 #define MSVCRT__NLSCMPERROR ((unsigned int)0x7fffffff)
1033 void __cdecl MSVCRT_free(void*);
1034 void* __cdecl MSVCRT_malloc(MSVCRT_size_t);
1035 void* __cdecl MSVCRT_calloc(MSVCRT_size_t,MSVCRT_size_t);
1036 void* __cdecl MSVCRT_realloc(void*,MSVCRT_size_t);
1038 int __cdecl MSVCRT_iswalpha(MSVCRT_wint_t);
1039 int __cdecl MSVCRT_iswspace(MSVCRT_wint_t);
1040 int __cdecl MSVCRT_iswdigit(MSVCRT_wint_t);
1041 int __cdecl MSVCRT_isleadbyte(int);
1042 int __cdecl MSVCRT__isleadbyte_l(int, MSVCRT__locale_t);
1044 void __cdecl MSVCRT__lock_file(MSVCRT_FILE*);
1045 void __cdecl MSVCRT__unlock_file(MSVCRT_FILE*);
1046 int __cdecl MSVCRT_fgetc(MSVCRT_FILE*);
1047 int __cdecl MSVCRT__fgetc_nolock(MSVCRT_FILE*);
1048 int __cdecl MSVCRT__fputc_nolock(int,MSVCRT_FILE*);
1049 int __cdecl MSVCRT_ungetc(int,MSVCRT_FILE*);
1050 int __cdecl MSVCRT__ungetc_nolock(int,MSVCRT_FILE*);
1051 MSVCRT_wint_t __cdecl MSVCRT_fgetwc(MSVCRT_FILE*);
1052 MSVCRT_wint_t __cdecl MSVCRT__fgetwc_nolock(MSVCRT_FILE*);
1053 MSVCRT_wint_t __cdecl MSVCRT__fputwc_nolock(MSVCRT_wint_t,MSVCRT_FILE*);
1054 MSVCRT_wint_t __cdecl MSVCRT_ungetwc(MSVCRT_wint_t,MSVCRT_FILE*);
1055 MSVCRT_wint_t __cdecl MSVCRT__ungetwc_nolock(MSVCRT_wint_t, MSVCRT_FILE*);
1056 int __cdecl MSVCRT__fseeki64_nolock(MSVCRT_FILE*,__int64,int);
1057 __int64 __cdecl MSVCRT__ftelli64(MSVCRT_FILE* file);
1058 __int64 __cdecl MSVCRT__ftelli64_nolock(MSVCRT_FILE*);
1059 void __cdecl MSVCRT__exit(int);
1060 void __cdecl MSVCRT_abort(void);
1061 MSVCRT_ulong* __cdecl MSVCRT___doserrno(void);
1062 int* __cdecl MSVCRT__errno(void);
1063 char* __cdecl MSVCRT_getenv(const char*);
1064 MSVCRT_size_t __cdecl MSVCRT__fread_nolock(void*,MSVCRT_size_t,MSVCRT_size_t,MSVCRT_FILE*);
1065 MSVCRT_size_t __cdecl MSVCRT__fread_nolock_s(void*,MSVCRT_size_t,MSVCRT_size_t,MSVCRT_size_t,MSVCRT_FILE*);
1066 MSVCRT_size_t __cdecl MSVCRT__fwrite_nolock(const void*,MSVCRT_size_t,MSVCRT_size_t,MSVCRT_FILE*);
1067 int __cdecl MSVCRT_fclose(MSVCRT_FILE*);
1068 int __cdecl MSVCRT__fclose_nolock(MSVCRT_FILE*);
1069 int __cdecl MSVCRT__fflush_nolock(MSVCRT_FILE*);
1070 void __cdecl MSVCRT_terminate(void);
1071 MSVCRT_FILE* __cdecl MSVCRT__iob_func(void);
1072 MSVCRT_clock_t __cdecl MSVCRT_clock(void);
1073 MSVCRT___time32_t __cdecl MSVCRT__time32(MSVCRT___time32_t*);
1074 MSVCRT___time64_t __cdecl MSVCRT__time64(MSVCRT___time64_t*);
1075 MSVCRT_FILE* __cdecl MSVCRT__fdopen(int, const char *);
1076 MSVCRT_FILE* __cdecl MSVCRT__wfdopen(int, const MSVCRT_wchar_t *);
1077 int __cdecl MSVCRT_vsnprintf(char *str, MSVCRT_size_t len, const char *format, __ms_va_list valist);
1078 int __cdecl MSVCRT_vsnwprintf(MSVCRT_wchar_t *str, MSVCRT_size_t len,
1079 const MSVCRT_wchar_t *format, __ms_va_list valist );
1080 int WINAPIV MSVCRT__snwprintf(MSVCRT_wchar_t*, unsigned int, const MSVCRT_wchar_t*, ...);
1081 int WINAPIV MSVCRT_sprintf(char*,const char*,...);
1082 int WINAPIV MSVCRT__snprintf(char*,unsigned int,const char*,...);
1083 int WINAPIV MSVCRT__scprintf(const char*,...);
1084 int __cdecl MSVCRT_raise(int sig);
1085 int __cdecl MSVCRT__set_printf_count_output(int);
1087 #define MSVCRT__ENABLE_PER_THREAD_LOCALE 1
1088 #define MSVCRT__DISABLE_PER_THREAD_LOCALE 2
1090 extern MSVCRT__locale_t MSVCRT_locale;
1091 MSVCRT_pthreadlocinfo get_locinfo(void) DECLSPEC_HIDDEN;
1092 MSVCRT_pthreadmbcinfo get_mbcinfo(void) DECLSPEC_HIDDEN;
1093 void __cdecl MSVCRT__free_locale(MSVCRT__locale_t);
1094 void free_locinfo(MSVCRT_pthreadlocinfo) DECLSPEC_HIDDEN;
1095 void free_mbcinfo(MSVCRT_pthreadmbcinfo) DECLSPEC_HIDDEN;
1096 int _setmbcp_l(int, LCID, MSVCRT_pthreadmbcinfo) DECLSPEC_HIDDEN;
1098 #ifndef __WINE_MSVCRT_TEST
1099 int __cdecl MSVCRT__write(int,const void*,unsigned int);
1100 int __cdecl _getch(void);
1101 int __cdecl _ismbblead(unsigned int);
1102 int __cdecl _ismbblead_l(unsigned int, MSVCRT__locale_t);
1103 int __cdecl _ismbclegal(unsigned int c);
1104 int __cdecl _ismbstrail(const unsigned char* start, const unsigned char* str);
1105 int __cdecl MSVCRT_mbtowc(MSVCRT_wchar_t*,const char*,MSVCRT_size_t);
1106 int __cdecl MSVCRT_mbtowc_l(MSVCRT_wchar_t*,const char*,MSVCRT_size_t,MSVCRT__locale_t);
1107 MSVCRT_size_t __cdecl MSVCRT_mbstowcs(MSVCRT_wchar_t*,const char*,MSVCRT_size_t);
1108 MSVCRT_size_t __cdecl MSVCRT__mbstowcs_l(MSVCRT_wchar_t*, const char*, MSVCRT_size_t, MSVCRT__locale_t);
1109 MSVCRT_size_t __cdecl MSVCRT_wcstombs(char*,const MSVCRT_wchar_t*,MSVCRT_size_t);
1110 MSVCRT_size_t __cdecl MSVCRT__wcstombs_l(char*, const MSVCRT_wchar_t*, MSVCRT_size_t, MSVCRT__locale_t);
1111 MSVCRT_intptr_t __cdecl MSVCRT__spawnve(int,const char*,const char* const *,const char* const *);
1112 MSVCRT_intptr_t __cdecl MSVRT__spawnvpe(int,const char*,const char* const *,const char* const *);
1113 MSVCRT_intptr_t __cdecl MSVCRT__wspawnve(int,const MSVCRT_wchar_t*,const MSVCRT_wchar_t* const *,const MSVCRT_wchar_t* const *);
1114 MSVCRT_intptr_t __cdecl MSVCRT__wspawnvpe(int,const MSVCRT_wchar_t*,const MSVCRT_wchar_t* const *,const MSVCRT_wchar_t* const *);
1115 void __cdecl MSVCRT__searchenv(const char*,const char*,char*);
1116 int __cdecl MSVCRT__getdrive(void);
1117 char* __cdecl MSVCRT__strdup(const char*);
1118 char* __cdecl MSVCRT__strnset(char*,int,MSVCRT_size_t);
1119 char* __cdecl _strset(char*,int);
1120 int __cdecl _ungetch(int);
1121 int __cdecl _cputs(const char*);
1122 int WINAPIV _cprintf(const char*,...);
1123 int WINAPIV _cwprintf(const MSVCRT_wchar_t*,...);
1124 char*** __cdecl MSVCRT___p__environ(void);
1125 int* __cdecl __p___mb_cur_max(void);
1126 int* __cdecl MSVCRT___p__fmode(void);
1127 MSVCRT_wchar_t* __cdecl MSVCRT__wcsdup(const MSVCRT_wchar_t*);
1128 MSVCRT_size_t __cdecl MSVCRT_strnlen(const char *,MSVCRT_size_t);
1129 MSVCRT_size_t __cdecl MSVCRT_wcsnlen(const MSVCRT_wchar_t*,MSVCRT_size_t);
1130 MSVCRT_wchar_t*** __cdecl MSVCRT___p__wenviron(void);
1131 INT __cdecl MSVCRT_wctomb(char*,MSVCRT_wchar_t);
1132 int __cdecl MSVCRT__wctomb_l(char*, MSVCRT_wchar_t, MSVCRT__locale_t);
1133 char* __cdecl MSVCRT__strdate(char* date);
1134 char* __cdecl MSVCRT__strtime(char* date);
1135 int __cdecl _setmbcp(int);
1136 int __cdecl MSVCRT__close(int);
1137 int __cdecl MSVCRT__dup(int);
1138 int __cdecl MSVCRT__dup2(int, int);
1139 int __cdecl MSVCRT__pipe(int *, unsigned int, int);
1140 MSVCRT_wchar_t* __cdecl MSVCRT__wgetenv(const MSVCRT_wchar_t*);
1141 void __cdecl MSVCRT__wsearchenv(const MSVCRT_wchar_t*, const MSVCRT_wchar_t*, MSVCRT_wchar_t*);
1142 MSVCRT_intptr_t __cdecl MSVCRT__spawnvpe(int, const char*, const char* const*, const char* const*);
1143 void __cdecl MSVCRT__invalid_parameter(const MSVCRT_wchar_t *expr, const MSVCRT_wchar_t *func,
1144 const MSVCRT_wchar_t *file, unsigned int line, MSVCRT_uintptr_t arg);
1145 int __cdecl MSVCRT__toupper_l(int,MSVCRT__locale_t);
1146 int __cdecl MSVCRT__tolower_l(int,MSVCRT__locale_t);
1147 int __cdecl MSVCRT__strnicoll_l(const char*, const char*, MSVCRT_size_t, MSVCRT__locale_t);
1148 int __cdecl MSVCRT__strncoll_l(const char*, const char*, MSVCRT_size_t, MSVCRT__locale_t);
1149 unsigned int __cdecl MSVCRT__get_output_format(void);
1150 char* __cdecl MSVCRT_strtok_s(char*, const char*, char**);
1152 /* Maybe one day we'll enable the invalid parameter handlers with the full set of information (msvcrXXd)
1153 * #define MSVCRT_INVALID_PMT(x) MSVCRT_call_invalid_parameter_handler(x, __FUNCTION__, __FILE__, __LINE__, 0)
1154 * #define MSVCRT_CHECK_PMT(x) ((x) ? TRUE : MSVCRT_INVALID_PMT(#x),FALSE)
1155 * Until this is done, just keep the same semantics for CHECK_PMT(), but without generating / sending
1156 * any information
1157 * NB : MSVCRT_call_invalid_parameter_handler is a wrapper around MSVCRT__invalid_parameter in order
1158 * to do the Ansi to Unicode transformation
1160 #define MSVCRT_INVALID_PMT(x,err) (*MSVCRT__errno() = (err), MSVCRT__invalid_parameter(NULL, NULL, NULL, 0, 0))
1161 #define MSVCRT_CHECK_PMT_ERR(x,err) ((x) || (MSVCRT_INVALID_PMT( 0, (err) ), FALSE))
1162 #define MSVCRT_CHECK_PMT(x) MSVCRT_CHECK_PMT_ERR((x), MSVCRT_EINVAL)
1163 #endif
1165 #define MSVCRT__ARGMAX 100
1166 typedef int (*puts_clbk_a)(void*, int, const char*);
1167 typedef int (*puts_clbk_w)(void*, int, const MSVCRT_wchar_t*);
1168 typedef union _printf_arg
1170 void *get_ptr;
1171 int get_int;
1172 LONGLONG get_longlong;
1173 double get_double;
1174 } printf_arg;
1175 typedef printf_arg (*args_clbk)(void*, int, int, __ms_va_list*);
1176 int pf_printf_a(puts_clbk_a, void*, const char*, MSVCRT__locale_t,
1177 DWORD, args_clbk, void*, __ms_va_list*) DECLSPEC_HIDDEN;
1178 int pf_printf_w(puts_clbk_w, void*, const MSVCRT_wchar_t*, MSVCRT__locale_t,
1179 DWORD, args_clbk, void*, __ms_va_list*) DECLSPEC_HIDDEN;
1180 int create_positional_ctx_a(void*, const char*, __ms_va_list) DECLSPEC_HIDDEN;
1181 int create_positional_ctx_w(void*, const MSVCRT_wchar_t*, __ms_va_list) DECLSPEC_HIDDEN;
1182 printf_arg arg_clbk_valist(void*, int, int, __ms_va_list*) DECLSPEC_HIDDEN;
1183 printf_arg arg_clbk_positional(void*, int, int, __ms_va_list*) DECLSPEC_HIDDEN;
1185 #define MSVCRT_FLT_MIN 1.175494351e-38F
1186 #define MSVCRT_DBL_MIN 2.2250738585072014e-308
1187 #define MSVCRT__OVERFLOW 3
1188 #define MSVCRT__UNDERFLOW 4
1190 typedef struct
1192 float f;
1193 } MSVCRT__CRT_FLOAT;
1195 typedef struct
1197 double x;
1198 } MSVCRT__CRT_DOUBLE;
1200 extern char* __cdecl __unDName(char *,const char*,int,malloc_func_t,free_func_t,unsigned short int);
1202 /* __unDName/__unDNameEx flags */
1203 #define UNDNAME_COMPLETE (0x0000)
1204 #define UNDNAME_NO_LEADING_UNDERSCORES (0x0001) /* Don't show __ in calling convention */
1205 #define UNDNAME_NO_MS_KEYWORDS (0x0002) /* Don't show calling convention at all */
1206 #define UNDNAME_NO_FUNCTION_RETURNS (0x0004) /* Don't show function/method return value */
1207 #define UNDNAME_NO_ALLOCATION_MODEL (0x0008)
1208 #define UNDNAME_NO_ALLOCATION_LANGUAGE (0x0010)
1209 #define UNDNAME_NO_MS_THISTYPE (0x0020)
1210 #define UNDNAME_NO_CV_THISTYPE (0x0040)
1211 #define UNDNAME_NO_THISTYPE (0x0060)
1212 #define UNDNAME_NO_ACCESS_SPECIFIERS (0x0080) /* Don't show access specifier (public/protected/private) */
1213 #define UNDNAME_NO_THROW_SIGNATURES (0x0100)
1214 #define UNDNAME_NO_MEMBER_TYPE (0x0200) /* Don't show static/virtual specifier */
1215 #define UNDNAME_NO_RETURN_UDT_MODEL (0x0400)
1216 #define UNDNAME_32_BIT_DECODE (0x0800)
1217 #define UNDNAME_NAME_ONLY (0x1000) /* Only report the variable/method name */
1218 #define UNDNAME_NO_ARGUMENTS (0x2000) /* Don't show method arguments */
1219 #define UNDNAME_NO_SPECIAL_SYMS (0x4000)
1220 #define UNDNAME_NO_COMPLEX_TYPE (0x8000)
1222 #define UCRTBASE_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION (0x0001)
1223 #define UCRTBASE_PRINTF_STANDARD_SNPRINTF_BEHAVIOUR (0x0002)
1224 #define UCRTBASE_PRINTF_LEGACY_WIDE_SPECIFIERS (0x0004)
1225 #define UCRTBASE_PRINTF_LEGACY_MSVCRT_COMPATIBILITY (0x0008)
1226 #define UCRTBASE_PRINTF_LEGACY_THREE_DIGIT_EXPONENTS (0x0010)
1228 #define UCRTBASE_PRINTF_MASK (0x001F)
1230 #define MSVCRT_PRINTF_POSITIONAL_PARAMS (0x0100)
1231 #define MSVCRT_PRINTF_INVOKE_INVALID_PARAM_HANDLER (0x0200)
1233 #define UCRTBASE_SCANF_SECURECRT (0x0001)
1234 #define UCRTBASE_SCANF_LEGACY_WIDE_SPECIFIERS (0x0002)
1235 #define UCRTBASE_SCANF_LEGACY_MSVCRT_COMPATIBILITY (0x0004)
1237 #define UCRTBASE_SCANF_MASK (0x0007)
1239 #define COOPERATIVE_TIMEOUT_INFINITE ((unsigned int)-1)
1240 #define COOPERATIVE_WAIT_TIMEOUT ~0
1242 typedef enum {
1243 _FpCodeUnspecified,
1244 _FpCodeAdd,
1245 _FpCodeSubtract,
1246 _FpCodeMultiply,
1247 _FpCodeDivide,
1248 _FpCodeSquareRoot,
1249 _FpCodeRemainder,
1250 _FpCodeCompare,
1251 _FpCodeConvert,
1252 _FpCodeRound,
1253 _FpCodeTruncate,
1254 _FpCodeFloor,
1255 _FpCodeCeil,
1256 _FpCodeAcos,
1257 _FpCodeAsin,
1258 _FpCodeAtan,
1259 _FpCodeAtan2,
1260 _FpCodeCabs,
1261 _FpCodeCos,
1262 _FpCodeCosh,
1263 _FpCodeExp,
1264 _FpCodeFabs,
1265 _FpCodeFmod,
1266 _FpCodeFrexp,
1267 _FpCodeHypot,
1268 _FpCodeLdexp,
1269 _FpCodeLog,
1270 _FpCodeLog10,
1271 _FpCodeModf,
1272 _FpCodePow,
1273 _FpCodeSin,
1274 _FpCodeSinh,
1275 _FpCodeTan,
1276 _FpCodeTanh,
1277 _FpCodeY0,
1278 _FpCodeY1,
1279 _FpCodeYn,
1280 _FpCodeLogb,
1281 _FpCodeNextafter,
1282 _FpCodeNegate,
1283 _FpCodeFmin,
1284 _FpCodeFmax,
1285 _FpCodeConvertTrunc,
1286 _XMMIAddps,
1287 _XMMIAddss,
1288 _XMMISubps,
1289 _XMMISubss,
1290 _XMMIMulps,
1291 _XMMIMulss,
1292 _XMMIDivps,
1293 _XMMIDivss,
1294 _XMMISqrtps,
1295 _XMMISqrtss,
1296 _XMMIMaxps,
1297 _XMMIMaxss,
1298 _XMMIMinps,
1299 _XMMIMinss,
1300 _XMMICmpps,
1301 _XMMICmpss,
1302 _XMMIComiss,
1303 _XMMIUComiss,
1304 _XMMICvtpi2ps,
1305 _XMMICvtsi2ss,
1306 _XMMICvtps2pi,
1307 _XMMICvtss2si,
1308 _XMMICvttps2pi,
1309 _XMMICvttss2si,
1310 _XMMIAddsubps,
1311 _XMMIHaddps,
1312 _XMMIHsubps,
1313 _XMMI2Addpd,
1314 _XMMI2Addsd,
1315 _XMMI2Subpd,
1316 _XMMI2Subsd,
1317 _XMMI2Mulpd,
1318 _XMMI2Mulsd,
1319 _XMMI2Divpd,
1320 _XMMI2Divsd,
1321 _XMMI2Sqrtpd,
1322 _XMMI2Sqrtsd,
1323 _XMMI2Maxpd,
1324 _XMMI2Maxsd,
1325 _XMMI2Minpd,
1326 _XMMI2Minsd,
1327 _XMMI2Cmppd,
1328 _XMMI2Cmpsd,
1329 _XMMI2Comisd,
1330 _XMMI2UComisd,
1331 _XMMI2Cvtpd2pi,
1332 _XMMI2Cvtsd2si,
1333 _XMMI2Cvttpd2pi,
1334 _XMMI2Cvttsd2si,
1335 _XMMI2Cvtps2pd,
1336 _XMMI2Cvtss2sd,
1337 _XMMI2Cvtpd2ps,
1338 _XMMI2Cvtsd2ss,
1339 _XMMI2Cvtdq2ps,
1340 _XMMI2Cvttps2dq,
1341 _XMMI2Cvtps2dq,
1342 _XMMI2Cvttpd2dq,
1343 _XMMI2Cvtpd2dq,
1344 _XMMI2Addsubpd,
1345 _XMMI2Haddpd,
1346 _XMMI2Hsubpd,
1347 } _FP_OPERATION_CODE;
1349 typedef enum {
1350 _FpFormatFp32,
1351 _FpFormatFp64,
1352 _FpFormatFp80,
1353 _FpFormatFp128,
1354 _FpFormatI16,
1355 _FpFormatI32,
1356 _FpFormatI64,
1357 _FpFormatU16,
1358 _FpFormatU32,
1359 _FpFormatU64,
1360 _FpFormatBcd80,
1361 _FpFormatCompare,
1362 _FpFormatString,
1363 } _FPIEEE_FORMAT;
1365 typedef float _FP32;
1366 typedef double _FP64;
1367 typedef short _I16;
1368 typedef int _I32;
1369 typedef unsigned short _U16;
1370 typedef unsigned int _U32;
1371 typedef __int64 _Q64;
1373 typedef struct {
1374 unsigned short W[5];
1375 } _FP80;
1377 typedef struct DECLSPEC_ALIGN(16) {
1378 MSVCRT_ulong W[4];
1379 } _FP128;
1381 typedef struct DECLSPEC_ALIGN(8) {
1382 MSVCRT_ulong W[2];
1383 } _I64;
1385 typedef struct DECLSPEC_ALIGN(8) {
1386 MSVCRT_ulong W[2];
1387 } _U64;
1389 typedef struct {
1390 unsigned short W[5];
1391 } _BCD80;
1393 typedef struct DECLSPEC_ALIGN(16) {
1394 _Q64 W[2];
1395 } _FPQ64;
1397 typedef struct {
1398 union {
1399 _FP32 Fp32Value;
1400 _FP64 Fp64Value;
1401 _FP80 Fp80Value;
1402 _FP128 Fp128Value;
1403 _I16 I16Value;
1404 _I32 I32Value;
1405 _I64 I64Value;
1406 _U16 U16Value;
1407 _U32 U32Value;
1408 _U64 U64Value;
1409 _BCD80 Bcd80Value;
1410 char *StringValue;
1411 int CompareValue;
1412 _Q64 Q64Value;
1413 _FPQ64 Fpq64Value;
1414 } Value;
1415 unsigned int OperandValid : 1;
1416 unsigned int Format : 4;
1417 } _FPIEEE_VALUE;
1419 typedef struct {
1420 unsigned int Inexact : 1;
1421 unsigned int Underflow : 1;
1422 unsigned int Overflow : 1;
1423 unsigned int ZeroDivide : 1;
1424 unsigned int InvalidOperation : 1;
1425 } _FPIEEE_EXCEPTION_FLAGS;
1427 typedef struct {
1428 unsigned int RoundingMode : 2;
1429 unsigned int Precision : 3;
1430 unsigned int Operation :12;
1431 _FPIEEE_EXCEPTION_FLAGS Cause;
1432 _FPIEEE_EXCEPTION_FLAGS Enable;
1433 _FPIEEE_EXCEPTION_FLAGS Status;
1434 _FPIEEE_VALUE Operand1;
1435 _FPIEEE_VALUE Operand2;
1436 _FPIEEE_VALUE Result;
1437 } _FPIEEE_RECORD, *_PFPIEEE_RECORD;
1439 #define INHERIT_THREAD_PRIORITY 0xF000
1440 #endif /* __WINE_MSVCRT_H */