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
20 #ifndef _WCHAR_T_DEFINED
21 #define _WCHAR_T_DEFINED
23 typedef unsigned short wchar_t;
31 #define NULL ((void *)0)
36 #define WCHAR_MAX ((wchar_t)-1)
38 #if !defined(_MSC_VER) && !defined(__int64)
39 #define __int64 long long
42 #if defined(__x86_64__) && !defined(_WIN64)
46 #ifndef DECLSPEC_ALIGN
47 # if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
48 # define DECLSPEC_ALIGN(x) __declspec(align(x))
49 # elif defined(__GNUC__)
50 # define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
52 # define DECLSPEC_ALIGN(x)
56 typedef int mbstate_t;
58 #ifndef _SIZE_T_DEFINED
60 typedef unsigned __int64 size_t;
62 typedef unsigned int size_t;
64 #define _SIZE_T_DEFINED
67 #ifndef _WCTYPE_T_DEFINED
68 typedef unsigned short wint_t;
69 typedef unsigned short wctype_t;
70 #define _WCTYPE_T_DEFINED
74 #define WEOF (wint_t)(0xFFFF)
77 #ifndef _FSIZE_T_DEFINED
78 typedef unsigned long _fsize_t;
79 #define _FSIZE_T_DEFINED
82 #ifndef _DEV_T_DEFINED
83 typedef unsigned int _dev_t;
84 #define _DEV_T_DEFINED
87 #ifndef _INO_T_DEFINED
88 typedef unsigned short _ino_t;
89 #define _INO_T_DEFINED
92 #ifndef _OFF_T_DEFINED
94 #define _OFF_T_DEFINED
97 #ifndef _TIME_T_DEFINED
99 #define _TIME_T_DEFINED
115 #endif /* _TM_DEFINED */
117 #ifndef _FILE_DEFINED
118 #define _FILE_DEFINED
119 typedef struct _iobuf
130 #endif /* _FILE_DEFINED */
132 #ifndef _WFINDDATA_T_DEFINED
133 #define _WFINDDATA_T_DEFINED
135 struct _wfinddata_t {
144 struct _wfinddatai64_t {
153 #endif /* _WFINDDATA_T_DEFINED */
155 #ifndef _STAT_DEFINED
156 #define _STAT_DEFINED
161 unsigned short st_mode;
175 unsigned short st_mode;
189 unsigned short st_mode;
194 __int64 DECLSPEC_ALIGN(8) st_size;
199 #endif /* _STAT_DEFINED */
201 /* ASCII char classification table - binary compatible */
202 #define _UPPER 0x0001 /* C1_UPPER */
203 #define _LOWER 0x0002 /* C1_LOWER */
204 #define _DIGIT 0x0004 /* C1_DIGIT */
205 #define _SPACE 0x0008 /* C1_SPACE */
206 #define _PUNCT 0x0010 /* C1_PUNCT */
207 #define _CONTROL 0x0020 /* C1_CNTRL */
208 #define _BLANK 0x0040 /* C1_BLANK */
209 #define _HEX 0x0080 /* C1_XDIGIT */
210 #define _LEADBYTE 0x8000
211 #define _ALPHA (0x0100|_UPPER|_LOWER) /* (C1_ALPHA|_UPPER|_LOWER) */
213 #ifndef _WCTYPE_DEFINED
214 #define _WCTYPE_DEFINED
215 int is_wctype(wint_t,wctype_t);
217 int iswalnum(wint_t);
218 int iswalpha(wint_t);
219 int iswascii(wint_t);
220 int iswcntrl(wint_t);
221 int iswctype(wint_t,wctype_t);
222 int iswdigit(wint_t);
223 int iswgraph(wint_t);
224 int iswlower(wint_t);
225 int iswprint(wint_t);
226 int iswpunct(wint_t);
227 int iswspace(wint_t);
228 int iswupper(wint_t);
229 int iswxdigit(wint_t);
230 wchar_t towlower(wchar_t);
231 wchar_t towupper(wchar_t);
232 #endif /* _WCTYPE_DEFINED */
234 #ifndef _WDIRECT_DEFINED
235 #define _WDIRECT_DEFINED
236 int _wchdir(const wchar_t*);
237 wchar_t* _wgetcwd(wchar_t*,int);
238 wchar_t* _wgetdcwd(int,wchar_t*,int);
239 int _wmkdir(const wchar_t*);
240 int _wrmdir(const wchar_t*);
241 #endif /* _WDIRECT_DEFINED */
245 int _waccess(const wchar_t*,int);
246 int _wchmod(const wchar_t*,int);
247 int _wcreat(const wchar_t*,int);
248 long _wfindfirst(const wchar_t*,struct _wfinddata_t*);
249 long _wfindfirsti64(const wchar_t*, struct _wfinddatai64_t*);
250 int _wfindnext(long,struct _wfinddata_t*);
251 int _wfindnexti64(long, struct _wfinddatai64_t*);
252 wchar_t*_wmktemp(wchar_t*);
253 int _wopen(const wchar_t*,int,...);
254 int _wrename(const wchar_t*,const wchar_t*);
255 int _wsopen(const wchar_t*,int,int,...);
256 int _wunlink(const wchar_t*);
257 #endif /* _WIO_DEFINED */
259 #ifndef _WLOCALE_DEFINED
260 #define _WLOCALE_DEFINED
261 wchar_t* _wsetlocale(int,const wchar_t*);
262 #endif /* _WLOCALE_DEFINED */
264 #ifndef _WPROCESS_DEFINED
265 #define _WPROCESS_DEFINED
266 int _wexecl(const wchar_t*,const wchar_t*,...);
267 int _wexecle(const wchar_t*,const wchar_t*,...);
268 int _wexeclp(const wchar_t*,const wchar_t*,...);
269 int _wexeclpe(const wchar_t*,const wchar_t*,...);
270 int _wexecv(const wchar_t*,const wchar_t* const *);
271 int _wexecve(const wchar_t*,const wchar_t* const *,const wchar_t* const *);
272 int _wexecvp(const wchar_t*,const wchar_t* const *);
273 int _wexecvpe(const wchar_t*,const wchar_t* const *,const wchar_t* const *);
274 int _wspawnl(int,const wchar_t*,const wchar_t*,...);
275 int _wspawnle(int,const wchar_t*,const wchar_t*,...);
276 int _wspawnlp(int,const wchar_t*,const wchar_t*,...);
277 int _wspawnlpe(int,const wchar_t*,const wchar_t*,...);
278 int _wspawnv(int,const wchar_t*,const wchar_t* const *);
279 int _wspawnve(int,const wchar_t*,const wchar_t* const *,const wchar_t* const *);
280 int _wspawnvp(int,const wchar_t*,const wchar_t* const *);
281 int _wspawnvpe(int,const wchar_t*,const wchar_t* const *,const wchar_t* const *);
282 int _wsystem(const wchar_t*);
283 #endif /* _WPROCESS_DEFINED */
285 #ifndef _WSTAT_DEFINED
286 #define _WSTAT_DEFINED
287 int _wstat(const wchar_t*,struct _stat*);
288 int _wstati64(const wchar_t*,struct _stati64*);
289 #endif /* _WSTAT_DEFINED */
291 #ifndef _WSTDIO_DEFINED
292 #define _WSTDIO_DEFINED
293 wint_t _fgetwchar(void);
294 wint_t _fputwchar(wint_t);
295 wchar_t*_getws(wchar_t*);
296 int _putws(const wchar_t*);
297 int _snwprintf(wchar_t*,size_t,const wchar_t*,...);
298 int _vsnwprintf(wchar_t*,size_t,const wchar_t*,va_list);
299 FILE* _wfdopen(int,const wchar_t*);
300 FILE* _wfopen(const wchar_t*,const wchar_t*);
301 FILE* _wfreopen(const wchar_t*,const wchar_t*,FILE*);
302 FILE* _wfsopen(const wchar_t*,const wchar_t*,int);
303 void _wperror(const wchar_t*);
304 FILE* _wpopen(const wchar_t*,const wchar_t*);
305 int _wremove(const wchar_t*);
306 wchar_t*_wtempnam(const wchar_t*,const wchar_t*);
307 wchar_t*_wtmpnam(wchar_t*);
309 wint_t fgetwc(FILE*);
310 wchar_t*fgetws(wchar_t*,int,FILE*);
311 wint_t fputwc(wint_t,FILE*);
312 int fputws(const wchar_t*,FILE*);
313 int fwprintf(FILE*,const wchar_t*,...);
314 int fputws(const wchar_t*,FILE*);
315 int fwscanf(FILE*,const wchar_t*,...);
317 wint_t getwchar(void);
318 wchar_t*getws(wchar_t*);
319 wint_t putwc(wint_t,FILE*);
320 wint_t putwchar(wint_t);
321 int putws(const wchar_t*);
322 int swprintf(wchar_t*,const wchar_t*,...);
323 int swscanf(const wchar_t*,const wchar_t*,...);
324 wint_t ungetwc(wint_t,FILE*);
325 int vfwprintf(FILE*,const wchar_t*,va_list);
326 int vswprintf(wchar_t*,const wchar_t*,va_list);
327 int vwprintf(const wchar_t*,va_list);
328 int wprintf(const wchar_t*,...);
329 int wscanf(const wchar_t*,...);
330 #endif /* _WSTDIO_DEFINED */
332 #ifndef _WSTDLIB_DEFINED
333 #define _WSTDLIB_DEFINED
334 wchar_t*_itow(int,wchar_t*,int);
335 wchar_t*_i64tow(__int64,wchar_t*,int);
336 wchar_t*_ltow(long,wchar_t*,int);
337 wchar_t*_ui64tow(unsigned __int64,wchar_t*,int);
338 wchar_t*_ultow(unsigned long,wchar_t*,int);
339 wchar_t*_wfullpath(wchar_t*,const wchar_t*,size_t);
340 wchar_t*_wgetenv(const wchar_t*);
341 void _wmakepath(wchar_t*,const wchar_t*,const wchar_t*,const wchar_t*,const wchar_t*);
342 void _wperror(const wchar_t*);
343 int _wputenv(const wchar_t*);
344 void _wsearchenv(const wchar_t*,const wchar_t*,wchar_t*);
345 void _wsplitpath(const wchar_t*,wchar_t*,wchar_t*,wchar_t*,wchar_t*);
346 int _wsystem(const wchar_t*);
347 int _wtoi(const wchar_t*);
348 __int64 _wtoi64(const wchar_t*);
349 long _wtol(const wchar_t*);
351 size_t mbstowcs(wchar_t*,const char*,size_t);
352 int mbtowc(wchar_t*,const char*,size_t);
353 double wcstod(const wchar_t*,wchar_t**);
354 long wcstol(const wchar_t*,wchar_t**,int);
355 size_t wcstombs(char*,const wchar_t*,size_t);
356 unsigned long wcstoul(const wchar_t*,wchar_t**,int);
357 int wctomb(char*,wchar_t);
358 #endif /* _WSTDLIB_DEFINED */
360 #ifndef _WSTRING_DEFINED
361 #define _WSTRING_DEFINED
362 wchar_t*_wcsdup(const wchar_t*);
363 int _wcsicmp(const wchar_t*,const wchar_t*);
364 int _wcsicoll(const wchar_t*,const wchar_t*);
365 wchar_t*_wcslwr(wchar_t*);
366 int _wcsnicmp(const wchar_t*,const wchar_t*,size_t);
367 wchar_t*_wcsnset(wchar_t*,wchar_t,size_t);
368 wchar_t*_wcsrev(wchar_t*);
369 wchar_t*_wcsset(wchar_t*,wchar_t);
370 wchar_t*_wcsupr(wchar_t*);
372 wchar_t*wcscat(wchar_t*,const wchar_t*);
373 wchar_t*wcschr(const wchar_t*,wchar_t);
374 int wcscmp(const wchar_t*,const wchar_t*);
375 int wcscoll(const wchar_t*,const wchar_t*);
376 wchar_t*wcscpy(wchar_t*,const wchar_t*);
377 size_t wcscspn(const wchar_t*,const wchar_t*);
378 size_t wcslen(const wchar_t*);
379 wchar_t*wcsncat(wchar_t*,const wchar_t*,size_t);
380 int wcsncmp(const wchar_t*,const wchar_t*,size_t);
381 wchar_t*wcsncpy(wchar_t*,const wchar_t*,size_t);
382 wchar_t*wcspbrk(const wchar_t*,const wchar_t*);
383 wchar_t*wcsrchr(const wchar_t*,wchar_t wcFor);
384 size_t wcsspn(const wchar_t*,const wchar_t*);
385 wchar_t*wcsstr(const wchar_t*,const wchar_t*);
386 wchar_t*wcstok(wchar_t*,const wchar_t*);
387 size_t wcsxfrm(wchar_t*,const wchar_t*,size_t);
388 #endif /* _WSTRING_DEFINED */
390 #ifndef _WTIME_DEFINED
391 #define _WTIME_DEFINED
392 wchar_t*_wasctime(const struct tm*);
393 size_t wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm*);
394 wchar_t*_wctime(const time_t*);
395 wchar_t*_wstrdate(wchar_t*);
396 wchar_t*_wstrtime(wchar_t*);
397 #endif /* _WTIME_DEFINED */
400 size_t mbrlen(const char *,size_t,mbstate_t*);
401 size_t mbrtowc(wchar_t*,const char*,size_t,mbstate_t*);
402 size_t mbsrtowcs(wchar_t*,const char**,size_t,mbstate_t*);
403 size_t wcrtomb(char*,wchar_t,mbstate_t*);
404 size_t wcsrtombs(char*,const wchar_t**,size_t,mbstate_t*);
411 #endif /* __WINE_WCHAR_H */