user32/tests: Remove unneeded assignment (LLVM/Clang).
[wine] / dlls / msvcrt / msvcrt.h
1 /*
2  * Copyright 2001 Jon Griffiths
3  * Copyright 2004 Dimitrie O. Paun
4  *
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.
9  *
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.
14  *
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
18  *
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!
34  */
35
36 #ifndef __WINE_MSVCRT_H
37 #define __WINE_MSVCRT_H
38
39 #include <stdarg.h>
40
41 #include "windef.h"
42 #include "winbase.h"
43
44 #define MSVCRT_LONG_MAX    0x7fffffffL
45 #define MSVCRT_ULONG_MAX   0xffffffffUL
46 #define MSVCRT_I64_MAX    (((__int64)0x7fffffff << 32) | 0xffffffff)
47 #define MSVCRT_I64_MIN    (-MSVCRT_I64_MAX-1)
48 #define MSVCRT_UI64_MAX   (((unsigned __int64)0xffffffff << 32) | 0xffffffff)
49
50 #define MSVCRT__MAX_DRIVE  3
51 #define MSVCRT__MAX_DIR    256
52 #define MSVCRT__MAX_FNAME  256
53 #define MSVCRT__MAX_EXT    256
54
55 typedef unsigned short MSVCRT_wchar_t;
56 typedef unsigned short MSVCRT_wint_t;
57 typedef unsigned short MSVCRT_wctype_t;
58 typedef unsigned short MSVCRT__ino_t;
59 typedef unsigned int   MSVCRT__fsize_t;
60 typedef int            MSVCRT_long;
61 typedef unsigned int   MSVCRT_ulong;
62 #ifdef _WIN64
63 typedef unsigned __int64 MSVCRT_size_t;
64 typedef __int64 MSVCRT_intptr_t;
65 typedef unsigned __int64 MSVCRT_uintptr_t;
66 #else
67 typedef unsigned long MSVCRT_size_t;
68 typedef long MSVCRT_intptr_t;
69 typedef unsigned long MSVCRT_uintptr_t;
70 #endif
71 typedef unsigned int   MSVCRT__dev_t;
72 typedef int MSVCRT__off_t;
73 typedef int MSVCRT_clock_t;
74 typedef int MSVCRT___time32_t;
75 typedef __int64 DECLSPEC_ALIGN(8) MSVCRT___time64_t;
76 typedef __int64 DECLSPEC_ALIGN(8) MSVCRT_fpos_t;
77
78 typedef void (*__cdecl MSVCRT_terminate_handler)(void);
79 typedef void (*__cdecl MSVCRT_terminate_function)(void);
80 typedef void (*__cdecl MSVCRT_unexpected_handler)(void);
81 typedef void (*__cdecl MSVCRT_unexpected_function)(void);
82 typedef void (*__cdecl MSVCRT__se_translator_function)(unsigned int code, struct _EXCEPTION_POINTERS *info);
83 typedef void (*__cdecl MSVCRT__beginthread_start_routine_t)(void *);
84 typedef unsigned int (__stdcall *MSVCRT__beginthreadex_start_routine_t)(void *);
85 typedef int (*__cdecl MSVCRT__onexit_t)(void);
86 typedef void (__cdecl *MSVCRT_invalid_parameter_handler)(const MSVCRT_wchar_t*, const MSVCRT_wchar_t*, const MSVCRT_wchar_t*, unsigned, MSVCRT_uintptr_t);
87 typedef void (__cdecl *MSVCRT_purecall_handler)(void);
88
89 typedef struct {long double x;} MSVCRT__LDOUBLE;
90
91 struct MSVCRT_tm {
92     int tm_sec;
93     int tm_min;
94     int tm_hour;
95     int tm_mday;
96     int tm_mon;
97     int tm_year;
98     int tm_wday;
99     int tm_yday;
100     int tm_isdst;
101 };
102
103
104 /* TLS data */
105 extern DWORD msvcrt_tls_index;
106
107 struct __thread_data {
108     int                             thread_errno;
109     MSVCRT_ulong                    thread_doserrno;
110     unsigned int                    random_seed;        /* seed for rand() */
111     char                           *strtok_next;        /* next ptr for strtok() */
112     unsigned char                  *mbstok_next;        /* next ptr for mbstok() */
113     MSVCRT_wchar_t                 *wcstok_next;        /* next ptr for wcstok() */
114     char                           *efcvt_buffer;       /* buffer for ecvt/fcvt */
115     char                           *asctime_buffer;     /* buffer for asctime */
116     MSVCRT_wchar_t                 *wasctime_buffer;    /* buffer for wasctime */
117     struct MSVCRT_tm                time_buffer;        /* buffer for localtime/gmtime */
118     char                           *strerror_buffer;    /* buffer for strerror */
119     MSVCRT_wchar_t                 *wcserror_buffer;    /* buffer for wcserror */
120     int                             fpecode;
121     MSVCRT_terminate_function       terminate_handler;
122     MSVCRT_unexpected_function      unexpected_handler;
123     MSVCRT__se_translator_function  se_translator;
124     EXCEPTION_RECORD               *exc_record;
125     struct MSVCRT_localeinfo_struct *locale;
126 };
127
128 typedef struct __thread_data thread_data_t;
129
130 extern thread_data_t *msvcrt_get_thread_data(void);
131
132 extern int MSVCRT___lc_codepage;
133 extern int MSVCRT___lc_collate_cp;
134 extern int MSVCRT___mb_cur_max;
135 extern WORD MSVCRT__ctype [257];
136 extern WORD* MSVCRT__pctype;
137
138 void   msvcrt_set_errno(int);
139
140 void __cdecl _purecall(void);
141 void __cdecl _amsg_exit(int errnum);
142
143 extern char **MSVCRT__environ;
144 extern MSVCRT_wchar_t **MSVCRT__wenviron;
145
146 extern char ** msvcrt_SnapshotOfEnvironmentA(char **);
147 extern MSVCRT_wchar_t ** msvcrt_SnapshotOfEnvironmentW(MSVCRT_wchar_t **);
148
149 MSVCRT_wchar_t *msvcrt_wstrdupa(const char *);
150
151 /* FIXME: This should be declared in new.h but it's not an extern "C" so
152  * it would not be much use anyway. Even for Winelib applications.
153  */
154 int __cdecl MSVCRT__set_new_mode(int mode);
155
156 void* __cdecl MSVCRT_operator_new(MSVCRT_size_t);
157 void __cdecl MSVCRT_operator_delete(void*);
158
159 typedef void* (*__cdecl malloc_func_t)(MSVCRT_size_t);
160 typedef void  (*__cdecl free_func_t)(void*);
161
162 extern char* __cdecl __unDName(char *,const char*,int,malloc_func_t,free_func_t,unsigned short int);
163 extern char* __cdecl __unDNameEx(char *,const char*,int,malloc_func_t,free_func_t,void *,unsigned short int);
164
165 /* Setup and teardown multi threaded locks */
166 extern void msvcrt_init_mt_locks(void);
167 extern void msvcrt_free_mt_locks(void);
168
169 extern void msvcrt_init_math(void);
170 extern void msvcrt_init_io(void);
171 extern void msvcrt_free_io(void);
172 extern void msvcrt_init_console(void);
173 extern void msvcrt_free_console(void);
174 extern void msvcrt_init_args(void);
175 extern void msvcrt_free_args(void);
176 extern void msvcrt_init_signals(void);
177 extern void msvcrt_free_signals(void);
178
179 extern unsigned msvcrt_create_io_inherit_block(WORD*, BYTE**);
180
181 extern unsigned int __cdecl _control87(unsigned int, unsigned int);
182
183 /* run-time error codes */
184 #define _RT_STACK       0
185 #define _RT_NULLPTR     1
186 #define _RT_FLOAT       2
187 #define _RT_INTDIV      3
188 #define _RT_EXECMEM     5
189 #define _RT_EXECFORM    6
190 #define _RT_EXECENV     7
191 #define _RT_SPACEARG    8
192 #define _RT_SPACEENV    9
193 #define _RT_ABORT       10
194 #define _RT_NPTR        12
195 #define _RT_FPTR        13
196 #define _RT_BREAK       14
197 #define _RT_INT         15
198 #define _RT_THREAD      16
199 #define _RT_LOCK        17
200 #define _RT_HEAP        18
201 #define _RT_OPENCON     19
202 #define _RT_QWIN        20
203 #define _RT_NOMAIN      21
204 #define _RT_NONCONT     22
205 #define _RT_INVALDISP   23
206 #define _RT_ONEXIT      24
207 #define _RT_PUREVIRT    25
208 #define _RT_STDIOINIT   26
209 #define _RT_LOWIOINIT   27
210 #define _RT_HEAPINIT    28
211 #define _RT_DOMAIN      120
212 #define _RT_SING        121
213 #define _RT_TLOSS       122
214 #define _RT_CRNL        252
215 #define _RT_BANNER      255
216
217 struct MSVCRT___timeb32 {
218     MSVCRT___time32_t  time;
219     unsigned short millitm;
220     short          timezone;
221     short          dstflag;
222 };
223
224 struct MSVCRT___timeb64 {
225     MSVCRT___time64_t time;
226     unsigned short millitm;
227     short          timezone;
228     short          dstflag;
229 };
230
231 struct MSVCRT__iobuf {
232   char* _ptr;
233   int   _cnt;
234   char* _base;
235   int   _flag;
236   int   _file;
237   int   _charbuf;
238   int   _bufsiz;
239   char* _tmpfname;
240 };
241
242 typedef struct MSVCRT__iobuf MSVCRT_FILE;
243
244 struct MSVCRT_lconv {
245     char* decimal_point;
246     char* thousands_sep;
247     char* grouping;
248     char* int_curr_symbol;
249     char* currency_symbol;
250     char* mon_decimal_point;
251     char* mon_thousands_sep;
252     char* mon_grouping;
253     char* positive_sign;
254     char* negative_sign;
255     char int_frac_digits;
256     char frac_digits;
257     char p_cs_precedes;
258     char p_sep_by_space;
259     char n_cs_precedes;
260     char n_sep_by_space;
261     char p_sign_posn;
262     char n_sign_posn;
263 };
264
265 struct MSVCRT__exception {
266   int     type;
267   char*   name;
268   double  arg1;
269   double  arg2;
270   double  retval;
271 };
272
273 struct MSVCRT__complex {
274   double x;      /* Real part */
275   double y;      /* Imaginary part */
276 };
277
278 typedef struct MSVCRT__div_t {
279     int quot;  /* quotient */
280     int rem;   /* remainder */
281 } MSVCRT_div_t;
282
283 typedef struct MSVCRT__ldiv_t {
284     MSVCRT_long quot;  /* quotient */
285     MSVCRT_long rem;   /* remainder */
286 } MSVCRT_ldiv_t;
287
288 struct MSVCRT__heapinfo {
289   int*           _pentry;
290   MSVCRT_size_t  _size;
291   int            _useflag;
292 };
293
294 #ifdef __i386__
295 struct MSVCRT___JUMP_BUFFER {
296     unsigned long Ebp;
297     unsigned long Ebx;
298     unsigned long Edi;
299     unsigned long Esi;
300     unsigned long Esp;
301     unsigned long Eip;
302     unsigned long Registration;
303     unsigned long TryLevel;
304     /* Start of new struct members */
305     unsigned long Cookie;
306     unsigned long UnwindFunc;
307     unsigned long UnwindData[6];
308 };
309 #elif defined(__x86_64__)
310 struct MSVCRT__SETJMP_FLOAT128
311 {
312     unsigned __int64 DECLSPEC_ALIGN(16) Part[2];
313 };
314 struct MSVCRT___JUMP_BUFFER
315 {
316     unsigned __int64 Frame;
317     unsigned __int64 Rbx;
318     unsigned __int64 Rsp;
319     unsigned __int64 Rbp;
320     unsigned __int64 Rsi;
321     unsigned __int64 Rdi;
322     unsigned __int64 R12;
323     unsigned __int64 R13;
324     unsigned __int64 R14;
325     unsigned __int64 R15;
326     unsigned __int64 Rip;
327     unsigned __int64 Spare;
328     struct MSVCRT__SETJMP_FLOAT128 Xmm6;
329     struct MSVCRT__SETJMP_FLOAT128 Xmm7;
330     struct MSVCRT__SETJMP_FLOAT128 Xmm8;
331     struct MSVCRT__SETJMP_FLOAT128 Xmm9;
332     struct MSVCRT__SETJMP_FLOAT128 Xmm10;
333     struct MSVCRT__SETJMP_FLOAT128 Xmm11;
334     struct MSVCRT__SETJMP_FLOAT128 Xmm12;
335     struct MSVCRT__SETJMP_FLOAT128 Xmm13;
336     struct MSVCRT__SETJMP_FLOAT128 Xmm14;
337     struct MSVCRT__SETJMP_FLOAT128 Xmm15;
338 };
339 #endif /* __i386__ */
340
341 struct MSVCRT__diskfree_t {
342   unsigned int total_clusters;
343   unsigned int avail_clusters;
344   unsigned int sectors_per_cluster;
345   unsigned int bytes_per_sector;
346 };
347
348 struct MSVCRT__finddata32_t {
349   unsigned int      attrib;
350   MSVCRT___time32_t time_create;
351   MSVCRT___time32_t time_access;
352   MSVCRT___time32_t time_write;
353   MSVCRT__fsize_t   size;
354   char              name[260];
355 };
356
357 struct MSVCRT__finddata32i64_t {
358   unsigned int      attrib;
359   MSVCRT___time32_t time_create;
360   MSVCRT___time32_t time_access;
361   MSVCRT___time32_t time_write;
362   __int64 DECLSPEC_ALIGN(8) size;
363   char              name[260];
364 };
365
366 struct MSVCRT__finddata64i32_t {
367   unsigned int      attrib;
368   MSVCRT___time64_t time_create;
369   MSVCRT___time64_t time_access;
370   MSVCRT___time64_t time_write;
371   MSVCRT__fsize_t   size;
372   char              name[260];
373 };
374
375 struct MSVCRT__finddata64_t {
376   unsigned int      attrib;
377   MSVCRT___time64_t time_create;
378   MSVCRT___time64_t time_access;
379   MSVCRT___time64_t time_write;
380   __int64 DECLSPEC_ALIGN(8) size;
381   char              name[260];
382 };
383
384 struct MSVCRT__wfinddata32_t {
385   unsigned int      attrib;
386   MSVCRT___time32_t time_create;
387   MSVCRT___time32_t time_access;
388   MSVCRT___time32_t time_write;
389   MSVCRT__fsize_t   size;
390   MSVCRT_wchar_t    name[260];
391 };
392
393 struct MSVCRT__wfinddata32i64_t {
394   unsigned int      attrib;
395   MSVCRT___time32_t time_create;
396   MSVCRT___time32_t time_access;
397   MSVCRT___time32_t time_write;
398   __int64 DECLSPEC_ALIGN(8) size;
399   MSVCRT_wchar_t    name[260];
400 };
401
402 struct MSVCRT__wfinddata64i32_t {
403   unsigned int      attrib;
404   MSVCRT___time64_t time_create;
405   MSVCRT___time64_t time_access;
406   MSVCRT___time64_t time_write;
407   MSVCRT__fsize_t   size;
408   MSVCRT_wchar_t    name[260];
409 };
410
411 struct MSVCRT__wfinddata64_t {
412   unsigned int      attrib;
413   MSVCRT___time64_t time_create;
414   MSVCRT___time64_t time_access;
415   MSVCRT___time64_t time_write;
416   __int64 DECLSPEC_ALIGN(8) size;
417   MSVCRT_wchar_t    name[260];
418 };
419
420 struct MSVCRT___utimbuf32
421 {
422     MSVCRT___time32_t actime;
423     MSVCRT___time32_t modtime;
424 };
425
426 struct MSVCRT___utimbuf64
427 {
428     MSVCRT___time64_t actime;
429     MSVCRT___time64_t modtime;
430 };
431
432 /* for FreeBSD */
433 #undef st_atime
434 #undef st_ctime
435 #undef st_mtime
436
437 struct MSVCRT__stat32 {
438   MSVCRT__dev_t     st_dev;
439   MSVCRT__ino_t     st_ino;
440   unsigned short    st_mode;
441   short             st_nlink;
442   short             st_uid;
443   short             st_gid;
444   MSVCRT__dev_t     st_rdev;
445   MSVCRT__off_t     st_size;
446   MSVCRT___time32_t st_atime;
447   MSVCRT___time32_t st_mtime;
448   MSVCRT___time32_t st_ctime;
449 };
450
451 struct MSVCRT__stat32i64 {
452   MSVCRT__dev_t     st_dev;
453   MSVCRT__ino_t     st_ino;
454   unsigned short    st_mode;
455   short             st_nlink;
456   short             st_uid;
457   short             st_gid;
458   MSVCRT__dev_t     st_rdev;
459   __int64 DECLSPEC_ALIGN(8) st_size;
460   MSVCRT___time32_t st_atime;
461   MSVCRT___time32_t st_mtime;
462   MSVCRT___time32_t st_ctime;
463 };
464
465 struct MSVCRT__stat64i32 {
466   MSVCRT__dev_t     st_dev;
467   MSVCRT__ino_t     st_ino;
468   unsigned short    st_mode;
469   short             st_nlink;
470   short             st_uid;
471   short             st_gid;
472   MSVCRT__dev_t     st_rdev;
473   MSVCRT__off_t     st_size;
474   MSVCRT___time64_t st_atime;
475   MSVCRT___time64_t st_mtime;
476   MSVCRT___time64_t st_ctime;
477 };
478
479 struct MSVCRT__stat64 {
480   MSVCRT__dev_t     st_dev;
481   MSVCRT__ino_t     st_ino;
482   unsigned short    st_mode;
483   short             st_nlink;
484   short             st_uid;
485   short             st_gid;
486   MSVCRT__dev_t     st_rdev;
487   __int64 DECLSPEC_ALIGN(8) st_size;
488   MSVCRT___time64_t st_atime;
489   MSVCRT___time64_t st_mtime;
490   MSVCRT___time64_t st_ctime;
491 };
492
493 #ifdef _WIN64
494 #define MSVCRT__finddata_t     MSVCRT__finddata64i32_t
495 #define MSVCRT__finddatai64_t  MSVCRT__finddata64_t
496 #define MSVCRT__wfinddata_t    MSVCRT__wfinddata64i32_t
497 #define MSVCRT__wfinddatai64_t MSVCRT__wfinddata64_t
498 #define MSVCRT__stat           MSVCRT__stat64i32
499 #define MSVCRT__stati64        MSVCRT__stat64
500 #else
501 #define MSVCRT__finddata_t     MSVCRT__finddata32_t
502 #define MSVCRT__finddatai64_t  MSVCRT__finddata32i64_t
503 #define MSVCRT__wfinddata_t    MSVCRT__wfinddata32_t
504 #define MSVCRT__wfinddatai64_t MSVCRT__wfinddata32i64_t
505 #define MSVCRT__stat           MSVCRT__stat32
506 #define MSVCRT__stati64        MSVCRT__stat32i64
507 #endif
508
509 #define MSVCRT_WEOF (MSVCRT_wint_t)(0xFFFF)
510 #define MSVCRT_EOF       (-1)
511 #define MSVCRT_TMP_MAX   0x7fff
512 #define MSVCRT_RAND_MAX  0x7fff
513 #define MSVCRT_BUFSIZ    512
514
515 #define MSVCRT_STDIN_FILENO  0
516 #define MSVCRT_STDOUT_FILENO 1
517 #define MSVCRT_STDERR_FILENO 2
518
519 /* more file._flag flags, but these conflict with Unix */
520 #define MSVCRT__IOFBF    0x0000
521 #define MSVCRT__IONBF    0x0004
522 #define MSVCRT__IOLBF    0x0040
523
524 #define MSVCRT_FILENAME_MAX 260
525 #define MSVCRT_DRIVE_MAX    3
526 #define MSVCRT_FNAME_MAX    256
527 #define MSVCRT_DIR_MAX      256
528 #define MSVCRT_EXT_MAX      256
529 #define MSVCRT_PATH_MAX     260
530 #define MSVCRT_stdin       (MSVCRT__iob+MSVCRT_STDIN_FILENO)
531 #define MSVCRT_stdout      (MSVCRT__iob+MSVCRT_STDOUT_FILENO)
532 #define MSVCRT_stderr      (MSVCRT__iob+MSVCRT_STDERR_FILENO)
533
534 #define MSVCRT__P_WAIT    0
535 #define MSVCRT__P_NOWAIT  1
536 #define MSVCRT__P_OVERLAY 2
537 #define MSVCRT__P_NOWAITO 3
538 #define MSVCRT__P_DETACH  4
539
540 #define MSVCRT_EPERM   1
541 #define MSVCRT_ENOENT  2
542 #define MSVCRT_ESRCH   3
543 #define MSVCRT_EINTR   4
544 #define MSVCRT_EIO     5
545 #define MSVCRT_ENXIO   6
546 #define MSVCRT_E2BIG   7
547 #define MSVCRT_ENOEXEC 8
548 #define MSVCRT_EBADF   9
549 #define MSVCRT_ECHILD  10
550 #define MSVCRT_EAGAIN  11
551 #define MSVCRT_ENOMEM  12
552 #define MSVCRT_EACCES  13
553 #define MSVCRT_EFAULT  14
554 #define MSVCRT_EBUSY   16
555 #define MSVCRT_EEXIST  17
556 #define MSVCRT_EXDEV   18
557 #define MSVCRT_ENODEV  19
558 #define MSVCRT_ENOTDIR 20
559 #define MSVCRT_EISDIR  21
560 #define MSVCRT_EINVAL  22
561 #define MSVCRT_ENFILE  23
562 #define MSVCRT_EMFILE  24
563 #define MSVCRT_ENOTTY  25
564 #define MSVCRT_EFBIG   27
565 #define MSVCRT_ENOSPC  28
566 #define MSVCRT_ESPIPE  29
567 #define MSVCRT_EROFS   30
568 #define MSVCRT_EMLINK  31
569 #define MSVCRT_EPIPE   32
570 #define MSVCRT_EDOM    33
571 #define MSVCRT_ERANGE  34
572 #define MSVCRT_EDEADLK 36
573 #define MSVCRT_EDEADLOCK MSVCRT_EDEADLK
574 #define MSVCRT_ENAMETOOLONG 38
575 #define MSVCRT_ENOLCK  39
576 #define MSVCRT_ENOSYS  40
577 #define MSVCRT_ENOTEMPTY 41
578 #define MSVCRT_EILSEQ    42
579 #define MSVCRT_STRUNCATE 80
580
581 #define MSVCRT_LC_ALL          0
582 #define MSVCRT_LC_COLLATE      1
583 #define MSVCRT_LC_CTYPE        2
584 #define MSVCRT_LC_MONETARY     3
585 #define MSVCRT_LC_NUMERIC      4
586 #define MSVCRT_LC_TIME         5
587 #define MSVCRT_LC_MIN          MSVCRT_LC_ALL
588 #define MSVCRT_LC_MAX          MSVCRT_LC_TIME
589
590 #define MSVCRT__HEAPEMPTY      -1
591 #define MSVCRT__HEAPOK         -2
592 #define MSVCRT__HEAPBADBEGIN   -3
593 #define MSVCRT__HEAPBADNODE    -4
594 #define MSVCRT__HEAPEND        -5
595 #define MSVCRT__HEAPBADPTR     -6
596
597 #define MSVCRT__FREEENTRY      0
598 #define MSVCRT__USEDENTRY      1
599
600 #define MSVCRT__OUT_TO_DEFAULT 0
601 #define MSVCRT__OUT_TO_STDERR  1
602 #define MSVCRT__OUT_TO_MSGBOX  2
603 #define MSVCRT__REPORT_ERRMODE 3
604
605 /* ASCII char classification table - binary compatible */
606 #define MSVCRT__UPPER    0x0001  /* C1_UPPER */
607 #define MSVCRT__LOWER    0x0002  /* C1_LOWER */
608 #define MSVCRT__DIGIT    0x0004  /* C1_DIGIT */
609 #define MSVCRT__SPACE    0x0008  /* C1_SPACE */
610 #define MSVCRT__PUNCT    0x0010  /* C1_PUNCT */
611 #define MSVCRT__CONTROL  0x0020  /* C1_CNTRL */
612 #define MSVCRT__BLANK    0x0040  /* C1_BLANK */
613 #define MSVCRT__HEX      0x0080  /* C1_XDIGIT */
614 #define MSVCRT__LEADBYTE 0x8000
615 #define MSVCRT__ALPHA   (0x0100|MSVCRT__UPPER|MSVCRT__LOWER)  /* (C1_ALPHA|_UPPER|_LOWER) */
616
617 #define MSVCRT__IOREAD   0x0001
618 #define MSVCRT__IOWRT    0x0002
619 #define MSVCRT__IOMYBUF  0x0008
620 #define MSVCRT__IOEOF    0x0010
621 #define MSVCRT__IOERR    0x0020
622 #define MSVCRT__IOSTRG   0x0040
623 #define MSVCRT__IORW     0x0080
624
625 #define MSVCRT__S_IEXEC  0x0040
626 #define MSVCRT__S_IWRITE 0x0080
627 #define MSVCRT__S_IREAD  0x0100
628 #define MSVCRT__S_IFIFO  0x1000
629 #define MSVCRT__S_IFCHR  0x2000
630 #define MSVCRT__S_IFDIR  0x4000
631 #define MSVCRT__S_IFREG  0x8000
632 #define MSVCRT__S_IFMT   0xF000
633
634 #define MSVCRT__LK_UNLCK  0
635 #define MSVCRT__LK_LOCK   1
636 #define MSVCRT__LK_NBLCK  2
637 #define MSVCRT__LK_RLCK   3
638 #define MSVCRT__LK_NBRLCK 4
639
640 #define MSVCRT__SH_COMPAT       0x00    /* Compatibility */
641 #define MSVCRT__SH_DENYRW       0x10    /* Deny read/write */
642 #define MSVCRT__SH_DENYWR       0x20    /* Deny write */
643 #define MSVCRT__SH_DENYRD       0x30    /* Deny read */
644 #define MSVCRT__SH_DENYNO       0x40    /* Deny nothing */
645
646 #define MSVCRT__O_RDONLY        0
647 #define MSVCRT__O_WRONLY        1
648 #define MSVCRT__O_RDWR          2
649 #define MSVCRT__O_ACCMODE       (MSVCRT__O_RDONLY|MSVCRT__O_WRONLY|MSVCRT__O_RDWR)
650 #define MSVCRT__O_APPEND        0x0008
651 #define MSVCRT__O_RANDOM        0x0010
652 #define MSVCRT__O_SEQUENTIAL    0x0020
653 #define MSVCRT__O_TEMPORARY     0x0040
654 #define MSVCRT__O_NOINHERIT     0x0080
655 #define MSVCRT__O_CREAT         0x0100
656 #define MSVCRT__O_TRUNC         0x0200
657 #define MSVCRT__O_EXCL          0x0400
658 #define MSVCRT__O_SHORT_LIVED   0x1000
659 #define MSVCRT__O_TEXT          0x4000
660 #define MSVCRT__O_BINARY        0x8000
661 #define MSVCRT__O_RAW           MSVCRT__O_BINARY
662
663 /* _statusfp bit flags */
664 #define MSVCRT__SW_INEXACT      0x00000001 /* inexact (precision) */
665 #define MSVCRT__SW_UNDERFLOW    0x00000002 /* underflow */
666 #define MSVCRT__SW_OVERFLOW     0x00000004 /* overflow */
667 #define MSVCRT__SW_ZERODIVIDE   0x00000008 /* zero divide */
668 #define MSVCRT__SW_INVALID      0x00000010 /* invalid */
669
670 #define MSVCRT__SW_UNEMULATED     0x00000040  /* unemulated instruction */
671 #define MSVCRT__SW_SQRTNEG        0x00000080  /* square root of a neg number */
672 #define MSVCRT__SW_STACKOVERFLOW  0x00000200  /* FP stack overflow */
673 #define MSVCRT__SW_STACKUNDERFLOW 0x00000400  /* FP stack underflow */
674
675 #define MSVCRT__SW_DENORMAL     0x00080000 /* denormal status bit */
676
677 /* fpclass constants */
678 #define MSVCRT__FPCLASS_SNAN 0x0001  /* Signaling "Not a Number" */
679 #define MSVCRT__FPCLASS_QNAN 0x0002  /* Quiet "Not a Number" */
680 #define MSVCRT__FPCLASS_NINF 0x0004  /* Negative Infinity */
681 #define MSVCRT__FPCLASS_NN   0x0008  /* Negative Normal */
682 #define MSVCRT__FPCLASS_ND   0x0010  /* Negative Denormal */
683 #define MSVCRT__FPCLASS_NZ   0x0020  /* Negative Zero */
684 #define MSVCRT__FPCLASS_PZ   0x0040  /* Positive Zero */
685 #define MSVCRT__FPCLASS_PD   0x0080  /* Positive Denormal */
686 #define MSVCRT__FPCLASS_PN   0x0100  /* Positive Normal */
687 #define MSVCRT__FPCLASS_PINF 0x0200  /* Positive Infinity */
688
689 #define MSVCRT__MCW_EM        0x0008001f
690 #define MSVCRT__MCW_IC        0x00040000
691 #define MSVCRT__MCW_RC        0x00000300
692 #define MSVCRT__MCW_PC        0x00030000
693 #define MSVCRT__MCW_DN        0x03000000
694
695 #define MSVCRT__EM_INVALID    0x00000010
696 #define MSVCRT__EM_DENORMAL   0x00080000
697 #define MSVCRT__EM_ZERODIVIDE 0x00000008
698 #define MSVCRT__EM_OVERFLOW   0x00000004
699 #define MSVCRT__EM_UNDERFLOW  0x00000002
700 #define MSVCRT__EM_INEXACT    0x00000001
701 #define MSVCRT__IC_AFFINE     0x00040000
702 #define MSVCRT__IC_PROJECTIVE 0x00000000
703 #define MSVCRT__RC_CHOP       0x00000300
704 #define MSVCRT__RC_UP         0x00000200
705 #define MSVCRT__RC_DOWN       0x00000100
706 #define MSVCRT__RC_NEAR       0x00000000
707 #define MSVCRT__PC_24         0x00020000
708 #define MSVCRT__PC_53         0x00010000
709 #define MSVCRT__PC_64         0x00000000
710 #define MSVCRT__DN_SAVE       0x00000000
711 #define MSVCRT__DN_FLUSH      0x01000000
712 #define MSVCRT__DN_FLUSH_OPERANDS_SAVE_RESULTS 0x02000000
713 #define MSVCRT__DN_SAVE_OPERANDS_FLUSH_RESULTS 0x03000000
714 #define MSVCRT__EM_AMBIGUOUS  0x80000000
715
716 #define MSVCRT_CLOCKS_PER_SEC 1000
717
718 /* signals */
719 #define MSVCRT_SIGINT   2
720 #define MSVCRT_SIGILL   4
721 #define MSVCRT_SIGFPE   8
722 #define MSVCRT_SIGSEGV  11
723 #define MSVCRT_SIGTERM  15
724 #define MSVCRT_SIGBREAK 21
725 #define MSVCRT_SIGABRT  22
726 #define MSVCRT_NSIG     (MSVCRT_SIGABRT + 1)
727
728 typedef void (__cdecl *MSVCRT___sighandler_t)(int);
729
730 #define MSVCRT_SIG_DFL ((MSVCRT___sighandler_t)0)
731 #define MSVCRT_SIG_IGN ((MSVCRT___sighandler_t)1)
732 #define MSVCRT_SIG_ERR ((MSVCRT___sighandler_t)-1)
733
734 #define MSVCRT__FPE_INVALID            0x81
735 #define MSVCRT__FPE_DENORMAL           0x82
736 #define MSVCRT__FPE_ZERODIVIDE         0x83
737 #define MSVCRT__FPE_OVERFLOW           0x84
738 #define MSVCRT__FPE_UNDERFLOW          0x85
739 #define MSVCRT__FPE_INEXACT            0x86
740 #define MSVCRT__FPE_UNEMULATED         0x87
741 #define MSVCRT__FPE_SQRTNEG            0x88
742 #define MSVCRT__FPE_STACKOVERFLOW      0x8a
743 #define MSVCRT__FPE_STACKUNDERFLOW     0x8b
744 #define MSVCRT__FPE_EXPLICITGEN        0x8c
745
746 #define _MS     0x01
747 #define _MP     0x02
748 #define _M1     0x04
749 #define _M2     0x08
750
751 #define _SBUP   0x10
752 #define _SBLOW  0x20
753
754 #define _MBC_SINGLE     0
755 #define _MBC_LEAD       1
756 #define _MBC_TRAIL      2
757 #define _MBC_ILLEGAL    -1
758
759 #define _MB_CP_SBCS     0
760 #define _MB_CP_OEM      -2
761 #define _MB_CP_ANSI     -3
762 #define _MB_CP_LOCALE   -4
763
764 #define MSVCRT__TRUNCATE ((MSVCRT_size_t)-1)
765
766 #define _MAX__TIME64_T    (((MSVCRT___time64_t)0x00000007 << 32) | 0x93406FFF)
767
768 /* _set_abort_behavior codes */
769 #define MSVCRT__WRITE_ABORT_MSG    1
770 #define MSVCRT__CALL_REPORTFAULT   2
771
772 void  __cdecl    MSVCRT_free(void*);
773 void* __cdecl    MSVCRT_malloc(MSVCRT_size_t);
774 void* __cdecl    MSVCRT_calloc(MSVCRT_size_t,MSVCRT_size_t);
775 void* __cdecl    MSVCRT_realloc(void*,MSVCRT_size_t);
776
777 int __cdecl      MSVCRT_iswalpha(MSVCRT_wint_t);
778 int __cdecl      MSVCRT_iswspace(MSVCRT_wint_t);
779 int __cdecl      MSVCRT_iswdigit(MSVCRT_wint_t);
780 int __cdecl      MSVCRT_isleadbyte(int);
781
782 int __cdecl      MSVCRT_fgetc(MSVCRT_FILE*);
783 int __cdecl      MSVCRT_ungetc(int,MSVCRT_FILE*);
784 MSVCRT_wint_t __cdecl MSVCRT_fgetwc(MSVCRT_FILE*);
785 MSVCRT_wint_t __cdecl MSVCRT_ungetwc(MSVCRT_wint_t,MSVCRT_FILE*);
786 void __cdecl     MSVCRT__exit(int);
787 void __cdecl     MSVCRT_abort(void);
788 MSVCRT_ulong* __cdecl MSVCRT___doserrno(void);
789 int* __cdecl     MSVCRT__errno(void);
790 char* __cdecl    MSVCRT_getenv(const char*);
791 char* __cdecl    MSVCRT_setlocale(int,const char*);
792 int __cdecl      MSVCRT_fclose(MSVCRT_FILE*);
793 void __cdecl     MSVCRT_terminate(void);
794 MSVCRT_FILE* __cdecl MSVCRT__iob_func(void);
795 MSVCRT_clock_t __cdecl MSVCRT_clock(void);
796 MSVCRT___time32_t __cdecl MSVCRT__time32(MSVCRT___time32_t*);
797 MSVCRT___time64_t __cdecl MSVCRT__time64(MSVCRT___time64_t*);
798 MSVCRT_FILE*   __cdecl MSVCRT__fdopen(int, const char *);
799 MSVCRT_FILE*   __cdecl MSVCRT__wfdopen(int, const MSVCRT_wchar_t *);
800 int            __cdecl MSVCRT_vsnprintf(char *str, MSVCRT_size_t len, const char *format, __ms_va_list valist);
801 int            __cdecl MSVCRT_vsnwprintf(MSVCRT_wchar_t *str, MSVCRT_size_t len,
802                                        const MSVCRT_wchar_t *format, __ms_va_list valist );
803 int            __cdecl MSVCRT_sprintf(char*,const char*,...);
804 int            __cdecl MSVCRT__scprintf(const char*,...);
805 int            __cdecl MSVCRT_raise(int sig);
806
807 typedef struct MSVCRT_tagLC_ID {
808     unsigned short wLanguage;
809     unsigned short wCountry;
810     unsigned short wCodePage;
811 } MSVCRT_LC_ID, *MSVCRT_LPLC_ID;
812
813 typedef struct MSVCRT_threadlocaleinfostruct {
814     int refcount;
815     unsigned int lc_codepage;
816     unsigned int lc_collate_cp;
817     unsigned long lc_handle[6];
818     MSVCRT_LC_ID lc_id[6];
819     struct {
820         char *locale;
821         wchar_t *wlocale;
822         int *refcount;
823         int *wrefcount;
824     } lc_category[6];
825     int lc_clike;
826     int mb_cur_max;
827     int *lconv_intl_refcount;
828     int *lconv_num_refcount;
829     int *lconv_mon_refcount;
830     struct MSVCRT_lconv *lconv;
831     int *ctype1_refcount;
832     unsigned short *ctype1;
833     unsigned short *pctype;
834     unsigned char *pclmap;
835     unsigned char *pcumap;
836     struct MSVCRT___lc_time_data *lc_time_curr;
837 } MSVCRT_threadlocinfo;
838
839 typedef struct MSVCRT_threadmbcinfostruct {
840     int refcount;
841     int mbcodepage;
842     int ismbcodepage;
843     int mblcid;
844     unsigned short mbulinfo[6];
845     char mbctype[257];
846     char mbcasemap[256];
847 } MSVCRT_threadmbcinfo;
848
849 typedef struct MSVCRT_threadlocaleinfostruct *MSVCRT_pthreadlocinfo;
850 typedef struct MSVCRT_threadmbcinfostruct *MSVCRT_pthreadmbcinfo;
851
852 typedef struct MSVCRT_localeinfo_struct
853 {
854     MSVCRT_pthreadlocinfo locinfo;
855     MSVCRT_pthreadmbcinfo mbcinfo;
856 } MSVCRT__locale_tstruct, *MSVCRT__locale_t;
857
858 #define MSVCRT__ENABLE_PER_THREAD_LOCALE 1
859 #define MSVCRT__DISABLE_PER_THREAD_LOCALE 2
860
861 extern MSVCRT__locale_t MSVCRT_locale;
862 MSVCRT__locale_t get_locale(void);
863 void __cdecl MSVCRT__free_locale(MSVCRT__locale_t);
864
865 #ifndef __WINE_MSVCRT_TEST
866 int            __cdecl MSVCRT__write(int,const void*,unsigned int);
867 int            __cdecl _getch(void);
868 int            __cdecl _ismbblead(unsigned int);
869 int            __cdecl _ismbstrail(const unsigned char* start, const unsigned char* str);
870 MSVCRT_intptr_t __cdecl MSVCRT__spawnve(int,const char*,const char* const *,const char* const *);
871 MSVCRT_intptr_t __cdecl MSVRT__spawnvpe(int,const char*,const char* const *,const char* const *);
872 MSVCRT_intptr_t __cdecl _wspawnve(int,const MSVCRT_wchar_t*,const MSVCRT_wchar_t* const *,const MSVCRT_wchar_t* const *);
873 MSVCRT_intptr_t __cdecl _wspawnvpe(int,const MSVCRT_wchar_t*,const MSVCRT_wchar_t* const *,const MSVCRT_wchar_t* const *);
874 void __cdecl     _searchenv(const char*,const char*,char*);
875 int __cdecl      _getdrive(void);
876 char* __cdecl    _strdup(const char*);
877 char* __cdecl    MSVCRT__strnset(char*,int,MSVCRT_size_t);
878 char* __cdecl    _strset(char*,int);
879 int __cdecl      _ungetch(int);
880 int __cdecl      _cputs(const char*);
881 int __cdecl      _cprintf(const char*,...);
882 char*** __cdecl  __p__environ(void);
883 int*    __cdecl  __p___mb_cur_max(void);
884 unsigned int*  __cdecl __p__fmode(void);
885 MSVCRT_wchar_t* __cdecl _wcsdup(const MSVCRT_wchar_t*);
886 MSVCRT_wchar_t*** __cdecl __p__wenviron(void);
887 char*   __cdecl _strdate(char* date);
888 char*   __cdecl _strtime(char* date);
889 int     __cdecl _setmbcp(int);
890 int     __cdecl MSVCRT__close(int);
891 int     __cdecl MSVCRT__dup(int);
892 int     __cdecl MSVCRT__dup2(int, int);
893 int     __cdecl MSVCRT__pipe(int *, unsigned int, int);
894 MSVCRT_wchar_t* __cdecl _wgetenv(const MSVCRT_wchar_t*);
895 void __cdecl    _wsearchenv(const MSVCRT_wchar_t*, const MSVCRT_wchar_t*, MSVCRT_wchar_t*);
896 MSVCRT_intptr_t __cdecl MSVCRT__spawnvpe(int, const char*, const char* const*, const char* const*);
897 void __cdecl MSVCRT__invalid_parameter(const MSVCRT_wchar_t *expr, const MSVCRT_wchar_t *func,
898                                        const MSVCRT_wchar_t *file, unsigned int line, MSVCRT_uintptr_t arg);
899
900 /* Maybe one day we'll enable the invalid parameter handlers with the full set of information (msvcrXXd)
901  *      #define MSVCRT_INVALID_PMT(x) MSVCRT_call_invalid_parameter_handler(x, __FUNCTION__, __FILE__, __LINE__, 0)
902  *      #define MSVCRT_CHECK_PMT(x)   ((x) ? TRUE : MSVCRT_INVALID_PMT(#x),FALSE)
903  * Until this is done, just keep the same semantics for CHECK_PMT(), but without generating / sending
904  * any information
905  * NB : MSVCRT_call_invalid_parameter_handler is a wrapper around MSVCRT__invalid_parameter in order
906  * to do the Ansi to Unicode transformation
907  */
908 #define MSVCRT_INVALID_PMT(x) MSVCRT__invalid_parameter(NULL, NULL, NULL, 0, 0)
909 #define MSVCRT_CHECK_PMT(x)   ((x) || (MSVCRT_INVALID_PMT(0),FALSE))
910 #endif
911
912 typedef struct pf_output_t
913 {
914     int used;
915     int len;
916     BOOL unicode;
917     union {
918         LPWSTR W;
919         LPSTR  A;
920     } buf;
921     union {
922         LPWSTR W;
923         LPSTR  A;
924     } grow;
925 } pf_output;
926
927 int pf_vsnprintf( pf_output *out, const WCHAR *format,
928                   MSVCRT__locale_t locale, BOOL valid, __ms_va_list valist );
929
930 #define MSVCRT__OVERFLOW  3
931 #define MSVCRT__UNDERFLOW 4
932
933 typedef struct
934 {
935     float f;
936 } MSVCRT__CRT_FLOAT;
937
938 #endif /* __WINE_MSVCRT_H */