/* * Standard I/O definitions. * * Derived from the mingw header written by Colin Peters. * Modified for Wine use by Jon Griffiths and Francois Gouget. * This file is in the public domain. */ #ifndef __WINE_STDIO_H #define __WINE_STDIO_H #include /* file._flag flags */ #define _IOREAD 0x0001 #define _IOWRT 0x0002 #define _IOMYBUF 0x0008 #define _IOEOF 0x0010 #define _IOERR 0x0020 #define _IOSTRG 0x0040 #define _IORW 0x0080 #define STDIN_FILENO 0 #define STDOUT_FILENO 1 #define STDERR_FILENO 2 /* more file._flag flags, but these conflict with Unix */ #define _IOFBF 0x0000 #define _IONBF 0x0004 #define _IOLBF 0x0040 #define EOF (-1) #define FILENAME_MAX 260 #define TMP_MAX 0x7fff #define FOPEN_MAX 20 #define L_tmpnam 260 #define BUFSIZ 512 #ifndef SEEK_SET #define SEEK_SET 0 #define SEEK_CUR 1 #define SEEK_END 2 #endif #ifndef _FPOS_T_DEFINED typedef __int64 DECLSPEC_ALIGN(8) fpos_t; #define _FPOS_T_DEFINED #endif #ifdef __cplusplus extern "C" { #endif #ifndef _STDIO_DEFINED # ifdef __i386__ FILE* __cdecl __p__iob(void); # define _iob (__p__iob()) # else FILE* __cdecl __iob_func(void); # define _iob (__iob_func()) # endif #endif /* _STDIO_DEFINED */ /* return value for _get_output_format */ #define _TWO_DIGIT_EXPONENT 0x1 #ifndef _STDIO_DEFINED #define _STDIO_DEFINED int __cdecl _fcloseall(void); FILE* __cdecl _fdopen(int,const char*); int __cdecl _fgetchar(void); int __cdecl _filbuf(FILE*); int __cdecl _fileno(FILE*); int __cdecl _flsbuf(int,FILE*); int __cdecl _flushall(void); int __cdecl _fputchar(int); FILE* __cdecl _fsopen(const char*,const char*,int); int __cdecl _get_printf_count_output(void); int __cdecl _getmaxstdio(void); int __cdecl _getw(FILE*); int __cdecl _pclose(FILE*); FILE* __cdecl _popen(const char*,const char*); int __cdecl _putw(int,FILE*); int __cdecl _rmtmp(void); int __cdecl _set_printf_count_output(int); int __cdecl _setmaxstdio(int); char* __cdecl _tempnam(const char*,const char*); int __cdecl _unlink(const char*); size_t __cdecl _fread_nolock(void*,size_t,size_t,FILE*); size_t __cdecl _fread_nolock_s(void*,size_t,size_t,size_t,FILE*); size_t __cdecl _fwrite_nolock(const void*,size_t,size_t,FILE*); int __cdecl _fclose_nolock(FILE*); int __cdecl _fflush_nolock(FILE*); int __cdecl _fgetc_nolock(FILE*); int __cdecl _fputc_nolock(int,FILE*); int __cdecl _fseek_nolock(FILE*,__msvcrt_long,int); int __cdecl _fseeki64_nolock(FILE*,__int64,int); __msvcrt_long __cdecl _ftell_nolock(FILE*); __int64 __cdecl _ftelli64_nolock(FILE*); int __cdecl _getc_nolock(FILE*); int __cdecl _putc_nolock(int,FILE*); int __cdecl _ungetc_nolock(int,FILE*); void __cdecl clearerr(FILE*); errno_t __cdecl clearerr_s(FILE*); int __cdecl fclose(FILE*); int __cdecl feof(FILE*); int __cdecl ferror(FILE*); int __cdecl fflush(FILE*); int __cdecl fgetc(FILE*); int __cdecl fgetpos(FILE*,fpos_t*); char* __cdecl fgets(char*,int,FILE*); FILE* __cdecl fopen(const char*,const char*); errno_t __cdecl fopen_s(FILE**,const char*,const char*); int __cdecl fputc(int,FILE*); int __cdecl fputs(const char*,FILE*); size_t __cdecl fread(void*,size_t,size_t,FILE*); size_t __cdecl fread_s(void*,size_t,size_t,size_t,FILE*); FILE* __cdecl freopen(const char*,const char*,FILE*); int __cdecl fseek(FILE*,__msvcrt_long,int); int __cdecl _fseeki64(FILE*,__int64,int); int __cdecl fsetpos(FILE*,fpos_t*); __msvcrt_long __cdecl ftell(FILE*); __int64 __cdecl _ftelli64(FILE*); size_t __cdecl fwrite(const void*,size_t,size_t,FILE*); int __cdecl getc(FILE*); int __cdecl getchar(void); char* __cdecl gets(char*); void __cdecl perror(const char*); int __cdecl putc(int,FILE*); int __cdecl putchar(int); int __cdecl puts(const char*); int __cdecl remove(const char*); int __cdecl rename(const char*,const char*); void __cdecl rewind(FILE*); void __cdecl setbuf(FILE*,char*); int __cdecl setvbuf(FILE*,char*,int,size_t); FILE* __cdecl tmpfile(void); char* __cdecl tmpnam(char*); int __cdecl ungetc(int,FILE*); unsigned int __cdecl _get_output_format(void); unsigned int __cdecl _set_output_format(void); #ifdef _UCRT _ACRTIMP int __cdecl __stdio_common_vfprintf(unsigned __int64,FILE*,const char*,_locale_t,__ms_va_list); _ACRTIMP int __cdecl __stdio_common_vfprintf_s(unsigned __int64,FILE*,const char*,_locale_t,__ms_va_list); _ACRTIMP int __cdecl __stdio_common_vsprintf(unsigned __int64,char*,size_t,const char*,_locale_t,__ms_va_list); _ACRTIMP int __cdecl __stdio_common_vsprintf_p(unsigned __int64,char*,size_t,const char*,_locale_t,__ms_va_list); _ACRTIMP int __cdecl __stdio_common_vsprintf_s(unsigned __int64,char*,size_t,const char*,_locale_t,__ms_va_list); _ACRTIMP int __cdecl __stdio_common_vsnprintf_s(unsigned __int64,char*,size_t,size_t,const char*,_locale_t,__ms_va_list); _ACRTIMP int __cdecl __stdio_common_vfscanf(unsigned __int64,FILE*,const char*,_locale_t,__ms_va_list); _ACRTIMP int __cdecl __stdio_common_vsscanf(unsigned __int64,char const*,size_t,const char*,_locale_t,__ms_va_list); static inline int __cdecl vsnprintf(char *buffer, size_t size, const char *format, __ms_va_list args) { int ret = __stdio_common_vsprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS | _CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR, buffer, size, format, NULL, args); return ret < 0 ? -1 : ret; } static inline int __cdecl _vsnprintf(char *buffer, size_t size, const char *format, __ms_va_list args) { int ret = __stdio_common_vsprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS | _CRT_INTERNAL_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION, buffer, size, format, NULL, args); return ret < 0 ? -1 : ret; } static inline int __cdecl _vsnprintf_s(char *buffer, size_t size, size_t count, const char *format, __ms_va_list args) { int ret = __stdio_common_vsnprintf_s(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, buffer, size, count, format, NULL, args); return ret < 0 ? -1 : ret; } static inline int WINAPIV _snprintf_s(char *buffer, size_t size, size_t count, const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vsnprintf_s(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, buffer, size, count, format, NULL, args); __ms_va_end(args); return ret; } static inline int __cdecl _vscprintf(const char *format, __ms_va_list args) { int ret = __stdio_common_vsprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS | _CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR, NULL, 0, format, NULL, args); return ret < 0 ? -1 : ret; } static inline int WINAPIV _scprintf(const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vsprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS | _CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR, NULL, 0, format, NULL, args); __ms_va_end(args); return ret; } static inline int __cdecl vsprintf(char *buffer, const char *format, __ms_va_list args) { int ret = __stdio_common_vsprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS | _CRT_INTERNAL_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION, buffer, -1, format, NULL, args); return ret < 0 ? -1 : ret; } static inline int __cdecl vsprintf_s(char *buffer, const char *format, __ms_va_list args) { int ret = __stdio_common_vsprintf_s(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, buffer, -1, format, NULL, args); return ret < 0 ? -1 : ret; } static inline int WINAPIV sprintf_s(char *buffer, size_t size, size_t count, const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vsprintf_s(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, buffer, -1, format, NULL, args); __ms_va_end(args); return ret; } static inline int __cdecl _vsprintf_p_l(char *buffer, size_t size, const char *format, _locale_t locale, __ms_va_list args) { int ret = __stdio_common_vsprintf_p(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, buffer, size, format, locale, args); return ret < 0 ? -1 : ret; } static inline int __cdecl vfprintf(FILE *file, const char *format, __ms_va_list args) { return __stdio_common_vfprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, file, format, NULL, args); } static inline int WINAPIV fprintf(FILE *file, const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vfprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, file, format, NULL, args); __ms_va_end(args); return ret; } static inline int __cdecl vfprintf_s(FILE *file, const char *format, __ms_va_list args) { return __stdio_common_vfprintf_s(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, file, format, NULL, args); } static inline int WINAPIV fprintf_s(FILE *file, const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vfprintf_s(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, file, format, NULL, args); __ms_va_end(args); return ret; } static inline int vprintf(const char *format, __ms_va_list args) { return __stdio_common_vfprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, stdout, format, NULL, args); } static inline int WINAPIV printf(const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vfprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, stdout, format, NULL, args); __ms_va_end(args); return ret; } static inline int vprintf_s(const char *format, __ms_va_list args) { return __stdio_common_vfprintf_s(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, stdout, format, NULL, args); } static inline int WINAPIV printf_s(const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vfprintf_s(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS, stdout, format, NULL, args); __ms_va_end(args); return ret; } static inline int WINAPIV sscanf(const char *buffer, const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vsscanf(_CRT_INTERNAL_LOCAL_SCANF_OPTIONS, buffer, -1, format, NULL, args); __ms_va_end(args); return ret; } static inline int WINAPIV sscanf_s(const char *buffer, const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vsscanf(_CRT_INTERNAL_LOCAL_SCANF_OPTIONS | _CRT_INTERNAL_SCANF_SECURECRT, buffer, -1, format, NULL, args); __ms_va_end(args); return ret; } static inline int WINAPIV _snscanf_l(const char *buffer, size_t size, const char *format, _locale_t locale, ...) { int ret; __ms_va_list args; __ms_va_start(args, locale); ret = __stdio_common_vsscanf(_CRT_INTERNAL_LOCAL_SCANF_OPTIONS, buffer, size, format, locale, args); __ms_va_end(args); return ret; } static inline int WINAPIV fscanf(FILE *file, const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vfscanf(_CRT_INTERNAL_LOCAL_SCANF_OPTIONS, file, format, NULL, args); __ms_va_end(args); return ret; } static inline int WINAPIV fscanf_s(FILE *file, const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vfscanf(_CRT_INTERNAL_LOCAL_SCANF_OPTIONS | _CRT_INTERNAL_SCANF_SECURECRT, file, format, NULL, args); __ms_va_end(args); return ret; } static inline int WINAPIV scanf(const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vfscanf(_CRT_INTERNAL_LOCAL_SCANF_OPTIONS, stdin, format, NULL, args); __ms_va_end(args); return ret; } static inline int WINAPIV scanf_s(const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = __stdio_common_vfscanf(_CRT_INTERNAL_LOCAL_SCANF_OPTIONS | _CRT_INTERNAL_SCANF_SECURECRT, stdin, format, NULL, args); __ms_va_end(args); return ret; } #else /* _UCRT */ _ACRTIMP int WINAPIV _scprintf(const char *,...); _ACRTIMP int WINAPIV _snprintf_s(char*,size_t,size_t,const char*,...); _ACRTIMP int __cdecl _vscprintf(const char*,__ms_va_list); _ACRTIMP int __cdecl _vsnprintf_s(char*,size_t,size_t,const char*,__ms_va_list); _ACRTIMP int __cdecl _vsprintf_p_l(char*,size_t,const char*,_locale_t,__ms_va_list); _ACRTIMP int WINAPIV fprintf(FILE*,const char*,...); _ACRTIMP int WINAPIV fprintf_s(FILE*,const char*,...); _ACRTIMP int WINAPIV printf(const char*,...); _ACRTIMP int WINAPIV printf_s(const char*,...); _ACRTIMP int WINAPIV sprintf_s(char*,size_t,const char*,...); _ACRTIMP int __cdecl vfprintf(FILE*,const char*,__ms_va_list); _ACRTIMP int __cdecl vfprintf_s(FILE*,const char*,__ms_va_list); _ACRTIMP int __cdecl vprintf(const char*,__ms_va_list); _ACRTIMP int __cdecl vprintf_s(const char*,__ms_va_list); _ACRTIMP int __cdecl vsprintf(char*,const char*,__ms_va_list); _ACRTIMP int __cdecl vsprintf_s(char*,size_t,const char*,__ms_va_list); int __cdecl _vsnprintf(char*,size_t,const char*,__ms_va_list); static inline int vsnprintf(char *buffer, size_t size, const char *format, __ms_va_list args) { return _vsnprintf(buffer,size,format,args); } _ACRTIMP int WINAPIV _snscanf_l(const char*,size_t,const char*,_locale_t,...); _ACRTIMP int WINAPIV fscanf(FILE*,const char*,...); _ACRTIMP int WINAPIV fscanf_s(FILE*,const char*,...); _ACRTIMP int WINAPIV scanf(const char*,...); _ACRTIMP int WINAPIV scanf_s(const char*,...); _ACRTIMP int WINAPIV sscanf(const char*,const char*,...); _ACRTIMP int WINAPIV sscanf_s(const char*,const char*,...); #endif /* _UCRT */ #endif /* _STDIO_DEFINED */ #ifdef __cplusplus } #endif static inline FILE* fdopen(int fd, const char *mode) { return _fdopen(fd, mode); } static inline int fgetchar(void) { return _fgetchar(); } static inline int fileno(FILE* file) { return _fileno(file); } static inline int fputchar(int c) { return _fputchar(c); } static inline int pclose(FILE* file) { return _pclose(file); } static inline FILE* popen(const char* command, const char* mode) { return _popen(command, mode); } static inline char* tempnam(const char *dir, const char *prefix) { return _tempnam(dir, prefix); } #ifndef _UNLINK_DEFINED static inline int unlink(const char* path) { return _unlink(path); } #define _UNLINK_DEFINED #endif static inline int WINAPIV snprintf(char *buffer, size_t size, const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = vsnprintf(buffer, size, format, args); __ms_va_end(args); return ret; } static inline int WINAPIV _snprintf(char *buffer, size_t size, const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = _vsnprintf(buffer, size, format, args); __ms_va_end(args); return ret; } static inline int WINAPIV sprintf(char *buffer, const char *format, ...) { int ret; __ms_va_list args; __ms_va_start(args, format); ret = _vsnprintf(buffer, (size_t)_CRT_INT_MAX, format, args); __ms_va_end(args); return ret; } static inline wint_t fgetwchar(void) { return _fgetwchar(); } static inline wint_t fputwchar(wint_t wc) { return _fputwchar(wc); } static inline int getw(FILE* file) { return _getw(file); } static inline int putw(int val, FILE* file) { return _putw(val, file); } static inline FILE* wpopen(const wchar_t* command,const wchar_t* mode) { return _wpopen(command, mode); } #endif /* __WINE_STDIO_H */