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