Go to the documentation of this file.
22 #define _O_RDONLY 0x0000
23 #define _O_WRONLY 0x0001
24 #define _O_RDWR 0x0002
25 #define _O_APPEND 0x0008
27 #define _O_CREAT 0x0100
28 #define _O_TRUNC 0x0200
29 #define _O_EXCL 0x0400
35 #define _O_TEXT 0x4000
36 #define _O_BINARY 0x8000
37 #define _O_WTEXT 0x10000
38 #define _O_U16TEXT 0x20000
39 #define _O_U8TEXT 0x40000
43 #define _O_RAW _O_BINARY
47 #define _O_NOINHERIT 0x0080
51 #define _O_TEMPORARY 0x0040
55 #define _O_SHORT_LIVED 0x1000
59 #define _O_OBTAIN_DIR 0x2000
63 #define _O_SEQUENTIAL 0x0020
64 #define _O_RANDOM 0x0010
68 #define O_RDONLY _O_RDONLY
69 #define O_WRONLY _O_WRONLY
70 #define O_RDWR _O_RDWR
71 #define O_APPEND _O_APPEND
72 #define O_CREAT _O_CREAT
73 #define O_TRUNC _O_TRUNC
74 #define O_EXCL _O_EXCL
75 #define O_TEXT _O_TEXT
76 #define O_BINARY _O_BINARY
77 #define O_RAW _O_BINARY
78 #define O_TEMPORARY _O_TEMPORARY
79 #define O_NOINHERIT _O_NOINHERIT
80 #define O_SEQUENTIAL _O_SEQUENTIAL
81 #define O_RANDOM _O_RANDOM