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