2 * Standard 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.
19 /* file._flag flags */
20 #define _IOREAD 0x0001
22 #define _IOMYBUF 0x0008
25 #define _IOSTRG 0x0040
32 #define NULL ((void *)0)
36 #define STDIN_FILENO 0
37 #define STDOUT_FILENO 1
38 #define STDERR_FILENO 2
40 /* more file._flag flags, but these conflict with Unix */
46 #define FILENAME_MAX 260
47 #define TMP_MAX 0x7fff
72 #endif /* _FILE_DEFINED */
74 #ifndef _FPOS_T_DEFINED
75 typedef __int64
DECLSPEC_ALIGN(8) fpos_t;
76 #define _FPOS_T_DEFINED
83 #ifndef _STDIO_DEFINED
85 FILE* __cdecl
__p__iob(void);
86 # define _iob (__p__iob())
88 FILE* __cdecl
__iob_func(void);
89 # define _iob (__iob_func())
91 #endif /* _STDIO_DEFINED */
93 #define stdin (_iob+STDIN_FILENO)
94 #define stdout (_iob+STDOUT_FILENO)
95 #define stderr (_iob+STDERR_FILENO)
97 #ifndef _STDIO_DEFINED
98 #define _STDIO_DEFINED
99 int __cdecl
_fcloseall(void);
100 FILE* __cdecl
_fdopen(int,const char*);
101 int __cdecl
_fgetchar(void);
102 int __cdecl
_filbuf(FILE*);
103 int __cdecl
_fileno(FILE*);
104 int __cdecl
_flsbuf(int,FILE*);
105 int __cdecl
_flushall(void);
106 int __cdecl
_fputchar(int);
107 FILE* __cdecl
_fsopen(const char*,const char*,int);
108 int __cdecl
_getmaxstdio(void);
109 int __cdecl
_getw(FILE*);
110 int __cdecl
_pclose(FILE*);
111 FILE* __cdecl
_popen(const char*,const char*);
112 int __cdecl
_putw(int,FILE*);
113 int __cdecl
_rmtmp(void);
114 int __cdecl
_setmaxstdio(int);
115 int __cdecl
_snprintf(char*,size_t,const char*,...);
116 int __cdecl
_snprintf_s(char*,size_t,size_t,const char*,...);
117 char* __cdecl
_tempnam(const char*,const char*);
118 int __cdecl
_unlink(const char*);
119 int __cdecl
_vscprintf(const char*,__ms_va_list
);
120 int __cdecl
_vsnprintf(char*,size_t,const char*,__ms_va_list
);
121 int __cdecl
_vsnprintf_s(char*,size_t,size_t,const char*,__ms_va_list
);
123 void __cdecl
clearerr(FILE*);
124 int __cdecl
fclose(FILE*);
125 int __cdecl
feof(FILE*);
126 int __cdecl
ferror(FILE*);
127 int __cdecl
fflush(FILE*);
128 int __cdecl
fgetc(FILE*);
129 int __cdecl
fgetpos(FILE*,fpos_t*);
130 char* __cdecl
fgets(char*,int,FILE*);
131 FILE* __cdecl
fopen(const char*,const char*);
132 errno_t __cdecl
fopen_s(FILE**,const char*,const char*);
133 int __cdecl
fprintf(FILE*,const char*,...);
134 int __cdecl
fputc(int,FILE*);
135 int __cdecl
fputs(const char*,FILE*);
136 size_t __cdecl
fread(void*,size_t,size_t,FILE*);
137 FILE* __cdecl
freopen(const char*,const char*,FILE*);
138 int __cdecl
fscanf(FILE*,const char*,...);
139 int __cdecl
fscanf_s(FILE*,const char*,...);
140 int __cdecl
fseek(FILE*,__msvcrt_long
,int);
141 int __cdecl
fsetpos(FILE*,fpos_t*);
142 __msvcrt_long __cdecl
ftell(FILE*);
143 size_t __cdecl
fwrite(const void*,size_t,size_t,FILE*);
144 int __cdecl
getc(FILE*);
145 int __cdecl
getchar(void);
146 char* __cdecl
gets(char*);
147 void __cdecl
perror(const char*);
148 int __cdecl
printf(const char*,...);
149 int __cdecl
putc(int,FILE*);
150 int __cdecl
putchar(int);
151 int __cdecl
puts(const char*);
152 int __cdecl
remove(const char*);
153 int __cdecl
rename(const char*,const char*);
154 void __cdecl
rewind(FILE*);
155 int __cdecl
scanf(const char*,...);
156 int __cdecl
scanf_s(const char*,...);
157 void __cdecl
setbuf(FILE*,char*);
158 int __cdecl
setvbuf(FILE*,char*,int,size_t);
159 int __cdecl
sprintf(char*,const char*,...);
160 int __cdecl
sprintf_s(char*,size_t,const char*,...);
161 int __cdecl
sscanf(const char*,const char*,...);
162 int __cdecl
sscanf_s(const char*,const char*,...);
163 FILE* __cdecl
tmpfile(void);
164 char* __cdecl
tmpnam(char*);
165 int __cdecl
ungetc(int,FILE*);
166 int __cdecl
vfprintf(FILE*,const char*,__ms_va_list
);
167 int __cdecl
vprintf(const char*,__ms_va_list
);
168 int __cdecl
vsprintf(char*,const char*,__ms_va_list
);
169 int __cdecl
vsprintf_s(char*,size_t,const char*,__ms_va_list
);
171 #ifndef _WSTDIO_DEFINED
172 #define _WSTDIO_DEFINED
173 wint_t __cdecl
_fgetwchar(void);
174 wint_t __cdecl
_fputwchar(wint_t);
175 wchar_t* __cdecl
_getws(wchar_t*);
176 int __cdecl
_putws(const wchar_t*);
177 int __cdecl
_snwprintf(wchar_t*,size_t,const wchar_t*,...);
178 int __cdecl
_snwprintf_s(wchar_t*,size_t,size_t,const wchar_t*,...);
179 int __cdecl
_vscwprintf(const wchar_t*,__ms_va_list
);
180 int __cdecl
_vsnwprintf(wchar_t*,size_t,const wchar_t*,__ms_va_list
);
181 int __cdecl
_vsnwprintf_s(wchar_t*,size_t,size_t,const wchar_t*,__ms_va_list
);
182 FILE* __cdecl
_wfdopen(int,const wchar_t*);
183 FILE* __cdecl
_wfopen(const wchar_t*,const wchar_t*);
184 errno_t __cdecl
_wfopen_s(FILE**,const wchar_t*,const wchar_t*);
185 FILE* __cdecl
_wfreopen(const wchar_t*,const wchar_t*,FILE*);
186 FILE* __cdecl
_wfsopen(const wchar_t*,const wchar_t*,int);
187 void __cdecl
_wperror(const wchar_t*);
188 FILE* __cdecl
_wpopen(const wchar_t*,const wchar_t*);
189 int __cdecl
_wremove(const wchar_t*);
190 wchar_t* __cdecl
_wtempnam(const wchar_t*,const wchar_t*);
191 wchar_t* __cdecl
_wtmpnam(wchar_t*);
193 wint_t __cdecl
fgetwc(FILE*);
194 wchar_t* __cdecl
fgetws(wchar_t*,int,FILE*);
195 wint_t __cdecl
fputwc(wint_t,FILE*);
196 int __cdecl
fputws(const wchar_t*,FILE*);
197 int __cdecl
fwprintf(FILE*,const wchar_t*,...);
198 int __cdecl
fputws(const wchar_t*,FILE*);
199 int __cdecl
fwscanf(FILE*,const wchar_t*,...);
200 int __cdecl
fwscanf_s(FILE*,const wchar_t*,...);
201 wint_t __cdecl
getwc(FILE*);
202 wint_t __cdecl
getwchar(void);
203 wchar_t* __cdecl
getws(wchar_t*);
204 wint_t __cdecl
putwc(wint_t,FILE*);
205 wint_t __cdecl
putwchar(wint_t);
206 int __cdecl
putws(const wchar_t*);
207 int __cdecl
swprintf(wchar_t*,const wchar_t*,...);
208 int __cdecl
swprintf_s(wchar_t*,size_t,const wchar_t*,...);
209 int __cdecl
swscanf(const wchar_t*,const wchar_t*,...);
210 int __cdecl
swscanf_s(const wchar_t*,const wchar_t*,...);
211 wint_t __cdecl
ungetwc(wint_t,FILE*);
212 int __cdecl
vfwprintf(FILE*,const wchar_t*,__ms_va_list
);
213 int __cdecl
vswprintf(wchar_t*,const wchar_t*,__ms_va_list
);
214 int __cdecl
vswprintf_s(wchar_t*,size_t,const wchar_t*,__ms_va_list
);
215 int __cdecl
vwprintf(const wchar_t*,__ms_va_list
);
216 int __cdecl
wprintf(const wchar_t*,...);
217 int __cdecl
wscanf(const wchar_t*,...);
218 int __cdecl
wscanf_s(const wchar_t*,...);
219 #endif /* _WSTDIO_DEFINED */
221 #endif /* _STDIO_DEFINED */
228 static inline FILE* fdopen(int fd
, const char *mode
) { return _fdopen(fd
, mode
); }
229 static inline int fgetchar(void) { return _fgetchar(); }
230 static inline int fileno(FILE* file
) { return _fileno(file
); }
231 static inline int fputchar(int c
) { return _fputchar(c
); }
232 static inline int pclose(FILE* file
) { return _pclose(file
); }
233 static inline FILE* popen(const char* command
, const char* mode
) { return _popen(command
, mode
); }
234 static inline char* tempnam(const char *dir
, const char *prefix
) { return _tempnam(dir
, prefix
); }
235 #ifndef _UNLINK_DEFINED
236 static inline int unlink(const char* path
) { return _unlink(path
); }
237 #define _UNLINK_DEFINED
239 static inline int vsnprintf(char *buffer
, size_t size
, const char *format
, __ms_va_list args
) { return _vsnprintf(buffer
,size
,format
,args
); }
241 static inline wint_t fgetwchar(void) { return _fgetwchar(); }
242 static inline wint_t fputwchar(wint_t wc
) { return _fputwchar(wc
); }
243 static inline int getw(FILE* file
) { return _getw(file
); }
244 static inline int putw(int val
, FILE* file
) { return _putw(val
, file
); }
245 static inline FILE* wpopen(const wchar_t* command
,const wchar_t* mode
) { return _wpopen(command
, mode
); }
249 #endif /* __WINE_STDIO_H */