25 #pragma pack(push,_CRT_PACKING)
38 #define WCHAR_MIN 0x0000
39 #define WCHAR_MAX 0xffff
41 #ifndef _VA_LIST_DEFINED
43 typedef System::ArgIterator
va_list;
47 #define _VA_LIST_DEFINED
51 #define WEOF (wint_t)(0xFFFF)
71 #ifndef _STDIO_DEFINED
74 #if defined (_DLL) && defined (_M_IX86)
85 #ifndef _STDSTREAM_DEFINED
86 #define stdin (&__iob_func()[0])
87 #define stdout (&__iob_func()[1])
88 #define stderr (&__iob_func()[2])
89 #define _STDSTREAM_DEFINED
92 #ifndef _FSIZE_T_DEFINED
94 #define _FSIZE_T_DEFINED
97 #ifndef _WFINDDATA_T_DEFINED
135 #ifdef _USE_32BIT_TIME_T
136 #define _wfinddata_t _wfinddata32_t
137 #define _wfinddatai64_t _wfinddata32i64_t
139 #define _wfindfirst _wfindfirst32
140 #define _wfindnext _wfindnext32
141 #define _wfindfirsti64 _wfindfirst32i64
142 #define _wfindnexti64 _wfindnext32i64
145 #define _wfinddata_t _wfinddata64i32_t
146 #define _wfinddatai64_t _wfinddata64_t
148 #define _wfindfirst _wfindfirst64i32
149 #define _wfindnext _wfindnext64i32
150 #define _wfindfirsti64 _wfindfirst64
151 #define _wfindnexti64 _wfindnext64
155 #define _WFINDDATA_T_DEFINED
164 #define NULL ((void *)0)
168 #ifndef _CONST_RETURN
170 #define _CONST_RETURN const
171 #define _CRT_CONST_CORRECT_OVERLOADS
173 #define _CONST_RETURN
178 #define _WConst_return _CONST_RETURN
180 #ifndef _CRT_CTYPEDATA_DEFINED
181 #define _CRT_CTYPEDATA_DEFINED
182 #ifndef _CTYPE_DISABLE_MACROS
184 extern const unsigned short __newctype[];
185 #if defined (_DLL) && defined (_M_IX86)
187 _CRTIMP const unsigned short ** __cdecl __p__pctype(
void);
191 #ifndef __PCTYPE_FUNC
192 #if defined (_CRT_DISABLE_PERFCRIT_LOCKS) && !defined (_DLL)
193 #define __PCTYPE_FUNC _pctype
195 #define __PCTYPE_FUNC __pctype_func()
200 #if !defined (_M_CEE_PURE)
203 #define _pctype (__pctype_func())
208 #ifndef _CRT_WCTYPEDATA_DEFINED
209 #define _CRT_WCTYPEDATA_DEFINED
210 #ifndef _CTYPE_DISABLE_MACROS
211 #if !defined (_M_CEE_PURE)
215 extern const unsigned short __newctype[];
216 #if defined (_DLL) && defined (_M_IX86)
223 #if !defined (_M_CEE_PURE)
226 #define _pwctype (__pwctype_func())
239 #define _CONTROL 0x20
243 #define _LEADBYTE 0x8000
244 #define _ALPHA (0x0100|_UPPER|_LOWER)
249 #ifndef _WCTYPE_DEFINED
280 #ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
297 #ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
302 #define _WCTYPE_DEFINED
305 #ifndef _WDIRECT_DEFINED
309 #ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
311 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
312 #pragma push_macro("_wgetcwd")
313 #pragma push_macro("_wgetdcwd")
320 #define _wgetdcwd_nolock _wgetdcwd
322 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
323 #pragma pop_macro("_wgetcwd")
324 #pragma pop_macro("_wgetdcwd")
334 #define _WDIRECT_DEFINED
360 #if !defined (__cplusplus) || !defined (_M_IX86)
376 #ifndef _WLOCALE_DEFINED
383 #define _WLOCALE_DEFINED
386 #ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
388 #ifndef _WPROCESS_DEFINED
412 #ifndef _CRT_WSYSTEM_DEFINED
413 #define _CRT_WSYSTEM_DEFINED
417 #define _WPROCESS_DEFINED
422 #ifndef _WCTYPE_INLINE_DEFINED
425 #define _CRT_WCTYPE_NOINLINE
427 #undef _CRT_WCTYPE_NOINLINE
430 #if !defined (__cplusplus) || defined (_M_CEE_PURE) || defined (MRTDLL) || defined (_CRT_WCTYPE_NOINLINE)
431 #define iswalpha(_c) ( iswctype(_c,_ALPHA) )
432 #define iswupper(_c) ( iswctype(_c,_UPPER) )
433 #define iswlower(_c) ( iswctype(_c,_LOWER) )
434 #define iswdigit(_c) ( iswctype(_c,_DIGIT) )
435 #define iswxdigit(_c) ( iswctype(_c,_HEX) )
436 #define iswspace(_c) ( iswctype(_c,_SPACE) )
437 #define iswpunct(_c) ( iswctype(_c,_PUNCT) )
438 #define iswblank(_c) (((_c) == '\t') ? _BLANK : iswctype(_c,_BLANK) )
439 #define iswalnum(_c) ( iswctype(_c,_ALPHA|_DIGIT) )
440 #define iswprint(_c) ( iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT) )
441 #define iswgraph(_c) ( iswctype(_c,_PUNCT|_ALPHA|_DIGIT) )
442 #define iswcntrl(_c) ( iswctype(_c,_CONTROL) )
443 #define iswascii(_c) ( (unsigned)(_c) < 0x80 )
445 #define _iswalpha_l(_c,_p) ( iswctype(_c,_ALPHA) )
446 #define _iswupper_l(_c,_p) ( iswctype(_c,_UPPER) )
447 #define _iswlower_l(_c,_p) ( iswctype(_c,_LOWER) )
448 #define _iswdigit_l(_c,_p) ( iswctype(_c,_DIGIT) )
449 #define _iswxdigit_l(_c,_p) ( iswctype(_c,_HEX) )
450 #define _iswspace_l(_c,_p) ( iswctype(_c,_SPACE) )
451 #define _iswpunct_l(_c,_p) ( iswctype(_c,_PUNCT) )
452 #define _iswblank_l(_c,_p) (((_c) == '\t') ? _BLANK : iswctype(_c,_BLANK) )
453 #define _iswalnum_l(_c,_p) ( iswctype(_c,_ALPHA|_DIGIT) )
454 #define _iswprint_l(_c,_p) ( iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT) )
455 #define _iswgraph_l(_c,_p) ( iswctype(_c,_PUNCT|_ALPHA|_DIGIT) )
456 #define _iswcntrl_l(_c,_p) ( iswctype(_c,_CONTROL) )
458 #ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
459 #ifndef _CTYPE_DISABLE_MACROS
460 #define isleadbyte(_c) ( __PCTYPE_FUNC[(unsigned char)(_c)] & _LEADBYTE)
465 #define _WCTYPE_INLINE_DEFINED
472 #ifndef _INO_T_DEFINED
478 #define _INO_T_DEFINED
481 #ifndef _DEV_T_DEFINED
487 #define _DEV_T_DEFINED
490 #ifndef _OFF_T_DEFINED
496 #define _OFF_T_DEFINED
499 #ifndef _STAT_DEFINED
579 #define __stat64 _stat64
581 #ifdef _USE_32BIT_TIME_T
582 #define _fstat _fstat32
583 #define _fstati64 _fstat32i64
584 #define _stat _stat32
585 #define _stati64 _stat32i64
586 #define _wstat _wstat32
587 #define _wstati64 _wstat32i64
590 #define _fstat _fstat64i32
591 #define _fstati64 _fstat64
592 #define _stat _stat64i32
593 #define _stati64 _stat64
594 #define _wstat _wstat64i32
595 #define _wstati64 _wstat64
600 #define _STAT_DEFINED
603 #ifndef _WSTAT_DEFINED
613 #define _WSTAT_DEFINED
617 #ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
619 #ifndef _WCONIO_DEFINED
624 #define WEOF (wint_t)(0xFFFF)
659 #define _WCONIO_DEFINED
665 #ifndef _WSTDIO_DEFINED
670 #define WEOF (wint_t)(0xFFFF)
693 #if __STDC_WANT_SECURE_LIB__
697 #if __STDC_WANT_SECURE_LIB__
703 #if __STDC_WANT_SECURE_LIB__
709 #if __STDC_WANT_SECURE_LIB__
714 #if __STDC_WANT_SECURE_LIB__
718 #if __STDC_WANT_SECURE_LIB__
733 __DEFINE_CPP_OVERLOAD_STANDARD_NFUNC_0_2_ARGLIST_EX(
int, __RETURN_POLICY_SAME, _CRTIMP, _snwprintf, _vsnwprintf,
_Pre_notnull_ _Post_maybez_ wchar_t,
_Out_writes_(_Count)
_Post_maybez_,
wchar_t, _Dest,
_In_ size_t, _Count,
_In_z_ _Printf_format_string_ const
wchar_t *, _Format)
774 #ifndef _CRT_NON_CONFORMING_SWPRINTFS
776 #define _SWPRINTFS_DEPRECATED _CRT_DEPRECATE_TEXT("swprintf has been changed to conform with the ISO C standard, adding an extra character count parameter. To use traditional Microsoft swprintf, set _CRT_NON_CONFORMING_SWPRINTFS.")
780 #define _SWPRINTFS_DEPRECATED
785 #pragma warning(push)
786 #pragma warning(disable:4141 4996)
787 __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_1_ARGLIST_EX(
int, __RETURN_POLICY_SAME,
_SWPRINTFS_DEPRECATED _CRTIMP, _swprintf, _swprintf_s, _vswprintf,
vswprintf_s,
_Pre_notnull_ _Post_z_,
wchar_t, _Dest,
_In_z_ _Printf_format_string_ const wchar_t *, _Format)
788 __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_2_ARGLIST_EX(
int, __RETURN_POLICY_SAME,
_SWPRINTFS_DEPRECATED _CRTIMP, __swprintf_l, __vswprintf_l,
_vswprintf_s_l,
_Pre_notnull_ _Post_z_
wchar_t,
_Out_,
wchar_t, _Dest,
_In_z_ _Printf_format_string_params_(2) const
wchar_t *, _Format,
_locale_t, _Plocinfo)
791 #if !defined (RC_INVOKED) && !defined (__midl)
795 #ifdef _CRT_NON_CONFORMING_SWPRINTFS
797 #define swprintf _swprintf
798 #define vswprintf _vswprintf
799 #define _swprintf_l __swprintf_l
800 #define _vswprintf_l __vswprintf_l
804 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
805 #pragma push_macro("_wtempnam")
811 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
812 #pragma pop_macro("_wtempnam")
819 #if __STDC_WANT_SECURE_LIB__
825 #if __STDC_WANT_SECURE_LIB__
835 #if __STDC_WANT_SECURE_LIB__
846 #ifndef _CRT_WPERROR_DEFINED
847 #define _CRT_WPERROR_DEFINED
851 #ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
865 #define _CRT_GETPUTWCHAR_NOINLINE
867 #undef _CRT_GETPUTWCHAR_NOINLINE
870 #if !defined (__cplusplus) || defined (_M_CEE_PURE) || defined (_CRT_GETPUTWCHAR_NOINLINE)
871 #define getwchar() fgetwc(stdin)
872 #define putwchar(_c) fputwc((_c),stdout)
880 #define getwc(_stm) fgetwc(_stm)
881 #define putwc(_c,_stm) fputwc(_c,_stm)
882 #define _putwc_nolock(_c,_stm) _fputwc_nolock(_c,_stm)
883 #define _getwc_nolock(_c) _fgetwc_nolock(_c)
885 #if defined (_CRT_DISABLE_PERFCRIT_LOCKS) && !defined (_DLL)
886 #define fgetwc(_stm) _getwc_nolock(_stm)
887 #define fputwc(_c,_stm) _putwc_nolock(_c,_stm)
888 #define ungetwc(_c,_stm) _ungetwc_nolock(_c,_stm)
891 #define _WSTDIO_DEFINED
894 #ifndef _WSTDLIB_DEFINED
900 __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_1_1(
wchar_t *, __RETURN_POLICY_DST, _CRTIMP, _itow,
_In_ int,
_Value,
_Pre_notnull_ _Post_z_,
wchar_t, _Dest,
_In_ int,
_Radix)
903 __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_1_1(
wchar_t *, __RETURN_POLICY_DST, _CRTIMP, _ltow,
_In_ long, _Value,
_Pre_notnull_ _Post_z_,
wchar_t, _Dest,
_In_ int, _Radix)
906 __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_1_1(
wchar_t *, __RETURN_POLICY_DST, _CRTIMP, _ultow,
_In_ unsigned long, _Value,
_Pre_notnull_ _Post_z_,
wchar_t, _Dest,
_In_ int, _Radix)
922 #ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
928 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
929 #pragma push_macro("_wdupenv_s")
935 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
936 #pragma pop_macro("_wdupenv_s")
938 #ifndef _CRT_WSYSTEM_DEFINED
939 #define _CRT_WSYSTEM_DEFINED
965 #define _WSTDLIB_DEFINED
969 #ifndef _WSTDLIBP_DEFINED
973 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
974 #pragma push_macro("_wfullpath")
980 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
981 #pragma pop_macro("_wfullpath")
986 __DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_4(errno_t,
_wmakepath_s, _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)
987 __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_4(
void,
__RETURN_POLICY_VOID, _CRTIMP, _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)
988 #ifndef _CRT_WPERROR_DEFINED
989 #define _CRT_WPERROR_DEFINED
993 #ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
998 __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_2_0(
void, __RETURN_POLICY_VOID, _CRTIMP, _wsearchenv,
_In_z_ const
wchar_t *, _Filename,
_In_z_ const
wchar_t *, _EnvVar,
_Pre_notnull_ _Post_z_,
wchar_t, _ResultPath)
1009 #define _WSTDLIBP_DEFINED
1014 #ifndef _WSTRING_DEFINED
1018 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
1019 #pragma push_macro("_wcsdup")
1025 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
1026 #pragma pop_macro("_wcsdup")
1029 #if __STDC_WANT_SECURE_LIB__
1038 #if __STDC_WANT_SECURE_LIB__
1048 size_t __cdecl wcsnlen(
_In_z_ const
wchar_t * _Src,
_In_ size_t _MaxCount);
1049 #if __STDC_WANT_SECURE_LIB__
1055 return (_Src ==
NULL) ? 0 : wcsnlen(_Src, _MaxCount);
1058 #if __STDC_WANT_SECURE_LIB__
1063 #pragma warning(push)
1064 #pragma warning(disable:6059)
1065 __DEFINE_CPP_OVERLOAD_STANDARD_NFUNC_0_2_EX(
wchar_t *, __RETURN_POLICY_DST, _CRTIMP, wcsncat,
wcsncat_s,
_Inout_updates_z_(
_Size)
wchar_t,
_Inout_updates_z_(_Count),
wchar_t, _Dest,
_In_z_ const wchar_t *, _Source,
_In_ size_t, _Count)
1066 #pragma warning(pop)
1069 #if __STDC_WANT_SECURE_LIB__
1073 __DEFINE_CPP_OVERLOAD_STANDARD_NFUNC_0_2_EX(
wchar_t *, __RETURN_POLICY_DST, _CRTIMP, wcsncpy,
wcsncpy_s,
_Out_writes_z_(
_Size)
wchar_t,
_Out_writes_(_Count) _Post_maybez_,
wchar_t, _Dest,
_In_z_ const
wchar_t *, _Source,
_In_ size_t, _Count)
1093 __DEFINE_CPP_OVERLOAD_STANDARD_NFUNC_0_2_EX(
wchar_t *, __RETURN_POLICY_DST, _CRTIMP, _wcsnset, _wcsnset_s,
_Inout_updates_z_(
_Size)
wchar_t,
_Inout_updates_z_(_MaxCount),
wchar_t, _Str,
wchar_t, _Val,
_In_ size_t, _MaxCount)
1094 _CRTIMP
wchar_t * __cdecl _wcsrev(_Inout_z_
wchar_t * _Str);
1097 __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_1_EX(
wchar_t *, __RETURN_POLICY_DST, _CRTIMP, _wcsset, _wcsset_s,
_Inout_updates_z_(
_Size)
wchar_t, _Inout_z_,
wchar_t, _Str,
wchar_t, _Val)
1104 __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_1_EX(
wchar_t *, __RETURN_POLICY_DST, _CRTIMP, _wcslwr_l, _wcslwr_s_l,
_Inout_updates_z_(
_Size)
wchar_t, _Inout_z_,
wchar_t, _String,
_In_opt_ _locale_t, _Locale)
1110 __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_1_EX(
wchar_t *, __RETURN_POLICY_DST, _CRTIMP, _wcsupr_l, _wcsupr_s_l,
_Inout_updates_z_(_Size)
wchar_t, _Inout_z_,
wchar_t, _String,
_In_opt_ _locale_t, _Locale)
1123 #ifndef _CPP_WIDE_INLINES_DEFINED
1124 #define _CPP_WIDE_INLINES_DEFINED
1127 {
return ((
wchar_t *)wcschr((
const wchar_t *)_Str, _Ch)); }
1129 {
return ((
wchar_t *)wcspbrk((
const wchar_t *)_Str, _Control)); }
1131 {
return ((
wchar_t *)
wcsrchr((
const wchar_t *)_Str, _Ch)); }
1133 {
return ((
wchar_t *)
wcsstr((
const wchar_t *)_Str, _SubStr)); }
1140 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
1141 #pragma push_macro("wcsdup")
1147 #if defined (_DEBUG) && defined (_CRTDBG_MAP_ALLOC)
1148 #pragma pop_macro("wcsdup")
1152 #define wcswcs wcsstr
1159 _CRT_NONSTDC_DEPRECATE(_wcsset) _CRTIMP
wchar_t * __cdecl wcsset(_Inout_z_
wchar_t * _Str,
wchar_t _Val);
1166 #define _WSTRING_DEFINED
1184 #ifndef _WTIME_DEFINED
1211 #if !defined (RC_INVOKED) && !defined (__midl)
1215 #define _WTIME_DEFINED
1228 __DEFINE_CPP_OVERLOAD_SECURE_FUNC_1_3(errno_t,
mbsrtowcs_s,
_Out_opt_ size_t *, _Retval, _Post_z_
wchar_t, _Dest,
_Inout_ _Deref_prepost_opt_valid_ const char **, _PSource,
_In_ size_t, _Count,
_Out_opt_ mbstate_t *, _State)
1229 __DEFINE_CPP_OVERLOAD_STANDARD_NFUNC_0_3_SIZE(_CRTIMP, 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)
1237 __DEFINE_CPP_OVERLOAD_SECURE_FUNC_1_3(errno_t,
wcsrtombs_s,
_Out_opt_ size_t *, _Retval,
_Out_writes_opt_z_(_Size)
char, _Dest,
_Inout_ _Deref_prepost_z_ const
wchar_t **, _PSrc,
_In_ size_t, _Count,
_Out_opt_ mbstate_t *, _State)
1238 __DEFINE_CPP_OVERLOAD_STANDARD_NFUNC_0_3_SIZE(_CRTIMP, wcsrtombs,
_Pre_maybenull_ _Post_z_,
char, _Dest,
_Inout_ _Deref_prepost_z_ const
wchar_t **, _PSource,
_In_ size_t, _Count,
_Out_opt_ mbstate_t *, _State)
1249 #if __STDC_WANT_SECURE_LIB__
1254 {(
void)_F;
return (_M); }
1256 {
return (_P ==
NULL || *_P == 0); }
1258 {
for (; 0 <
_N; ++_S, --
_N)
1263 {
for (; 0 <
_N; ++_S1, ++_S2, --
_N)
1265 return (*_S1 < *_S2 ? -1 : +1);
1272 #pragma warning( push )
1273 #pragma warning( disable : 4996 6386 )
1274 return (
wchar_t *)memcpy(_S1, _S2, _N*
sizeof(
wchar_t));
1275 #pragma warning( pop )
1280 #pragma warning( push )
1281 #pragma warning( disable : 4996 6386 )
1282 #pragma warning( disable : 6387)
1284 return (
wchar_t *)memmove(_S1, _S2, _N*
sizeof(
wchar_t));
1285 #pragma warning( pop )
1288 #if __STDC_WANT_SECURE_LIB__
1308 {
return (
wchar_t *)
wmemchr((
const wchar_t *)_S, _C, _N); }
_Check_return_ _CRTIMP int __cdecl _wfindnext32(_In_ intptr_t _FindHandle, _Out_ struct _wfinddata32_t *_FindData)
_Check_return_ _CRTIMP int __cdecl _vscwprintf_p_l(_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
#define _Out_
Definition: sal.h:351
#define NULL
Definition: wchar.h:164
short st_nlink
Definition: stat.h:112
_Check_return_ _CRTIMP wchar_t *__cdecl _wcsdup(_In_z_ const wchar_t *_Str)
_Check_return_wat_ _CRTIMP errno_t __cdecl _wtmpnam_s(_Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords)
_dev_t st_rdev
Definition: stat.h:99
#define __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_2_SIZE(_DeclSpec, _FuncName, _SalAttributeDst, _DstType, _Dst, _TType1, _TArg1, _TType2, _TArg2)
Definition: crtdefs.h:888
_Check_return_ _CRT_INSECURE_DEPRECATE(_wsopen_s) _CRTIMP int __cdecl _wcreat(_In_z_ const wchar_t *_Filename
_Check_return_opt_ _CRTIMP int __cdecl _vcwprintf_s(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
#define getwchar()
Definition: wchar.h:871
_Check_return_opt_ _CRTIMP wint_t __cdecl fputwc(_In_ wchar_t _Ch, _Inout_ FILE *_File)
_Check_return_opt_ _CRTIMP _locale_t __cdecl _wcreate_locale(_In_ int _Category, _In_z_ const wchar_t *_Locale)
#define _iswgraph_l(_c, _p)
Definition: wchar.h:455
_Check_return_ _CRT_NONSTDC_DEPRECATE(_wcsdup) _CRTIMP wchar_t *__cdecl wcsdup(_In_z_ const wchar_t *_Str)
_Check_return_wat_ _CRTIMP errno_t __cdecl _waccess_s(_In_z_ const wchar_t *_Filename, _In_ int _AccessMode)
char * _base
Definition: mbstring.h:36
#define _Out_writes_to_(size, count)
Definition: sal.h:361
_Check_return_ _CRTIMP size_t __cdecl wcsspn(_In_z_ const wchar_t *_Str, _In_z_ const wchar_t *_Control)
#define __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_2_0(_ReturnType, _ReturnPolicy, _DeclSpec, _FuncName, _HType1, _HArg1, _HType2, _HArg2, _SalAttributeDst, _DstType, _Dst)
Definition: crtdefs.h:879
_CRTIMP errno_t __cdecl _wsearchenv_s(_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_EnvVar, _Out_writes_z_(_SizeInWords) wchar_t *_ResultPath, _In_ size_t _SizeInWords)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _swprintf_s_l(_Out_writes_z_(_DstSize) wchar_t *_DstBuf, _In_ size_t _DstSize, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_Check_return_opt_ _CRTIMP int __cdecl wprintf(_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
#define __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_4(_ReturnType, _ReturnPolicy, _DeclSpec, _FuncName, _SalAttributeDst, _DstType, _Dst, _TType1, _TArg1, _TType2, _TArg2, _TType3, _TArg3, _TType4, _TArg4)
Definition: crtdefs.h:873
_ino_t st_ino
Definition: stat.h:126
int tm_min
Definition: time.h:115
_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_ALTERNATIVE int __cdecl vswprintf_s(_Out_writes_z_(_SizeInWords) wchar_t *_Dst, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
_CRTIMP errno_t __cdecl _wmktemp_s(_Inout_updates_z_(_SizeInWords) wchar_t *_TemplateName, _In_ size_t _SizeInWords)
__int64 size
Definition: io.h:115
_Check_return_wat_ _CRTIMP errno_t __cdecl _wputenv_s(_In_z_ const wchar_t *_Name, _In_z_ const wchar_t *_Value)
int _cnt
Definition: mbstring.h:35
_Check_return_ _CRTIMP long __cdecl _wtol(_In_z_ const wchar_t *_Str)
_CRTIMP _In_ int _Value
Definition: setjmp.h:190
_Check_return_ _CRTIMP int __cdecl wcscmp(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
#define __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_1_1(_ReturnType, _ReturnPolicy, _DeclSpec, _FuncName, _HType1, _HArg1, _SalAttributeDst, _DstType, _Dst, _TType1, _TArg1)
Definition: crtdefs.h:876
_dev_t st_dev
Definition: stat.h:153
_CRTIMP errno_t __cdecl memcpy_s(_Out_writes_bytes_to_opt_(_DstSize, _MaxCount) void *_Dst, _In_ rsize_t _DstSize, _In_reads_bytes_opt_(_MaxCount) const void *_Src, _In_ rsize_t _MaxCount)
_Check_return_ _CRTIMP int __cdecl _wfindnext64i32(_In_ intptr_t _FindHandle, _Out_ struct _wfinddata64i32_t *_FindData)
_CRTIMP const unsigned short * _pctype
#define iswupper(_c)
Definition: wchar.h:432
_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)
__int64 st_size
Definition: stat.h:160
#define _Out_opt_
Definition: sal.h:352
#define __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_0(_ReturnType, _ReturnPolicy, _DeclSpec, _FuncName, _SalAttributeDst, _DstType, _Dst)
Definition: crtdefs.h:861
#define _iswcntrl_l(_c, _p)
Definition: wchar.h:456
_In_z_ const wchar_t * _Str2
Definition: wchar.h:1068
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_s_l(_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
__time64_t time_t
Definition: crtdefs.h:580
#define stdout
Definition: wchar.h:87
_Check_return_ _CRTIMP _CONST_RETURN wchar_t *__cdecl wcsrchr(_In_z_ const wchar_t *_Str, _In_ wchar_t _Ch)
errno_t __CRTDECL wmemcpy_s(_Out_writes_to_opt_(_N1, _N) wchar_t *_S1, _In_ rsize_t _N1, _In_reads_opt_(_N) const wchar_t *_S2, rsize_t _N)
#define _iswblank_l(_c, _p)
Definition: wchar.h:452
__time64_t time_create
Definition: io.h:121
time_t st_ctime
Definition: stat.h:119
_Check_return_ _CRTIMP int __cdecl _vscwprintf(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
_CRTIMP errno_t __cdecl wcsrtombs_s(_Out_opt_ size_t *_Retval, _Out_writes_bytes_to_opt_(_SizeInBytes,*_Retval) char *_Dst, _In_ size_t _SizeInBytes, _Inout_ _Deref_prepost_z_ const wchar_t **_Src, _In_ size_t _Size, _Out_opt_ mbstate_t *_State)
_Check_return_opt_ _CRTIMP int __cdecl _cwprintf_s(_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
_Check_return_ _CRTIMP long double __cdecl _wcstold_l(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, _In_opt_ _locale_t _Locale)
long _off_t
Definition: wchar.h:491
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _swscanf_s_l(_In_z_ const wchar_t *_Src, _In_z_ _Scanf_s_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_fsize_t size
Definition: io.h:124
__time32_t st_ctime
Definition: stat.h:135
_Check_return_ _CRTIMP int __cdecl _waccess(_In_z_ const wchar_t *_Filename, _In_ int _AccessMode)
_Check_return_opt_ wint_t __cdecl _putwch_nolock(wchar_t _WCh)
unsigned attrib
Definition: io.h:111
#define _CRTIMP
Definition: crtdefs.h:23
_Iter_
Definition: wchar.h:1247
_CRTIMP errno_t __cdecl _wstrtime_s(_Out_writes_(_SizeInWords) _Post_readable_size_(9) wchar_t *_Buf, _In_ size_t _SizeInWords)
_Check_return_ _CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
_Check_return_opt_ _CRTIMP int __cdecl wprintf_s(_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
_Check_return_ _CRTIMP int __cdecl iswctype(_In_ wint_t _C, _In_ wctype_t _Type)
_In_z_ const wchar_t * _Control
Definition: wchar.h:1043
#define __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_1_ARGLIST_EX(_ReturnType, _ReturnPolicy, _DeclSpec, _FuncName, _SecureFuncName, _VFuncName, _SecureVFuncName, _SalAttributeDst, _DstType, _Dst, _TType1, _TArg1)
Definition: crtdefs.h:1956
_CRTIMP intptr_t __cdecl _wexecl(_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
__inline int __CRTDECL fwide(_In_opt_ FILE *_F, int _M)
Definition: wchar.h:1253
__time32_t st_atime
Definition: stat.h:101
_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)
#define __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_1_EX(_ReturnType, _ReturnPolicy, _DeclSpec, _FuncName, _SecureFuncName, _SecureDstType, _SalAttributeDst, _DstType, _Dst, _TType1, _TArg1)
Definition: crtdefs.h:1938
#define _iswprint_l(_c, _p)
Definition: wchar.h:454
#define _Out_writes_z_(size)
Definition: sal.h:358
#define _Ret_maybenull_
Definition: sal.h:535
_Check_return_ _CRTIMP int __cdecl _wcsnicoll(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_ size_t _MaxCount)
_Check_return_ _Ret_maybenull_z_ _CRTIMP wchar_t *__cdecl _wgetdcwd(_In_ int _Drive, _Out_writes_opt_(_SizeInWords) wchar_t *_DstBuf, _In_ int _SizeInWords)
_CRTIMP _In_reads_bytes_opt_(_Size) const void *_Src
_CRTIMP intptr_t __cdecl _wexeclpe(_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
#define _Outptr_result_z_
Definition: sal.h:440
#define iswblank(_c)
Definition: wchar.h:438
int tm_mday
Definition: time.h:117
_Check_return_ _CRTIMP long long __cdecl _wtoll(_In_z_ const wchar_t *_Str)
_Check_return_wat_ _CRTIMP_ALTERNATIVE errno_t __cdecl wcscat_s(_Inout_updates_z_(_DstSize) wchar_t *_Dst, _In_ rsize_t _DstSize, const wchar_t *_Src)
__time32_t time_create
Definition: io.h:103
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_0(_ReturnType, _FuncName, _DstType, _Dst)
Definition: crtdefs.h:845
wchar_t _Wint_t
Definition: wchar.h:1220
#define _Out_writes_all_(size)
Definition: sal.h:363
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_l(_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
#define _Out_writes_opt_z_(size)
Definition: sal.h:359
_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_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_CRTIMP _Pre_notnull_ _Post_z_ wchar_t * _DstBuf
Definition: wchar.h:955
_dev_t st_dev
Definition: stat.h:125
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_1_2(_ReturnType, _FuncName, _HType1, _HArg1, _DstType, _Dst, _TType1, _TArg1, _TType2, _TArg2)
Definition: crtdefs.h:851
_Check_return_opt_ _CRTIMP int __cdecl fputws(_In_z_ const wchar_t *_Str, _Inout_ FILE *_File)
_dev_t st_rdev
Definition: stat.h:145
short st_uid
Definition: stat.h:143
unsigned short wctype_t
Definition: crtdefs.h:542
_Check_return_opt_ _CRTIMP int __cdecl vwscanf(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
unsigned short st_mode
Definition: stat.h:155
unsigned short st_mode
Definition: stat.h:127
_Check_return_opt_ _CRTIMP int __cdecl vfwprintf(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
_Check_return_ _CRTIMP unsigned long long __cdecl wcstoull(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, int _Radix)
char * _ptr
Definition: mbstring.h:34
__time64_t st_atime
Definition: stat.h:161
_Check_return_opt_ _CRTIMP int __cdecl fwprintf_s(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
_In_opt_z_ const char * _FilePrefix
Definition: stdio.h:709
_N
Definition: wchar.h:1269
_Check_return_ _CRTIMP wchar_t *__cdecl _wtempnam(_In_opt_z_ const wchar_t *_Directory, _In_opt_z_ const wchar_t *_FilePrefix)
__time32_t st_ctime
Definition: stat.h:103
_Check_return_ _CRTIMP long __cdecl wcstol(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, int _Radix)
#define putwchar(_c)
Definition: wchar.h:872
#define _iswupper_l(_c, _p)
Definition: wchar.h:446
_Check_return_ _CRTIMP int __cdecl _wfindnext32i64(_In_ intptr_t _FindHandle, _Out_ struct _wfinddata32i64_t *_FindData)
_Check_return_ _CRTIMP long __cdecl _wtol_l(_In_z_ const wchar_t *_Str, _In_opt_ _locale_t _Locale)
int tm_year
Definition: time.h:119
_CRTIMP intptr_t __cdecl _wexeclp(_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
char * _tmpfname
Definition: mbstring.h:41
__int64 size
Definition: io.h:133
_Check_return_opt_ _CRTIMP wint_t __cdecl _ungetwc_nolock(_In_ wint_t _Ch, _Inout_ FILE *_File)
#define _SWPRINTFS_DEPRECATED
Definition: wchar.h:776
_Check_return_opt_ _CRTIMP int __cdecl vwprintf_s(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_1_1(_ReturnType, _FuncName, _HType1, _HArg1, _DstType, _Dst, _TType1, _TArg1)
Definition: crtdefs.h:850
_Check_return_ _In_z_ _Scanf_format_string_ const wchar_t _Check_return_opt_ _In_z_ _Scanf_format_string_params_(0) const wchar_t *_Format
typedef void(__cdecl *_se_translator_function)(unsigned int
_In_reads_bytes_(_Size) const void *_Src
#define _Scanf_s_format_string_
Definition: sal.h:569
unsigned short wint_t
Definition: crtdefs.h:541
_CRTIMP int __cdecl _wstat64i32(_In_z_ const wchar_t *_Name, _Out_ struct _stat64i32 *_Stat)
_In_ wchar_t _Val
Definition: wchar.h:1157
_Check_return_opt_ _CRTIMP int __cdecl _vcwprintf_p(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
__time32_t st_mtime
Definition: stat.h:134
#define _iswalpha_l(_c, _p)
Definition: wchar.h:445
unsigned int dev_t
Definition: wchar.h:485
_CRTIMP size_t __cdecl wcsftime(_Out_writes_z_(_SizeInWords) wchar_t *_Buf, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_ const struct tm *_Tm)
#define _iswdigit_l(_c, _p)
Definition: wchar.h:448
_CRTIMP int __cdecl _vcwprintf_l(_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
_Check_return_ _CRTIMP int __cdecl _wputenv(_In_z_ const wchar_t *_EnvString)
_CRTIMP size_t __cdecl mbrlen(_In_reads_bytes_opt_(_SizeInBytes) _Pre_opt_z_ const char *_Ch, _In_ size_t _SizeInBytes, _Out_opt_ mbstate_t *_State)
short st_gid
Definition: stat.h:98
_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)
_Check_return_ _CRTIMP unsigned __int64 __cdecl _wcstoui64_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_opt_ _In_ size_t _In_z_ _In_opt_ _locale_t va_list _ArgList
Definition: wchar.h:771
#define _Outptr_result_buffer_maybenull_(size)
Definition: sal.h:470
_Check_return_ _Ret_maybenull_ _In_z_ const wchar_t * _SubStr
Definition: string.h:329
_Check_return_wat_ _CRTIMP errno_t __cdecl _itow_s(_In_ int _Val, _Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_ int _Radix)
_Check_return_ wint_t __cdecl _getwch_nolock(void)
#define _Outptr_result_maybenull_
Definition: sal.h:434
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_l(_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
_Check_return_ _CRTIMP double __cdecl wcstod(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr)
_ino_t st_ino
Definition: stat.h:110
_dev_t st_rdev
Definition: stat.h:131
#define _CRTIMP_ALTERNATIVE
Definition: crtdefs.h:159
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_4(_ReturnType, _FuncName, _DstType, _Dst, _TType1, _TArg1, _TType2, _TArg2, _TType3, _TArg3, _TType4, _TArg4)
Definition: crtdefs.h:849
#define _Out_writes_opt_(size)
Definition: sal.h:355
static _Check_return_ __inline _In_ size_t _MaxCount return(_Src==NULL)?0 _Check_return_wat_ _CRTIMP_ALTERNATIVE errno_t __cdecl wcsncat_s(_Inout_updates_z_(_DstSize) wchar_t *_Dst, _In_ rsize_t _DstSize, _In_z_ const wchar_t *_Src, _In_ rsize_t _MaxCount)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vswprintf_s_l(_Out_writes_z_(_DstSize) wchar_t *_DstBuf, _In_ size_t _DstSize, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
short st_uid
Definition: stat.h:113
#define iswalnum(_c)
Definition: wchar.h:439
_Check_return_ _CRTIMP unsigned long __cdecl wcstoul(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, int _Radix)
_Check_return_ _CRTIMP int __cdecl _vscwprintf_p(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
int mbstate_t
Definition: wchar.h:1219
_In_ size_t _In_z_ const char * _Source
Definition: tchar.h:2379
_Check_return_ _CRTIMP intptr_t __cdecl _wfindfirst64i32(_In_z_ const wchar_t *_Filename, _Out_ struct _wfinddata64i32_t *_FindData)
_Check_return_opt_ _CRTIMP wint_t __cdecl ungetwc(_In_ wint_t _Ch, _Inout_ FILE *_File)
_Pre_maybenull_ _Post_z_ wchar_t _Pre_maybenull_ _Post_z_ wchar_t _Pre_maybenull_ _Post_z_ wchar_t _Pre_maybenull_ _Post_z_ wchar_t * _Ext
Definition: wchar.h:1001
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_p_l(_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
_dev_t st_rdev
Definition: stat.h:159
#define __DEFINE_CPP_OVERLOAD_STANDARD_NFUNC_0_3_SIZE(_DeclSpec, _FuncName, _SalAttributeDst, _DstType, _Dst, _TType1, _TArg1, _TType2, _TArg2, _TType3, _TArg3)
Definition: crtdefs.h:922
_Check_return_opt_ _CRTIMP wint_t __cdecl _fgetwchar(void)
_Check_return_ _In_z_ const wchar_t * _Mode
Definition: wchar.h:841
_Check_return_wat_ _CRTIMP_ALTERNATIVE errno_t __cdecl _wcsnset_s(_Inout_updates_z_(_DstSizeInWords) wchar_t *_Dst, _In_ size_t _DstSizeInWords, wchar_t _Val, _In_ size_t _MaxCount)
_Check_return_ _CRTIMP int __cdecl _scwprintf_p(_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
_CRTIMP int __cdecl _wstat64(_In_z_ const wchar_t *_Name, _Out_ struct _stat64 *_Stat)
short st_gid
Definition: stat.h:130
_CRTIMP errno_t __cdecl memmove_s(_Out_writes_bytes_to_opt_(_DstSize, _MaxCount) void *_Dst, _In_ rsize_t _DstSize, _In_reads_bytes_opt_(_MaxCount) const void *_Src, _In_ rsize_t _MaxCount)
_Check_return_ _CRTIMP __int64 __cdecl _wtoi64(_In_z_ const wchar_t *_Str)
#define _Out_writes_bytes_all_(size)
Definition: sal.h:368
#define _Deref_prepost_opt_valid_
Definition: sal.h:1468
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_p_l(_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
short st_uid
Definition: stat.h:129
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_1_ARGLIST(_ReturnType, _FuncName, _VFuncName, _DstType, _Dst, _TType1, _TArg1)
Definition: crtdefs.h:854
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snwprintf_s(_Out_writes_z_(_DstSizeInWords) wchar_t *_DstBuf, _In_ size_t _DstSizeInWords, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
_Check_return_ _CRTIMP int __cdecl _wtoi_l(_In_z_ const wchar_t *_Str, _In_opt_ _locale_t _Locale)
#define iswdigit(_c)
Definition: wchar.h:434
#define iswcntrl(_c)
Definition: wchar.h:442
#define iswalpha(_c)
Definition: wchar.h:431
#define getwc(_stm)
Definition: wchar.h:880
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_p_l(_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_CRTIMP intptr_t __cdecl _wexecv(_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList)
_Check_return_wat_ _CRTIMP errno_t __cdecl _wcserror_s(_Out_writes_opt_z_(_SizeInWords) wchar_t *_Buf, _In_ size_t _SizeInWords, _In_ int _ErrNum)
_W64 long __time32_t
Definition: crtdefs.h:567
_Check_return_ _CRTIMP int __cdecl _iswcsym_l(_In_ wint_t _C, _In_opt_ _locale_t _Locale)
_Check_return_opt_ _CRTIMP size_t __cdecl wcsxfrm(_Out_writes_opt_(_MaxCount) _Post_maybez_ wchar_t *_Dst, _In_z_ const wchar_t *_Src, _In_ size_t _MaxCount)
errno_t __CRTDECL wmemmove_s(_Out_writes_to_opt_(_N1, _N) wchar_t *_S1, _In_ rsize_t _N1, _In_reads_opt_(_N) const wchar_t *_S2, _In_ rsize_t _N)
_CRTIMP int __cdecl _wsystem(_In_opt_z_ const wchar_t *_Command)
#define _Pre_maybenull_
Definition: sal.h:687
_Check_return_wat_ _CRTIMP errno_t __cdecl __wcserror_s(_Out_writes_opt_z_(_SizeInWords) wchar_t *_Buffer, _In_ size_t _SizeInWords, _In_z_ const wchar_t *_ErrMsg)
_CRTIMP intptr_t __cdecl _wspawnl(_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
#define _In_opt_z_
Definition: sal.h:320
_CRTIMP_ALTERNATIVE int __cdecl swprintf_s(_Out_writes_z_(_SizeInWords) wchar_t *_Dst, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
_Check_return_ _CRTIMP wint_t __cdecl _putwch(wchar_t _WCh)
_Check_return_opt_ _CRTIMP int __cdecl _cwprintf_p(_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
_Check_return_ _CRTIMP unsigned long long __cdecl _wcstoull_l(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, int _Radix, _In_opt_ _locale_t _Locale)
_fsize_t size
Definition: io.h:106
#define _Check_return_
Definition: sal.h:563
short st_gid
Definition: stat.h:114
__time64_t st_atime
Definition: stat.h:147
_Check_return_opt_ _CRTIMP wchar_t *__cdecl _getws_s(_Out_writes_z_(_SizeInWords) wchar_t *_Str, _In_ size_t _SizeInWords)
_Check_return_opt_ _CRTIMP wchar_t *__cdecl _wsetlocale(_In_ int _Category, _In_opt_z_ const wchar_t *_Locale)
_Check_return_ _CRTIMP int __cdecl _iswcsymf_l(_In_ wint_t _C, _In_opt_ _locale_t _Locale)
_Check_return_ _Ret_maybenull_z_ _CRTIMP wchar_t *__cdecl _wgetcwd(_Out_writes_opt_(_SizeInWords) wchar_t *_DstBuf, _In_ int _SizeInWords)
#define _Pre_opt_z_
Definition: sal.h:1280
_Check_return_opt_ _Check_return_opt_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP int __cdecl _cwscanf_s(_In_z_ _Scanf_s_format_string_ const wchar_t *_Format,...)
_Check_return_ _CRTIMP int __cdecl _wcsicmp_l(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_opt_ _locale_t _Locale)
_dev_t st_dev
Definition: stat.h:109
_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_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_In_ size_t _In_z_ const unsigned char * _Src
Definition: mbstring.h:95
#define _In_z_
Definition: sal.h:319
_Check_return_ _In_ int _OpenFlag
Definition: wchar.h:362
_Check_return_ _CRTIMP int __cdecl _scwprintf_p_l(_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
#define _In_
Definition: sal.h:314
int tm_mon
Definition: time.h:118
_CRTIMP intptr_t __cdecl _wspawnlp(_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
_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)
#define _Inout_opt_
Definition: sal.h:385
_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,...)
_In_z_ const char *const _In_opt_z_ const char *const * _Env
Definition: process.h:208
_Check_return_ _CRTIMP wint_t __cdecl _towupper_l(_In_ wint_t _C, _In_opt_ _locale_t _Locale)
_Check_return_ _CRTIMP long double __cdecl wcstold(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr)
short st_nlink
Definition: stat.h:142
_Check_return_opt_ _In_ size_t _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snwprintf_s_l(_Out_writes_z_(_DstSize) wchar_t *_DstBuf, _In_ size_t _DstSize, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_Check_return_wat_ _CRTIMP errno_t __cdecl _wfreopen_s(_Outptr_result_maybenull_ FILE **_File, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_Mode, _Inout_ FILE *_OldFile)
_Check_return_ _CRTIMP wint_t __cdecl towlower(_In_ wint_t _C)
_Check_return_opt_ _CRTIMP int __cdecl vwprintf(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
_Check_return_ _CRTIMP int __cdecl _wcsicmp(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
#define __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_0_CGETS(_ReturnType, _DeclSpec, _FuncName, _SalAttributeDst, _DstType, _Dst)
Definition: crtdefs.h:1935
_Check_return_ _CRTIMP int __cdecl _iswctype_l(_In_ wint_t _C, _In_ wctype_t _Type, _In_opt_ _locale_t _Locale)
_Check_return_ _In_z_ const wchar_t * _Delim
Definition: wchar.h:1078
_CRTIMP int __cdecl _wunlink(_In_z_ const wchar_t *_Filename)
#define _In_opt_
Definition: sal.h:315
__time64_t time_access
Definition: io.h:131
_CRTIMP void __cdecl _wperror(_In_opt_z_ const wchar_t *_ErrMsg)
_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)
_Check_return_ _CRTIMP FILE *__cdecl _wfdopen(_In_ int _FileHandle, _In_z_ const wchar_t *_Mode)
_Check_return_wat_ _CRTIMP errno_t __cdecl _wcslwr_s(_Inout_updates_z_(_SizeInWords) wchar_t *_Str, _In_ size_t _SizeInWords)
__time64_t time_write
Definition: io.h:123
_off_t st_size
Definition: stat.h:100
#define _Inout_opt_z_
Definition: sal.h:390
_Pre_maybenull_ _Post_z_ wchar_t * _Drive
Definition: wchar.h:1001
_Pre_maybenull_ _Post_z_ wchar_t _Pre_maybenull_ _Post_z_ wchar_t _Pre_maybenull_ _Post_z_ wchar_t * _Filename
Definition: wchar.h:1001
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_p(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
_Check_return_wat_ _CRTIMP errno_t __cdecl _wdupenv_s(_Outptr_result_buffer_maybenull_(*_BufferSizeInWords) _Outptr_result_z_ wchar_t **_Buffer, _Out_opt_ size_t *_BufferSizeInWords, _In_z_ const wchar_t *_VarName)
_CRTIMP errno_t __cdecl wcrtomb_s(_Out_opt_ size_t *_Retval, _Out_writes_opt_z_(_SizeInBytes) char *_Dst, _In_ size_t _SizeInBytes, _In_ wchar_t _Ch, _Out_opt_ mbstate_t *_State)
_Check_return_ _CRTIMP FILE *__cdecl _wfsopen(_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_Mode, _In_ int _ShFlag)
#define __DEFINE_CPP_OVERLOAD_STANDARD_NFUNC_0_2_ARGLIST_EX(_ReturnType, _ReturnPolicy, _DeclSpec, _FuncName, _VFuncName, _SecureDstType, _SalAttributeDst, _DstType, _Dst, _TType1, _TArg1, _TType2, _TArg2)
Definition: crtdefs.h:2002
_Check_return_ _CRTIMP unsigned long __cdecl _wcstoul_l(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, int _Radix, _In_opt_ _locale_t _Locale)
_Check_return_ _CRTIMP _Post_satisfies_(return==_MaxCount)) size_t __cdecl wcsnlen(_In_z_ const wchar_t *_Src
_Check_return_opt_ _CRTIMP int __cdecl vfwscanf(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
#define iswxdigit(_c)
Definition: wchar.h:435
_CRTIMP int __cdecl wctob(_In_ wint_t _WCh)
_CRTIMP int __cdecl _vcwprintf_s_l(_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
_CRTIMP int __cdecl _wstat32i64(_In_z_ const wchar_t *_Name, _Out_ struct _stat32i64 *_Stat)
__time64_t st_ctime
Definition: stat.h:163
_CRTIMP int __cdecl _wstat32(_In_z_ const wchar_t *_Name, _Out_ struct _stat32 *_Stat)
unsigned attrib
Definition: io.h:120
_Check_return_ _CRTIMP unsigned __int64 __cdecl _wcstoui64(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, _In_ int _Radix)
#define _Inout_z_
Definition: sal.h:389
#define __RETURN_POLICY_SAME(_FunctionCall)
Definition: crtdefs.h:1927
_Check_return_ _CRTIMP int __cdecl _wrmdir(_In_z_ const wchar_t *_Path)
_CRTIMP intptr_t __cdecl _wexecle(_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
_CRTIMP _CRT_INSECURE_DEPRECATE_MEMORY(memmove_s) void *__cdecl memmove(_Out_writes_bytes_all_opt_(_Size) void *_Dst
#define _Out_writes_bytes_all_opt_(size)
Definition: sal.h:369
unsigned attrib
Definition: io.h:102
#define _Deref_prepost_opt_z_
Definition: sal.h:1430
_Check_return_opt_ _CRTIMP int __cdecl fwprintf(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format,...)
#define _Out_writes_all_opt_(size)
Definition: sal.h:364
_In_reads_(_N) const wchar_t *_S2
short st_gid
Definition: stat.h:158
_Check_return_wat_ _CRTIMP errno_t __cdecl _wgetenv_s(_Out_ size_t *_ReturnSize, _Out_writes_opt_z_(_DstSizeInWords) wchar_t *_DstBuf, _In_ size_t _DstSizeInWords, _In_z_ const wchar_t *_VarName)
_dev_t st_dev
Definition: stat.h:139
#define _Scanf_s_format_string_params_(x)
Definition: sal.h:574
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_2(_ReturnType, _FuncName, _DstType, _Dst, _TType1, _TArg1, _TType2, _TArg2)
Definition: crtdefs.h:847
unsigned short _ino_t
Definition: wchar.h:473
_CRTIMP intptr_t __cdecl _wspawnv(_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList)
_Check_return_ _Check_return_opt_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl wscanf_s(_In_z_ _Scanf_s_format_string_ const wchar_t *_Format,...)
_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)
__int64 st_size
Definition: stat.h:132
_CRT_OBSOLETE(iswctype) _CRTIMP int __cdecl is_wctype(_In_ wint_t _C
Definition: mbstring.h:33
_Check_return_ _CRTIMP int __cdecl _wrename(_In_z_ const wchar_t *_OldFilename, _In_z_ const wchar_t *_NewFilename)
_In_ wchar_t _C
Definition: wchar.h:1295
_CRTIMP intptr_t __cdecl _wspawnle(_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
_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)
_Check_return_opt_ _CRTIMP wint_t __cdecl fgetwc(_Inout_ FILE *_File)
#define _Deref_prepost_z_
Definition: sal.h:1429
_Check_return_ _CRTIMP long long __cdecl _wcstoll_l(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, int _Radix, _In_opt_ _locale_t _Locale)
_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 intptr_t __cdecl _wfindfirst64(_In_z_ const wchar_t *_Filename, _Out_ struct _wfinddata64_t *_FindData)
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_p(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_1(_ReturnType, _FuncName, _DstType, _Dst, _TType1, _TArg1)
Definition: crtdefs.h:846
_Check_return_ _CRTIMP int __cdecl _wcsncoll(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_ size_t _MaxCount)
_Check_return_opt_ _CRTIMP int __cdecl _putws(_In_z_ const wchar_t *_Str)
_Check_return_opt_ _CRTIMP int __cdecl _vwprintf_p(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
_Check_return_ _In_z_ _Scanf_format_string_ const wchar_t * _Format
Definition: wchar.h:817
#define _Ret_maybenull_z_
Definition: sal.h:531
_Check_return_wat_ _CRTIMP_ALTERNATIVE errno_t __cdecl wcscpy_s(_Out_writes_z_(_DstSize) wchar_t *_Dst, _In_ rsize_t _DstSize, _In_z_ const wchar_t *_Src)
short st_nlink
Definition: stat.h:96
_Check_return_opt_ _CRTIMP wint_t __cdecl _fgetwc_nolock(_Inout_ FILE *_File)
_CRTIMP 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)
__time64_t st_mtime
Definition: stat.h:162
_Check_return_ _CRTIMP_ALTERNATIVE wchar_t *__cdecl wcstok_s(_Inout_opt_z_ wchar_t *_Str, _In_z_ const wchar_t *_Delim, _Inout_ _Deref_prepost_opt_z_ wchar_t **_Context)
_Check_return_ _In_z_ _Scanf_format_string_ const wchar_t _Check_return_opt_ _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP int __cdecl fwscanf_s(_Inout_ FILE *_File, _In_z_ _Scanf_s_format_string_ const wchar_t *_Format,...)
#define _Printf_format_string_
Definition: sal.h:567
__inline _CONST_RETURN wchar_t *__CRTDECL wmemchr(_In_reads_(_N) const wchar_t *_S, _In_ wchar_t _C, _In_ size_t _N)
Definition: wchar.h:1257
_FS_DLL file_type __CLRCALL_PURE_OR_CDECL _Stat(const char *, int &)
unsigned short st_mode
Definition: stat.h:95
#define __RETURN_POLICY_VOID(_FunctionCall)
Definition: crtdefs.h:1929
_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)
_Check_return_ _CRTIMP long long __cdecl wcstoll(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, int _Radix)
short st_uid
Definition: stat.h:97
_Check_return_opt_ _CRTIMP wint_t __cdecl _fputwc_nolock(_In_ wchar_t _Ch, _Inout_ FILE *_File)
_Check_return_ _CRTIMP int __cdecl _wmkdir(_In_z_ const wchar_t *_Path)
unsigned short st_mode
Definition: stat.h:111
_Check_return_ _CRTIMP int __cdecl __iswcsymf(_In_ wint_t _C)
_Check_return_ _CRTIMP int __cdecl _isleadbyte_l(_In_ int _C, _In_opt_ _locale_t _Locale)
int _charbuf
Definition: mbstring.h:39
_Check_return_ _CRTIMP int __cdecl _wtoi(_In_z_ const wchar_t *_Str)
#define _Prepost_z_
Definition: sal.h:714
_Check_return_ _CRTIMP wint_t __cdecl _ungetwch(wint_t _WCh)
int errno_t
Definition: crtdefs.h:563
int _bufsiz
Definition: mbstring.h:40
_Check_return_opt_ _In_ size_t _MaxCount
Definition: wchar.h:769
int _flag
Definition: mbstring.h:37
#define stdin
Definition: wchar.h:86
_dev_t st_rdev
Definition: stat.h:115
_Check_return_ _In_z_ const char _Inout_ FILE * _File
Definition: stdio.h:226
wchar_t _Ch
Definition: wchar.h:1036
#define _iswpunct_l(_c, _p)
Definition: wchar.h:451
#define __CRTDECL
Definition: crtdefs.h:622
#define _iswlower_l(_c, _p)
Definition: wchar.h:447
#define iswpunct(_c)
Definition: wchar.h:437
int tm_wday
Definition: time.h:120
_Check_return_ _CRTIMP _When_(_MaxCount > _String_length_(_Src), _Post_satisfies_(return==_String_length_(_Src))) _When_(_MaxCount<
_Check_return_ _CRTIMP wint_t __cdecl _getwche(void)
#define __RETURN_POLICY_DST(_FunctionCall)
Definition: crtdefs.h:1928
size_t rsize_t
Definition: crtdefs.h:503
_CRTIMP int __cdecl _wremove(_In_z_ const wchar_t *_Filename)
_Check_return_opt_ _CRTIMP int __cdecl _cwscanf_s_l(_In_z_ _Scanf_s_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
__time32_t time_access
Definition: io.h:113
__time32_t st_mtime
Definition: stat.h:102
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vsnwprintf_s_l(_Out_writes_z_(_DstSize) wchar_t *_DstBuf, _In_ size_t _DstSize, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
__time32_t time_access
Definition: io.h:104
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_p(_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
_Check_return_ _Ret_maybenull_ _CRTIMP _CONST_RETURN wchar_t *__cdecl wcsstr(_In_z_ const wchar_t *_Str, _In_z_ const wchar_t *_SubStr)
_Check_return_ _In_ int _Check_return_ _In_ int int _ShareFlag
Definition: wchar.h:363
unsigned short ino_t
Definition: wchar.h:476
int tm_yday
Definition: time.h:121
#define _Scanf_format_string_
Definition: sal.h:568
_CRTIMP intptr_t __cdecl _wspawnlpe(_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_ArgList,...)
#define _iswspace_l(_c, _p)
Definition: wchar.h:450
__time64_t st_mtime
Definition: stat.h:148
#define _Out_writes_(size)
Definition: sal.h:354
_ino_t st_ino
Definition: stat.h:154
#define _At_buffer_(target, iter, bound, annos)
Definition: sal.h:256
__time64_t st_ctime
Definition: stat.h:149
_CRTIMP FILE *__cdecl __iob_func(void)
_Check_return_ wint_t __cdecl _getwche_nolock(void)
wchar_t name[260]
Definition: io.h:116
#define _Post_readable_size_(size)
Definition: sal.h:655
_ino_t st_ino
Definition: stat.h:94
_Check_return_wat_ _CRTIMP errno_t __cdecl _wfopen_s(_Outptr_result_maybenull_ FILE **_File, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *_Mode)
_Check_return_ _CRTIMP long long __cdecl _wtoll_l(_In_z_ const wchar_t *_Str, _In_opt_ _locale_t _Locale)
_Check_return_ _CRTIMP long __cdecl _wcstol_l(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, int _Radix, _In_opt_ _locale_t _Locale)
#define _Check_return_wat_
Definition: crtdefs.h:2128
_Check_return_wat_ _CRTIMP errno_t __cdecl _ltow_s(_In_ long _Val, _Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_ int _Radix)
_CRTIMP const unsigned short _wctype[]
_Check_return_opt_ _CRTIMP int __cdecl vwscanf_s(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
#define _Check_return_opt_
Definition: crtdefs.h:2122
_Check_return_wat_ _CRTIMP errno_t __cdecl _wcsupr_s_l(_Inout_updates_z_(_Size) wchar_t *_Str, _In_ size_t _Size, _In_opt_ _locale_t _Locale)
_CRTIMP _In_ wchar_t _WCh
Definition: stdlib.h:567
_Inout_updates_z_(_SizeInBytes) char *_Buf2
__time64_t time_write
Definition: io.h:132
short st_gid
Definition: stat.h:144
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_s_l(_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
#define _Deref_post_z_
Definition: sal.h:1127
_In_ wctype_t _Type
Definition: wchar.h:298
_Check_return_ _CRTIMP wint_t __cdecl _towlower_l(_In_ wint_t _C, _In_opt_ _locale_t _Locale)
time_t st_atime
Definition: stat.h:117
_CRTIMP size_t __cdecl _wcsftime_l(_Out_writes_z_(_SizeInWords) wchar_t *_Buf, _In_ size_t _SizeInWords, _In_z_ _Printf_format_string_ const wchar_t *_Format, _In_ const struct tm *_Tm, _In_opt_ _locale_t _Locale)
short st_uid
Definition: stat.h:157
_CRTIMP wint_t __cdecl btowc(int)
_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_ _CRTIMP int __cdecl _scwprintf(_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
unsigned short st_mode
Definition: stat.h:141
_Check_return_opt_ _CRTIMP wint_t __cdecl _fputwchar(_In_ wchar_t _Ch)
_Check_return_ _CRTIMP int __cdecl __iswcsym(_In_ wint_t _C)
_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_opt_ _CRTIMP int __cdecl _vswprintf_p_l(_Out_writes_z_(_MaxCount) wchar_t *_DstBuf, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_1_3(_ReturnType, _FuncName, _HType1, _HArg1, _DstType, _Dst, _TType1, _TArg1, _TType2, _TArg2, _TType3, _TArg3)
Definition: crtdefs.h:852
_Check_return_ _CRTIMP wint_t __cdecl _getwch(void)
_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)
#define _CONST_RETURN
Definition: crtdefs.h:590
__DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_1(wchar_t *, __RETURN_POLICY_DST, _CRTIMP, wcscat, _Inout_updates_z_(_String_length_(_Dest)+_String_length_(_Source)+1), wchar_t, _Dest, _In_z_ const wchar_t *, _Source) _Check_return_ _CRTIMP _CONST_RETURN wchar_t *__cdecl wcschr(_In_z_ const wchar_t *_Str
wchar_t name[260]
Definition: io.h:134
_Check_return_opt_ _CRTIMP int __cdecl vswscanf(const wchar_t *_srcBuf, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _vsnwprintf_s(_Out_writes_z_(_DstSizeInWords) wchar_t *_DstBuf, _In_ size_t _DstSizeInWords, _In_ size_t _MaxCount, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
short st_nlink
Definition: stat.h:156
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_2_0(_ReturnType, _FuncName, _HType1, _HArg1, _HType2, _HArg2, _DstType, _Dst)
Definition: crtdefs.h:853
unsigned long _fsize_t
Definition: wchar.h:93
_Check_return_ _CRTIMP int __cdecl _wcsnicmp(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_ size_t _MaxCount)
short st_nlink
Definition: stat.h:128
_Check_return_opt_ _CRTIMP wchar_t *__cdecl fgetws(_Out_writes_z_(_SizeInWords) wchar_t *_Dst, _In_ int _SizeInWords, _Inout_ FILE *_File)
wchar_t name[260]
Definition: io.h:107
_CRTIMP int __cdecl _vcwprintf_p_l(_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
_Check_return_ _CRTIMP int __cdecl _wchdir(_In_z_ const wchar_t *_Path)
_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 _vscwprintf_l(_In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
_Check_return_ _CRTIMP int __cdecl _wfindnext64(_In_ intptr_t _FindHandle, _Out_ struct _wfinddata64_t *_FindData)
_Check_return_ _CRTIMP int __cdecl _wchmod(_In_z_ const wchar_t *_Filename, _In_ int _Mode)
_Check_return_ _CRTIMP wint_t __cdecl towupper(_In_ wint_t _C)
_Check_return_ _CRTIMP float __cdecl _wcstof_l(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, _In_opt_ _locale_t _Locale)
__time32_t time_write
Definition: io.h:114
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_l(_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_Check_return_ _CRTIMP int __cdecl _wcsicoll(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
_CRTIMP errno_t __cdecl _wctime64_s(_Out_writes_(_SizeInWords) _Post_readable_size_(26) wchar_t *_Buf, _In_ size_t _SizeInWords, _In_ const __time64_t *_Time)
_Check_return_opt_ _In_ size_t _In_z_ _Scanf_format_string_ const wchar_t _Check_return_opt_ _In_ size_t _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snwscanf_s(_In_reads_(_MaxCount) _Pre_z_ const wchar_t *_Src, _In_ size_t _MaxCount, _In_z_ _Scanf_s_format_string_ const wchar_t *_Format,...)
_Check_return_ _CRTIMP intptr_t __cdecl _wfindfirst32(_In_z_ const wchar_t *_Filename, _Out_ struct _wfinddata32_t *_FindData)
_Check_return_ _In_z_ const wchar_t _Inout_ FILE * _OldFile
Definition: wchar.h:843
_Diff _Count
Definition: algorithm:1941
_Check_return_wat_ _CRTIMP errno_t __cdecl _ultow_s(_In_ unsigned long _Val, _Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_ int _Radix)
_Check_return_ _CRTIMP __int64 __cdecl _wcstoi64_l(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, _In_ int _Radix, _In_opt_ _locale_t _Locale)
_CRTIMP _In_ size_t _Size
Definition: wchar.h:1244
#define _Inout_
Definition: sal.h:384
_ino_t st_ino
Definition: stat.h:140
_Check_return_opt_ _CRTIMP int __cdecl _cputws(_In_z_ const wchar_t *_String)
#define isleadbyte(_c)
Definition: wchar.h:460
_Pre_maybenull_ _Post_z_ wchar_t _Pre_maybenull_ _Post_z_ wchar_t * _Dir
Definition: wchar.h:1001
_Check_return_opt_ _CRTIMP int __cdecl _vcwprintf(_In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
_W64 int intptr_t
Definition: crtdefs.h:512
#define _iswalnum_l(_c, _p)
Definition: wchar.h:453
int tm_sec
Definition: time.h:114
_Check_return_wat_ _CRTIMP errno_t __cdecl _ui64tow_s(_In_ unsigned __int64 _Val, _Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_ int _Radix)
_Check_return_ _CRTIMP __int64 __cdecl _wcstoi64(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, _In_ int _Radix)
_CRTIMP errno_t __cdecl mbsrtowcs_s(_Out_opt_ size_t *_Retval, _Out_writes_opt_z_(_Size) wchar_t *_Dst, _In_ size_t _Size, _Inout_ _Deref_prepost_opt_valid_ const char **_PSrc, _In_ size_t _N, _Out_opt_ mbstate_t *_State)
_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_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
_Check_return_wat_ _CRTIMP errno_t __cdecl _i64tow_s(_In_ __int64 _Val, _Out_writes_z_(_SizeInWords) wchar_t *_DstBuf, _In_ size_t _SizeInWords, _In_ int _Radix)
_Check_return_ _CRTIMP FILE *__cdecl _wpopen(_In_z_ const wchar_t *_Command, _In_z_ const wchar_t *_Mode)
_Check_return_opt_ _CRTIMP int __cdecl _fwprintf_s_l(_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_Check_return_opt_ _Check_return_opt_ _In_opt_ _locale_t _Locale
Definition: wchar.h:638
__time32_t time_write
Definition: io.h:105
_Check_return_ _CRTIMP int __cdecl _scwprintf_l(_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
#define __DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_2_ARGLIST_EX(_ReturnType, _ReturnPolicy, _DeclSpec, _FuncName, _VFuncName, _SecureVFuncName, _SecureDstType, _SalAttributeDst, _DstType, _Dst, _TType1, _TArg1, _TType2, _TArg2)
Definition: crtdefs.h:1960
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _wscanf_s_l(_In_z_ _Scanf_s_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_Check_return_wat_ _CRTIMP errno_t __cdecl _wcsupr_s(_Inout_updates_z_(_Size) wchar_t *_Str, _In_ size_t _Size)
_Check_return_ _CRTIMP double __cdecl _wtof_l(_In_z_ const wchar_t *_Str, _In_opt_ _locale_t _Locale)
unsigned attrib
Definition: io.h:129
__int64 __time64_t
Definition: crtdefs.h:572
_Check_return_opt_ _CRTIMP int __cdecl vfwprintf_s(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
__inline _In_reads_opt_(_N) const wchar_t *_S2
_CRTIMP const unsigned short *__cdecl __pctype_func(void)
_Check_return_wat_ _CRTIMP_ALTERNATIVE errno_t __cdecl _wcsset_s(_Inout_updates_z_(_SizeInWords) wchar_t *_Str, _In_ size_t _SizeInWords, wchar_t _Val)
int _file
Definition: mbstring.h:38
int tm_hour
Definition: time.h:116
#define _Pre_z_
Definition: sal.h:674
__DEFINE_CPP_OVERLOAD_STANDARD_NFUNC_0_2_EX(wchar_t *, __RETURN_POLICY_DST, _CRTIMP, wcsncat, wcsncat_s, _Inout_updates_z_(_Size) wchar_t, _Inout_updates_z_(_Count), wchar_t, _Dest, _In_z_ const wchar_t *, _Source, _In_ size_t, _Count) _Check_return_ _CRTIMP int __cdecl wcsncmp(_In_z_ const wchar_t *_Str1
#define _iswxdigit_l(_c, _p)
Definition: wchar.h:449
_Check_return_ _CRTIMP int __cdecl _wcsnicmp_l(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2, _In_ size_t _MaxCount, _In_opt_ _locale_t _Locale)
_CRTIMP int __cdecl _cwprintf_p_l(_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_Check_return_ _In_ int _AccessMode
Definition: io.h:323
_CRTIMP const wctype_t *__cdecl __pwctype_func(void)
__inline int __CRTDECL wmemcmp(_In_reads_(_N) const wchar_t *_S1, _In_reads_(_N) const wchar_t *_S2, _In_ size_t _N)
Definition: wchar.h:1262
#define _Post_z_
Definition: sal.h:697
_Check_return_opt_ _CRTIMP int __cdecl vfwscanf_s(_Inout_ FILE *_File, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
#define iswascii(_c)
Definition: wchar.h:443
_CRTIMP int __cdecl _cwprintf_l(_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_CRTIMP intptr_t __cdecl _wexecvp(_In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList)
#define iswlower(_c)
Definition: wchar.h:433
_dev_t st_dev
Definition: stat.h:93
_Check_return_opt_ _CRTIMP int __cdecl _fwscanf_s_l(_Inout_ FILE *_File, _In_z_ _Scanf_s_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_CRTIMP intptr_t __cdecl _wspawnvp(_In_ int _Mode, _In_z_ const wchar_t *_Filename, _In_z_ const wchar_t *const *_ArgList)
_Check_return_wat_ _CRTIMP errno_t __cdecl _cgetws_s(_Out_writes_to_(_SizeInWords,*_SizeRead) wchar_t *_Buffer, size_t _SizeInWords, _Out_ size_t *_SizeRead)
_CRTIMP const wctype_t * _pwctype
_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)
_Check_return_ _CRTIMP float __cdecl wcstof(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr)
#define _Out_writes_to_opt_(size, count)
Definition: sal.h:362
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_2_ARGLIST(_ReturnType, _FuncName, _VFuncName, _DstType, _Dst, _TType1, _TArg1, _TType2, _TArg2)
Definition: crtdefs.h:855
_Check_return_ _CRTIMP double __cdecl _wtof(_In_z_ const wchar_t *_Str)
time_t st_mtime
Definition: stat.h:118
#define _Out_writes_bytes_to_opt_(size, count)
Definition: sal.h:367
#define _Pre_notnull_
Definition: sal.h:686
_Check_return_wat_ _CRTIMP_ALTERNATIVE errno_t __cdecl _wmakepath_s(_Out_writes_z_(_SizeInWords) wchar_t *_PathResult, _In_ size_t _SizeInWords, _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)
int tm_isdst
Definition: time.h:122
__time32_t st_atime
Definition: stat.h:133
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_s_l(_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_Check_return_wat_ _CRTIMP_ALTERNATIVE errno_t __cdecl wcsncpy_s(_Out_writes_z_(_DstSize) wchar_t *_Dst, _In_ rsize_t _DstSize, _In_z_ const wchar_t *_Src, _In_ rsize_t _MaxCount)
_CRTIMP_ALTERNATIVE errno_t __cdecl _wsplitpath_s(_In_z_ const wchar_t *_FullPath, _Out_writes_opt_z_(_DriveSize) wchar_t *_Drive, _In_ size_t _DriveSize, _Out_writes_opt_z_(_DirSize) wchar_t *_Dir, _In_ size_t _DirSize, _Out_writes_opt_z_(_FilenameSize) wchar_t *_Filename, _In_ size_t _FilenameSize, _Out_writes_opt_z_(_ExtSize) wchar_t *_Ext, _In_ size_t _ExtSize)
_off_t st_size
Definition: stat.h:146
__time64_t time_create
Definition: io.h:130
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_3(_ReturnType, _FuncName, _DstType, _Dst, _TType1, _TArg1, _TType2, _TArg2, _TType3, _TArg3)
Definition: crtdefs.h:848
#define iswprint(_c)
Definition: wchar.h:440
__time64_t time_access
Definition: io.h:122
wchar_t name[260]
Definition: io.h:125
_Check_return_opt_ _CRTIMP int __cdecl _cwprintf(_In_z_ _Printf_format_string_ const wchar_t *_Format,...)
char * va_list
Definition: crtdefs.h:550
_CRTIMP errno_t __cdecl _wstrdate_s(_Out_writes_(_SizeInWords) _Post_readable_size_(9) wchar_t *_Buf, _In_ size_t _SizeInWords)
_Check_return_ _Ret_maybenull_z_ _In_ int _SizeInBytes
Definition: direct.h:130
__time32_t time_create
Definition: io.h:112
_Check_return_ _CRTIMP intptr_t __cdecl _wfindfirst32i64(_In_z_ const wchar_t *_Filename, _Out_ struct _wfinddata32i64_t *_FindData)
#define __DEFINE_CPP_OVERLOAD_SECURE_FUNC_SPLITPATH(_ReturnType, _FuncName, _DstType, _Src)
Definition: crtdefs.h:856
_Check_return_opt_ wint_t __cdecl _ungetwch_nolock(wint_t _WCh)
_CRTIMP _Pre_notnull_ _Post_z_ wchar_t _In_ int _Radix
Definition: wchar.h:955
_Check_return_opt_ _CRTIMP int __cdecl _vfwprintf_l(_Inout_ FILE *_File, _In_z_ _Printf_format_string_params_(2) const wchar_t *_Format, _In_opt_ _locale_t _Locale, va_list _ArgList)
Definition: crtdefs.h:2078
_Check_return_opt_ _In_ size_t _In_z_ _Printf_format_string_params_(0) const wchar_t *_Format
_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)
#define iswspace(_c)
Definition: wchar.h:436
_Check_return_wat_ _CRTIMP errno_t __cdecl _wcslwr_s_l(_Inout_updates_z_(_SizeInWords) wchar_t *_Str, _In_ size_t _SizeInWords, _In_opt_ _locale_t _Locale)
_Check_return_opt_ _CRTIMP int __cdecl _wprintf_p_l(_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _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)
long off_t
Definition: wchar.h:494
_off_t st_size
Definition: stat.h:116
__inline int __CRTDECL mbsinit(_In_opt_ const mbstate_t *_P)
Definition: wchar.h:1255
#define iswgraph(_c)
Definition: wchar.h:441
_Check_return_ _In_z_ _Scanf_format_string_ const wchar_t _Check_return_opt_ _In_z_ _In_opt_ _locale_t _Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl swscanf_s(_In_z_ const wchar_t *_Src, _In_z_ _Scanf_s_format_string_ const wchar_t *_Format,...)
#define putwc(_c, _stm)
Definition: wchar.h:881
_Check_return_ _CRTIMP int __cdecl wcscoll(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
unsigned int _dev_t
Definition: wchar.h:482
#define _Post_maybez_
Definition: sal.h:1378
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl _snwscanf_s_l(_In_reads_(_MaxCount) _Pre_z_ const wchar_t *_Src, _In_ size_t _MaxCount, _In_z_ _Scanf_s_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_Check_return_opt_ _CRTIMP_ALTERNATIVE int __cdecl vswscanf_s(const wchar_t *_Dst, _In_z_ _Printf_format_string_ const wchar_t *_Format, va_list _ArgList)
_CRTIMP int __cdecl _cwprintf_s_l(_In_z_ _Printf_format_string_params_(0) const wchar_t *_Format, _In_opt_ _locale_t _Locale,...)
_Check_return_ _CRTIMP __int64 __cdecl _wtoi64_l(_In_z_ const wchar_t *_Str, _In_opt_ _locale_t _Locale)
_Post_equal_to_(_Dst) _At_buffer_((unsigned char *) _Dst
_Check_return_ _In_ int _PermissionMode
Definition: wchar.h:342