#pragma once
#include <corecrt.h>
_CRT_BEGIN_C_HEADER
__pragma
(pack(push,
8
))
extern
"C"
{
#if !defined _NO_CRT_STDIO_INLINE && !_CRT_FUNCTIONS_REQUIRED
#define _NO_CRT_STDIO_INLINE
#endif
#if defined _NO_CRT_STDIO_INLINE
#undef _CRT_STDIO_INLINE
#define _CRT_STDIO_INLINE
#elif !defined _CRT_STDIO_INLINE
#define _CRT_STDIO_INLINE __inline
#endif
#if !defined RC_INVOKED // RC has no target architecture
#if defined _M_IX86
#define _CRT_INTERNAL_STDIO_SYMBOL_PREFIX "_"
#elif defined _M_X64 || defined _M_ARM || defined _M_ARM64
#define _CRT_INTERNAL_STDIO_SYMBOL_PREFIX ""
#else
#error Unsupported architecture
#endif
#endif
#if !defined RC_INVOKED // _CRT_STDIO_LEGACY_WIDE_SPECIFIERS et al. are too long for rc
#if defined _CRT_STDIO_ISO_WIDE_SPECIFIERS
#if defined _CRT_STDIO_LEGACY_WIDE_SPECIFIERS
#error _CRT_STDIO_ISO_WIDE_SPECIFIERS and _CRT_STDIO_LEGACY_WIDE_SPECIFIERS cannot be defined together.
#endif
#if !defined _M_CEE_PURE
#pragma comment(lib, "iso_stdio_wide_specifiers")
#pragma comment(linker, "/include:" _CRT_INTERNAL_STDIO_SYMBOL_PREFIX "__PLEASE_LINK_WITH_iso_stdio_wide_specifiers.lib")
#endif
#elif defined _CRT_STDIO_LEGACY_WIDE_SPECIFIERS
#if !defined _M_CEE_PURE
#pragma comment(lib, "legacy_stdio_wide_specifiers")
#pragma comment(linker, "/include:" _CRT_INTERNAL_STDIO_SYMBOL_PREFIX "__PLEASE_LINK_WITH_legacy_stdio_wide_specifiers.lib")
#endif
#endif
#if defined __cplusplus && !defined _CRT_STDIO_ARBITRARY_WIDE_SPECIFIERS
#ifdef _CRT_STDIO_ISO_WIDE_SPECIFIERS
#pragma detect_mismatch("_CRT_STDIO_ISO_WIDE_SPECIFIERS", "1")
#else
#pragma detect_mismatch("_CRT_STDIO_ISO_WIDE_SPECIFIERS", "0")
#endif
#endif
#endif
#pragma detect_mismatch(
"_CRT_STDIO_ISO_WIDE_SPECIFIERS"
,
"0"
)
#if defined _M_CEE && !defined _M_CEE_PURE
#pragma managed(push, off)
#endif
#if _CRT_FUNCTIONS_REQUIRED
_Check_return_ _Ret_notnull_
_CRT_INLINE_PURE_SECURITYCRITICAL_ATTRIBUTE
__declspec(noinline) __inline unsigned __int64* __CRTDECL __local_stdio_printf_options(void)
__declspec
(noinline)
__inline
unsigned
__int64
*
__cdecl
__local_stdio_printf_options
(
void
)
{
static
unsigned
__int64
;
return
&
_OptionsStorage
;
}
_Check_return_ _Ret_notnull_
_CRT_INLINE_PURE_SECURITYCRITICAL_ATTRIBUTE
__declspec(noinline) __inline unsigned __int64* __CRTDECL __local_stdio_scanf_options(void)
__declspec
(noinline)
__inline
unsigned
__int64
*
__cdecl
__local_stdio_scanf_options
(
void
)
{
static
unsigned
__int64
;
return
&
_OptionsStorage
;
}
#endif
#if defined _M_CEE && !defined _M_CEE_PURE
#pragma managed(pop)
#endif
#define _CRT_INTERNAL_LOCAL_PRINTF_OPTIONS (*__local_stdio_printf_options())
#define _CRT_INTERNAL_LOCAL_SCANF_OPTIONS (*__local_stdio_scanf_options ())
#define _CRT_INTERNAL_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION (1ULL << 0)
#define _CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR (1ULL << 1)
#define _CRT_INTERNAL_PRINTF_LEGACY_WIDE_SPECIFIERS (1ULL << 2)
#define _CRT_INTERNAL_PRINTF_LEGACY_MSVCRT_COMPATIBILITY (1ULL << 3)
#define _CRT_INTERNAL_PRINTF_LEGACY_THREE_DIGIT_EXPONENTS (1ULL << 4)
#define _CRT_INTERNAL_SCANF_SECURECRT (1ULL << 0)
#define _CRT_INTERNAL_SCANF_LEGACY_WIDE_SPECIFIERS (1ULL << 1)
#define _CRT_INTERNAL_SCANF_LEGACY_MSVCRT_COMPATIBILITY (1ULL << 2)