Last change
on this file since 1186 was 1166, checked in by rossy, 3 years ago |
Daodan: Replace MinGW build env with an up-to-date MSYS2 env
|
File size:
1.1 KB
|
Line | |
---|
1 | /**
|
---|
2 | * This file has no copyright assigned and is placed in the Public Domain.
|
---|
3 | * This file is part of the Wine project.
|
---|
4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
---|
5 | */
|
---|
6 |
|
---|
7 | #ifndef _STDIO_CONFIG_DEFINED
|
---|
8 | #define _STDIO_CONFIG_DEFINED
|
---|
9 |
|
---|
10 | #include <corecrt.h>
|
---|
11 |
|
---|
12 | #define _CRT_INTERNAL_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION 0x0001ULL
|
---|
13 | #define _CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR 0x0002ULL
|
---|
14 | #define _CRT_INTERNAL_PRINTF_LEGACY_WIDE_SPECIFIERS 0x0004ULL
|
---|
15 | #define _CRT_INTERNAL_PRINTF_LEGACY_MSVCRT_COMPATIBILITY 0x0008ULL
|
---|
16 | #define _CRT_INTERNAL_PRINTF_LEGACY_THREE_DIGIT_EXPONENTS 0x0010ULL
|
---|
17 |
|
---|
18 | #define _CRT_INTERNAL_SCANF_SECURECRT 0x0001ULL
|
---|
19 | #define _CRT_INTERNAL_SCANF_LEGACY_WIDE_SPECIFIERS 0x0002ULL
|
---|
20 | #define _CRT_INTERNAL_SCANF_LEGACY_MSVCRT_COMPATIBILITY 0x0004ULL
|
---|
21 |
|
---|
22 | #ifndef _CRT_INTERNAL_LOCAL_PRINTF_OPTIONS
|
---|
23 | #define _CRT_INTERNAL_LOCAL_PRINTF_OPTIONS _CRT_INTERNAL_PRINTF_LEGACY_WIDE_SPECIFIERS
|
---|
24 | #endif
|
---|
25 |
|
---|
26 | #ifndef _CRT_INTERNAL_LOCAL_SCANF_OPTIONS
|
---|
27 | #define _CRT_INTERNAL_LOCAL_SCANF_OPTIONS _CRT_INTERNAL_SCANF_LEGACY_WIDE_SPECIFIERS
|
---|
28 | #endif
|
---|
29 |
|
---|
30 | #endif /* _STDIO_CONFIG_DEFINED */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.