4 * Derived from the mingw header written by Colin Peters.
5 * Modified for Wine use by Jon Griffiths and Francois Gouget.
6 * This file is in the public domain.
10 #ifndef __WINE_USE_MSVCRT
11 #define __WINE_USE_MSVCRT
22 #ifndef _WCHAR_T_DEFINED
23 #define _WCHAR_T_DEFINED
25 typedef unsigned short wchar_t;
33 #define NULL ((void *)0)
38 #define WCHAR_MAX ((wchar_t)-1)
40 #if !defined(_MSC_VER) && !defined(__int64)
41 #define __int64 long long
44 #if defined(__x86_64__) && !defined(_WIN64)
48 #ifndef DECLSPEC_ALIGN
49 # if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
50 # define DECLSPEC_ALIGN(x) __declspec(align(x))
51 # elif defined(__GNUC__)
52 # define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
54 # define DECLSPEC_ALIGN(x)
58 typedef int mbstate_t;
60 #ifndef _SIZE_T_DEFINED
62 typedef unsigned __int64 size_t;
64 typedef unsigned int size_t;
66 #define _SIZE_T_DEFINED
69 #ifndef _WCTYPE_T_DEFINED
70 typedef unsigned short wint_t;
71 typedef unsigned short wctype_t;
72 #define _WCTYPE_T_DEFINED
76 #define WEOF (wint_t)(0xFFFF)
79 #ifndef _FSIZE_T_DEFINED
80 typedef unsigned long _fsize_t;
81 #define _FSIZE_T_DEFINED
84 #ifndef _DEV_T_DEFINED
85 typedef unsigned int _dev_t;
86 #define _DEV_T_DEFINED
89 #ifndef _INO_T_DEFINED
90 typedef unsigned short _ino_t;
91 #define _INO_T_DEFINED
94 #ifndef _OFF_T_DEFINED
96 #define _OFF_T_DEFINED
99 #ifndef _TIME_T_DEFINED
101 #define _TIME_T_DEFINED
104 #ifndef _TIME64_T_DEFINED
105 #define _TIME64_T_DEFINED
106 typedef __int64 __time64_t;
122 #endif /* _TM_DEFINED */
124 #ifndef _FILE_DEFINED
125 #define _FILE_DEFINED
126 typedef struct _iobuf
137 #endif /* _FILE_DEFINED */
139 #ifndef _WFINDDATA_T_DEFINED
140 #define _WFINDDATA_T_DEFINED
142 struct _wfinddata_t {
151 struct _wfinddatai64_t {
160 #endif /* _WFINDDATA_T_DEFINED */
162 #ifndef _STAT_DEFINED
163 #define _STAT_DEFINED
168 unsigned short st_mode;
182 unsigned short st_mode;
196 unsigned short st_mode;
201 __int64 DECLSPEC_ALIGN(8) st_size;
210 unsigned short st_mode;
215 __int64 DECLSPEC_ALIGN(8) st_size;
220 #endif /* _STAT_DEFINED */
222 /* ASCII char classification table - binary compatible */
223 #define _UPPER 0x0001 /* C1_UPPER */
224 #define _LOWER 0x0002 /* C1_LOWER */
225 #define _DIGIT 0x0004 /* C1_DIGIT */
226 #define _SPACE 0x0008 /* C1_SPACE */
227 #define _PUNCT 0x0010 /* C1_PUNCT */
228 #define _CONTROL 0x0020 /* C1_CNTRL */
229 #define _BLANK 0x0040 /* C1_BLANK */
230 #define _HEX 0x0080 /* C1_XDIGIT */
231 #define _LEADBYTE 0x8000
232 #define _ALPHA (0x0100|_UPPER|_LOWER) /* (C1_ALPHA|_UPPER|_LOWER) */
234 #ifndef _WCTYPE_DEFINED
235 #define _WCTYPE_DEFINED
236 int is_wctype(wint_t,wctype_t);
238 int iswalnum(wint_t);
239 int iswalpha(wint_t);
240 int iswascii(wint_t);
241 int iswcntrl(wint_t);
242 int iswctype(wint_t,wctype_t);
243 int iswdigit(wint_t);
244 int iswgraph(wint_t);
245 int iswlower(wint_t);
246 int iswprint(wint_t);
247 int iswpunct(wint_t);
248 int iswspace(wint_t);
249 int iswupper(wint_t);
250 int iswxdigit(wint_t);
251 wchar_t towlower(wchar_t);
252 wchar_t towupper(wchar_t);
253 #endif /* _WCTYPE_DEFINED */
255 #ifndef _WDIRECT_DEFINED
256 #define _WDIRECT_DEFINED
257 int _wchdir(const wchar_t*);
258 wchar_t* _wgetcwd(wchar_t*,int);
259 wchar_t* _wgetdcwd(int,wchar_t*,int);
260 int _wmkdir(const wchar_t*);
261 int _wrmdir(const wchar_t*);
262 #endif /* _WDIRECT_DEFINED */
266 int _waccess(const wchar_t*,int);
267 int _wchmod(const wchar_t*,int);
268 int _wcreat(const wchar_t*,int);
269 long _wfindfirst(const wchar_t*,struct _wfinddata_t*);
270 long _wfindfirsti64(const wchar_t*, struct _wfinddatai64_t*);
271 int _wfindnext(long,struct _wfinddata_t*);
272 int _wfindnexti64(long, struct _wfinddatai64_t*);
273 wchar_t*_wmktemp(wchar_t*);
274 int _wopen(const wchar_t*,int,...);
275 int _wrename(const wchar_t*,const wchar_t*);
276 int _wsopen(const wchar_t*,int,int,...);
277 int _wunlink(const wchar_t*);
278 #endif /* _WIO_DEFINED */
280 #ifndef _WLOCALE_DEFINED
281 #define _WLOCALE_DEFINED
282 wchar_t* _wsetlocale(int,const wchar_t*);
283 #endif /* _WLOCALE_DEFINED */
285 #ifndef _WPROCESS_DEFINED
286 #define _WPROCESS_DEFINED
287 int _wexecl(const wchar_t*,const wchar_t*,...);
288 int _wexecle(const wchar_t*,const wchar_t*,...);
289 int _wexeclp(const wchar_t*,const wchar_t*,...);
290 int _wexeclpe(const wchar_t*,const wchar_t*,...);
291 int _wexecv(const wchar_t*,const wchar_t* const *);
292 int _wexecve(const wchar_t*,const wchar_t* const *,const wchar_t* const *);
293 int _wexecvp(const wchar_t*,const wchar_t* const *);
294 int _wexecvpe(const wchar_t*,const wchar_t* const *,const wchar_t* const *);
295 int _wspawnl(int,const wchar_t*,const wchar_t*,...);
296 int _wspawnle(int,const wchar_t*,const wchar_t*,...);
297 int _wspawnlp(int,const wchar_t*,const wchar_t*,...);
298 int _wspawnlpe(int,const wchar_t*,const wchar_t*,...);
299 int _wspawnv(int,const wchar_t*,const wchar_t* const *);
300 int _wspawnve(int,const wchar_t*,const wchar_t* const *,const wchar_t* const *);
301 int _wspawnvp(int,const wchar_t*,const wchar_t* const *);
302 int _wspawnvpe(int,const wchar_t*,const wchar_t* const *,const wchar_t* const *);
303 int _wsystem(const wchar_t*);
304 #endif /* _WPROCESS_DEFINED */
306 #ifndef _WSTAT_DEFINED
307 #define _WSTAT_DEFINED
308 int _wstat(const wchar_t*,struct _stat*);
309 int _wstati64(const wchar_t*,struct _stati64*);
310 int _wstat64(const wchar_t*,struct _stat64*);
311 #endif /* _WSTAT_DEFINED */
313 #ifndef _WSTDIO_DEFINED
314 #define _WSTDIO_DEFINED
315 wint_t _fgetwchar(void);
316 wint_t _fputwchar(wint_t);
317 wchar_t*_getws(wchar_t*);
318 int _putws(const wchar_t*);
319 int _snwprintf(wchar_t*,size_t,const wchar_t*,...);
320 int _vsnwprintf(wchar_t*,size_t,const wchar_t*,va_list);
321 FILE* _wfdopen(int,const wchar_t*);
322 FILE* _wfopen(const wchar_t*,const wchar_t*);
323 FILE* _wfreopen(const wchar_t*,const wchar_t*,FILE*);
324 FILE* _wfsopen(const wchar_t*,const wchar_t*,int);
325 void _wperror(const wchar_t*);
326 FILE* _wpopen(const wchar_t*,const wchar_t*);
327 int _wremove(const wchar_t*);
328 wchar_t*_wtempnam(const wchar_t*,const wchar_t*);
329 wchar_t*_wtmpnam(wchar_t*);
331 wint_t fgetwc(FILE*);
332 wchar_t*fgetws(wchar_t*,int,FILE*);
333 wint_t fputwc(wint_t,FILE*);
334 int fputws(const wchar_t*,FILE*);
335 int fwprintf(FILE*,const wchar_t*,...);
336 int fputws(const wchar_t*,FILE*);
337 int fwscanf(FILE*,const wchar_t*,...);
339 wint_t getwchar(void);
340 wchar_t*getws(wchar_t*);
341 wint_t putwc(wint_t,FILE*);
342 wint_t putwchar(wint_t);
343 int putws(const wchar_t*);
344 int swprintf(wchar_t*,const wchar_t*,...);
345 int swscanf(const wchar_t*,const wchar_t*,...);
346 wint_t ungetwc(wint_t,FILE*);
347 int vfwprintf(FILE*,const wchar_t*,va_list);
348 int vswprintf(wchar_t*,const wchar_t*,va_list);
349 int vwprintf(const wchar_t*,va_list);
350 int wprintf(const wchar_t*,...);
351 int wscanf(const wchar_t*,...);
352 #endif /* _WSTDIO_DEFINED */
354 #ifndef _WSTDLIB_DEFINED
355 #define _WSTDLIB_DEFINED
356 wchar_t*_itow(int,wchar_t*,int);
357 wchar_t*_i64tow(__int64,wchar_t*,int);
358 wchar_t*_ltow(long,wchar_t*,int);
359 wchar_t*_ui64tow(unsigned __int64,wchar_t*,int);
360 wchar_t*_ultow(unsigned long,wchar_t*,int);
361 wchar_t*_wfullpath(wchar_t*,const wchar_t*,size_t);
362 wchar_t*_wgetenv(const wchar_t*);
363 void _wmakepath(wchar_t*,const wchar_t*,const wchar_t*,const wchar_t*,const wchar_t*);
364 void _wperror(const wchar_t*);
365 int _wputenv(const wchar_t*);
366 void _wsearchenv(const wchar_t*,const wchar_t*,wchar_t*);
367 void _wsplitpath(const wchar_t*,wchar_t*,wchar_t*,wchar_t*,wchar_t*);
368 int _wsystem(const wchar_t*);
369 int _wtoi(const wchar_t*);
370 __int64 _wtoi64(const wchar_t*);
371 long _wtol(const wchar_t*);
373 size_t mbstowcs(wchar_t*,const char*,size_t);
374 int mbtowc(wchar_t*,const char*,size_t);
375 double wcstod(const wchar_t*,wchar_t**);
376 long wcstol(const wchar_t*,wchar_t**,int);
377 size_t wcstombs(char*,const wchar_t*,size_t);
378 unsigned long wcstoul(const wchar_t*,wchar_t**,int);
379 int wctomb(char*,wchar_t);
380 #endif /* _WSTDLIB_DEFINED */
382 #ifndef _WSTRING_DEFINED
383 #define _WSTRING_DEFINED
384 wchar_t*_wcsdup(const wchar_t*);
385 int _wcsicmp(const wchar_t*,const wchar_t*);
386 int _wcsicoll(const wchar_t*,const wchar_t*);
387 wchar_t*_wcslwr(wchar_t*);
388 int _wcsnicmp(const wchar_t*,const wchar_t*,size_t);
389 wchar_t*_wcsnset(wchar_t*,wchar_t,size_t);
390 wchar_t*_wcsrev(wchar_t*);
391 wchar_t*_wcsset(wchar_t*,wchar_t);
392 wchar_t*_wcsupr(wchar_t*);
394 wchar_t*wcscat(wchar_t*,const wchar_t*);
395 wchar_t*wcschr(const wchar_t*,wchar_t);
396 int wcscmp(const wchar_t*,const wchar_t*);
397 int wcscoll(const wchar_t*,const wchar_t*);
398 wchar_t*wcscpy(wchar_t*,const wchar_t*);
399 size_t wcscspn(const wchar_t*,const wchar_t*);
400 size_t wcslen(const wchar_t*);
401 wchar_t*wcsncat(wchar_t*,const wchar_t*,size_t);
402 int wcsncmp(const wchar_t*,const wchar_t*,size_t);
403 wchar_t*wcsncpy(wchar_t*,const wchar_t*,size_t);
404 wchar_t*wcspbrk(const wchar_t*,const wchar_t*);
405 wchar_t*wcsrchr(const wchar_t*,wchar_t wcFor);
406 size_t wcsspn(const wchar_t*,const wchar_t*);
407 wchar_t*wcsstr(const wchar_t*,const wchar_t*);
408 wchar_t*wcstok(wchar_t*,const wchar_t*);
409 size_t wcsxfrm(wchar_t*,const wchar_t*,size_t);
410 #endif /* _WSTRING_DEFINED */
412 #ifndef _WTIME_DEFINED
413 #define _WTIME_DEFINED
414 wchar_t*_wasctime(const struct tm*);
415 size_t wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm*);
416 wchar_t*_wctime(const time_t*);
417 wchar_t*_wstrdate(wchar_t*);
418 wchar_t*_wstrtime(wchar_t*);
419 #endif /* _WTIME_DEFINED */
422 size_t mbrlen(const char *,size_t,mbstate_t*);
423 size_t mbrtowc(wchar_t*,const char*,size_t,mbstate_t*);
424 size_t mbsrtowcs(wchar_t*,const char**,size_t,mbstate_t*);
425 size_t wcrtomb(char*,wchar_t,mbstate_t*);
426 size_t wcsrtombs(char*,const wchar_t**,size_t,mbstate_t*);
435 #endif /* __WINE_WCHAR_H */