Avoid including other headers from the msvcrt headers, duplicate some
[wine/multimedia.git] / include / msvcrt / io.h
blobf76e22b381adac7de222992d58a838d9b260a5f5
1 /*
2 * System I/O definitions.
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 #ifndef __WINE_IO_H
9 #define __WINE_IO_H
10 #define __WINE_USE_MSVCRT
12 #ifndef MSVCRT
13 # ifdef USE_MSVCRT_PREFIX
14 # define MSVCRT(x) MSVCRT_##x
15 # else
16 # define MSVCRT(x) x
17 # endif
18 #endif
20 #ifndef MSVCRT_WCHAR_T_DEFINED
21 #define MSVCRT_WCHAR_T_DEFINED
22 #ifndef __cplusplus
23 typedef unsigned short MSVCRT(wchar_t);
24 #endif
25 #endif
27 #ifndef _MSC_VER
28 # ifndef __int64
29 # define __int64 long long
30 # endif
31 #endif
33 /* The following are also defined in dos.h */
34 #define _A_NORMAL 0x00000000
35 #define _A_RDONLY 0x00000001
36 #define _A_HIDDEN 0x00000002
37 #define _A_SYSTEM 0x00000004
38 #define _A_VOLID 0x00000008
39 #define _A_SUBDIR 0x00000010
40 #define _A_ARCH 0x00000020
42 #ifndef MSVCRT_TIME_T_DEFINED
43 typedef long MSVCRT(time_t);
44 #define MSVCRT_TIME_T_DEFINED
45 #endif
47 #ifndef MSVCRT_FSIZE_T_DEFINED
48 typedef unsigned long _fsize_t;
49 #define MSVCRT_FSIZE_T_DEFINED
50 #endif
52 #ifndef MSVCRT_FINDDATA_T_DEFINED
53 #define MSVCRT_FINDDATA_T_DEFINED
54 struct _finddata_t
56 unsigned attrib;
57 MSVCRT(time_t) time_create;
58 MSVCRT(time_t) time_access;
59 MSVCRT(time_t) time_write;
60 _fsize_t size;
61 char name[260];
64 struct _finddatai64_t
66 unsigned attrib;
67 MSVCRT(time_t) time_create;
68 MSVCRT(time_t) time_access;
69 MSVCRT(time_t) time_write;
70 __int64 size;
71 char name[260];
73 #endif /* MSVCRT_FINDDATA_T_DEFINED */
75 #ifndef MSVCRT_WFINDDATA_T_DEFINED
76 #define MSVCRT_WFINDDATA_T_DEFINED
77 struct _wfinddata_t {
78 unsigned attrib;
79 MSVCRT(time_t) time_create;
80 MSVCRT(time_t) time_access;
81 MSVCRT(time_t) time_write;
82 _fsize_t size;
83 MSVCRT(wchar_t) name[260];
86 struct _wfinddatai64_t {
87 unsigned attrib;
88 MSVCRT(time_t) time_create;
89 MSVCRT(time_t) time_access;
90 MSVCRT(time_t) time_write;
91 __int64 size;
92 MSVCRT(wchar_t) name[260];
94 #endif /* MSVCRT_WFINDDATA_T_DEFINED */
96 #ifdef __cplusplus
97 extern "C" {
98 #endif
100 int _access(const char*,int);
101 int _chmod(const char*,int);
102 int _chsize(int,long);
103 int _close(int);
104 int _commit(int);
105 int _creat(const char*,int);
106 int _dup(int);
107 int _dup2(int,int);
108 int _eof(int);
109 __int64 _filelengthi64(int);
110 long _filelength(int);
111 int _findclose(long);
112 long _findfirst(const char*,struct _finddata_t*);
113 long _findfirsti64(const char*, struct _finddatai64_t*);
114 int _findnext(long,struct _finddata_t*);
115 int _findnexti64(long, struct _finddatai64_t*);
116 long _get_osfhandle(int);
117 int _isatty(int);
118 int _locking(int,int,long);
119 long _lseek(int,long,int);
120 __int64 _lseeki64(int,__int64,int);
121 char* _mktemp(char*);
122 int _open(const char*,int,...);
123 int _open_osfhandle(long,int);
124 int _pipe(int*,unsigned int,int);
125 int _read(int,void*,unsigned int);
126 int _setmode(int,int);
127 int _sopen(const char*,int,int,...);
128 long _tell(int);
129 __int64 _telli64(int);
130 int _umask(int);
131 int _unlink(const char*);
132 int _write(int,const void*,unsigned int);
134 int MSVCRT(remove)(const char*);
135 int MSVCRT(rename)(const char*,const char*);
137 #ifndef MSVCRT_WIO_DEFINED
138 #define MSVCRT_WIO_DEFINED
139 int _waccess(const MSVCRT(wchar_t)*,int);
140 int _wchmod(const MSVCRT(wchar_t)*,int);
141 int _wcreat(const MSVCRT(wchar_t)*,int);
142 long _wfindfirst(const MSVCRT(wchar_t)*,struct _wfinddata_t*);
143 long _wfindfirsti64(const MSVCRT(wchar_t)*, struct _wfinddatai64_t*);
144 int _wfindnext(long,struct _wfinddata_t*);
145 int _wfindnexti64(long, struct _wfinddatai64_t*);
146 MSVCRT(wchar_t)*_wmktemp(MSVCRT(wchar_t)*);
147 int _wopen(const MSVCRT(wchar_t)*,int,...);
148 int _wrename(const MSVCRT(wchar_t)*,const MSVCRT(wchar_t)*);
149 int _wsopen(const MSVCRT(wchar_t)*,int,int,...);
150 int _wunlink(const MSVCRT(wchar_t)*);
151 #endif /* MSVCRT_WIO_DEFINED */
153 #ifdef __cplusplus
155 #endif
158 #ifndef USE_MSVCRT_PREFIX
159 #define access _access
160 #define chmod _chmod
161 #define chsize _chsize
162 #define close _close
163 #define creat _creat
164 #define dup _dup
165 #define dup2 _dup2
166 #define eof _eof
167 #define filelength _filelength
168 #define isatty _isatty
169 #define locking _locking
170 #define lseek _lseek
171 #define mktemp _mktemp
172 #define open _open
173 #define read _read
174 #define setmode _setmode
175 #define sopen _sopen
176 #define tell _tell
177 #define umask _umask
178 #define unlink _unlink
179 #define write _write
180 #endif /* USE_MSVCRT_PREFIX */
182 #endif /* __WINE_IO_H */