STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Macros | Functions
corecrt_stdio_config.h File Reference
#include <corecrt.h>

Go to the source code of this file.

Macros

#define _CRT_STDIO_INLINE   __inline
 
#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)
 

Functions

_Check_return_ _Ret_notnull_ __declspec (noinline) __inline unsigned __int64 *__CRTDECL __local_stdio_printf_options(void)
 

Macro Definition Documentation

#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_MSVCRT_COMPATIBILITY   (1ULL << 3)
#define _CRT_INTERNAL_PRINTF_LEGACY_THREE_DIGIT_EXPONENTS   (1ULL << 4)
#define _CRT_INTERNAL_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION   (1ULL << 0)
#define _CRT_INTERNAL_PRINTF_LEGACY_WIDE_SPECIFIERS   (1ULL << 2)
#define _CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR   (1ULL << 1)
#define _CRT_INTERNAL_SCANF_LEGACY_MSVCRT_COMPATIBILITY   (1ULL << 2)
#define _CRT_INTERNAL_SCANF_LEGACY_WIDE_SPECIFIERS   (1ULL << 1)
#define _CRT_INTERNAL_SCANF_SECURECRT   (1ULL << 0)
#define _CRT_STDIO_INLINE   __inline

Function Documentation

_Check_return_ _Ret_notnull_ __declspec ( noinline  )
85  {
86  static unsigned __int64 _OptionsStorage;
87  return &_OptionsStorage;
88  }