ReactOS 0.4.15-dev-7788-g1ad9096
wchar.h File Reference
#include <crtdefs.h>
#include <stdarg.h>
#include <sec_api/wchar_s.h>
Include dependency graph for wchar.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  _iobuf
 
struct  _wfinddata_t
 
struct  _wfinddata32_t
 
struct  _stat32
 
struct  _stat
 
struct  stat
 
struct  tm
 

Macros

#define __need___va_list
 
#define WCHAR_MIN   0
 
#define WCHAR_MAX   ((wchar_t)-1) /* UINT16_MAX */
 
#define WEOF   (wint_t)(0xFFFF)
 
#define _FILE_DEFINED
 
#define _STDSTREAM_DEFINED
 
#define stdin   (&_iob[0])
 
#define stdout   (&_iob[1])
 
#define stderr   (&_iob[2])
 
#define _FSIZE_T_DEFINED
 
#define _WFINDDATA_T_DEFINED
 
#define _CRT_CTYPEDATA_DEFINED
 
#define __PCTYPE_FUNC   _pctype
 
#define _CRT_WCTYPEDATA_DEFINED
 
#define _UPPER   0x1
 
#define _LOWER   0x2
 
#define _DIGIT   0x4
 
#define _SPACE   0x8
 
#define _PUNCT   0x10
 
#define _CONTROL   0x20
 
#define _BLANK   0x40
 
#define _HEX   0x80
 
#define _LEADBYTE   0x8000
 
#define _ALPHA   (0x0100|_UPPER|_LOWER)
 
#define _WCTYPE_DEFINED
 
#define _WDIRECT_DEFINED
 
#define _WIO_DEFINED
 
#define _WLOCALE_DEFINED
 
#define _WPROCESS_DEFINED
 
#define _CRT_WSYSTEM_DEFINED
 
#define iswalpha(_c)   (iswctype(_c,_ALPHA))
 
#define iswupper(_c)   (iswctype(_c,_UPPER))
 
#define iswlower(_c)   (iswctype(_c,_LOWER))
 
#define iswdigit(_c)   (iswctype(_c,_DIGIT))
 
#define iswxdigit(_c)   (iswctype(_c,_HEX))
 
#define iswspace(_c)   (iswctype(_c,_SPACE))
 
#define iswpunct(_c)   (iswctype(_c,_PUNCT))
 
#define iswalnum(_c)   (iswctype(_c,_ALPHA|_DIGIT))
 
#define iswprint(_c)   (iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT))
 
#define iswgraph(_c)   (iswctype(_c,_PUNCT|_ALPHA|_DIGIT))
 
#define iswcntrl(_c)   (iswctype(_c,_CONTROL))
 
#define iswascii(_c)   ((unsigned)(_c) < 0x80)
 
#define _iswalpha_l(_c, _p)   (_iswctype_l(_c,_ALPHA,_p))
 
#define _iswupper_l(_c, _p)   (_iswctype_l(_c,_UPPER,_p))
 
#define _iswlower_l(_c, _p)   (_iswctype_l(_c,_LOWER,_p))
 
#define _iswdigit_l(_c, _p)   (_iswctype_l(_c,_DIGIT,_p))
 
#define _iswxdigit_l(_c, _p)   (_iswctype_l(_c,_HEX,_p))
 
#define _iswspace_l(_c, _p)   (_iswctype_l(_c,_SPACE,_p))
 
#define _iswpunct_l(_c, _p)   (_iswctype_l(_c,_PUNCT,_p))
 
#define _iswalnum_l(_c, _p)   (_iswctype_l(_c,_ALPHA|_DIGIT,_p))
 
#define _iswprint_l(_c, _p)   (_iswctype_l(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT,_p))
 
#define _iswgraph_l(_c, _p)   (_iswctype_l(_c,_PUNCT|_ALPHA|_DIGIT,_p))
 
#define _iswcntrl_l(_c, _p)   (_iswctype_l(_c,_CONTROL,_p))
 
#define isleadbyte(_c)   (__PCTYPE_FUNC[(unsigned char)(_c)] & _LEADBYTE)
 
#define _WCTYPE_INLINE_DEFINED
 
#define _INO_T_DEFINED
 
#define _DEV_T_DEFINED
 
#define _OFF_T_DEFINED
 
#define _OFF64_T_DEFINED
 
#define _STAT_DEFINED
 
#define __stat64   _stat64
 
#define _WSTAT_DEFINED
 
#define _WCONIO_DEFINED
 
#define _WSTDIO_DEFINED
 
#define _CRT_WPERROR_DEFINED
 
#define wpopen   _wpopen
 
#define getwchar()   fgetwc(stdin)
 
#define putwchar(_c)   fputwc((_c),stdout)
 
#define getwc(_stm)   fgetwc(_stm)
 
#define putwc(_c, _stm)   fputwc(_c,_stm)
 
#define _putwc_nolock(_c, _stm)   _fputwc_nolock(_c,_stm)
 
#define _getwc_nolock(_c)   _fgetwc_nolock(_c)
 
#define _WSTDLIB_DEFINED
 
#define _WSTDLIBP_DEFINED
 
#define _WSTRING_DEFINED
 
#define wcswcs   wcsstr
 
#define _TM_DEFINED
 
#define _WTIME_DEFINED
 
#define _INC_WTIME_INL
 

Typedefs

typedef struct _iobuf FILE
 
typedef unsigned long _fsize_t
 
typedef unsigned short _ino_t
 
typedef unsigned short ino_t
 
typedef unsigned int _dev_t
 
typedef unsigned int dev_t
 
typedef long _off_t
 
typedef long off_t
 
typedef int mbstate_t
 
typedef wchar_t _Wint_t
 

Functions

_CRTIMP FILE *__cdecl __iob_func (void)
 
_CRTIMP const unsigned short *__cdecl __pctype_func (void)
 
 _CRTDATA (extern unsigned short *_pctype)
 
_CRTIMP const wctype_t *__cdecl __pwctype_func (void)
 
 _CRTDATA (extern const wctype_t *_pwctype)
 
_Check_return_ _CRTIMP int __cdecl iswalpha (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswalpha_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswupper (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswupper_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswlower (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswlower_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswdigit (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswdigit_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswxdigit (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswxdigit_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswspace (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswspace_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswpunct (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswpunct_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswalnum (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswalnum_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswprint (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswprint_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswgraph (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswgraph_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswcntrl (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswcntrl_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswascii (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl isleadbyte (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _isleadbyte_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP wint_t __cdecl towupper (_In_ wint_t _C)
 
_Check_return_ _CRTIMP wint_t __cdecl _towupper_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP wint_t __cdecl towlower (_In_ wint_t _C)
 
_Check_return_ _CRTIMP wint_t __cdecl _towlower_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswctype (_In_ wint_t _C, _In_ wctype_t _Type)
 
_Check_return_ _CRTIMP int __cdecl _iswctype_l (_In_ wint_t _C, _In_ wctype_t _Type, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl __iswcsymf (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswcsymf_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl __iswcsym (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswcsym_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_CRTIMP int __cdecl is_wctype (_In_ wint_t _C, _In_ wctype_t _Type)
 
_CRTIMP int __cdecl iswblank (wint_t _C)
 
_Check_return_ _Ret_opt_z_ _CRTIMP wchar_t *__cdecl _wgetcwd (_Out_writes_opt_(_SizeInWords) wchar_t *_DstBuf, _In_ int _SizeInWords)
 
_Check_return_ _Ret_opt_z_ _CRTIMP wchar_t *__cdecl _wgetdcwd (_In_ int _Drive, _Out_writes_opt_(_SizeInWords) wchar_t *_DstBuf, _In_ int _SizeInWords)
 
_Check_return_ _Ret_opt_z_ wchar_t *__cdecl _wgetdcwd_nolock (_In_ int _Drive, _Out_writes_opt_(_SizeInWords) wchar_t *_DstBuf, _In_ int _SizeInWords)
 
_Check_return_ _CRTIMP int __cdecl _wchdir (_In_z_ const wchar_t *_Path)
 
_Check_return_ _CRTIMP int __cdecl _wmkdir (_In_z_ const wchar_t *_Path)
 
_Check_return_ _CRTIMP int __cdecl _wrmdir (_In_z_ const wchar_t *_Path)
 
_Check_return_ _CRTIMP int __cdecl _waccess (_In_z_ const wchar_t *_Filename, _In_ int _AccessMode)
 
_Check_return_ _CRTIMP int __cdecl _wchmod (_In_z_ const wchar_t *_Filename, _In_ int _Mode)
 
_Check_return_ _CRTIMP int __cdecl _wcreat (_In_z_ const wchar_t *_Filename, _In_ int _PermissionMode)
 
_Check_return_ _CRTIMP intptr_t __cdecl _wfindfirst32 (_In_z_ const wchar_t *_Filename, _Out_ struct _wfinddata32_t *_FindData)
 
_Check_return_ _CRTIMP int __cdecl _wfindnext32 (_In_ intptr_t _FindHandle, _Out_ struct _wfinddata32_t *_FindData)
 
_Check_return_ _CRTIMP int __cdecl _wunlink (_In_z_ const wchar_t *_Filename)
 
_Check_return_ _CRTIMP int __cdecl _wrename (_In_z_ const wchar_t *_OldFilename, _In_z_ const wchar_t *_NewFilename)
 
_CRTIMP wchar_t *__cdecl _wmktemp (_Inout_z_ wchar_t *_TemplateName)
 
_Check_return_wat_ _CRTIMP errno_t __cdecl _wsopen_s (_Out_ int *_FileHandle, _In_z_ const wchar_t *_Filename, _In_ int _OpenFlag, _In_ int _ShareFlag, _In_ int _PermissionFlag)
 
_CRTIMP int __cdecl _wopen (const wchar_t *_Filename, int _OpenFlag,...)
 
_CRTIMP int __cdecl _wsopen (const wchar_t *_Filename, int _OpenFlag, int _ShareFlag,...)
 
_Check_return_opt_ _CRTIMP wchar_t *__cdecl _wsetlocale (_In_ int _Category, _In_opt_z_ const wchar_t *_Locale)
 
_CRTIMP intptr_t __cdecl _wexecl (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
 
_CRTIMP intptr_t __cdecl _wexecle (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
 
_CRTIMP intptr_t __cdecl _wexeclp (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
 
_CRTIMP intptr_t __cdecl _wexeclpe (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
 
_CRTIMP intptr_t __cdecl _wexecv (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList)
 
_CRTIMP intptr_t __cdecl _wexecve (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList, _In_opt_z_ const wchar_t *const *_Env)
 
_CRTIMP intptr_t __cdecl _wexecvp (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList)
 
_CRTIMP intptr_t __cdecl _wexecvpe (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList, _In_opt_z_ const wchar_t *const *_Env)
 
_CRTIMP intptr_t __cdecl _wspawnl (_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
 
_CRTIMP intptr_t __cdecl _wspawnle (_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
 
_CRTIMP intptr_t __cdecl _wspawnlp (_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
 
_CRTIMP intptr_t __cdecl _wspawnlpe (_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
 
_CRTIMP intptr_t __cdecl _wspawnv (_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList)
 
_CRTIMP intptr_t __cdecl _wspawnve (_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList, _In_opt_z_ const wchar_t *const *_Env)
 
_CRTIMP intptr_t __cdecl _wspawnvp (_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList)
 
_CRTIMP intptr_t __cdecl _wspawnvpe (_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList, _In_opt_z_ const wchar_t *const *_Env)
 
_CRTIMP int __cdecl _wsystem (_In_opt_z_ const wchar_t *_Command)
 
_CRTIMP int __cdecl _wstat (_In_z_ const wchar_t *_Name, _Out_ struct _stat *_Stat)
 
_CRTIMP int __cdecl _wstat32 (_In_z_ const wchar_t *_Name, _Out_ struct _stat32 *_Stat)
 
_CRTIMP wchar_t_cgetws (_Inout_z_ wchar_t *_Buffer)
 
_Check_return_ _CRTIMP wint_t __cdecl _getwch (void)
 
_Check_return_ _CRTIMP wint_t __cdecl _getwche (void)
 
_Check_return_ _CRTIMP wint_t __cdecl _putwch (wchar_t _WCh)
 
_Check_return_ _CRTIMP wint_t __cdecl _ungetwch (wint_t _WCh)
 
_Check_return_opt_ _CRTIMP int __cdecl _cputws (_In_z_ const wchar_t *_String)
 
_Check_return_opt_ _CRTIMP int __cdecl _cwprintf (_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _cwscanf (_In_z_ _Scanf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _cwscanf_l (_In_z_ _Scanf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vcwprintf (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _cwprintf_p (_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vcwprintf_p (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_CRTIMP int __cdecl _cwprintf_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_CRTIMP int __cdecl _vcwprintf_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_CRTIMP int __cdecl _cwprintf_p_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_CRTIMP int __cdecl _vcwprintf_p_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ wint_t __cdecl _putwch_nolock (wchar_t _WCh)
 
_Check_return_ wint_t __cdecl _getwch_nolock (void)
 
_Check_return_ wint_t __cdecl _getwche_nolock (void)
 
_Check_return_opt_ wint_t __cdecl _ungetwch_nolock (wint_t _WCh)
 
_Check_return_ _CRTIMP FILE *__cdecl _wfsopen (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_Mode, _In_ int _ShFlag)
 
_Check_return_opt_ _CRTIMP_ALT wint_t __cdecl fgetwc (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl _fgetwchar (void)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl fputwc (_In_ wchar_t _Ch, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl _fputwchar (_In_ wchar_t _Ch)
 
_Check_return_ _CRTIMP wint_t __cdecl getwc (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl putwc (_In_ wchar_t _Ch, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl putwchar (_In_ wchar_t _Ch)
 
_Check_return_opt_ _CRTIMP_ALT wint_t __cdecl ungetwc (_In_ wint_t _Ch, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wchar_t *__cdecl fgetws (_Out_writes_z_(_SizeInWords) wchar_t *_Dst, _In_ int _SizeInWords, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP int __cdecl fputws (_In_z_ const wchar_t *_Str, _Inout_ FILE *_File)
 
_CRTIMP wchar_t *__cdecl _getws (_Pre_notnull_ _Post_z_ wchar_t *_String)
 
_Check_return_opt_ _CRTIMP int __cdecl _putws (_In_z_ const wchar_t *_Str)
 
_Check_return_opt_ _CRTIMP int __cdecl fwprintf (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl wprintf (_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_ _CRTIMP int __cdecl _scwprintf (_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl vfwprintf (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl vwprintf (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_c (_Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_c (_Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_CRTIMP int __cdecl _snwprintf (wchar_t *_Dest, size_t _Count, const wchar_t *_Format,...)
 
_CRTIMP int __cdecl _vsnwprintf (wchar_t *_Dest, size_t _Count, const wchar_t *_Format, va_list _Args)
 
_CRTIMP int __cdecl snwprintf (wchar_t *s, size_t n, const wchar_t *format,...)
 
__CRT_INLINE int __cdecl vsnwprintf (wchar_t *s, size_t n, const wchar_t *format, va_list arg)
 
_CRTIMP int __cdecl vwscanf (const wchar_t *, va_list)
 
_CRTIMP int __cdecl vfwscanf (FILE *, const wchar_t *, va_list)
 
_CRTIMP int __cdecl vswscanf (const wchar_t *, const wchar_t *, va_list)
 
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_p (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_p (_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_p (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_p (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_p (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_p (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_ _CRTIMP int __cdecl _scwprintf_p (_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_Check_return_ _CRTIMP int __cdecl _vscwprintf_p (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_p_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_p_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_p_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_p_l (_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_c_l (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _swprintf_p_l (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_c_l (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_p_l (_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_ _CRTIMP int __cdecl _scwprintf_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_ _CRTIMP int __cdecl _scwprintf_p_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_ _CRTIMP int __cdecl _vscwprintf_p_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_opt_ _CRTIMP int __cdecl _snwprintf_l (_Out_writes_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _vsnwprintf_l (_Out_writes_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_CRTIMP int __cdecl _swprintf (_Pre_notnull_ _Post_z_ wchar_t *_Dest, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
_CRTIMP int __cdecl _vswprintf (_Pre_notnull_ _Post_z_ wchar_t *_Dest, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _Args)
 
_CRTIMP int __cdecl __swprintf_l (wchar_t *_Dest, const wchar_t *_Format, _locale_t _Plocinfo,...)
 
_CRTIMP int __cdecl __vswprintf_l (wchar_t *_Dest, const wchar_t *_Format, _locale_t _Plocinfo, va_list _Args)
 
static _Check_return_opt_ int __cdecl swprintf (_Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
 
static _Check_return_opt_ int __cdecl vswprintf (_Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_ _CRTIMP wchar_t *__cdecl _wtempnam (_In_opt_z_ const wchar_t *_Directory, _In_opt_z_ const wchar_t *_FilePrefix)
 
_Check_return_ _CRTIMP int __cdecl _vscwprintf (_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
 
_Check_return_ _CRTIMP int __cdecl _vscwprintf_l (_In_z_ _Printf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
 
_Check_return_ int __cdecl fwscanf (_Inout_ FILE *_File, _In_z_ _Scanf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _fwscanf_l (_Inout_ FILE *_File, _In_z_ _Scanf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_ int __cdecl swscanf (_In_z_ const wchar_t *_Src, _In_z_ _Scanf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _swscanf_l (_In_z_ const wchar_t *_Src, _In_z_ _Scanf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _snwscanf (_In_reads_(_MaxCount) _Pre_z_ const wchar_t *_Src, _In_ size_t _MaxCount, _In_z_ _Scanf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _snwscanf_l (_In_reads_(_MaxCount) _Pre_z_ const wchar_t *_Src, _In_ size_t _MaxCount, _In_z_ _Scanf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_ int __cdecl wscanf (_In_z_ _Scanf_format_string_ const wchar_t *_Format,...)
 
_Check_return_opt_ _CRTIMP int __cdecl _wscanf_l (_In_z_ _Scanf_format_string_ const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
 
_Check_return_ _CRTIMP FILE *__cdecl _wfdopen (_In_ int _FileHandle, _In_z_ const wchar_t *_Mode)
 
_Check_return_ _CRTIMP FILE *__cdecl _wfopen (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_Mode)
 
_Check_return_ _CRTIMP FILE *__cdecl _wfreopen (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_Mode, _Inout_ FILE *_OldFile)
 
_CRTIMP void __cdecl _wperror (_In_opt_z_ const wchar_t *_ErrMsg)
 
_Check_return_ _CRTIMP FILE *__cdecl _wpopen (_In_z_ const wchar_t *_Command, _In_z_ const wchar_t *_Mode)
 
_Check_return_ _CRTIMP int __cdecl _wremove (_In_z_ const wchar_t *_Filename)
 
_CRTIMP wchar_t *__cdecl _wtmpnam (_Pre_maybenull_ _Post_z_ wchar_t *_Buffer)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl _fgetwc_nolock (_Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl _fputwc_nolock (_In_ wchar_t _Ch, _Inout_ FILE *_File)
 
_Check_return_opt_ _CRTIMP wint_t __cdecl _ungetwc_nolock (_In_ wint_t _Ch, _Inout_ FILE *_File)
 
_CRTIMP wchar_t *__cdecl _itow (_In_ int _Value, _Pre_notnull_ _Post_z_ wchar_t *_Dest, _In_ int _Radix)
 
_CRTIMP wchar_t *__cdecl _ltow (_In_ long _Value, _Pre_notnull_ _Post_z_ wchar_t *_Dest, _In_ int _Radix)
 
_CRTIMP wchar_t *__cdecl _ultow (_In_ unsigned long _Value, _Pre_notnull_ _Post_z_ wchar_t *_Dest, _In_ int _Radix)
 
_Check_return_ double __cdecl wcstod (_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr)
 
_Check_return_ _CRTIMP double __cdecl _wcstod_l (_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, _In_opt_ _locale_t _Locale)
 
float __cdecl wcstof (const wchar_t *nptr, wchar_t **endptr)
 
long double __cdecl wcstold (const wchar_t *__restrict__, wchar_t **__restrict__)
 
_Check_return_ long __cdecl wcstol (_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, _In_ int _Radix)
 
_Check_return_ _CRTIMP long __cdecl _wcstol_l (_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, _In_ int _Radix, _In_opt_ _locale_t _Locale)
 
_Check_return_ unsigned long __cdecl wcstoul (_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, _In_ int _Radix)
 
_Check_return_ _CRTIMP unsigned long __cdecl _wcstoul_l (_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, _In_ int _Radix, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP wchar_t *__cdecl _wgetenv (_In_z_ const wchar_t *_VarName)
 
_Check_return_ _CRTIMP double __cdecl _wtof (_In_z_ const wchar_t *_Str)
 
_Check_return_ _CRTIMP double __cdecl _wtof_l (_In_z_ const wchar_t *_Str, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl _wtoi (_In_z_ const wchar_t *_Str)
 
_Check_return_ _CRTIMP int __cdecl _wtoi_l (_In_z_ const wchar_t *_Str, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP long __cdecl _wtol (_In_z_ const wchar_t *_Str)
 
_Check_return_ _CRTIMP long __cdecl _wtol_l (_In_z_ const wchar_t *_Str, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP wchar_t *__cdecl _wfullpath (_Out_writes_opt_z_(_SizeInWords) wchar_t *_FullPath, _In_z_ const wchar_t *_Path, _In_ size_t _SizeInWords)
 
_CRTIMP void __cdecl _wmakepath (_Pre_notnull_ _Post_z_ wchar_t *_ResultPath, _In_opt_z_ const wchar_t *_Drive, _In_opt_z_ const wchar_t *_Dir, _In_opt_z_ const wchar_t *_Filename, _In_opt_z_ const wchar_t *_Ext)
 
_Check_return_ _CRTIMP int __cdecl _wputenv (_In_z_ const wchar_t *_EnvString)
 
_CRTIMP void __cdecl _wsearchenv (_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_EnvVar, _Pre_notnull_ _Post_z_ wchar_t *_ResultPath)
 
_CRTIMP void __cdecl _wsplitpath (_In_z_ const wchar_t *_FullPath, _Pre_maybenull_ _Post_z_ wchar_t *_Drive, _Pre_maybenull_ _Post_z_ wchar_t *_Dir, _Pre_maybenull_ _Post_z_ wchar_t *_Filename, _Pre_maybenull_ _Post_z_ wchar_t *_Ext)
 
_Check_return_ _CRTIMP wchar_t *__cdecl _wcsdup (_In_z_ const wchar_t *_Str)
 
wchar_t *__cdecl wcscat (_Inout_updates_z_(_String_length_(_Dest)+_String_length_(_Source)+1) wchar_t *_Dest, _In_z_ const wchar_t *_Source)
 
_CONST_RETURN wchar_t *__cdecl wcschr (_In_z_ const wchar_t *_Str, wchar_t _Ch)
 
_Check_return_ int __cdecl wcscmp (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
 
wchar_t *__cdecl wcscpy (_Out_writes_z_(_String_length_(_Source)+1) wchar_t *_Dest, _In_z_ const wchar_t *_Source)
 
_Check_return_ size_t __cdecl wcscspn (_In_z_ const wchar_t *_Str, _In_z_ const wchar_t *_Control)
 
_CRTIMP size_t __cdecl wcslen (_In_z_ const wchar_t *_Str)
 
 _When_ (_MaxCount > _String_length_(_Src), _Post_satisfies_(return==_String_length_(_Src))) _When_(_MaxCount<
 
 _Post_satisfies_ (return==_MaxCount)) size_t __cdecl wcsnlen(_In_reads_or_z_(_MaxCount) const wchar_t *_Src
 
wchar_t *__cdecl wcsncat (wchar_t *_Dest, const wchar_t *_Source, size_t _Count)
 
_Check_return_ int __cdecl wcsncmp (_In_reads_or_z_(_MaxCount) const wchar_t *_Str1, _In_reads_or_z_(_MaxCount) const wchar_t *_Str2, _In_ size_t _MaxCount)
 
wchar_t *__cdecl wcsncpy (wchar_t *_Dest, const wchar_t *_Source, size_t _Count)
 
_Check_return_ _CONST_RETURN wchar_t *__cdecl wcspbrk (_In_z_ const wchar_t *_Str, _In_z_ const wchar_t *_Control)
 
_Check_return_ _CONST_RETURN wchar_t *__cdecl wcsrchr (_In_z_ const wchar_t *_Str, _In_ wchar_t _Ch)
 
_Check_return_ size_t __cdecl wcsspn (_In_z_ const wchar_t *_Str, _In_z_ const wchar_t *_Control)
 
_CONST_RETURN wchar_t *__cdecl wcsstr (_In_z_ const wchar_t *_Str, _In_z_ const wchar_t *_SubStr)
 
_Check_return_ wchar_t *__cdecl wcstok (_Inout_opt_z_ wchar_t *_Str, _In_z_ const wchar_t *_Delim)
 
_Check_return_ _CRTIMP wchar_t *__cdecl _wcserror (_In_ int _ErrNum)
 
_Check_return_ _CRTIMP wchar_t *__cdecl __wcserror (_In_opt_z_ const wchar_t *_Str)
 
_Check_return_ _CRTIMP int __cdecl _wcsicmp (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
 
_Check_return_ _CRTIMP int __cdecl _wcsicmp_l (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl _wcsnicmp (_In_reads_or_z_(_MaxCount) const wchar_t *_Str1, _In_reads_or_z_(_MaxCount) const wchar_t *_Str2, _In_ size_t _MaxCount)
 
_Check_return_ _CRTIMP int __cdecl _wcsnicmp_l (_In_reads_or_z_(_MaxCount) const wchar_t *_Str1, _In_reads_or_z_(_MaxCount) const wchar_t *_Str2, _In_ size_t _MaxCount, _In_opt_ _locale_t _Locale)
 
_CRTIMP wchar_t *__cdecl _wcsnset (wchar_t *_Str, wchar_t _Val, size_t _MaxCount)
 
_CRTIMP wchar_t *__cdecl _wcsrev (_Inout_z_ wchar_t *_Str)
 
_CRTIMP wchar_t *__cdecl _wcsset (wchar_t *_Str, wchar_t _Val)
 
_CRTIMP wchar_t *__cdecl _wcslwr (_Inout_z_ wchar_t *_String)
 
_CRTIMP wchar_t_wcslwr_l (wchar_t *_String, _locale_t _Locale)
 
_CRTIMP wchar_t *__cdecl _wcsupr (_Inout_z_ wchar_t *_String)
 
_CRTIMP wchar_t_wcsupr_l (wchar_t *_String, _locale_t _Locale)
 
_Check_return_opt_ size_t __cdecl wcsxfrm (_Out_writes_opt_(_MaxCount) _Post_maybez_ wchar_t *_Dst, _In_z_ const wchar_t *_Src, _In_ size_t _MaxCount)
 
_Check_return_opt_ _CRTIMP size_t __cdecl _wcsxfrm_l (_Out_writes_opt_(_MaxCount) _Post_maybez_ wchar_t *_Dst, _In_z_ const wchar_t *_Src, _In_ size_t _MaxCount, _In_opt_ _locale_t _Locale)
 
_Check_return_ int __cdecl wcscoll (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
 
_Check_return_ _CRTIMP int __cdecl _wcscoll_l (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl _wcsicoll (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
 
_Check_return_ _CRTIMP int __cdecl _wcsicoll_l (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl _wcsncoll (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_ size_t _MaxCount)
 
_Check_return_ _CRTIMP int __cdecl _wcsncoll_l (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_ size_t _MaxCount, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl _wcsnicoll (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_ size_t _MaxCount)
 
_Check_return_ _CRTIMP int __cdecl _wcsnicoll_l (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_ size_t _MaxCount, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP wchar_t *__cdecl wcsdup (_In_z_ const wchar_t *_Str)
 
_Check_return_ _CRTIMP int __cdecl wcsicmp (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
 
_Check_return_ _CRTIMP int __cdecl wcsnicmp (_In_reads_or_z_(_MaxCount) const wchar_t *_Str1, _In_reads_or_z_(_MaxCount) const wchar_t *_Str2, _In_ size_t _MaxCount)
 
_CRTIMP wchar_t *__cdecl wcsnset (_Inout_updates_z_(_MaxCount) wchar_t *_Str, _In_ wchar_t _Val, _In_ size_t _MaxCount)
 
_CRTIMP wchar_t *__cdecl wcsrev (_Inout_z_ wchar_t *_Str)
 
_CRTIMP wchar_t *__cdecl wcsset (_Inout_z_ wchar_t *_Str, wchar_t _Val)
 
_CRTIMP wchar_t *__cdecl wcslwr (_Inout_z_ wchar_t *_Str)
 
_CRTIMP wchar_t *__cdecl wcsupr (_Inout_z_ wchar_t *_Str)
 
_Check_return_ _CRTIMP int __cdecl wcsicoll (_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
 
_CRTIMP wchar_t *__cdecl _wasctime (_In_ const struct tm *_Tm)
 
_CRTIMP wchar_t *__cdecl _wctime32 (_In_ const __time32_t *_Time)
 
 _Success_ (return > 0) size_t __cdecl wcsftime(_Out_writes_z_(_SizeInWords) wchar_t *_Buf
 
_CRTIMP wchar_t *__cdecl _wstrdate (_Out_writes_z_(9) wchar_t *_Buffer)
 
_CRTIMP wchar_t *__cdecl _wstrtime (_Out_writes_z_(9) wchar_t *_Buffer)
 
_CRTIMP errno_t __cdecl _wasctime_s (_Out_writes_(_SizeInWords) _Post_readable_size_(26) wchar_t *_Buf, _In_ size_t _SizeInWords, _In_ const struct tm *_Tm)
 
_CRTIMP errno_t __cdecl _wctime32_s (_Out_writes_(_SizeInWords) _Post_readable_size_(26) wchar_t *_Buf, _In_ size_t _SizeInWords, _In_ const __time32_t *_Time)
 
_CRTIMP errno_t __cdecl _wstrdate_s (_Out_writes_(_SizeInWords) _Post_readable_size_(9) wchar_t *_Buf, _In_range_(>=, 9) size_t _SizeInWords)
 
_CRTIMP errno_t __cdecl _wstrtime_s (_Out_writes_(_SizeInWords) _Post_readable_size_(9) wchar_t *_Buf, _In_ size_t _SizeInWords)
 
__CRT_INLINE wchar_t *__cdecl _wctime (const time_t *_Time)
 
wint_t __cdecl btowc (int)
 
size_t __cdecl mbrlen (_In_reads_bytes_opt_(_SizeInBytes) _Pre_opt_z_ const char *_Ch, _In_ size_t _SizeInBytes, _Out_opt_ mbstate_t *_State)
 
size_t __cdecl mbrtowc (_Pre_maybenull_ _Post_z_ wchar_t *_DstCh, _In_reads_bytes_opt_(_SizeInBytes) _Pre_opt_z_ const char *_SrcCh, _In_ size_t _SizeInBytes, _Out_opt_ mbstate_t *_State)
 
size_t __cdecl mbsrtowcs (_Pre_notnull_ _Post_z_ wchar_t *_Dest, _Inout_ _Deref_prepost_opt_valid_ const char **_PSrc, _In_ size_t _Count, _Inout_opt_ mbstate_t *_State)
 
size_t __cdecl wcrtomb (_Pre_maybenull_ _Post_z_ char *_Dest, _In_ wchar_t _Source, _Out_opt_ mbstate_t *_State)
 
size_t __cdecl wcsrtombs (_Pre_maybenull_ _Post_z_ char *_Dest, _Inout_ _Deref_prepost_z_ const wchar_t **_PSource, _In_ size_t _Count, _Out_opt_ mbstate_t *_State)
 
int __cdecl wctob (_In_ wint_t _WCh)
 
wchar_t *__cdecl wmemset (_Out_writes_all_(_N) wchar_t *_S, _In_ wchar_t _C, _In_ size_t _N)
 
_CONST_RETURN wchar_t *__cdecl wmemchr (_In_reads_(_N) const wchar_t *_S, _In_ wchar_t _C, _In_ size_t _N)
 
int __cdecl wmemcmp (_In_reads_(_N) const wchar_t *_S1, _In_reads_(_N) const wchar_t *_S2, _In_ size_t _N)
 
 _Post_equal_to_ (_S1) _At_buffer_(_S1
 
 _Post_satisfies_ (_S1[_Iter_]==_S2[_Iter_])) wchar_t *__cdecl wmemcpy(_Out_writes_all_(_N) wchar_t *_S1
 
 _In_reads_ (_N) const wchar_t *_S2
 
wchar_t *__cdecl wmemmove (_Out_writes_all_opt_(_N) wchar_t *_S1, _In_reads_opt_(_N) const wchar_t *_S2, _In_ size_t _N)
 
__MINGW_EXTENSION long long __cdecl wcstoll (const wchar_t *nptr, wchar_t **endptr, int base)
 
__MINGW_EXTENSION unsigned long long __cdecl wcstoull (const wchar_t *nptr, wchar_t **endptr, int base)
 
void *__cdecl memmove (_Out_writes_bytes_all_opt_(_MaxCount) void *_Dst, _In_reads_bytes_opt_(_MaxCount) const void *_Src, _In_ size_t _MaxCount)
 
 _Post_equal_to_ (_Dst) _At_buffer_((unsigned char *) _Dst
 
 _Post_satisfies_ (((unsigned char *) _Dst)[_Iter_]==((unsigned char *) _Src)[_Iter_])) void *__cdecl memcpy(_Out_writes_bytes_all_(_MaxCount) void *_Dst
 
 _In_reads_bytes_ (_MaxCount) const void *_Src
 
__CRT_INLINE int __cdecl fwide (_In_opt_ FILE *_F, int _M)
 
__CRT_INLINE int __cdecl mbsinit (_In_opt_ const mbstate_t *_P)
 

Variables

__MINGW_EXTENSION typedef long long _off64_t
 
__MINGW_EXTENSION typedef long long off64_t
 
_In_ size_t _MaxCount
 
_In_ size_t _SizeInWords
 
_In_ size_t _In_z_ _Printf_format_string_ const wchar_t_Format
 
_In_ size_t _In_z_ _Printf_format_string_ const wchar_t _In_ const struct tm_Tm
 
_In_ size_t _In_z_ _Printf_format_string_ const wchar_t _In_ const struct tm _In_opt_ _locale_t _Locale
 
 _Iter_
 
 _N
 

Macro Definition Documentation

◆ __need___va_list

#define __need___va_list

This file has no copyright assigned and is placed in the Public Domain. This file is part of the w64 mingw-runtime package. No warranty is given; refer to the file DISCLAIMER within this package.

Definition at line 11 of file wchar.h.

◆ __PCTYPE_FUNC

#define __PCTYPE_FUNC   _pctype

Definition at line 138 of file wchar.h.

◆ __stat64

#define __stat64   _stat64

Definition at line 727 of file wchar.h.

◆ _ALPHA

#define _ALPHA   (0x0100|_UPPER|_LOWER)

Definition at line 174 of file wchar.h.

◆ _BLANK

#define _BLANK   0x40

Definition at line 170 of file wchar.h.

◆ _CONTROL

#define _CONTROL   0x20

Definition at line 169 of file wchar.h.

◆ _CRT_CTYPEDATA_DEFINED

#define _CRT_CTYPEDATA_DEFINED

Definition at line 132 of file wchar.h.

◆ _CRT_WCTYPEDATA_DEFINED

#define _CRT_WCTYPEDATA_DEFINED

Definition at line 151 of file wchar.h.

◆ _CRT_WPERROR_DEFINED

#define _CRT_WPERROR_DEFINED

Definition at line 1541 of file wchar.h.

◆ _CRT_WSYSTEM_DEFINED

#define _CRT_WSYSTEM_DEFINED

Definition at line 558 of file wchar.h.

◆ _DEV_T_DEFINED

#define _DEV_T_DEFINED

Definition at line 612 of file wchar.h.

◆ _DIGIT

#define _DIGIT   0x4

Definition at line 165 of file wchar.h.

◆ _FILE_DEFINED

#define _FILE_DEFINED

Definition at line 48 of file wchar.h.

◆ _FSIZE_T_DEFINED

#define _FSIZE_T_DEFINED

Definition at line 68 of file wchar.h.

◆ _getwc_nolock

#define _getwc_nolock (   _c)    _fgetwc_nolock(_c)

Definition at line 1610 of file wchar.h.

◆ _HEX

#define _HEX   0x80

Definition at line 171 of file wchar.h.

◆ _INC_WTIME_INL

#define _INC_WTIME_INL

Definition at line 2392 of file wchar.h.

◆ _INO_T_DEFINED

#define _INO_T_DEFINED

Definition at line 604 of file wchar.h.

◆ _iswalnum_l

#define _iswalnum_l (   _c,
  _p 
)    (_iswctype_l(_c,_ALPHA|_DIGIT,_p))

Definition at line 591 of file wchar.h.

◆ _iswalpha_l

#define _iswalpha_l (   _c,
  _p 
)    (_iswctype_l(_c,_ALPHA,_p))

Definition at line 584 of file wchar.h.

◆ _iswcntrl_l

#define _iswcntrl_l (   _c,
  _p 
)    (_iswctype_l(_c,_CONTROL,_p))

Definition at line 594 of file wchar.h.

◆ _iswdigit_l

#define _iswdigit_l (   _c,
  _p 
)    (_iswctype_l(_c,_DIGIT,_p))

Definition at line 587 of file wchar.h.

◆ _iswgraph_l

#define _iswgraph_l (   _c,
  _p 
)    (_iswctype_l(_c,_PUNCT|_ALPHA|_DIGIT,_p))

Definition at line 593 of file wchar.h.

◆ _iswlower_l

#define _iswlower_l (   _c,
  _p 
)    (_iswctype_l(_c,_LOWER,_p))

Definition at line 586 of file wchar.h.

◆ _iswprint_l

#define _iswprint_l (   _c,
  _p 
)    (_iswctype_l(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT,_p))

Definition at line 592 of file wchar.h.

◆ _iswpunct_l

#define _iswpunct_l (   _c,
  _p 
)    (_iswctype_l(_c,_PUNCT,_p))

Definition at line 590 of file wchar.h.

◆ _iswspace_l

#define _iswspace_l (   _c,
  _p 
)    (_iswctype_l(_c,_SPACE,_p))

Definition at line 589 of file wchar.h.

◆ _iswupper_l

#define _iswupper_l (   _c,
  _p 
)    (_iswctype_l(_c,_UPPER,_p))

Definition at line 585 of file wchar.h.

◆ _iswxdigit_l

#define _iswxdigit_l (   _c,
  _p 
)    (_iswctype_l(_c,_HEX,_p))

Definition at line 588 of file wchar.h.

◆ _LEADBYTE

#define _LEADBYTE   0x8000

Definition at line 173 of file wchar.h.

◆ _LOWER

#define _LOWER   0x2

Definition at line 164 of file wchar.h.

◆ _OFF64_T_DEFINED

#define _OFF64_T_DEFINED

Definition at line 628 of file wchar.h.

◆ _OFF_T_DEFINED

#define _OFF_T_DEFINED

Definition at line 620 of file wchar.h.

◆ _PUNCT

#define _PUNCT   0x10

Definition at line 168 of file wchar.h.

◆ _putwc_nolock

#define _putwc_nolock (   _c,
  _stm 
)    _fputwc_nolock(_c,_stm)

Definition at line 1609 of file wchar.h.

◆ _SPACE

#define _SPACE   0x8

Definition at line 166 of file wchar.h.

◆ _STAT_DEFINED

#define _STAT_DEFINED

Definition at line 636 of file wchar.h.

◆ _STDSTREAM_DEFINED

#define _STDSTREAM_DEFINED

Definition at line 60 of file wchar.h.

◆ _TM_DEFINED

#define _TM_DEFINED

Definition at line 2282 of file wchar.h.

◆ _UPPER

#define _UPPER   0x1

Definition at line 163 of file wchar.h.

◆ _WCONIO_DEFINED

#define _WCONIO_DEFINED

Definition at line 778 of file wchar.h.

◆ _WCTYPE_DEFINED

#define _WCTYPE_DEFINED

Definition at line 177 of file wchar.h.

◆ _WCTYPE_INLINE_DEFINED

#define _WCTYPE_INLINE_DEFINED

Definition at line 599 of file wchar.h.

◆ _WDIRECT_DEFINED

#define _WDIRECT_DEFINED

Definition at line 221 of file wchar.h.

◆ _WFINDDATA_T_DEFINED

#define _WFINDDATA_T_DEFINED

Definition at line 128 of file wchar.h.

◆ _WIO_DEFINED

#define _WIO_DEFINED

Definition at line 275 of file wchar.h.

◆ _WLOCALE_DEFINED

#define _WLOCALE_DEFINED

Definition at line 412 of file wchar.h.

◆ _WPROCESS_DEFINED

#define _WPROCESS_DEFINED

Definition at line 423 of file wchar.h.

◆ _WSTAT_DEFINED

#define _WSTAT_DEFINED

Definition at line 732 of file wchar.h.

◆ _WSTDIO_DEFINED

#define _WSTDIO_DEFINED

Definition at line 924 of file wchar.h.

◆ _WSTDLIB_DEFINED

#define _WSTDLIB_DEFINED

Definition at line 1615 of file wchar.h.

◆ _WSTDLIBP_DEFINED

#define _WSTDLIBP_DEFINED

Definition at line 1847 of file wchar.h.

◆ _WSTRING_DEFINED

#define _WSTRING_DEFINED

Definition at line 1907 of file wchar.h.

◆ _WTIME_DEFINED

#define _WTIME_DEFINED

Definition at line 2297 of file wchar.h.

◆ getwc

#define getwc (   _stm)    fgetwc(_stm)

Definition at line 1607 of file wchar.h.

◆ getwchar

#define getwchar (   void)    fgetwc(stdin)

Definition at line 1600 of file wchar.h.

◆ isleadbyte

#define isleadbyte (   _c)    (__PCTYPE_FUNC[(unsigned char)(_c)] & _LEADBYTE)

Definition at line 596 of file wchar.h.

◆ iswalnum

#define iswalnum (   _c)    (iswctype(_c,_ALPHA|_DIGIT))

Definition at line 578 of file wchar.h.

◆ iswalpha

#define iswalpha (   _c)    (iswctype(_c,_ALPHA))

Definition at line 571 of file wchar.h.

◆ iswascii

#define iswascii (   _c)    ((unsigned)(_c) < 0x80)

Definition at line 582 of file wchar.h.

◆ iswcntrl

#define iswcntrl (   _c)    (iswctype(_c,_CONTROL))

Definition at line 581 of file wchar.h.

◆ iswdigit

#define iswdigit (   _c)    (iswctype(_c,_DIGIT))

Definition at line 574 of file wchar.h.

◆ iswgraph

#define iswgraph (   _c)    (iswctype(_c,_PUNCT|_ALPHA|_DIGIT))

Definition at line 580 of file wchar.h.

◆ iswlower

#define iswlower (   _c)    (iswctype(_c,_LOWER))

Definition at line 573 of file wchar.h.

◆ iswprint

#define iswprint (   _c)    (iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT))

Definition at line 579 of file wchar.h.

◆ iswpunct

#define iswpunct (   _c)    (iswctype(_c,_PUNCT))

Definition at line 577 of file wchar.h.

◆ iswspace

#define iswspace (   _c)    (iswctype(_c,_SPACE))

Definition at line 576 of file wchar.h.

◆ iswupper

#define iswupper (   _c)    (iswctype(_c,_UPPER))

Definition at line 572 of file wchar.h.

◆ iswxdigit

#define iswxdigit (   _c)    (iswctype(_c,_HEX))

Definition at line 575 of file wchar.h.

◆ putwc

#define putwc (   _c,
  _stm 
)    fputwc(_c,_stm)

Definition at line 1608 of file wchar.h.

◆ putwchar

#define putwchar (   _c)    fputwc((_c),stdout)

Definition at line 1601 of file wchar.h.

◆ stderr

#define stderr   (&_iob[2])

Definition at line 63 of file wchar.h.

◆ stdin

#define stdin   (&_iob[0])

Definition at line 61 of file wchar.h.

◆ stdout

#define stdout   (&_iob[1])

Definition at line 62 of file wchar.h.

◆ WCHAR_MAX

#define WCHAR_MAX   ((wchar_t)-1) /* UINT16_MAX */

Definition at line 29 of file wchar.h.

◆ WCHAR_MIN

#define WCHAR_MIN   0

Definition at line 26 of file wchar.h.

◆ wcswcs

#define wcswcs   wcsstr

Definition at line 2217 of file wchar.h.

◆ WEOF

#define WEOF   (wint_t)(0xFFFF)

Definition at line 33 of file wchar.h.

◆ wpopen

#define wpopen   _wpopen

Definition at line 1558 of file wchar.h.

Typedef Documentation

◆ _dev_t

typedef unsigned int _dev_t

Definition at line 613 of file wchar.h.

◆ _fsize_t

Definition at line 67 of file wchar.h.

◆ _ino_t

Definition at line 605 of file wchar.h.

◆ _off_t

typedef long _off_t

Definition at line 621 of file wchar.h.

◆ _Wint_t

typedef wchar_t _Wint_t

Definition at line 2403 of file wchar.h.

◆ dev_t

typedef unsigned int dev_t

Definition at line 615 of file wchar.h.

◆ FILE

typedef struct _iobuf FILE

Definition at line 47 of file wchar.h.

◆ ino_t

typedef unsigned short ino_t

Definition at line 607 of file wchar.h.

◆ mbstate_t

typedef int mbstate_t

Definition at line 2402 of file wchar.h.

◆ off_t

typedef long off_t

Definition at line 623 of file wchar.h.

Function Documentation

◆ __iob_func()

_CRTIMP FILE *__cdecl __iob_func ( void  )

Definition at line 682 of file file.c.

683{
684 return &_iob[0];
685}
FILE _iob[_IOB_ENTRIES]
Definition: file.c:133

◆ __iswcsym()

◆ __iswcsymf()

◆ __pctype_func()

_CRTIMP const unsigned short *__cdecl __pctype_func ( void  )

Definition at line 1523 of file locale.c.

1524{
1525 return get_locinfo()->pctype;
1526}
MSVCRT_pthreadlocinfo get_locinfo(void)
Definition: locale.c:354
unsigned short * pctype
Definition: msvcrt.h:131

◆ __pwctype_func()

_CRTIMP const wctype_t *__cdecl __pwctype_func ( void  )

Definition at line 569 of file ctype.c.

570{
571 return _pwctype;
572}
const unsigned short * _pwctype
Definition: ctype.c:557

◆ __swprintf_l()

_CRTIMP int __cdecl __swprintf_l ( wchar_t _Dest,
const wchar_t _Format,
_locale_t  _Plocinfo,
  ... 
)

◆ __vswprintf_l()

_CRTIMP int __cdecl __vswprintf_l ( wchar_t _Dest,
const wchar_t _Format,
_locale_t  _Plocinfo,
va_list  _Args 
)

◆ __wcserror()

◆ _cgetws()

_CRTIMP wchar_t * _cgetws ( _Inout_z_ wchar_t _Buffer)

◆ _cputws()

◆ _CRTDATA() [1/2]

_CRTDATA ( extern const wctype_t _pwctype)

◆ _CRTDATA() [2/2]

_CRTDATA ( extern unsigned short _pctype)

◆ _cwprintf()

◆ _cwprintf_l()

_CRTIMP int __cdecl _cwprintf_l ( _In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)

◆ _cwprintf_p()

◆ _cwprintf_p_l()

_CRTIMP int __cdecl _cwprintf_p_l ( _In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)

◆ _cwscanf()

◆ _cwscanf_l()

◆ _fgetwc_nolock()

_Check_return_opt_ _CRTIMP wint_t __cdecl _fgetwc_nolock ( _Inout_ FILE _File)

◆ _fgetwchar()

Definition at line 3029 of file file.c.

3030{
3031 return fgetwc(stdin);
3032}
#define stdin
Definition: stdio.h:98
wint_t CDECL fgetwc(FILE *file)
Definition: file.c:2948

Referenced by getwchar().

◆ _fputwc_nolock()

_Check_return_opt_ _CRTIMP wint_t __cdecl _fputwc_nolock ( _In_ wchar_t  _Ch,
_Inout_ FILE _File 
)

◆ _fputwchar()

◆ _fwprintf_l()

_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)

◆ _fwprintf_p()

_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_p ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)

◆ _fwprintf_p_l()

_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_p_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)

◆ _fwscanf_l()

_Check_return_opt_ _CRTIMP int __cdecl _fwscanf_l ( _Inout_ FILE _File,
_In_z_ _Scanf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)

◆ _getwch()

◆ _getwch_nolock()

_Check_return_ wint_t __cdecl _getwch_nolock ( void  )

◆ _getwche()

◆ _getwche_nolock()

_Check_return_ wint_t __cdecl _getwche_nolock ( void  )

◆ _getws()

◆ _In_reads_()

_In_reads_ ( _N  ) const

◆ _In_reads_bytes_()

_In_reads_bytes_ ( _MaxCount  ) const

◆ _isleadbyte_l()

_Check_return_ _CRTIMP int __cdecl _isleadbyte_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)

◆ _iswalnum_l()

_Check_return_ _CRTIMP int __cdecl _iswalnum_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 301 of file stubs.c.

304{
305 return _iswctype_l(c, _ALPHA|_DIGIT, locale);
306}
Definition: _locale.h:75
_Check_return_ _CRTIMP int __cdecl _iswctype_l(_In_ wint_t c, _In_ wctype_t type, _In_opt_ _locale_t locale)
Definition: stubs.c:337
const GLubyte * c
Definition: glext.h:8905
#define _ALPHA
Definition: ctype.h:76
#define _DIGIT
Definition: ctype.h:67

◆ _iswalpha_l()

_Check_return_ _CRTIMP int __cdecl _iswalpha_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 313 of file stubs.c.

316{
317 return _iswctype_l(c, _ALPHA, locale);
318}

◆ _iswcntrl_l()

_Check_return_ _CRTIMP int __cdecl _iswcntrl_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 325 of file stubs.c.

328{
330 return _iswctype_l(c, _CONTROL, locale);
331}
#define UNIMPLEMENTED
Definition: stubs.c:6
#define _CONTROL
Definition: ctype.h:71

◆ _iswcsym_l()

_Check_return_ _CRTIMP int __cdecl _iswcsym_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

◆ _iswcsymf_l()

_Check_return_ _CRTIMP int __cdecl _iswcsymf_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

◆ _iswctype_l()

◆ _iswdigit_l()

_Check_return_ _CRTIMP int __cdecl _iswdigit_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 351 of file stubs.c.

354{
355 return _iswctype_l(c, _DIGIT, locale);
356}

◆ _iswgraph_l()

_Check_return_ _CRTIMP int __cdecl _iswgraph_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 363 of file stubs.c.

366{
367 return _iswctype_l(c, _PUNCT | _ALPHA | _DIGIT, locale);
368}
#define _PUNCT
Definition: ctype.h:70

◆ _iswlower_l()

_Check_return_ _CRTIMP int __cdecl _iswlower_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 375 of file stubs.c.

378{
379 return _iswctype_l(c , _LOWER, locale);
380}
#define _LOWER
Definition: ctype.h:66

◆ _iswprint_l()

_Check_return_ _CRTIMP int __cdecl _iswprint_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 387 of file stubs.c.

390{
391 return _iswctype_l(c, _BLANK | _PUNCT | _ALPHA | _DIGIT, locale);
392}
#define _BLANK
Definition: ctype.h:72

◆ _iswpunct_l()

_Check_return_ _CRTIMP int __cdecl _iswpunct_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 399 of file stubs.c.

402{
403 return _iswctype_l(c, _PUNCT, locale);
404}

◆ _iswspace_l()

_Check_return_ _CRTIMP int __cdecl _iswspace_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 411 of file stubs.c.

414{
415 return _iswctype_l(c, _SPACE, locale);
416}
#define _SPACE
Definition: ctype.h:68

◆ _iswupper_l()

_Check_return_ _CRTIMP int __cdecl _iswupper_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 423 of file stubs.c.

426{
427 return _iswctype_l(c, _UPPER, locale);
428}
#define _UPPER
Definition: ctype.h:65

◆ _iswxdigit_l()

_Check_return_ _CRTIMP int __cdecl _iswxdigit_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 435 of file stubs.c.

438{
439 return _iswctype_l(c, _HEX, locale);
440}
#define _HEX
Definition: ctype.h:73

◆ _itow()

_CRTIMP wchar_t *__cdecl _itow ( _In_ int  _Value,
_Pre_notnull_ _Post_z_ wchar_t _Dest,
_In_ int  _Radix 
)

◆ _ltow()

_CRTIMP wchar_t *__cdecl _ltow ( _In_ long  _Value,
_Pre_notnull_ _Post_z_ wchar_t _Dest,
_In_ int  _Radix 
)

◆ _Post_equal_to_() [1/2]

_Post_equal_to_ ( _Dst  )

◆ _Post_equal_to_() [2/2]

_Post_equal_to_ ( _S1  )

◆ _Post_satisfies_() [1/3]

_Post_satisfies_ ( ((unsigned char *) _Dst)  [_Iter_] = = ((unsigned char*)_Src)[_Iter_])

◆ _Post_satisfies_() [2/3]

_Post_satisfies_ ( _S1  [_Iter_] = = _S2[_Iter_])

◆ _Post_satisfies_() [3/3]

_Post_satisfies_ ( return  = _MaxCount) const

◆ _putwch()

Definition at line 3703 of file file.c.

3704{
3705 return fputwc(c, stdout);
3706}
#define stdout
Definition: stdio.h:99
wint_t CDECL fputwc(wchar_t c, FILE *stream)
Definition: file.c:3147

◆ _putwch_nolock()

_Check_return_opt_ wint_t __cdecl _putwch_nolock ( wchar_t  _WCh)

◆ _putws()

◆ _scwprintf()

◆ _scwprintf_l()

_Check_return_ _CRTIMP int __cdecl _scwprintf_l ( _In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)

◆ _scwprintf_p()

_Check_return_ _CRTIMP int __cdecl _scwprintf_p ( _In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)

◆ _scwprintf_p_l()

_Check_return_ _CRTIMP int __cdecl _scwprintf_p_l ( _In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)

◆ _snwprintf()

_CRTIMP int __cdecl _snwprintf ( wchar_t _Dest,
size_t  _Count,
const wchar_t _Format,
  ... 
)

◆ _snwprintf_l()

_Check_return_opt_ _CRTIMP int __cdecl _snwprintf_l ( _Out_writes_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)

◆ _snwscanf()

◆ _snwscanf_l()

◆ _Success_()

_Success_ ( return  ,
 
)

◆ _swprintf()

_CRTIMP int __cdecl _swprintf ( _Pre_notnull_ _Post_z_ wchar_t _Dest,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)

◆ _swprintf_c()

_Check_return_opt_ _CRTIMP int __cdecl _swprintf_c ( _Out_writes_z_(_SizeInWords) wchar_t _DstBuf,
_In_ size_t  _SizeInWords,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)

◆ _swprintf_c_l()

_Check_return_opt_ _CRTIMP int __cdecl _swprintf_c_l ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)

◆ _swprintf_p()

_Check_return_opt_ _CRTIMP int __cdecl _swprintf_p ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)

◆ _swprintf_p_l()

_Check_return_opt_ _CRTIMP int __cdecl _swprintf_p_l ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
  ... 
)

◆ _swscanf_l()

◆ _towlower_l()

_Check_return_ _CRTIMP wint_t __cdecl _towlower_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 602 of file stubs.c.

605{
607 return 0;
608}

◆ _towupper_l()

_Check_return_ _CRTIMP wint_t __cdecl _towupper_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)

Definition at line 614 of file stubs.c.

617{
619 return 0;
620}

◆ _ultow()

_CRTIMP wchar_t *__cdecl _ultow ( _In_ unsigned long  _Value,
_Pre_notnull_ _Post_z_ wchar_t _Dest,
_In_ int  _Radix 
)

◆ _ungetwc_nolock()

_Check_return_opt_ _CRTIMP wint_t __cdecl _ungetwc_nolock ( _In_ wint_t  _Ch,
_Inout_ FILE _File 
)

◆ _ungetwch()

◆ _ungetwch_nolock()

_Check_return_opt_ wint_t __cdecl _ungetwch_nolock ( wint_t  _WCh)

◆ _vcwprintf()

◆ _vcwprintf_l()

_CRTIMP int __cdecl _vcwprintf_l ( _In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)

◆ _vcwprintf_p()

◆ _vcwprintf_p_l()

_CRTIMP int __cdecl _vcwprintf_p_l ( _In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)

◆ _vfwprintf_l()

_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)

◆ _vfwprintf_p()

_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_p ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)

◆ _vfwprintf_p_l()

_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_p_l ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)

◆ _vscwprintf()

_Check_return_ _CRTIMP int __cdecl _vscwprintf ( _In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)

◆ _vscwprintf_l()

_Check_return_ _CRTIMP int __cdecl _vscwprintf_l ( _In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)

◆ _vscwprintf_p()

_Check_return_ _CRTIMP int __cdecl _vscwprintf_p ( _In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)

◆ _vscwprintf_p_l()

_Check_return_ _CRTIMP int __cdecl _vscwprintf_p_l ( _In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)

◆ _vsnwprintf()

_CRTIMP int __cdecl _vsnwprintf ( wchar_t _Dest,
size_t  _Count,
const wchar_t _Format,
va_list  _Args 
)

Referenced by swprintf(), vsnwprintf(), and vswprintf().

◆ _vsnwprintf_l()

_Check_return_opt_ _CRTIMP int __cdecl _vsnwprintf_l ( _Out_writes_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)

◆ _vswprintf()

◆ _vswprintf_c()

_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_c ( _Out_writes_z_(_SizeInWords) wchar_t _DstBuf,
_In_ size_t  _SizeInWords,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)

◆ _vswprintf_c_l()

_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_c_l ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)

◆ _vswprintf_p()

_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_p ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)

◆ _vswprintf_p_l()

_Check_return_opt_ _CRTIMP int __cdecl _vswprintf_p_l ( _Out_writes_z_(_MaxCount) wchar_t _DstBuf,
_In_ size_t  _MaxCount,
_In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)

◆ _vwprintf_l()

◆ _vwprintf_p()

◆ _vwprintf_p_l()

_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_p_l ( _In_z_ _Printf_format_string_ const wchar_t _Format,
_In_opt_ _locale_t  _Locale,
va_list  _ArgList 
)

◆ _waccess()

_Check_return_ _CRTIMP int __cdecl _waccess ( _In_z_ const wchar_t _Filename,
_In_ int  _AccessMode 
)

◆ _wasctime()

_CRTIMP wchar_t *__cdecl _wasctime ( _In_ const struct tm _Tm)

◆ _wasctime_s()

_CRTIMP errno_t __cdecl _wasctime_s ( _Out_writes_(_SizeInWords) _Post_readable_size_(26) wchar_t _Buf,
_In_ size_t  _SizeInWords,
_In_ const struct tm _Tm 
)

◆ _wchdir()

◆ _wchmod()

_Check_return_ _CRTIMP int __cdecl _wchmod ( _In_z_ const wchar_t _Filename,
_In_ int  _Mode 
)

◆ _wcreat()

_Check_return_ _CRTIMP int __cdecl _wcreat ( _In_z_ const wchar_t _Filename,
_In_ int  _PermissionMode 
)

◆ _wcscoll_l()

_Check_return_ _CRTIMP int __cdecl _wcscoll_l ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2,
_In_opt_ _locale_t  _Locale 
)

Definition at line 721 of file stubs.c.

725{
727 return 0;
728}

◆ _wcsdup()

◆ _wcserror()

_Check_return_ _CRTIMP wchar_t *__cdecl _wcserror ( _In_ int  _ErrNum)

◆ _wcsicmp()

_Check_return_ _CRTIMP int __cdecl _wcsicmp ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2 
)

◆ _wcsicmp_l()

_Check_return_ _CRTIMP int __cdecl _wcsicmp_l ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2,
_In_opt_ _locale_t  _Locale 
)

Definition at line 734 of file stubs.c.

738{
740 return 0;
741}

◆ _wcsicoll()

_Check_return_ _CRTIMP int __cdecl _wcsicoll ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2 
)

◆ _wcsicoll_l()

_Check_return_ _CRTIMP int __cdecl _wcsicoll_l ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2,
_In_opt_ _locale_t  _Locale 
)

Definition at line 747 of file stubs.c.

751{
753 return 0;
754}

◆ _wcslwr()

_CRTIMP wchar_t *__cdecl _wcslwr ( _Inout_z_ wchar_t _String)

◆ _wcslwr_l()

_CRTIMP wchar_t * _wcslwr_l ( wchar_t _String,
_locale_t  _Locale 
)

Definition at line 624 of file stubs.c.

627{
629 return 0;
630}

◆ _wcsncoll()

_Check_return_ _CRTIMP int __cdecl _wcsncoll ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2,
_In_ size_t  _MaxCount 
)

◆ _wcsncoll_l()

_Check_return_ _CRTIMP int __cdecl _wcsncoll_l ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2,
_In_ size_t  _MaxCount,
_In_opt_ _locale_t  _Locale 
)

Definition at line 843 of file stubs.c.

848{
850 return 0;
851}

◆ _wcsnicmp()

◆ _wcsnicmp_l()

Definition at line 829 of file stubs.c.

834{
836 return 0;
837}

◆ _wcsnicoll()

_Check_return_ _CRTIMP int __cdecl _wcsnicoll ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2,
_In_ size_t  _MaxCount 
)

◆ _wcsnicoll_l()

_Check_return_ _CRTIMP int __cdecl _wcsnicoll_l ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2,
_In_ size_t  _MaxCount,
_In_opt_ _locale_t  _Locale 
)

Definition at line 815 of file stubs.c.

820{
822 return 0;
823}

◆ _wcsnset()

_CRTIMP wchar_t *__cdecl _wcsnset ( wchar_t _Str,
wchar_t  _Val,
size_t  _MaxCount 
)

Definition at line 77 of file wcs.c.

78{
79 wchar_t* ret = str;
80 while ((n-- > 0) && *str) *str++ = c;
81 return ret;
82}
GLdouble n
Definition: glext.h:7729
#define c
Definition: ke_i.h:80
const WCHAR * str
int ret

◆ _wcsrev()

_CRTIMP wchar_t *__cdecl _wcsrev ( _Inout_z_ wchar_t _Str)

◆ _wcsset()

_CRTIMP wchar_t *__cdecl _wcsset ( wchar_t _Str,
wchar_t  _Val 
)

Definition at line 104 of file wcs.c.

105{
106 wchar_t* ret = str;
107 while (*str) *str++ = c;
108 return ret;
109}

◆ _wcstod_l()

◆ _wcstol_l()

_Check_return_ _CRTIMP long __cdecl _wcstol_l ( _In_z_ const wchar_t _Str,
_Out_opt_ _Deref_post_z_ wchar_t **  _EndPtr,
_In_ int  _Radix,
_In_opt_ _locale_t  _Locale 
)

◆ _wcstoul_l()

_Check_return_ _CRTIMP unsigned long __cdecl _wcstoul_l ( _In_z_ const wchar_t _Str,
_Out_opt_ _Deref_post_z_ wchar_t **  _EndPtr,
_In_ int  _Radix,
_In_opt_ _locale_t  _Locale 
)

◆ _wcsupr()

_CRTIMP wchar_t *__cdecl _wcsupr ( _Inout_z_ wchar_t _String)

◆ _wcsupr_l()

_CRTIMP wchar_t * _wcsupr_l ( wchar_t _String,
_locale_t  _Locale 
)

Definition at line 634 of file stubs.c.

637{
639 return 0;
640}

◆ _wcsxfrm_l()

◆ _wctime()

__CRT_INLINE wchar_t *__cdecl _wctime ( const time_t _Time)

Definition at line 2396 of file wchar.h.

2396{ return _wctime64(_Time); }
_In_ size_t _In_ const __time32_t * _Time
Definition: time.h:192

◆ _wctime32()

_CRTIMP wchar_t *__cdecl _wctime32 ( _In_ const __time32_t _Time)

◆ _wctime32_s()

_CRTIMP errno_t __cdecl _wctime32_s ( _Out_writes_(_SizeInWords) _Post_readable_size_(26) wchar_t _Buf,
_In_ size_t  _SizeInWords,
_In_ const __time32_t _Time 
)

◆ _wexecl()

_CRTIMP intptr_t __cdecl _wexecl ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _ArgList,
  ... 
)

◆ _wexecle()

_CRTIMP intptr_t __cdecl _wexecle ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _ArgList,
  ... 
)

◆ _wexeclp()

_CRTIMP intptr_t __cdecl _wexeclp ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _ArgList,
  ... 
)

◆ _wexeclpe()

_CRTIMP intptr_t __cdecl _wexeclpe ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _ArgList,
  ... 
)

◆ _wexecv()

_CRTIMP intptr_t __cdecl _wexecv ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t *const _ArgList 
)

◆ _wexecve()

_CRTIMP intptr_t __cdecl _wexecve ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t *const _ArgList,
_In_opt_z_ const wchar_t *const _Env 
)

◆ _wexecvp()

_CRTIMP intptr_t __cdecl _wexecvp ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t *const _ArgList 
)

◆ _wexecvpe()

_CRTIMP intptr_t __cdecl _wexecvpe ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t *const _ArgList,
_In_opt_z_ const wchar_t *const _Env 
)

◆ _wfdopen()

_Check_return_ _CRTIMP FILE *__cdecl _wfdopen ( _In_ int  _FileHandle,
_In_z_ const wchar_t _Mode 
)

◆ _wfindfirst32()

_Check_return_ _CRTIMP intptr_t __cdecl _wfindfirst32 ( _In_z_ const wchar_t _Filename,
_Out_ struct _wfinddata32_t _FindData 
)

◆ _wfindnext32()

_Check_return_ _CRTIMP int __cdecl _wfindnext32 ( _In_ intptr_t  _FindHandle,
_Out_ struct _wfinddata32_t _FindData 
)

◆ _wfopen()

_Check_return_ _CRTIMP FILE *__cdecl _wfopen ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _Mode 
)

◆ _wfreopen()

_Check_return_ _CRTIMP FILE *__cdecl _wfreopen ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _Mode,
_Inout_ FILE _OldFile 
)

◆ _wfsopen()

_Check_return_ _CRTIMP FILE *__cdecl _wfsopen ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _Mode,
_In_ int  _ShFlag 
)

◆ _wfullpath()

_Check_return_ _CRTIMP wchar_t *__cdecl _wfullpath ( _Out_writes_opt_z_(_SizeInWords) wchar_t _FullPath,
_In_z_ const wchar_t _Path,
_In_ size_t  _SizeInWords 
)

◆ _wgetcwd()

◆ _wgetdcwd()

_Check_return_ _Ret_opt_z_ _CRTIMP wchar_t *__cdecl _wgetdcwd ( _In_ int  _Drive,
_Out_writes_opt_(_SizeInWords) wchar_t _DstBuf,
_In_ int  _SizeInWords 
)

◆ _wgetdcwd_nolock()

_Check_return_ _Ret_opt_z_ wchar_t *__cdecl _wgetdcwd_nolock ( _In_ int  _Drive,
_Out_writes_opt_(_SizeInWords) wchar_t _DstBuf,
_In_ int  _SizeInWords 
)

◆ _wgetenv()

◆ _When_()

_When_ ( _MaxCount  ,
_String_length_(_Src)  ,
_Post_satisfies_(return==_String_length_(_Src))   
)

◆ _wmakepath()

_CRTIMP void __cdecl _wmakepath ( _Pre_notnull_ _Post_z_ wchar_t _ResultPath,
_In_opt_z_ const wchar_t _Drive,
_In_opt_z_ const wchar_t _Dir,
_In_opt_z_ const wchar_t _Filename,
_In_opt_z_ const wchar_t _Ext 
)

◆ _wmkdir()

◆ _wmktemp()

_CRTIMP wchar_t *__cdecl _wmktemp ( _Inout_z_ wchar_t _TemplateName)

◆ _wopen()

_CRTIMP int __cdecl _wopen ( const wchar_t _Filename,
int  _OpenFlag,
  ... 
)

Definition at line 2020 of file file.c.

2021{
2022 va_list ap;
2023
2024 if (flags & _O_CREAT)
2025 {
2026 int pmode;
2027 va_start(ap, flags);
2028 pmode = va_arg(ap, int);
2029 va_end(ap);
2030 return _wsopen( path, flags, _SH_DENYNO, pmode );
2031 }
2032 else
2033 return _wsopen( path, flags, _SH_DENYNO);
2034}
char * va_list
Definition: acmsvcex.h:78
#define va_end(ap)
Definition: acmsvcex.h:90
#define va_start(ap, A)
Definition: acmsvcex.h:91
#define va_arg(ap, T)
Definition: acmsvcex.h:89
#define _O_CREAT
Definition: cabinet.h:46
GLbitfield flags
Definition: glext.h:7161
int CDECL _wsopen(const wchar_t *path, int oflags, int shflags,...)
Definition: file.c:1939
#define _SH_DENYNO
Definition: share.h:17
void int int ULONGLONG int va_list * ap
Definition: winesup.h:36

Referenced by _wcreat(), and _wfreopen().

◆ _wperror()

_CRTIMP void __cdecl _wperror ( _In_opt_z_ const wchar_t _ErrMsg)

◆ _wpopen()

_Check_return_ _CRTIMP FILE *__cdecl _wpopen ( _In_z_ const wchar_t _Command,
_In_z_ const wchar_t _Mode 
)

◆ _wprintf_l()

◆ _wprintf_p()

◆ _wprintf_p_l()

◆ _wputenv()

_Check_return_ _CRTIMP int __cdecl _wputenv ( _In_z_ const wchar_t _EnvString)

◆ _wremove()

_Check_return_ _CRTIMP int __cdecl _wremove ( _In_z_ const wchar_t _Filename)

◆ _wrename()

_Check_return_ _CRTIMP int __cdecl _wrename ( _In_z_ const wchar_t _OldFilename,
_In_z_ const wchar_t _NewFilename 
)

◆ _wrmdir()

◆ _wscanf_l()

◆ _wsearchenv()

_CRTIMP void __cdecl _wsearchenv ( _In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _EnvVar,
_Pre_notnull_ _Post_z_ wchar_t _ResultPath 
)

◆ _wsetlocale()

_Check_return_opt_ _CRTIMP wchar_t *__cdecl _wsetlocale ( _In_ int  _Category,
_In_opt_z_ const wchar_t _Locale 
)

◆ _wsopen()

_CRTIMP int __cdecl _wsopen ( const wchar_t _Filename,
int  _OpenFlag,
int  _ShareFlag,
  ... 
)

Definition at line 1939 of file file.c.

1940{
1941 int pmode;
1942 int fd;
1943
1944 if (oflags & _O_CREAT)
1945 {
1947
1948 __ms_va_start(ap, shflags);
1949 pmode = va_arg(ap, int);
1950 __ms_va_end(ap);
1951 }
1952 else
1953 pmode = 0;
1954
1955 _wsopen_s(&fd, path, oflags, shflags, pmode);
1956 return fd;
1957}
int CDECL _wsopen_s(int *fd, const wchar_t *path, int oflags, int shflags, int pmode)
Definition: file.c:1778
static int fd
Definition: io.c:51
#define __ms_va_list
Definition: windef.h:456
#define __ms_va_end(list)
Definition: windef.h:458
#define __ms_va_start(list, arg)
Definition: windef.h:457

Referenced by _wfsopen(), and _wopen().

◆ _wsopen_s()

_Check_return_wat_ _CRTIMP errno_t __cdecl _wsopen_s ( _Out_ int _FileHandle,
_In_z_ const wchar_t _Filename,
_In_ int  _OpenFlag,
_In_ int  _ShareFlag,
_In_ int  _PermissionFlag 
)

◆ _wspawnl()

_CRTIMP intptr_t __cdecl _wspawnl ( _In_ int  _Mode,
_In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _ArgList,
  ... 
)

◆ _wspawnle()

_CRTIMP intptr_t __cdecl _wspawnle ( _In_ int  _Mode,
_In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _ArgList,
  ... 
)

◆ _wspawnlp()

_CRTIMP intptr_t __cdecl _wspawnlp ( _In_ int  _Mode,
_In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _ArgList,
  ... 
)

◆ _wspawnlpe()

_CRTIMP intptr_t __cdecl _wspawnlpe ( _In_ int  _Mode,
_In_z_ const wchar_t _Filename,
_In_z_ const wchar_t _ArgList,
  ... 
)

◆ _wspawnv()

_CRTIMP intptr_t __cdecl _wspawnv ( _In_ int  _Mode,
_In_z_ const wchar_t _Filename,
_In_z_ const wchar_t *const _ArgList 
)

◆ _wspawnve()

_CRTIMP intptr_t __cdecl _wspawnve ( _In_ int  _Mode,
_In_z_ const wchar_t _Filename,
_In_z_ const wchar_t *const _ArgList,
_In_opt_z_ const wchar_t *const _Env 
)

◆ _wspawnvp()

_CRTIMP intptr_t __cdecl _wspawnvp ( _In_ int  _Mode,
_In_z_ const wchar_t _Filename,
_In_z_ const wchar_t *const _ArgList 
)

◆ _wspawnvpe()

_CRTIMP intptr_t __cdecl _wspawnvpe ( _In_ int  _Mode,
_In_z_ const wchar_t _Filename,
_In_z_ const wchar_t *const _ArgList,
_In_opt_z_ const wchar_t *const _Env 
)

◆ _wsplitpath()

◆ _wstat()

_CRTIMP int __cdecl _wstat ( _In_z_ const wchar_t _Name,
_Out_ struct _stat _Stat 
)

◆ _wstat32()

_CRTIMP int __cdecl _wstat32 ( _In_z_ const wchar_t _Name,
_Out_ struct _stat32 _Stat 
)

◆ _wstrdate()

_CRTIMP wchar_t *__cdecl _wstrdate ( _Out_writes_z_(9) wchar_t _Buffer)

◆ _wstrdate_s()

_CRTIMP errno_t __cdecl _wstrdate_s ( _Out_writes_(_SizeInWords) _Post_readable_size_(9) wchar_t _Buf,
_In_range_(>=, 9) size_t  _SizeInWords 
)

◆ _wstrtime()

_CRTIMP wchar_t *__cdecl _wstrtime ( _Out_writes_z_(9) wchar_t _Buffer)

◆ _wstrtime_s()

_CRTIMP errno_t __cdecl _wstrtime_s ( _Out_writes_(_SizeInWords) _Post_readable_size_(9) wchar_t _Buf,
_In_ size_t  _SizeInWords 
)

◆ _wsystem()

_CRTIMP int __cdecl _wsystem ( _In_opt_z_ const wchar_t _Command)

◆ _wtempnam()

_Check_return_ _CRTIMP wchar_t *__cdecl _wtempnam ( _In_opt_z_ const wchar_t _Directory,
_In_opt_z_ const wchar_t _FilePrefix 
)

◆ _wtmpnam()

◆ _wtof()

◆ _wtof_l()

◆ _wtoi()

◆ _wtoi_l()

_Check_return_ _CRTIMP int __cdecl _wtoi_l ( _In_z_ const wchar_t _Str,
_In_opt_ _locale_t  _Locale 
)

◆ _wtol()

◆ _wtol_l()

◆ _wunlink()

_Check_return_ _CRTIMP int __cdecl _wunlink ( _In_z_ const wchar_t _Filename)

◆ btowc()

wint_t __cdecl btowc ( int  )

◆ fgetwc()

◆ fgetws()

_Check_return_opt_ _CRTIMP wchar_t *__cdecl fgetws ( _Out_writes_z_(_SizeInWords) wchar_t _Dst,
_In_ int  _SizeInWords,
_Inout_ FILE _File 
)

◆ fputwc()

◆ fputws()

_Check_return_opt_ _CRTIMP int __cdecl fputws ( _In_z_ const wchar_t _Str,
_Inout_ FILE _File 
)

◆ fwide()

__CRT_INLINE int __cdecl fwide ( _In_opt_ FILE _F,
int  _M 
)

Definition at line 2533 of file wchar.h.

2536 {
2537 (void)_F;
2538 return (_M);
2539 }

◆ fwprintf()

◆ fwscanf()

_Check_return_ int __cdecl fwscanf ( _Inout_ FILE _File,
_In_z_ _Scanf_format_string_ const wchar_t _Format,
  ... 
)

◆ getwc()

◆ is_wctype()

_CRTIMP int __cdecl is_wctype ( _In_ wint_t  _C,
_In_ wctype_t  _Type 
)

◆ isleadbyte()

_Check_return_ _CRTIMP int __cdecl isleadbyte ( _In_ int  _C)

◆ iswalnum()

◆ iswalpha()

◆ iswascii()

◆ iswblank()

_CRTIMP int __cdecl iswblank ( wint_t  _C)

Definition at line 4 of file iswblank.c.

5{
6 return (iswctype(_C, _BLANK) || _C == '\t');
7}
int __cdecl iswctype(wint_t wc, wctype_t wctypeFlags)
Definition: freeldr.c:99

◆ iswcntrl()

◆ iswctype()

_Check_return_ _CRTIMP int __cdecl iswctype ( _In_ wint_t  _C,
_In_ wctype_t  _Type 
)

◆ iswdigit()

◆ iswgraph()

◆ iswlower()

◆ iswprint()

◆ iswpunct()

◆ iswspace()

◆ iswupper()

◆ iswxdigit()

◆ mbrlen()

size_t __cdecl mbrlen ( _In_reads_bytes_opt_(_SizeInBytes) _Pre_opt_z_ const char _Ch,
_In_ size_t  _SizeInBytes,
_Out_opt_ mbstate_t _State 
)

◆ mbrtowc()

◆ mbsinit()

__CRT_INLINE int __cdecl mbsinit ( _In_opt_ const mbstate_t _P)

Definition at line 2544 of file wchar.h.

2546 {
2547 return (!_P || *_P==0);
2548 }

◆ mbsrtowcs()

◆ memmove()

◆ putwc()

◆ putwchar()

◆ snwprintf()

_CRTIMP int __cdecl snwprintf ( wchar_t s,
size_t  n,
const wchar_t format,
  ... 
)

◆ swprintf()

static _Check_return_opt_ int __cdecl swprintf ( _Out_writes_z_(_SizeInWords) wchar_t _DstBuf,
_In_ size_t  _SizeInWords,
_In_z_ _Printf_format_string_ const wchar_t _Format,
  ... 
)
inlinestatic

Definition at line 1388 of file wchar.h.

1393 {
1394 int ret;
1395 va_list args;
1396
1398 ret = _vsnwprintf(_DstBuf, _SizeInWords, _Format, args);
1399 va_end(args);
1400 return ret;
1401 }
_In_ size_t _In_z_ _Printf_format_string_ const wchar_t * _Format
Definition: wchar.h:2317
_CRTIMP int __cdecl _vsnwprintf(wchar_t *_Dest, size_t _Count, const wchar_t *_Format, va_list _Args)
_In_ size_t _SizeInWords
Definition: wchar.h:2316
#define args
Definition: format.c:66
Definition: match.c:390

◆ swscanf()

_Check_return_ int __cdecl swscanf ( _In_z_ const wchar_t _Src,
_In_z_ _Scanf_format_string_ const wchar_t _Format,
  ... 
)

◆ towlower()

◆ towupper()

◆ ungetwc()

◆ vfwprintf()

_Check_return_opt_ _CRTIMP int __cdecl vfwprintf ( _Inout_ FILE _File,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)

◆ vfwscanf()

_CRTIMP int __cdecl vfwscanf ( FILE ,
const wchar_t ,
va_list   
)

◆ vsnwprintf()

__CRT_INLINE int __cdecl vsnwprintf ( wchar_t s,
size_t  n,
const wchar_t format,
va_list  arg 
)

Definition at line 1118 of file wchar.h.

1118{ return _vsnwprintf(s,n,format,arg); }
GLdouble s
Definition: gl.h:2039
GLint GLint GLsizei GLsizei GLsizei GLint GLenum format
Definition: gl.h:1546

◆ vswprintf()

static _Check_return_opt_ int __cdecl vswprintf ( _Out_writes_z_(_SizeInWords) wchar_t _DstBuf,
_In_ size_t  _SizeInWords,
_In_z_ _Printf_format_string_ const wchar_t _Format,
va_list  _ArgList 
)
inlinestatic

Definition at line 1407 of file wchar.h.

1412 {
1413 return _vsnwprintf(_DstBuf, _SizeInWords, _Format, _ArgList);
1414 }

◆ vswscanf()

_CRTIMP int __cdecl vswscanf ( const wchar_t ,
const wchar_t ,
va_list   
)

◆ vwprintf()

◆ vwscanf()

_CRTIMP int __cdecl vwscanf ( const wchar_t ,
va_list   
)

◆ wcrtomb()

size_t __cdecl wcrtomb ( _Pre_maybenull_ _Post_z_ char _Dest,
_In_ wchar_t  _Source,
_Out_opt_ mbstate_t _State 
)

◆ wcscat()

wchar_t *__cdecl wcscat ( _Inout_updates_z_(_String_length_(_Dest)+_String_length_(_Source)+1) wchar_t _Dest,
_In_z_ const wchar_t _Source 
)

◆ wcschr()

_CONST_RETURN wchar_t *__cdecl wcschr ( _In_z_ const wchar_t _Str,
wchar_t  _Ch 
)

◆ wcscmp()

_Check_return_ int __cdecl wcscmp ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2 
)

◆ wcscoll()

_Check_return_ int __cdecl wcscoll ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2 
)

◆ wcscpy()

wchar_t *__cdecl wcscpy ( _Out_writes_z_(_String_length_(_Source)+1) wchar_t _Dest,
_In_z_ const wchar_t _Source 
)

◆ wcscspn()

_Check_return_ size_t __cdecl wcscspn ( _In_z_ const wchar_t _Str,
_In_z_ const wchar_t _Control 
)

◆ wcsdup()

◆ wcsicmp()

_Check_return_ _CRTIMP int __cdecl wcsicmp ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2 
)

◆ wcsicoll()

_Check_return_ _CRTIMP int __cdecl wcsicoll ( _In_z_ const wchar_t _Str1,
_In_z_ const wchar_t _Str2 
)

◆ wcslen()

_CRTIMP size_t __cdecl wcslen ( _In_z_ const wchar_t _Str)

Referenced by __wgetmainargs(), CBandSiteBase::_BuildBandInfo(), _CmdWndProc(), _CreateNonspooledPort(), _dbg_ILGetSTextPointerW(), CFSDropTarget::_DoDrop(), _DumpLevel1PrintProviderInformation(), _FileOpCount(), _GetNonspooledPortName(), CDesktopFolder::_GetSFFromPidl(), _HandleAddPort(), _HandleConfigureLPTPortCommandOK(), _ILCreate(), _ILCreateCPanelApplet(), _ILCreatePrinterItem(), _ILCreateRecycleItem(), _ILGetFSPidl(), _LoadResources(), _LocalGetFormLevel1(), _LocalGetFormLevel2(), _LocalGetJobLevel1(), _LocalGetJobLevel2(), _LocalGetMonitorLevel1(), _LocalGetMonitorLevel2(), _LocalGetPrinterDriverLevel1(), _LocalGetPrinterDriverLevel2(), _LocalGetPrinterDriverLevel3(), _LocalGetPrinterDriverLevel4(), _LocalGetPrinterDriverLevel5(), _LocalGetPrinterDriverLevel6(), _LocalGetPrinterDriverLevel8(), _LocalGetPrinterLevel0(), _LocalGetPrinterLevel1(), _LocalGetPrinterLevel2(), _LocalGetPrinterLevel4(), _LocalGetPrinterLevel5(), _LocalmonGetPortLevel1(), _LocalmonGetPortLevel2(), _main(), _MakePrinterSubKey(), _OpenEnvironment(), FxPkgPdo::_PnpQueryDeviceText(), FxPkgPdo::_PnpQueryId(), _wgetenv(), _wsystem(), AccpLookupSidByName(), AccpOpenLSAPolicyHandle(), AccpOpenNamedObject(), AckPageDlgProc(), COpenWithMenu::AddApp(), AddBootStoreEntry(), AddCheckItem(), COpenWithMenu::AddChooseProgramItem(), AddCodepageToRegistry(), AddCommandGroup(), AddCommas(), AddConsoleAliasW(), AddContext(), AddContextCommand(), AddDialogControl(), AddDisplayDevice(), AddEntryToList(), AddEntryToTree(), AddFontsSettingsToRegistry(), AddFullResourcesToList(), AddGroupCommand(), AddInstallationSource(), AddItemToTreeView(), AddKbLayoutsToRegistry(), AddNewEventSource(), AddNewKbLayoutsByLcid(), AddNewLayout(), AddNotificationDll(), AddNTOSInstallation(), AddPrintMonitorList(), AddRequirementsToList(), AddServiceToList(), AddSfcNotification(), AddSubst(), AddTestToCombo(), AddUninstallKey(), AddUnregisteredProvider(), AddUserProfile(), AddVolumeToList(), AllocAndCopyMultiStr(), AllocEventLog(), AllocSplStr(), AllSysInfo(), AppendDeviceId(), AppendStringToMultiSZ(), AppendSystemFamily(), AppendSystemPostfix(), ApplicationPageRefreshThread(), ApplyChanges(), ApplyOrCancelChanges(), ApplyParameterStringsToMessage(), ArcMatchToken_UStr(), ArcPathNormalize(), ArcPathToNtPath(), AtapiRegCheckParameterValue(), ATL::AtlLoadTypeLib(), ATL::AtlRegisterClassCategoriesHelper(), AuthzInitializeResourceManager(), AutoStartupApplications(), BackupIniFile(), BaseCheckVDM(), BaseCreateVDMEnvironment(), BfLoadFontFile(), BiConvertRegistryDataToElement(), BiOpenKey(), BlAppendBootOptionString(), BlockEnvToEnvironW(), BlpDisplayRegisterLocale(), BmFatalErrorEx(), BmOpenDataStore(), BmpFwGetApplicationDirectoryPath(), BmpFwGetFullPath(), COpenWithDialog::Browse(), BuildAdapterMap(), BuildCommandLine(), BuildInteractiveProfileBuffer(), BuildUserModeWindowStationName(), BuildVolatileEnvironment(), BuildWorkstationsList(), Bus_PDO_QueryDeviceId(), Bus_PDO_QueryDeviceText(), CabinetExtractFile(), CabinetNormalizePath(), CabinetOpen(), CabinetSetDestinationPath(), CachedGetUserFromSid(), CNewMenu::CacheItems(), CacheLookupResults(), CallBackConvertToAscii(), CDeviceNode::CDeviceNode(), CDevSettings_GetData(), ChangeNtProductType(), ChangePortNumber(), ChangeServiceConfigA(), ChangeServiceConfigW(), ChannelGetDescription(), ChannelGetName(), ChannelSetDescription(), ChannelSetName(), CharToOemW(), CheckForDeviceId(), CheckForValidPEAndVendor(), CheckSectionValid(), CheckStringBuffer(), CheckStringBufferW(), CheckVolume(), ChildWndProc(), ClassNameToVersion(), CM_Connect_MachineW(), CM_Create_DevNode_ExW(), cmdShare(), cmdUse(), CmpOpenHiveFiles(), CompareProductName(), ComputeStringSize(), Concatenate(), ConcatPathsV(), ConCfgOpenUserSettings(), ConCfgReadUserSettings(), ConCfgWriteUserSettings(), ConPrintfVPaging(), ConPuts(), ConPutsPaging(), CONSOLE_SetInputTextXY(), ConsoleCreateUnicodeString(), ConstructXcvName(), ConvertNtPathToWin32Path(), CopyIpAddrString(), CopyKeyName(), CopyQuerySetIndirectW(), CopySdbToAppPatch(), CopySystemProfile(), CopyTextToClipboard(), CreateClassDeviceObject(), CreateDirectoryPath(), CreateFilterList(), CreateGroupListRoutine(), CreateInstanceKey(), CreateJob(), CreateJunction(), CreateLogicalPartition(), CreateMultiSzString(), CreateNestedKey(), CreatePortEntry(), CreatePrimaryPartition(), CreateProcessInternalW(), CreateProfile(), CreateProfileMutex(), CreateRecordForIpAddress(), CreateServiceA(), CreateServiceW(), CreateSidCacheMgr(), CreateStandardProfile(), CreateSymbolicLink(), CreateSymbolicLinkW(), CreateSysMenu(), CreateUserProfileExW(), CRegKeySecurity_fnConstructor(), CriticalDeviceCoInstaller(), CSR_API(), CsrpConnectToServer(), CsrValidateMessageString(), dde_connect(), DefaultProcessEntry(), DeleteDirectory(), DeleteSubst(), DetectNt4SoundDevices(), DeviceIdMatch(), CKsProxy::DeviceInfo(), DeviceInterfaceTest_Func(), DeviceIoctlPassive(), DevicePathToDosPath(), DIALOG_AddFilterItem(), Display_DrawText(), Display_GetFullName(), DisplayClassCoinstallers(), DisplayClassProperties(), DisplayDeviceAdvancedProperties(), DisplayDeviceCoinstallers(), DisplayDevicePropertyText(), DisplayDeviceRelations(), DisplayLocalGroup(), DisplayMessage(), DisplayResourceText(), DisplayScreen(), DisplayTitle(), DisplayUser(), DllMain(), DllRegisterServer(), Dns_CreateStringCopy_W(), Dns_GetBufferLengthForStringCopy(), Dns_StringCopy(), DnsIntCacheGetEntries(), DnsQuery_W(), DoChangePassword(), CFontExt::DoInstallFontFile(), CShellLink::DoOpen(), DoParse(), DoSetPaths(), DoValidateShortcutName(), download_file(), DrawTextExWorker(), DriverFilesCallback(), CExeDropHandler::Drop(), DsppLoadFontFile(), DuplicateQuotedString(), DuplicateString(), DuplicateStringW(), DuplicateStringWEx(), DuplicationString(), DynamicPathCommonPrefixW(), EditTypeDlg_OnChangeIcon(), EMFDC_WriteNamedEscape(), Enum(), EnumClientServiceProtocol(), EnumerateDevices(), CNetConnectionManager::EnumerateINetConnections(), EnumerateNetworkAdapter(), CEnumRegRoot::EnumerateNext(), EnumEventsThread(), EnumNamesW(), EnumPrintersA(), EnumPrintProcessorDatatypesW(), EnumPwrSchemes(), EnumWindowsProc(), EtfsOpen(), export_hex_data(), export_hex_data_type(), export_value_name(), Ext2IsSpecialSystemFile(), Ext2QueryRegistrySettings(), Ext2RegistryQueryCallback(), FATGetNextDirEntry(), FdoHandleQueryCompatibleId(), FileExtFromFilter(), FileExtractDialogWndProc(), FileIoCopyFileName(), FileIoCopyParentDirectoryPath(), FilenameW2A_FitOrFail(), FilenameW2A_N(), FileQueryFiles(), FileTypesDlg_InitListView(), FillList(), FilterByString(), FilterConnectCommunicationPort(), FilterLoadUnload(), CDesktopFolder::FinalConstruct(), find_actctx_dll(), find_devices(), find_entry_by_name(), find_string_index(), FindBootStore(), FindCheckItem(), FindDateSep(), FindNext(), FindProductName(), FindSidInCache(), FitName(), FlatBuf_Arg_WriteString(), CRegistryFolder::FormatContentsForDisplay(), FormatEx(), FormatEx2(), FormatFileSizeWithBytes(), CRegistryFolder::FormatValueData(), FoundDevice(), FreeBT_AddDevice(), FreeBT_GetRegistryDword(), FreeBT_QueryWmiDataBlock(), FreeLdrEnumerateBootEntries(), FsdGetFsAttributeInformation(), FxCalculateTotalMultiSzStringSize(), GdipGetSupportedFileExtensions(), GenerateDeviceID(), GenerateRandomPassword(), get_device_pnp_name_guid(), get_item_path(), GetAddrInfoW(), GetAllUsersProfileDirectoryW(), ATL::ChTraitsCRT< _CharType >::GetBaseTypeLength(), GetBIOSValue(), GetComputerIdentifier(), GetConnectRequest(), GetConsoleAliasW(), CShellLink::GetCurFile(), GetCurrentHwProfileA(), GetCurrentHwProfileW(), GetDefaultLayoutForLocale(), GetDefaultRecycleBin(), GetDefaultUserProfileDirectoryW(), CNetConnectionPropertyUi::GetDeviceInstanceID(), GetDeviceInstanceList(), GetDeviceInstanceListSize(), GetDisplayNameFileAndID(), CDrivesFolder::GetDisplayNameOf(), CFSFolder::GetDisplayNameOf(), CRegFolder::GetDisplayNameOf(), GetDriveNameWithLetter(), GetDriveTypeW(), GetEnvironmentStringsA(), GetEnvironmentStringsW(), GetEUDCTimeStampExW(), GetEventMessage(), GetEventUserName(), GetExpandedFilePathName(), CExtractIcon::GetIconLocation(), GetInstallSourceWin32(), GetInterfaceFriendlyName(), GetLayoutCount(), GetLayoutName(), GetLineExtentW(), GetListOfTestExes(), GetListViewEntries(), GetLongPathNameW(), GetMessageStringFromDllList(), GetName(), GetOutlineTextMetricsW(), GetOwnerModuleFromTagEntry(), CKsProxy::GetPinName(), GetPortNameWithoutColon(), GetPrinterA(), GetProcessorInformation(), GetProfilesDirectoryW(), GetProfileSize(), CNetConnection::GetProperties(), GetServerTime(), GetServiceDescription(), GetServiceInstanceList(), GetServiceList(), GetShortPathNameW(), GetSMBiosStringW(), GetSourcePaths(), GetSupportedCP(), GetSystemName(), GetSystemVersion(), GetTimeZoneListIndex(), GetULONG(), GetUnicodeEnvironmentSize(), GetUniqueConnectionName(), GetUsedPorts(), GetUserProfileDirectoryW(), GreenPnp(), GROUP_AddGroup(), GUILoggedOutSAS(), GuiPasteToTextModeBuffer(), HalpQueryIdFdo(), HalpQueryIdPdo(), HasPrefix(), HDA_PDOQueryId(), HidClassPDO_HandleQueryDeviceId(), I_ScQueryServiceTagInfo(), ILCreateFromNetworkPlaceW(), ILCreateNetConnectItem(), Imm32GetImeLayout(), Imm32WriteImeLayout(), INetCfgComponent_fnGetBindName(), INetCfgComponent_fnGetDisplayName(), INetCfgComponent_fnGetHelpText(), INetCfgComponent_fnGetId(), INetCfgComponent_fnGetPnpDevNodeId(), INetCfgComponent_fnSetDisplayName(), INetCfgComponentBindings_fnIsBoundTo(), INetCfgComponentControl_fnApplyRegistryChanges(), INetCfgLock_fnAcquireWriteLock(), INetCfgLock_fnIsWriteLocked(), IniCacheAppendSection(), IniCacheFindKey(), IniCacheGetKey(), IniCacheInsertKey(), IniCacheSaveByHandle(), InitAmSymbol(), InitDialog(), InitFilterListBox(), CFSDropTarget::Initialize(), CFSFolder::Initialize(), CNetConnection::Initialize(), InitializeDefaultUserLocale(), CFSFolder::InitializeEx(), InitializeFormatDriveDlg(), InitializeFormList(), InitializeMachineInformation(), InitializeNamedEntry(), InitializePortList(), InitializeProfiles(), InitializeProgramFilesDir(), InitializeProvider(), InitializeRecycleBinDlg(), InitializeSetupActionLog(), InitializeSoundBlaster(), InitializeSystemPage(), InitializeTcpipAdvancedDNSDlg(), InitLogs(), InitPmSymbol(), InitPropertiesDlg(), InitTreeViewItems(), InitTTFontCache(), InputList_Add(), InputList_AddInputMethodToUserRegistry(), InputList_Create(), InputList_WriteSubst(), InsertColumnToListView(), CDeviceView::InsertIntoTreeView(), CNewMenu::InsertShellNewItems(), CRichEdit::InsertText(), InsSpacePos(), InsSpacesFmt(), InstallCompositeBattery(), InstallDefaultSystemSoundScheme(), InstallDevice(), InstallDirectoryPage(), InstallDriver(), InstallEventSource(), InstallInfSections(), InstallNetDevice(), InstallOneInterface(), InstallParallelPort(), InstallReactOS(), InstallScreenSaverW(), InstallSerialPort(), InstallSoftwareBusPnpEnumerator(), InstallSoftwareDeviceInterface(), InstallSystemSoundLabels(), InstallSystemSoundSchemeNames(), Int_EnumDependentServicesW(), IntAddConsoleAlias(), IntCreateDICW(), IntCreateRegistryPath(), IntDeleteRecursive(), CRegistryFolder::InternalBindToObject(), IntExpungeConsoleCommandHistory(), IntGdiAddFontResourceEx(), IntGdiGetFontResourceInfo(), IntGetConsoleAlias(), IntGetConsoleAliases(), IntGetConsoleAliasesLength(), IntGetConsoleCommandHistory(), IntGetConsoleCommandHistoryLength(), IntGetIcdData(), IntLoadKeyboardLayout(), IntPaintDesktop(), IntResolveDesktop(), IntSetConsoleNumberOfCommands(), IntSetConsoleTitle(), IntVideoPortChildQueryId(), InvokeRemoteRegistryPickerDialog(), IopBootLog(), IopCreateArcNamesCd(), IopCreateArcNamesDisk(), IopEnumerateDetectedDevices(), IopFetchConfigurationInformation(), IopFixupDeviceId(), IopGetInterfaceDeviceList(), IopGetParentIdPrefix(), IopInitializeBuiltinDriver(), IopInstallCriticalDevice(), IopLogWorker(), IopOpenInterfaceKey(), IopQueryCompatibleIds(), IopQueryHardwareIds(), IopWriteLogFile(), IoRegisterDeviceInterface(), is_mounted_multi_device(), is_xmlns_attr(), isCmdWithArg(), ISecurityObjectTypeInfo_fnGetInheritSource(), IsUrlValid(), IsValidPath(), KmtFltSendWStringToDriver(), KmtSendWStringToDriver(), KsCreateBusEnumObject(), KsecGatherEntropyData(), KsGetBusEnumIdentifier(), KsiCreateObjectType(), KspBusQueryReferenceString(), KspCopyCreateRequest(), KspCreateDeviceReference(), KspCreateObjectType(), KspDoReparseForIrp(), KspInstallInterface(), KspQueryId(), LabelWndProc(), LDEVOBJ_bBuildDevmodeList(), LDEVOBJ_pLoadDriver(), LdrpSearchPath(), LibraryLogEvent(), ListDirectory(), ListWndNotifyProc(), LoadAllocStringW(), LoadAppInitDlls(), LoadBootIni(), CNewMenu::LoadCachedItems(), LoadDialog(), LoadEventSources(), LoadHelperDll(), LoadIniFile(), LoadInstallableVDD(), LoadLogFile(), LoadShellLinkConsoleInfo(), LoadSystemIni(), LocalAddForm(), LocalmonAddPort(), LocalmonAddPortEx(), LocalmonXcvOpenPort(), LocalOpenPrinter(), LogfAllocAndBuildNewRecord(), LogfCreate(), LogToFile(), LookupNodeByAddr(), LoopRegisterAdapter(), LsapCreateSid(), LsapLookupAccountRightName(), LsarpEnumeratePrivileges(), LsarpLookupPrivilegeName(), lstrlenW(), lstrstri(), MAIN_LoadSettings(), MAIN_ReplaceString(), MAIN_SaveSettings(), MAIN_SetMainWindowTitle(), MainDialogProc(), MainLoop(), MainWnd_OnInstall(), MakeFilter(), MakeStrRetFromString(), MarshalConnectionInfo(), CTrayClockWnd::MeasureLines(), MiReloadBootLoadedDrivers(), MMixerAddMidiPin(), MMixerAddMixerControl(), MMixerBuildMixerSourceLine(), MMixerCreateDestinationLine(), MMixerGetDeviceName(), MMixerGetMidiDevicePath(), MMixerGetWaveDevicePath(), MMixerInitializeWaveInfo(), MMixerSetGetMuxControlDetails(), MMSYS_InstallDevice(), ModifyStatus(), ModifyValue(), MRUList_DataList_0(), MRUList_DataList_1(), MsgMemorySize(), msi_record_stream_name(), mswBufferAppendStrW(), my_open(), my_retrieve_vol_type(), NamedEscape(), ndisBindMiniportsToProtocol(), NdisReadConfiguration(), NetClassInstaller(), NetGetDCName(), NetIDPage_OnApply(), NetpAllocWStrFromWStr(), NetrJobAdd(), NetrJobEnum(), NetrJobGetInfo(), NetrWkstaGetInfo(), NetUserChangePassword(), CLayerStringList::Next(), CZipEnumerator::next_unique(), NLS_EnumSystemCodePages(), NPAddConnection3(), NPCancelConnection(), NPGetConnection(), NpReadAlias(), NpWaitPipe(), NSProviderInfoFromContext(), NSProvidersEnumerationProc(), NtfsDirFindFile(), NtfsGetNameInformation(), NtfsGetStreamInformation(), NtfsMakeAbsoluteFilename(), NtfsMakeFCBFromDirEntry(), NtfsReadFile(), NtfsSetEndOfFile(), NtfsWriteFile(), NtGdiGetTextFaceW(), NtLdrEnumerateBootEntries(), NtlmStructWriteStrW(), NtUserGetKeyNameText(), NtUserGetMonitorInfo(), NtUserGetObjectInformation(), OnAutoSync(), OnDropFiles(), CShellLink::OnNotify(), OnProfileTypeInit(), OpenLSAPolicyHandle(), OpenSetupInf(), OpenSoundDeviceRegKey(), OpenSoundDriverParametersRegKey(), OpenUserEventLogFile(), OslPrepareTarget(), PackStrings(), PaintControl(), CTrayClockWnd::PaintLine(), PaintText(), ParseArguments(), ParseDaysOfMonth(), ParseDaysOfWeek(), CFSFolder::ParseDisplayName(), CRegFolder::ParseDisplayName(), CCommonFolder< TSelf, TItemId, TExtractIcon >::ParseDisplayName(), ParseReasonCode(), ParseResources(), ParseTime(), pCDevSettings_GetMonitorDevice(), pCDevSettings_GetMonitorName(), pCDevSettings_OpenDeviceKey(), pdo_query_device_id(), PdoHandleQueryInstanceId(), PerfDataGetCommandLine(), PiSetDevNodeText(), PNP_GetClassInstance(), PNP_GetRelatedDeviceInstance(), PNP_RegisterNotification(), PnpEventThread(), BtrfsDeviceAdd::populate_device_tree(), PopulateCustomPathCombo(), PreloadGlobalMessageTable(), PrepareFileCopy(), Preview_pSaveImageAs(), PRINT_RECORD(), PrintAllJobs(), PrintAllMacros(), PrintHistory(), PrintingThreadProc(), PrintJobDetails(), PrintMacros(), PrintOSVersion(), ProcessCmdLine(), ProcessDisplayRegistry(), CMainWindow::ProcessFileMenu(), ProcessLangEntry(), ProcessLocaleRegistry(), ProcessorSetFriendlyName(), ProcessSetupInf(), ProcessUnattendSection(), profile_items_callback(), PROGRAM_AddProgram(), ProviderEnumerationProc(), PSAMPR_SERVER_NAME_bind(), pSetupDebugPrint(), PSM_PrepareToDraw(), push_xmlns(), CSendToMenu::QueryContextMenu(), CCopyToMenu::QueryContextMenu(), CMoveToMenu::QueryContextMenu(), CNewMenu::QueryContextMenu(), COpenWithMenu::QueryContextMenu(), CShellLink::QueryContextMenu(), CRecycleBin::QueryContextMenu(), QueryDeskCplString(), CInputPin::QueryId(), COutputPin::QueryId(), QuickSearchFindHit(), RChangeServiceConfig2W(), RChangeServiceConfigW(), RCreateServiceW(), rdp_send_logon_info(), ReadFromFile(), ReadParameterValue(), ReadPassword(), ReadPortSettings(), ReadString(), RecycleBin5_Constructor(), RecycleBin5_Create(), RecycleBin5Enum_Constructor(), RecycleBin5File_Constructor(), RecycleBin5File_RecycleBinFile_GetFileName(), RecycleBin5File_RecycleBinFile_GetTypeName(), BtrfsContextMenu::reflink_copy(), RefreshTreeItem(), RegenerateUserEnvironment(), RegFindRecurse(), RegFindWalk(), RegisterBDAComponent(), RegisterBlueScreenMachineInformation(), RegisterContext(), RegisterHelperDll(), RegisterService(), RegistryInitLunKey(), RegKeyEditPermissions(), RegSetValueW(), CHString::ReleaseBuffer(), RemovePort(), RemoveQuotes(), CNetConnection::Rename(), RenameKey(), RenderHDROP(), REnumDependentServicesA(), REnumDependentServicesW(), REnumServiceGroupW(), REnumServicesStatusA(), REnumServicesStatusExA(), REnumServicesStatusExW(), ReplaceSubstr(), ReplaceSubStr(), ReportToMountMgr(), ResFindDirectoryEntry(), ResolveArcNameManually(), ResolveTarget(), RetrieveCurrentModuleNTDirectory(), RGetServiceDisplayNameA(), RGetServiceDisplayNameW(), RGetServiceKeyNameA(), RGetServiceKeyNameW(), RpcpAddInterface(), RQueryServiceConfig2A(), RQueryServiceConfig2W(), RQueryServiceConfigA(), RQueryServiceConfigW(), RtlAddAtomToAtomTable(), RtlCreateUnicodeString(), RtlGetVersion(), RtlInitLargeUnicodeString(), RtlInitUnicodeString(), RtlInitUnicodeStringEx(), RtlInstallFunctionTableCallback(), RtlIpv6AddressToStringA(), RtlpCollapsePath(), RtlQueryEnvironmentVariable_U(), RtlSetEnvironmentVariable(), RtlSetTimeZoneInformation(), RunControlPanelApplet(), RunTestCases(), SacPutString(), CHString::SafeStrlen(), SampCreateDbObject(), SampOpenDbObject(), SampSetupCreateAliasAccount(), SampSetupCreateDomain(), SampSetupCreateGroupAccount(), SampSetupCreateUserAccount(), COpenWithList::SaveApp(), SaveDefaultUserHive(), SaveGeoID(), SaveJob(), SavePropertiesDlg(), SaveSetting(), SaveSettings(), SaveSystemSettings(), SaveUserLocale(), ScanFoldersForDriver(), ScanForInfFile(), ScmCanonDriverImagePath(), ScmControlService(), ScmConvertToBootPathName(), ScmCreateManagerHandle(), ScmCreateNewServiceRecord(), ScmCreateOrReferenceServiceImage(), ScmEncryptPassword(), ScmGetServiceNameFromTag(), ScmLoadDriver(), ScmLogonService(), ScmReadDependencies(), ScmSendStartCommand(), ScmSetFailureActions(), ScmSetServiceGroup(), ScmSetServicePassword(), ScmUnloadDriver(), ScmWriteDependencies(), SdbpMatchLayer(), SdbpStrlen(), SdbRegisterDatabaseEx(), SdbUninstall(), search_dll_path(), SearchDriverRecursive(), sec_out_mcs_data(), SelectNode(), service_main(), service_mainW(), SetAccountsDomainSid(), SetActiveComputerNameToRegistry(), SetAdministratorPassword(), SetAutoAdminLogon(), SetComputerNameToRegistry(), COpenWithList::SetDefaultHandler(), SetDefaultPrinterW(), SetDesktopBackColor(), SetDeviceDetails(), SetDomainComboBox(), SetFailedInstall(), SetGeoID(), setid_main(), SetLongDateFormat(), CFSFolder::SetNameOf(), CRegFolder::SetNameOf(), SetNewAccountName(), SetNTPServer(), SetParametersValues(), CShellLink::SetPath(), SetPrimaryDomain(), SetShortDateFormat(), SetShortDateSep(), CUIFBalloonWindow::SetText(), SETUP_CreateDevicesList(), SetupCreateDirectory(), SetupDiCreateDeviceInterfaceRegKeyW(), SetupDiGetDriverInfoDetailW(), SetupDiOpenDeviceInterfaceRegKey(), SetupDiOpenDeviceInterfaceW(), SetupInitializeFileLogW(), SetupLdrScanBootDrivers(), SetupQueueCopyWithCab(), SetupQueueDeleteW(), SetupQueueRenameW(), SH_FormatFileSizeWithBytes(), SH_ShowPropertiesDialog(), SHELL_ArgifyW(), SHELL_BuildEnvW(), SHELL_FindExecutable(), ShowCreateShortcutWizard(), ShowItemError(), ShowPartitionSizeInputBox(), ShowSoundScheme(), ShowStepError(), CUIFToolTip::ShowTip(), SHRegGetCLSIDKeyW(), SIC_IconAppend(), SmpConfigureExcludeKnownDlls(), SmpConfigureObjectDirectories(), SmpConfigureSubSystems(), SmpCreateDynamicEnvironmentVariables(), SockGetTdiName(), SockLoadHelperDll(), SockLoadTransportMapping(), SoftModalMessageBox(), SoundsDlgProc(), SpiStoreSz(), SpiStoreSzInt(), START_TEST(), StartInstaller(), StartScreenSaver(), StorageCoInstaller(), StoreConnectionInfo(), StrAryCpyHeapAllocWToA(), StrCpyHeapAllocW(), strdupW(), Stream_WriteString(), StreamingDeviceSetupW(), ATL::CSimpleStringT< BaseType, t_bMFCDLL >::StringLength(), dbgrpt_char_traits< wchar_t >::StringLength(), StrNCatBuff(), StrStrCase(), StrW2AHeapAlloc(), Substitute(), SuggestKeys(), SvchostCharLowerW(), test2(), Test_CommandLine(), test_DataTags(), Test_GetDisplayNameOf(), Test_GetFiles(), test_GetInterfaceName(), test_NhGetInterfaceNameFromDeviceGuid(), test_NhGetInterfaceNameFromGuid(), test_Sid_Null(), test_specialhandling(), test_swprintf(), test_vsnwprintf_s(), test_winclassinfo(), test_wstrdate(), test_wstrtime(), TestBuffers(), testCharPrevA(), testCharPrevW(), TestClassRedirection(), TestCommandLine(), TestDescription(), testDynCharPrev(), TestHDROP(), TestMyEventProvider(), TestRelativeNames(), TestUninitialized(), CDownloadManager::ThreadFunc(), TimeToMsString(), TiWriteErrorLog(), TransformView_add_column(), TransformView_Create(), TransformView_delete_row(), TransformView_set_row(), TranslateMachineInformationXML(), TreeView_SetBOOLCheck(), TreeWndNotifyProc(), TrimDmiStringW(), TrimGuidString(), TrimLeftRightWhitespace(), TrimNulls(), TrimPunctuation(), TUIDisplayStatusMessage(), UDFGetCfgParameter(), UnhandledExceptionFilter(), UnicodeToAnsi(), UnicodeToAnsiInPlace(), UniqueIdDisk(), UnloadAppInitDlls(), UpdateAddress(), UpdateCaretBlinkTimeReg(), UpdateCaretPos(), UpdateDriverForPlugAndPlayDevicesW(), UpdateLanStatus(), CDownloadManager::UpdateProgress(), UpdateRegistryString(), UpdateUsersShellFolderSettings(), USBAudioInitComponentId(), USBCCGP_PdoAppendInterfaceNumber(), USBCCGP_PdoHandleQueryDeviceText(), USBCCGP_PdoHandleQueryId(), USBH_PdoQueryDeviceText(), USBHUB_DumpingIDs(), USBPORT_DumpingIDs(), USBPORT_PdoPnP(), USBSTOR_HandleQueryProperty(), USBSTOR_PdoHandleQueryInstanceId(), User32DoImeHelp(), UserLoadKbdFile(), UserLpkPSMTextOut(), UserpFormatMessages(), UserpGetClientFileName(), UTF8EncodeAndSend(), ValidateDeviceName(), ValidateGuidString(), verify_str_imp(), VerifyDNSSuffix(), wcsistr_plus(), wcsrep(), WCSToMBEx(), wcstombs(), WdmAudGetDeviceInterface(), WdmAudOpenSysAudioDeviceInterfaces(), WdmAudOpenSysAudioDevices(), WhereFindByDirs(), WhereSearchFiles(), WhoamiGroups(), WhoamiPrintHeader(), WhoamiPrintTable(), WhoamiSetTable(), WinLdrAddDriverToList(), WlanConnect(), wmain(), WriteComputerSettings(), WriteDefaultLogonData(), WriteJobShadowFile(), WriteKeysSettings(), WriteOwnerSettings(), WriteParameterArray(), WritePortSettings(), WriteRdpFile(), WriteStartupRecoveryOptions(), WriteStringAt(), WriteToLogPrintfV(), WriteToLogPuts(), WriteUserLocale(), WSPAddressToString(), WSPStringToAddress(), and wWinMain().

◆ wcslwr()

_CRTIMP wchar_t *__cdecl wcslwr ( _Inout_z_ wchar_t _Str)

◆ wcsncat()

wchar_t *__cdecl wcsncat ( wchar_t _Dest,
const wchar_t _Source,
size_t  _Count 
)

◆ wcsncmp()

◆ wcsncpy()

wchar_t *__cdecl wcsncpy ( wchar_t _Dest,
const wchar_t _Source,
size_t  _Count 
)

◆ wcsnicmp()

◆ wcsnset()

_CRTIMP wchar_t *__cdecl wcsnset ( _Inout_updates_z_(_MaxCount) wchar_t _Str,
_In_ wchar_t  _Val,
_In_ size_t  _MaxCount 
)

◆ wcspbrk()

◆ wcsrchr()

◆ wcsrev()

_CRTIMP wchar_t *__cdecl wcsrev ( _Inout_z_ wchar_t _Str)

◆ wcsrtombs()

size_t __cdecl wcsrtombs ( _Pre_maybenull_ _Post_z_ char _Dest,
_Inout_ _Deref_prepost_z_ const wchar_t **  _PSource,
_In_ size_t  _Count,
_Out_opt_ mbstate_t _State 
)

◆ wcsset()

_CRTIMP wchar_t *__cdecl wcsset ( _Inout_z_ wchar_t _Str,
wchar_t  _Val 
)

◆ wcsspn()

_Check_return_ size_t __cdecl wcsspn ( _In_z_ const wchar_t _Str,
_In_z_ const wchar_t _Control 
)

◆ wcsstr()

_CONST_RETURN wchar_t *__cdecl wcsstr ( _In_z_ const wchar_t _Str,
_In_z_ const wchar_t _SubStr 
)

Referenced by ACPIDispatchDeviceControl(), AddComputerTypeEntries(), ApplyParameterStringsToMessage(), ArcPathNormalize(), BasepGetComputerNameFromNtPath(), Bus_PDO_QueryDeviceText(), Bus_PDO_QueryResourceRequirements(), Bus_PDO_QueryResources(), check_boot_options(), CheckForLiveCD(), cmdUse(), CompareName(), CreateDisplayDriverList(), DnsQuery_W(), CShellLink::DoOpen(), DoParseFile(), DoPathes(), DoSync(), DoTestEntry(), DriverFilesCallback(), EditTypeDlg_OnChangeIcon(), EfiInitpCreateApplicationEntry(), elf_load_debug_info_from_map(), elf_search_and_load_file(), enum_gac_assemblies(), EnumJoysticks(), CHString::Find(), GetEventMessage(), GetProcessorInformation(), GetSystemName(), Global_InStr(), HtmlHelpW(), INTERNET_LoadProxySettings(), IntLoadRegistryParameters(), IopDetectResourceConflict(), IsInternetLocation(), ITSProtocol_Start(), ITSProtocolInfo_CombineUrl(), LISTVIEW_FindItemW(), macho_search_and_load_file(), mciSendStringW(), ModifyValue(), MSACM_ReorderDriversByPriority(), msi_service_args_to_vector(), NavigateToUrl(), CNewMenu::NewItemByCommand(), OpenAdapterHandle(), OpenSetupInf(), ProcessPageShowContextMenu(), QueryDeviceName(), RecycleBin5_Create(), RemoveDeviceW(), ReplaceSubstr(), ResizeDeviceW(), resolve_filename(), RtlCreateUserProcess(), ScmIsSecurityService(), SearchCHM_Storage(), set_deferred_action_props(), SetChmPath(), ShowFailureActions(), SmpQueryRegistrySosOption(), START_TEST(), StartBalanceW(), String_replace(), String_split(), StrStrCase(), test_dllnames(), Test_GetFiles(), test_swprintf(), TestCommandLine(), TestRedirection(), update_result_text(), VideoPortInitialize(), wmain(), XCOPY_DoCopy(), and xmlwriter_WriteCData().

◆ wcstod()

◆ wcstof()

float __cdecl wcstof ( const wchar_t nptr,
wchar_t **  endptr 
)

◆ wcstok()

_Check_return_ wchar_t *__cdecl wcstok ( _Inout_opt_z_ wchar_t _Str,
_In_z_ const wchar_t _Delim 
)

◆ wcstol()

_Check_return_ long __cdecl wcstol ( _In_z_ const wchar_t _Str,
_Out_opt_ _Deref_post_z_ wchar_t **  _EndPtr,
_In_ int  _Radix 
)

◆ wcstold()

long double __cdecl wcstold ( const wchar_t __restrict__,
wchar_t **  __restrict__ 
)

◆ wcstoll()

__MINGW_EXTENSION long long __cdecl wcstoll ( const wchar_t nptr,
wchar_t **  endptr,
int  base 
)

◆ wcstoul()

_Check_return_ unsigned long __cdecl wcstoul ( _In_z_ const wchar_t _Str,
_Out_opt_ _Deref_post_z_ wchar_t **  _EndPtr,
_In_ int  _Radix 
)

◆ wcstoull()

__MINGW_EXTENSION unsigned long long __cdecl wcstoull ( const wchar_t nptr,
wchar_t **  endptr,
int  base 
)

◆ wcsupr()

_CRTIMP wchar_t *__cdecl wcsupr ( _Inout_z_ wchar_t _Str)

◆ wcsxfrm()

◆ wctob()

int __cdecl wctob ( _In_ wint_t  _WCh)

◆ wmemchr()

__CRT_INLINE _CONST_RETURN wchar_t *__cdecl wmemchr ( _In_reads_(_N) const wchar_t _S,
_In_ wchar_t  _C,
_In_ size_t  _N 
)

Definition at line 2554 of file wchar.h.

2558 {
2559 for (;0<_N;++_S,--_N)
2560 {
2561 if (*_S==_C) return (_CONST_RETURN wchar_t *)(_S);
2562 }
2563 return (0);
2564 }
#define _CONST_RETURN
Definition: crtdefs.h:137
_N
Definition: wchar.h:2478

Referenced by add_local_oid_text_to_control(), InternetCrackUrlW(), is_domain_legal_for_cookie(), merge_paths(), and set_cookie().

◆ wmemcmp()

__CRT_INLINE int __cdecl wmemcmp ( _In_reads_(_N) const wchar_t _S1,
_In_reads_(_N) const wchar_t _S2,
_In_ size_t  _N 
)

Definition at line 2569 of file wchar.h.

2573 {
2574 for (; 0 < _N; ++_S1,++_S2,--_N)
2575 {
2576 if (*_S1!=*_S2) return (*_S1 < *_S2 ? -1 : +1);
2577 }
2578 return (0);
2579 }

◆ wmemmove()

__CRT_INLINE wchar_t *__cdecl wmemmove ( _Out_writes_all_opt_(_N) wchar_t _S1,
_In_reads_opt_(_N) const wchar_t _S2,
_In_ size_t  _N 
)

Definition at line 2600 of file wchar.h.

2604 {
2605 return (wchar_t *)memmove(_S1,_S2,_N*sizeof(wchar_t));
2606 }
#define memmove(s1, s2, n)
Definition: mkisofs.h:881

◆ wmemset()

__CRT_INLINE wchar_t *__cdecl wmemset ( _Out_writes_all_(_N) wchar_t _S,
_In_ wchar_t  _C,
_In_ size_t  _N 
)

Definition at line 2611 of file wchar.h.

2615 {
2616 wchar_t *_Su = _S;
2617 for (;0<_N;++_Su,--_N) {
2618 *_Su = _C;
2619 }
2620 return (_S);
2621 }

Referenced by START_TEST(), and test_Sid_Null().

◆ wprintf()

◆ wscanf()

Variable Documentation

◆ _Format

Definition at line 2317 of file wchar.h.

Referenced by swprintf(), and vswprintf().

◆ _Iter_

_Iter_

Definition at line 2478 of file wchar.h.

◆ _Locale

◆ _MaxCount

_In_ size_t _MaxCount

Definition at line 1963 of file wchar.h.

◆ _N

Initial value:
{
return (wchar_t *)memcpy(_S1,_S2,_N*sizeof(wchar_t))
#define memcpy(s1, s2, n)
Definition: mkisofs.h:878

Definition at line 2478 of file wchar.h.

Referenced by wmemchr(), wmemcmp(), wmemmove(), and wmemset().

◆ _off64_t

__MINGW_EXTENSION typedef long long _off64_t

Definition at line 629 of file wchar.h.

◆ _SizeInWords

_In_ size_t _SizeInWords

Definition at line 2316 of file wchar.h.

Referenced by swprintf(), and vswprintf().

◆ _Tm

◆ off64_t

__MINGW_EXTENSION typedef long long off64_t

Definition at line 631 of file wchar.h.