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.
15 /* The following are also defined in dos.h */
16 #define _A_NORMAL 0x00000000
17 #define _A_RDONLY 0x00000001
18 #define _A_HIDDEN 0x00000002
19 #define _A_SYSTEM 0x00000004
20 #define _A_VOLID 0x00000008
21 #define _A_SUBDIR 0x00000010
22 #define _A_ARCH 0x00000020
24 #ifndef _FSIZE_T_DEFINED
25 typedef __msvcrt_ulong _fsize_t
;
26 #define _FSIZE_T_DEFINED
29 #ifndef _FINDDATA_T_DEFINED
30 #define _FINDDATA_T_DEFINED
47 __int64
DECLSPEC_ALIGN(8) size
;
50 #endif /* _FINDDATA_T_DEFINED */
52 #ifndef _WFINDDATA_T_DEFINED
53 #define _WFINDDATA_T_DEFINED
63 struct _wfinddatai64_t
{
68 __int64
DECLSPEC_ALIGN(8) size
;
71 #endif /* _WFINDDATA_T_DEFINED */
77 int __cdecl
_access(const char*,int);
78 int __cdecl
_chmod(const char*,int);
79 int __cdecl
_chsize(int,__msvcrt_ulong
);
80 int __cdecl
_close(int);
81 int __cdecl
_commit(int);
82 int __cdecl
_creat(const char*,int);
83 int __cdecl
_dup(int);
84 int __cdecl
_dup2(int,int);
85 int __cdecl
_eof(int);
86 __int64 __cdecl
_filelengthi64(int);
87 __msvcrt_long __cdecl
_filelength(int);
88 int __cdecl
_findclose(intptr_t);
89 intptr_t __cdecl
_findfirst(const char*,struct _finddata_t
*);
90 intptr_t __cdecl
_findfirsti64(const char*, struct _finddatai64_t
*);
91 int __cdecl
_findnext(intptr_t,struct _finddata_t
*);
92 int __cdecl
_findnexti64(intptr_t, struct _finddatai64_t
*);
93 intptr_t __cdecl
_get_osfhandle(int);
94 int __cdecl
_isatty(int);
95 int __cdecl
_locking(int,int,__msvcrt_long
);
96 __msvcrt_long __cdecl
_lseek(int,__msvcrt_long
,int);
97 __int64 __cdecl
_lseeki64(int,__int64
,int);
98 char* __cdecl
_mktemp(char*);
99 int __cdecl
_open(const char*,int,...);
100 int __cdecl
_open_osfhandle(intptr_t,int);
101 int __cdecl
_pipe(int*,unsigned int,int);
102 int __cdecl
_read(int,void*,unsigned int);
103 int __cdecl
_setmode(int,int);
104 int __cdecl
_sopen(const char*,int,int,...);
105 __msvcrt_long __cdecl
_tell(int);
106 __int64 __cdecl
_telli64(int);
107 int __cdecl
_umask(int);
108 int __cdecl
_unlink(const char*);
109 int __cdecl
_write(int,const void*,unsigned int);
111 int __cdecl
remove(const char*);
112 int __cdecl
rename(const char*,const char*);
116 int __cdecl
_waccess(const wchar_t*,int);
117 int __cdecl
_wchmod(const wchar_t*,int);
118 int __cdecl
_wcreat(const wchar_t*,int);
119 intptr_t __cdecl
_wfindfirst(const wchar_t*,struct _wfinddata_t
*);
120 intptr_t __cdecl
_wfindfirsti64(const wchar_t*, struct _wfinddatai64_t
*);
121 int __cdecl
_wfindnext(intptr_t,struct _wfinddata_t
*);
122 int __cdecl
_wfindnexti64(intptr_t, struct _wfinddatai64_t
*);
123 wchar_t * __cdecl
_wmktemp(wchar_t*);
124 int __cdecl
_wopen(const wchar_t*,int,...);
125 int __cdecl
_wrename(const wchar_t*,const wchar_t*);
126 int __cdecl
_wsopen(const wchar_t*,int,int,...);
127 int __cdecl
_wunlink(const wchar_t*);
128 #endif /* _WIO_DEFINED */
135 static inline int access(const char* path
, int mode
) { return _access(path
, mode
); }
136 static inline int chmod(const char* path
, int mode
) { return _chmod(path
, mode
); }
137 static inline int chsize(int fd
, __msvcrt_long size
) { return _chsize(fd
, size
); }
138 static inline int close(int fd
) { return _close(fd
); }
139 static inline int creat(const char* path
, int mode
) { return _creat(path
, mode
); }
140 static inline int dup(int od
) { return _dup(od
); }
141 static inline int dup2(int od
, int nd
) { return _dup2(od
, nd
); }
142 static inline int eof(int fd
) { return _eof(fd
); }
143 static inline __msvcrt_long
filelength(int fd
) { return _filelength(fd
); }
144 static inline int isatty(int fd
) { return _isatty(fd
); }
145 static inline int locking(int fd
, int mode
, __msvcrt_long size
) { return _locking(fd
, mode
, size
); }
146 static inline __msvcrt_long
lseek(int fd
, __msvcrt_long off
, int where
) { return _lseek(fd
, off
, where
); }
147 static inline char* mktemp(char* pat
) { return _mktemp(pat
); }
148 static inline int read(int fd
, void* buf
, unsigned int size
) { return _read(fd
, buf
, size
); }
149 static inline int setmode(int fd
, int mode
) { return _setmode(fd
, mode
); }
150 static inline __msvcrt_long
tell(int fd
) { return _tell(fd
); }
151 #ifndef _UMASK_DEFINED
152 static inline int umask(int fd
) { return _umask(fd
); }
153 #define _UMASK_DEFINED
155 #ifndef _UNLINK_DEFINED
156 static inline int unlink(const char* path
) { return _unlink(path
); }
157 #define _UNLINK_DEFINED
159 static inline int write(int fd
, const void* buf
, unsigned int size
) { return _write(fd
, buf
, size
); }
161 #if defined(__GNUC__) && (__GNUC__ < 4)
162 extern int __cdecl
open(const char*,int,...) __attribute__((alias("_open")));
163 extern int __cdecl
sopen(const char*,int,int,...) __attribute__((alias("_sopen")));
167 #endif /* __GNUC__ */
171 #endif /* __WINE_IO_H */