af062818b47340eef15700d2f0211576ba3506eevboxsync/*
af062818b47340eef15700d2f0211576ba3506eevboxsync * Unicode definitions
af062818b47340eef15700d2f0211576ba3506eevboxsync *
af062818b47340eef15700d2f0211576ba3506eevboxsync * Derived from the mingw header written by Colin Peters.
af062818b47340eef15700d2f0211576ba3506eevboxsync * Modified for Wine use by Jon Griffiths and Francois Gouget.
af062818b47340eef15700d2f0211576ba3506eevboxsync * This file is in the public domain.
af062818b47340eef15700d2f0211576ba3506eevboxsync */
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync/*
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync * other than GPL or LGPL is available it will apply instead, Sun elects to use only
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync * a choice of LGPL license versions is made available with the language indicating
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync * that LGPLv2 or any later version may be used, or where a choice of which version
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync * of the LGPL is applied is otherwise unspecified.
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync */
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef __WINE_WCHAR_H
af062818b47340eef15700d2f0211576ba3506eevboxsync#define __WINE_WCHAR_H
af062818b47340eef15700d2f0211576ba3506eevboxsync
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync#include <crtdefs.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <stdarg.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync#include <pshpack8.h>
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifdef __cplusplus
af062818b47340eef15700d2f0211576ba3506eevboxsyncextern "C" {
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef NULL
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifdef __cplusplus
af062818b47340eef15700d2f0211576ba3506eevboxsync#define NULL 0
af062818b47340eef15700d2f0211576ba3506eevboxsync#else
af062818b47340eef15700d2f0211576ba3506eevboxsync#define NULL ((void *)0)
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#define WCHAR_MIN 0
af062818b47340eef15700d2f0211576ba3506eevboxsync#define WCHAR_MAX ((wchar_t)-1)
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef DECLSPEC_ALIGN
af062818b47340eef15700d2f0211576ba3506eevboxsync# if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
af062818b47340eef15700d2f0211576ba3506eevboxsync# define DECLSPEC_ALIGN(x) __declspec(align(x))
af062818b47340eef15700d2f0211576ba3506eevboxsync# elif defined(__GNUC__)
af062818b47340eef15700d2f0211576ba3506eevboxsync# define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
af062818b47340eef15700d2f0211576ba3506eevboxsync# else
af062818b47340eef15700d2f0211576ba3506eevboxsync# define DECLSPEC_ALIGN(x)
af062818b47340eef15700d2f0211576ba3506eevboxsync# endif
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsynctypedef int mbstate_t;
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef WEOF
af062818b47340eef15700d2f0211576ba3506eevboxsync#define WEOF (wint_t)(0xFFFF)
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _FSIZE_T_DEFINED
040b4a09341f574825386333398110f4db3e1e51vboxsynctypedef __msvcrt_ulong _fsize_t;
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _FSIZE_T_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _DEV_T_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsynctypedef unsigned int _dev_t;
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _DEV_T_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _INO_T_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsynctypedef unsigned short _ino_t;
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _INO_T_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _OFF_T_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsynctypedef int _off_t;
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _OFF_T_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _TM_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _TM_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsyncstruct tm {
af062818b47340eef15700d2f0211576ba3506eevboxsync int tm_sec;
af062818b47340eef15700d2f0211576ba3506eevboxsync int tm_min;
af062818b47340eef15700d2f0211576ba3506eevboxsync int tm_hour;
af062818b47340eef15700d2f0211576ba3506eevboxsync int tm_mday;
af062818b47340eef15700d2f0211576ba3506eevboxsync int tm_mon;
af062818b47340eef15700d2f0211576ba3506eevboxsync int tm_year;
af062818b47340eef15700d2f0211576ba3506eevboxsync int tm_wday;
af062818b47340eef15700d2f0211576ba3506eevboxsync int tm_yday;
af062818b47340eef15700d2f0211576ba3506eevboxsync int tm_isdst;
af062818b47340eef15700d2f0211576ba3506eevboxsync};
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _TM_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _FILE_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _FILE_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsynctypedef struct _iobuf
af062818b47340eef15700d2f0211576ba3506eevboxsync{
af062818b47340eef15700d2f0211576ba3506eevboxsync char* _ptr;
af062818b47340eef15700d2f0211576ba3506eevboxsync int _cnt;
af062818b47340eef15700d2f0211576ba3506eevboxsync char* _base;
af062818b47340eef15700d2f0211576ba3506eevboxsync int _flag;
af062818b47340eef15700d2f0211576ba3506eevboxsync int _file;
af062818b47340eef15700d2f0211576ba3506eevboxsync int _charbuf;
af062818b47340eef15700d2f0211576ba3506eevboxsync int _bufsiz;
af062818b47340eef15700d2f0211576ba3506eevboxsync char* _tmpfname;
af062818b47340eef15700d2f0211576ba3506eevboxsync} FILE;
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _FILE_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _WFINDDATA_T_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _WFINDDATA_T_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncstruct _wfinddata_t {
af062818b47340eef15700d2f0211576ba3506eevboxsync unsigned attrib;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t time_create;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t time_access;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t time_write;
af062818b47340eef15700d2f0211576ba3506eevboxsync _fsize_t size;
af062818b47340eef15700d2f0211576ba3506eevboxsync wchar_t name[260];
af062818b47340eef15700d2f0211576ba3506eevboxsync};
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncstruct _wfinddatai64_t {
af062818b47340eef15700d2f0211576ba3506eevboxsync unsigned attrib;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t time_create;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t time_access;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t time_write;
5112e32d7072e280613921c982a6672f2c859cf3vboxsync __int64 DECLSPEC_ALIGN(8) size;
af062818b47340eef15700d2f0211576ba3506eevboxsync wchar_t name[260];
af062818b47340eef15700d2f0211576ba3506eevboxsync};
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _WFINDDATA_T_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _STAT_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _STAT_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncstruct _stat {
af062818b47340eef15700d2f0211576ba3506eevboxsync _dev_t st_dev;
af062818b47340eef15700d2f0211576ba3506eevboxsync _ino_t st_ino;
af062818b47340eef15700d2f0211576ba3506eevboxsync unsigned short st_mode;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_nlink;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_uid;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_gid;
af062818b47340eef15700d2f0211576ba3506eevboxsync _dev_t st_rdev;
af062818b47340eef15700d2f0211576ba3506eevboxsync _off_t st_size;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t st_atime;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t st_mtime;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t st_ctime;
af062818b47340eef15700d2f0211576ba3506eevboxsync};
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncstruct stat {
af062818b47340eef15700d2f0211576ba3506eevboxsync _dev_t st_dev;
af062818b47340eef15700d2f0211576ba3506eevboxsync _ino_t st_ino;
af062818b47340eef15700d2f0211576ba3506eevboxsync unsigned short st_mode;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_nlink;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_uid;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_gid;
af062818b47340eef15700d2f0211576ba3506eevboxsync _dev_t st_rdev;
af062818b47340eef15700d2f0211576ba3506eevboxsync _off_t st_size;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t st_atime;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t st_mtime;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t st_ctime;
af062818b47340eef15700d2f0211576ba3506eevboxsync};
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncstruct _stati64 {
af062818b47340eef15700d2f0211576ba3506eevboxsync _dev_t st_dev;
af062818b47340eef15700d2f0211576ba3506eevboxsync _ino_t st_ino;
af062818b47340eef15700d2f0211576ba3506eevboxsync unsigned short st_mode;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_nlink;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_uid;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_gid;
af062818b47340eef15700d2f0211576ba3506eevboxsync _dev_t st_rdev;
af062818b47340eef15700d2f0211576ba3506eevboxsync __int64 DECLSPEC_ALIGN(8) st_size;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t st_atime;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t st_mtime;
af062818b47340eef15700d2f0211576ba3506eevboxsync time_t st_ctime;
af062818b47340eef15700d2f0211576ba3506eevboxsync};
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncstruct _stat64 {
af062818b47340eef15700d2f0211576ba3506eevboxsync _dev_t st_dev;
af062818b47340eef15700d2f0211576ba3506eevboxsync _ino_t st_ino;
af062818b47340eef15700d2f0211576ba3506eevboxsync unsigned short st_mode;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_nlink;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_uid;
af062818b47340eef15700d2f0211576ba3506eevboxsync short st_gid;
af062818b47340eef15700d2f0211576ba3506eevboxsync _dev_t st_rdev;
af062818b47340eef15700d2f0211576ba3506eevboxsync __int64 DECLSPEC_ALIGN(8) st_size;
af062818b47340eef15700d2f0211576ba3506eevboxsync __time64_t st_atime;
af062818b47340eef15700d2f0211576ba3506eevboxsync __time64_t st_mtime;
af062818b47340eef15700d2f0211576ba3506eevboxsync __time64_t st_ctime;
af062818b47340eef15700d2f0211576ba3506eevboxsync};
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _STAT_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync/* ASCII char classification table - binary compatible */
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _UPPER 0x0001 /* C1_UPPER */
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _LOWER 0x0002 /* C1_LOWER */
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _DIGIT 0x0004 /* C1_DIGIT */
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _SPACE 0x0008 /* C1_SPACE */
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _PUNCT 0x0010 /* C1_PUNCT */
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _CONTROL 0x0020 /* C1_CNTRL */
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _BLANK 0x0040 /* C1_BLANK */
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _HEX 0x0080 /* C1_XDIGIT */
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _LEADBYTE 0x8000
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _ALPHA (0x0100|_UPPER|_LOWER) /* (C1_ALPHA|_UPPER|_LOWER) */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _WCTYPE_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _WCTYPE_DEFINED
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl is_wctype(wint_t,wctype_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl isleadbyte(int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswalnum(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswalpha(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswascii(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswcntrl(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswctype(wint_t,wctype_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswdigit(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswgraph(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswlower(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswprint(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswpunct(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswspace(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswupper(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl iswxdigit(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t __cdecl towlower(wchar_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t __cdecl towupper(wchar_t);
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _WCTYPE_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _WDIRECT_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _WDIRECT_DEFINED
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wchdir(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wgetcwd(wchar_t*,int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wgetdcwd(int,wchar_t*,int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wmkdir(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wrmdir(const wchar_t*);
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _WDIRECT_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _WIO_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _WIO_DEFINED
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _waccess(const wchar_t*,int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wchmod(const wchar_t*,int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wcreat(const wchar_t*,int);
040b4a09341f574825386333398110f4db3e1e51vboxsync__msvcrt_long __cdecl _wfindfirst(const wchar_t*,struct _wfinddata_t*);
040b4a09341f574825386333398110f4db3e1e51vboxsync__msvcrt_long __cdecl _wfindfirsti64(const wchar_t*, struct _wfinddatai64_t*);
040b4a09341f574825386333398110f4db3e1e51vboxsyncint __cdecl _wfindnext(__msvcrt_long,struct _wfinddata_t*);
040b4a09341f574825386333398110f4db3e1e51vboxsyncint __cdecl _wfindnexti64(__msvcrt_long, struct _wfinddatai64_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wmktemp(wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wopen(const wchar_t*,int,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wrename(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wsopen(const wchar_t*,int,int,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wunlink(const wchar_t*);
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _WIO_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _WLOCALE_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _WLOCALE_DEFINED
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wsetlocale(int,const wchar_t*);
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _WLOCALE_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _WPROCESS_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _WPROCESS_DEFINED
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wexecl(const wchar_t*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wexecle(const wchar_t*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wexeclp(const wchar_t*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wexeclpe(const wchar_t*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wexecv(const wchar_t*,const wchar_t* const *);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wexecve(const wchar_t*,const wchar_t* const *,const wchar_t* const *);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wexecvp(const wchar_t*,const wchar_t* const *);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wexecvpe(const wchar_t*,const wchar_t* const *,const wchar_t* const *);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wspawnl(int,const wchar_t*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wspawnle(int,const wchar_t*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wspawnlp(int,const wchar_t*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wspawnlpe(int,const wchar_t*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wspawnv(int,const wchar_t*,const wchar_t* const *);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wspawnve(int,const wchar_t*,const wchar_t* const *,const wchar_t* const *);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wspawnvp(int,const wchar_t*,const wchar_t* const *);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wspawnvpe(int,const wchar_t*,const wchar_t* const *,const wchar_t* const *);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wsystem(const wchar_t*);
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _WPROCESS_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _WSTAT_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _WSTAT_DEFINED
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wstat(const wchar_t*,struct _stat*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wstati64(const wchar_t*,struct _stati64*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wstat64(const wchar_t*,struct _stat64*);
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _WSTAT_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _WSTDIO_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _WSTDIO_DEFINED
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwint_t __cdecl _fgetwchar(void);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwint_t __cdecl _fputwchar(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _getws(wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _putws(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _snwprintf(wchar_t*,size_t,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _vscwprintf(const wchar_t*,__ms_va_list);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _vsnwprintf(wchar_t*,size_t,const wchar_t*,__ms_va_list);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncFILE* __cdecl _wfdopen(int,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncFILE* __cdecl _wfopen(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncFILE* __cdecl _wfreopen(const wchar_t*,const wchar_t*,FILE*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncFILE* __cdecl _wfsopen(const wchar_t*,const wchar_t*,int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncvoid __cdecl _wperror(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncFILE* __cdecl _wpopen(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wremove(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wtempnam(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wtmpnam(wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwint_t __cdecl fgetwc(FILE*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl fgetws(wchar_t*,int,FILE*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwint_t __cdecl fputwc(wint_t,FILE*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl fputws(const wchar_t*,FILE*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl fwprintf(FILE*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl fputws(const wchar_t*,FILE*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl fwscanf(FILE*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwint_t __cdecl getwc(FILE*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwint_t __cdecl getwchar(void);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl getws(wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwint_t __cdecl putwc(wint_t,FILE*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwint_t __cdecl putwchar(wint_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl putws(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl swprintf(wchar_t*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl swscanf(const wchar_t*,const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwint_t __cdecl ungetwc(wint_t,FILE*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl vfwprintf(FILE*,const wchar_t*,__ms_va_list);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl vswprintf(wchar_t*,const wchar_t*,__ms_va_list);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl vwprintf(const wchar_t*,__ms_va_list);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl wprintf(const wchar_t*,...);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl wscanf(const wchar_t*,...);
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _WSTDIO_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _WSTDLIB_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _WSTDLIB_DEFINED
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _itow(int,wchar_t*,int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _i64tow(__int64,wchar_t*,int);
040b4a09341f574825386333398110f4db3e1e51vboxsyncwchar_t* __cdecl _ltow(__msvcrt_long,wchar_t*,int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _ui64tow(unsigned __int64,wchar_t*,int);
040b4a09341f574825386333398110f4db3e1e51vboxsyncwchar_t* __cdecl _ultow(__msvcrt_ulong,wchar_t*,int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wfullpath(wchar_t*,const wchar_t*,size_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wgetenv(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncvoid __cdecl _wmakepath(wchar_t*,const wchar_t*,const wchar_t*,const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncvoid __cdecl _wperror(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wputenv(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncvoid __cdecl _wsearchenv(const wchar_t*,const wchar_t*,wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncvoid __cdecl _wsplitpath(const wchar_t*,wchar_t*,wchar_t*,wchar_t*,wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wsystem(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wtoi(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync__int64 __cdecl _wtoi64(const wchar_t*);
040b4a09341f574825386333398110f4db3e1e51vboxsync__msvcrt_long __cdecl _wtol(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl mbstowcs(wchar_t*,const char*,size_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl mbtowc(wchar_t*,const char*,size_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncdouble __cdecl wcstod(const wchar_t*,wchar_t**);
040b4a09341f574825386333398110f4db3e1e51vboxsync__msvcrt_long __cdecl wcstol(const wchar_t*,wchar_t**,int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl wcstombs(char*,const wchar_t*,size_t);
040b4a09341f574825386333398110f4db3e1e51vboxsync__msvcrt_ulong __cdecl wcstoul(const wchar_t*,wchar_t**,int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl wctomb(char*,wchar_t);
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _WSTDLIB_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _WSTRING_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _WSTRING_DEFINED
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wcsdup(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wcsicmp(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wcsicoll(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wcslwr(wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl _wcsnicmp(const wchar_t*,const wchar_t*,size_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wcsnset(wchar_t*,wchar_t,size_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wcsrev(wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wcsset(wchar_t*,wchar_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wcsupr(wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsync
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl wcscat(wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl wcschr(const wchar_t*,wchar_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl wcscmp(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl wcscoll(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl wcscpy(wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl wcscspn(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl wcslen(const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl wcsncat(wchar_t*,const wchar_t*,size_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl wcsncmp(const wchar_t*,const wchar_t*,size_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl wcsncpy(wchar_t*,const wchar_t*,size_t);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl wcspbrk(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl wcsrchr(const wchar_t*,wchar_t wcFor);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl wcsspn(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl wcsstr(const wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl wcstok(wchar_t*,const wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl wcsxfrm(wchar_t*,const wchar_t*,size_t);
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _WSTRING_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _WTIME_DEFINED
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _WTIME_DEFINED
040b4a09341f574825386333398110f4db3e1e51vboxsync
040b4a09341f574825386333398110f4db3e1e51vboxsync#ifdef _USE_32BIT_TIME_T
040b4a09341f574825386333398110f4db3e1e51vboxsync#define _wctime32 _wctime
040b4a09341f574825386333398110f4db3e1e51vboxsync#endif
040b4a09341f574825386333398110f4db3e1e51vboxsync
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wasctime(const struct tm*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm*);
040b4a09341f574825386333398110f4db3e1e51vboxsyncwchar_t* __cdecl _wctime32(const __time32_t*);
040b4a09341f574825386333398110f4db3e1e51vboxsyncwchar_t* __cdecl _wctime64(const __time64_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wstrdate(wchar_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t* __cdecl _wstrtime(wchar_t*);
040b4a09341f574825386333398110f4db3e1e51vboxsync
040b4a09341f574825386333398110f4db3e1e51vboxsync#ifndef _USE_32BIT_TIME_T
040b4a09341f574825386333398110f4db3e1e51vboxsyncstatic inline wchar_t* _wctime(const time_t *t) { return _wctime64(t); }
040b4a09341f574825386333398110f4db3e1e51vboxsync#endif
040b4a09341f574825386333398110f4db3e1e51vboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _WTIME_DEFINED */
af062818b47340eef15700d2f0211576ba3506eevboxsync
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncwchar_t __cdecl btowc(int);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl mbrlen(const char *,size_t,mbstate_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl mbrtowc(wchar_t*,const char*,size_t,mbstate_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl mbsrtowcs(wchar_t*,const char**,size_t,mbstate_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl wcrtomb(char*,wchar_t,mbstate_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncsize_t __cdecl wcsrtombs(char*,const wchar_t**,size_t,mbstate_t*);
589fd26cedb2b4ebbed14f2964cad03cc8ebbca2vboxsyncint __cdecl wctob(wint_t);
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifdef __cplusplus
af062818b47340eef15700d2f0211576ba3506eevboxsync}
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <poppack.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* __WINE_WCHAR_H */