VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/fcntl.h@ 20636

Last change on this file since 20636 was 19678, checked in by vboxsync, 16 years ago

opengl: update wine to 1.1.21, add d3d9.dll to build list

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1/*
2 * File definitions
3 *
4 * Derived from the mingw header written by Colin Peters.
5 * Modified for Wine use by Jon Griffiths and Francois Gouget.
6 * This file is in the public domain.
7 */
8/*
9 * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
10 * other than GPL or LGPL is available it will apply instead, Sun elects to use only
11 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
12 * a choice of LGPL license versions is made available with the language indicating
13 * that LGPLv2 or any later version may be used, or where a choice of which version
14 * of the LGPL is applied is otherwise unspecified.
15 */
16
17#ifndef __WINE_FCNTL_H
18#define __WINE_FCNTL_H
19
20#include <crtdefs.h>
21
22#define _O_RDONLY 0
23#define _O_WRONLY 1
24#define _O_RDWR 2
25#define _O_ACCMODE (_O_RDONLY|_O_WRONLY|_O_RDWR)
26#define _O_APPEND 0x0008
27#define _O_RANDOM 0x0010
28#define _O_SEQUENTIAL 0x0020
29#define _O_TEMPORARY 0x0040
30#define _O_NOINHERIT 0x0080
31#define _O_CREAT 0x0100
32#define _O_TRUNC 0x0200
33#define _O_EXCL 0x0400
34#define _O_SHORT_LIVED 0x1000
35#define _O_TEXT 0x4000
36#define _O_BINARY 0x8000
37#define _O_RAW _O_BINARY
38
39
40#define O_RDONLY _O_RDONLY
41#define O_WRONLY _O_WRONLY
42#define O_RDWR _O_RDWR
43#define O_ACCMODE _O_ACCMODE
44#define O_APPEND _O_APPEND
45#define O_RANDOM _O_RANDOM
46#define O_SEQENTIAL _O_SEQUENTIAL
47#define O_TEMPORARY _O_TEMPORARY
48#define O_NOINHERIT _O_NOINHERIT
49#define O_CREAT _O_CREAT
50#define O_TRUNC _O_TRUNC
51#define O_EXCL _O_EXCL
52#define O_TEXT _O_TEXT
53#define O_BINARY _O_BINARY
54#define O_RAW _O_BINARY
55
56#endif /* __WINE_FCNTL_H */
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette