15#pragma warning(disable: _UCRT_DISABLED_WARNINGS)
18#define _O_RDONLY 0x0000
19#define _O_WRONLY 0x0001
21#define _O_APPEND 0x0008
23#define _O_CREAT 0x0100
24#define _O_TRUNC 0x0200
31#define _O_BINARY 0x8000
32#define _O_WTEXT 0x10000
33#define _O_U16TEXT 0x20000
34#define _O_U8TEXT 0x40000
37#define _O_RAW _O_BINARY
39#define _O_NOINHERIT 0x0080
40#define _O_TEMPORARY 0x0040
41#define _O_SHORT_LIVED 0x1000
42#define _O_OBTAIN_DIR 0x2000
43#define _O_SEQUENTIAL 0x0020
44#define _O_RANDOM 0x0010
48#if (defined _CRT_DECLARE_NONSTDC_NAMES && _CRT_DECLARE_NONSTDC_NAMES) || (!defined _CRT_DECLARE_NONSTDC_NAMES && !__STDC__)
49 #define O_RDONLY _O_RDONLY
50 #define O_WRONLY _O_WRONLY
51 #define O_RDWR _O_RDWR
52 #define O_APPEND _O_APPEND
53 #define O_CREAT _O_CREAT
54 #define O_TRUNC _O_TRUNC
55 #define O_EXCL _O_EXCL
56 #define O_TEXT _O_TEXT
57 #define O_BINARY _O_BINARY
58 #define O_RAW _O_BINARY
59 #define O_TEMPORARY _O_TEMPORARY
60 #define O_NOINHERIT _O_NOINHERIT
61 #define O_SEQUENTIAL _O_SEQUENTIAL
62 #define O_RANDOM _O_RANDOM
#define _UCRT_DISABLE_CLANG_WARNINGS
#define _UCRT_RESTORE_CLANG_WARNINGS