push 0a0aa53cd365a71ca6121b6df157ca635450378f
[wine/hacks.git] / include / msvcrt / wchar.h
blobfe761667badfb2b7bf967edb78ba00a97a0fc718
1 /*
2 * Unicode definitions
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.
7 */
8 #ifndef __WINE_WCHAR_H
9 #define __WINE_WCHAR_H
11 #include <crtdefs.h>
12 #include <stdarg.h>
14 #include <pshpack8.h>
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
20 #ifndef NULL
21 #ifdef __cplusplus
22 #define NULL 0
23 #else
24 #define NULL ((void *)0)
25 #endif
26 #endif
28 #define WCHAR_MIN 0
29 #define WCHAR_MAX ((wchar_t)-1)
31 #ifndef DECLSPEC_ALIGN
32 # if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
33 # define DECLSPEC_ALIGN(x) __declspec(align(x))
34 # elif defined(__GNUC__)
35 # define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
36 # else
37 # define DECLSPEC_ALIGN(x)
38 # endif
39 #endif
41 typedef int mbstate_t;
43 #ifndef WEOF
44 #define WEOF (wint_t)(0xFFFF)
45 #endif
47 #ifndef _FSIZE_T_DEFINED
48 typedef __msvcrt_ulong _fsize_t;
49 #define _FSIZE_T_DEFINED
50 #endif
52 #ifndef _DEV_T_DEFINED
53 typedef unsigned int _dev_t;
54 #define _DEV_T_DEFINED
55 #endif
57 #ifndef _INO_T_DEFINED
58 typedef unsigned short _ino_t;
59 #define _INO_T_DEFINED
60 #endif
62 #ifndef _OFF_T_DEFINED
63 typedef int _off_t;
64 #define _OFF_T_DEFINED
65 #endif
67 #ifndef _TM_DEFINED
68 #define _TM_DEFINED
69 struct tm {
70 int tm_sec;
71 int tm_min;
72 int tm_hour;
73 int tm_mday;
74 int tm_mon;
75 int tm_year;
76 int tm_wday;
77 int tm_yday;
78 int tm_isdst;
80 #endif /* _TM_DEFINED */
82 #ifndef _FILE_DEFINED
83 #define _FILE_DEFINED
84 typedef struct _iobuf
86 char* _ptr;
87 int _cnt;
88 char* _base;
89 int _flag;
90 int _file;
91 int _charbuf;
92 int _bufsiz;
93 char* _tmpfname;
94 } FILE;
95 #endif /* _FILE_DEFINED */
97 #ifndef _WFINDDATA_T_DEFINED
98 #define _WFINDDATA_T_DEFINED
100 struct _wfinddata_t {
101 unsigned attrib;
102 time_t time_create;
103 time_t time_access;
104 time_t time_write;
105 _fsize_t size;
106 wchar_t name[260];
109 struct _wfinddatai64_t {
110 unsigned attrib;
111 time_t time_create;
112 time_t time_access;
113 time_t time_write;
114 __int64 size;
115 wchar_t name[260];
118 #endif /* _WFINDDATA_T_DEFINED */
120 #ifndef _STAT_DEFINED
121 #define _STAT_DEFINED
123 struct _stat {
124 _dev_t st_dev;
125 _ino_t st_ino;
126 unsigned short st_mode;
127 short st_nlink;
128 short st_uid;
129 short st_gid;
130 _dev_t st_rdev;
131 _off_t st_size;
132 time_t st_atime;
133 time_t st_mtime;
134 time_t st_ctime;
137 struct stat {
138 _dev_t st_dev;
139 _ino_t st_ino;
140 unsigned short st_mode;
141 short st_nlink;
142 short st_uid;
143 short st_gid;
144 _dev_t st_rdev;
145 _off_t st_size;
146 time_t st_atime;
147 time_t st_mtime;
148 time_t st_ctime;
151 struct _stati64 {
152 _dev_t st_dev;
153 _ino_t st_ino;
154 unsigned short st_mode;
155 short st_nlink;
156 short st_uid;
157 short st_gid;
158 _dev_t st_rdev;
159 __int64 DECLSPEC_ALIGN(8) st_size;
160 time_t st_atime;
161 time_t st_mtime;
162 time_t st_ctime;
165 struct _stat64 {
166 _dev_t st_dev;
167 _ino_t st_ino;
168 unsigned short st_mode;
169 short st_nlink;
170 short st_uid;
171 short st_gid;
172 _dev_t st_rdev;
173 __int64 DECLSPEC_ALIGN(8) st_size;
174 __time64_t st_atime;
175 __time64_t st_mtime;
176 __time64_t st_ctime;
178 #endif /* _STAT_DEFINED */
180 /* ASCII char classification table - binary compatible */
181 #define _UPPER 0x0001 /* C1_UPPER */
182 #define _LOWER 0x0002 /* C1_LOWER */
183 #define _DIGIT 0x0004 /* C1_DIGIT */
184 #define _SPACE 0x0008 /* C1_SPACE */
185 #define _PUNCT 0x0010 /* C1_PUNCT */
186 #define _CONTROL 0x0020 /* C1_CNTRL */
187 #define _BLANK 0x0040 /* C1_BLANK */
188 #define _HEX 0x0080 /* C1_XDIGIT */
189 #define _LEADBYTE 0x8000
190 #define _ALPHA (0x0100|_UPPER|_LOWER) /* (C1_ALPHA|_UPPER|_LOWER) */
192 #ifndef _WCTYPE_DEFINED
193 #define _WCTYPE_DEFINED
194 int __cdecl is_wctype(wint_t,wctype_t);
195 int __cdecl isleadbyte(int);
196 int __cdecl iswalnum(wint_t);
197 int __cdecl iswalpha(wint_t);
198 int __cdecl iswascii(wint_t);
199 int __cdecl iswcntrl(wint_t);
200 int __cdecl iswctype(wint_t,wctype_t);
201 int __cdecl iswdigit(wint_t);
202 int __cdecl iswgraph(wint_t);
203 int __cdecl iswlower(wint_t);
204 int __cdecl iswprint(wint_t);
205 int __cdecl iswpunct(wint_t);
206 int __cdecl iswspace(wint_t);
207 int __cdecl iswupper(wint_t);
208 int __cdecl iswxdigit(wint_t);
209 wchar_t __cdecl towlower(wchar_t);
210 wchar_t __cdecl towupper(wchar_t);
211 #endif /* _WCTYPE_DEFINED */
213 #ifndef _WDIRECT_DEFINED
214 #define _WDIRECT_DEFINED
215 int __cdecl _wchdir(const wchar_t*);
216 wchar_t* __cdecl _wgetcwd(wchar_t*,int);
217 wchar_t* __cdecl _wgetdcwd(int,wchar_t*,int);
218 int __cdecl _wmkdir(const wchar_t*);
219 int __cdecl _wrmdir(const wchar_t*);
220 #endif /* _WDIRECT_DEFINED */
222 #ifndef _WIO_DEFINED
223 #define _WIO_DEFINED
224 int __cdecl _waccess(const wchar_t*,int);
225 int __cdecl _wchmod(const wchar_t*,int);
226 int __cdecl _wcreat(const wchar_t*,int);
227 __msvcrt_long __cdecl _wfindfirst(const wchar_t*,struct _wfinddata_t*);
228 __msvcrt_long __cdecl _wfindfirsti64(const wchar_t*, struct _wfinddatai64_t*);
229 int __cdecl _wfindnext(__msvcrt_long,struct _wfinddata_t*);
230 int __cdecl _wfindnexti64(__msvcrt_long, struct _wfinddatai64_t*);
231 wchar_t* __cdecl _wmktemp(wchar_t*);
232 int __cdecl _wopen(const wchar_t*,int,...);
233 int __cdecl _wrename(const wchar_t*,const wchar_t*);
234 int __cdecl _wsopen(const wchar_t*,int,int,...);
235 int __cdecl _wunlink(const wchar_t*);
236 #endif /* _WIO_DEFINED */
238 #ifndef _WLOCALE_DEFINED
239 #define _WLOCALE_DEFINED
240 wchar_t* __cdecl _wsetlocale(int,const wchar_t*);
241 #endif /* _WLOCALE_DEFINED */
243 #ifndef _WPROCESS_DEFINED
244 #define _WPROCESS_DEFINED
245 int __cdecl _wexecl(const wchar_t*,const wchar_t*,...);
246 int __cdecl _wexecle(const wchar_t*,const wchar_t*,...);
247 int __cdecl _wexeclp(const wchar_t*,const wchar_t*,...);
248 int __cdecl _wexeclpe(const wchar_t*,const wchar_t*,...);
249 int __cdecl _wexecv(const wchar_t*,const wchar_t* const *);
250 int __cdecl _wexecve(const wchar_t*,const wchar_t* const *,const wchar_t* const *);
251 int __cdecl _wexecvp(const wchar_t*,const wchar_t* const *);
252 int __cdecl _wexecvpe(const wchar_t*,const wchar_t* const *,const wchar_t* const *);
253 int __cdecl _wspawnl(int,const wchar_t*,const wchar_t*,...);
254 int __cdecl _wspawnle(int,const wchar_t*,const wchar_t*,...);
255 int __cdecl _wspawnlp(int,const wchar_t*,const wchar_t*,...);
256 int __cdecl _wspawnlpe(int,const wchar_t*,const wchar_t*,...);
257 int __cdecl _wspawnv(int,const wchar_t*,const wchar_t* const *);
258 int __cdecl _wspawnve(int,const wchar_t*,const wchar_t* const *,const wchar_t* const *);
259 int __cdecl _wspawnvp(int,const wchar_t*,const wchar_t* const *);
260 int __cdecl _wspawnvpe(int,const wchar_t*,const wchar_t* const *,const wchar_t* const *);
261 int __cdecl _wsystem(const wchar_t*);
262 #endif /* _WPROCESS_DEFINED */
264 #ifndef _WSTAT_DEFINED
265 #define _WSTAT_DEFINED
266 int __cdecl _wstat(const wchar_t*,struct _stat*);
267 int __cdecl _wstati64(const wchar_t*,struct _stati64*);
268 int __cdecl _wstat64(const wchar_t*,struct _stat64*);
269 #endif /* _WSTAT_DEFINED */
271 #ifndef _WSTDIO_DEFINED
272 #define _WSTDIO_DEFINED
273 wint_t __cdecl _fgetwchar(void);
274 wint_t __cdecl _fputwchar(wint_t);
275 wchar_t* __cdecl _getws(wchar_t*);
276 int __cdecl _putws(const wchar_t*);
277 int __cdecl _snwprintf(wchar_t*,size_t,const wchar_t*,...);
278 int __cdecl _vscwprintf(const wchar_t*,__ms_va_list);
279 int __cdecl _vsnwprintf(wchar_t*,size_t,const wchar_t*,__ms_va_list);
280 FILE* __cdecl _wfdopen(int,const wchar_t*);
281 FILE* __cdecl _wfopen(const wchar_t*,const wchar_t*);
282 FILE* __cdecl _wfreopen(const wchar_t*,const wchar_t*,FILE*);
283 FILE* __cdecl _wfsopen(const wchar_t*,const wchar_t*,int);
284 void __cdecl _wperror(const wchar_t*);
285 FILE* __cdecl _wpopen(const wchar_t*,const wchar_t*);
286 int __cdecl _wremove(const wchar_t*);
287 wchar_t* __cdecl _wtempnam(const wchar_t*,const wchar_t*);
288 wchar_t* __cdecl _wtmpnam(wchar_t*);
290 wint_t __cdecl fgetwc(FILE*);
291 wchar_t* __cdecl fgetws(wchar_t*,int,FILE*);
292 wint_t __cdecl fputwc(wint_t,FILE*);
293 int __cdecl fputws(const wchar_t*,FILE*);
294 int __cdecl fwprintf(FILE*,const wchar_t*,...);
295 int __cdecl fputws(const wchar_t*,FILE*);
296 int __cdecl fwscanf(FILE*,const wchar_t*,...);
297 wint_t __cdecl getwc(FILE*);
298 wint_t __cdecl getwchar(void);
299 wchar_t* __cdecl getws(wchar_t*);
300 wint_t __cdecl putwc(wint_t,FILE*);
301 wint_t __cdecl putwchar(wint_t);
302 int __cdecl putws(const wchar_t*);
303 int __cdecl swprintf(wchar_t*,const wchar_t*,...);
304 int __cdecl swscanf(const wchar_t*,const wchar_t*,...);
305 wint_t __cdecl ungetwc(wint_t,FILE*);
306 int __cdecl vfwprintf(FILE*,const wchar_t*,__ms_va_list);
307 int __cdecl vswprintf(wchar_t*,const wchar_t*,__ms_va_list);
308 int __cdecl vwprintf(const wchar_t*,__ms_va_list);
309 int __cdecl wprintf(const wchar_t*,...);
310 int __cdecl wscanf(const wchar_t*,...);
311 #endif /* _WSTDIO_DEFINED */
313 #ifndef _WSTDLIB_DEFINED
314 #define _WSTDLIB_DEFINED
315 wchar_t* __cdecl _itow(int,wchar_t*,int);
316 wchar_t* __cdecl _i64tow(__int64,wchar_t*,int);
317 wchar_t* __cdecl _ltow(__msvcrt_long,wchar_t*,int);
318 wchar_t* __cdecl _ui64tow(unsigned __int64,wchar_t*,int);
319 wchar_t* __cdecl _ultow(__msvcrt_ulong,wchar_t*,int);
320 wchar_t* __cdecl _wfullpath(wchar_t*,const wchar_t*,size_t);
321 wchar_t* __cdecl _wgetenv(const wchar_t*);
322 void __cdecl _wmakepath(wchar_t*,const wchar_t*,const wchar_t*,const wchar_t*,const wchar_t*);
323 void __cdecl _wperror(const wchar_t*);
324 int __cdecl _wputenv(const wchar_t*);
325 void __cdecl _wsearchenv(const wchar_t*,const wchar_t*,wchar_t*);
326 void __cdecl _wsplitpath(const wchar_t*,wchar_t*,wchar_t*,wchar_t*,wchar_t*);
327 int __cdecl _wsystem(const wchar_t*);
328 int __cdecl _wtoi(const wchar_t*);
329 __int64 __cdecl _wtoi64(const wchar_t*);
330 __msvcrt_long __cdecl _wtol(const wchar_t*);
332 size_t __cdecl mbstowcs(wchar_t*,const char*,size_t);
333 int __cdecl mbtowc(wchar_t*,const char*,size_t);
334 double __cdecl wcstod(const wchar_t*,wchar_t**);
335 __msvcrt_long __cdecl wcstol(const wchar_t*,wchar_t**,int);
336 size_t __cdecl wcstombs(char*,const wchar_t*,size_t);
337 __msvcrt_ulong __cdecl wcstoul(const wchar_t*,wchar_t**,int);
338 int __cdecl wctomb(char*,wchar_t);
339 #endif /* _WSTDLIB_DEFINED */
341 #ifndef _WSTRING_DEFINED
342 #define _WSTRING_DEFINED
343 wchar_t* __cdecl _wcsdup(const wchar_t*);
344 int __cdecl _wcsicmp(const wchar_t*,const wchar_t*);
345 int __cdecl _wcsicoll(const wchar_t*,const wchar_t*);
346 wchar_t* __cdecl _wcslwr(wchar_t*);
347 int __cdecl _wcsnicmp(const wchar_t*,const wchar_t*,size_t);
348 wchar_t* __cdecl _wcsnset(wchar_t*,wchar_t,size_t);
349 wchar_t* __cdecl _wcsrev(wchar_t*);
350 wchar_t* __cdecl _wcsset(wchar_t*,wchar_t);
351 wchar_t* __cdecl _wcsupr(wchar_t*);
353 wchar_t* __cdecl wcscat(wchar_t*,const wchar_t*);
354 wchar_t* __cdecl wcschr(const wchar_t*,wchar_t);
355 int __cdecl wcscmp(const wchar_t*,const wchar_t*);
356 int __cdecl wcscoll(const wchar_t*,const wchar_t*);
357 wchar_t* __cdecl wcscpy(wchar_t*,const wchar_t*);
358 size_t __cdecl wcscspn(const wchar_t*,const wchar_t*);
359 size_t __cdecl wcslen(const wchar_t*);
360 wchar_t* __cdecl wcsncat(wchar_t*,const wchar_t*,size_t);
361 int __cdecl wcsncmp(const wchar_t*,const wchar_t*,size_t);
362 wchar_t* __cdecl wcsncpy(wchar_t*,const wchar_t*,size_t);
363 wchar_t* __cdecl wcspbrk(const wchar_t*,const wchar_t*);
364 wchar_t* __cdecl wcsrchr(const wchar_t*,wchar_t wcFor);
365 size_t __cdecl wcsspn(const wchar_t*,const wchar_t*);
366 wchar_t* __cdecl wcsstr(const wchar_t*,const wchar_t*);
367 wchar_t* __cdecl wcstok(wchar_t*,const wchar_t*);
368 size_t __cdecl wcsxfrm(wchar_t*,const wchar_t*,size_t);
369 #endif /* _WSTRING_DEFINED */
371 #ifndef _WTIME_DEFINED
372 #define _WTIME_DEFINED
374 #ifdef _USE_32BIT_TIME_T
375 #define _wctime32 _wctime
376 #endif
378 wchar_t* __cdecl _wasctime(const struct tm*);
379 size_t __cdecl wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm*);
380 wchar_t* __cdecl _wctime32(const __time32_t*);
381 wchar_t* __cdecl _wctime64(const __time64_t*);
382 wchar_t* __cdecl _wstrdate(wchar_t*);
383 wchar_t* __cdecl _wstrtime(wchar_t*);
385 #ifndef _USE_32BIT_TIME_T
386 static inline wchar_t* _wctime(const time_t *t) { return _wctime64(t); }
387 #endif
389 #endif /* _WTIME_DEFINED */
391 wchar_t __cdecl btowc(int);
392 size_t __cdecl mbrlen(const char *,size_t,mbstate_t*);
393 size_t __cdecl mbrtowc(wchar_t*,const char*,size_t,mbstate_t*);
394 size_t __cdecl mbsrtowcs(wchar_t*,const char**,size_t,mbstate_t*);
395 size_t __cdecl wcrtomb(char*,wchar_t,mbstate_t*);
396 size_t __cdecl wcsrtombs(char*,const wchar_t**,size_t,mbstate_t*);
397 int __cdecl wctob(wint_t);
399 #ifdef __cplusplus
401 #endif
403 #include <poppack.h>
405 #endif /* __WINE_WCHAR_H */