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