123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495 |
- /**
- * This file has no copyright assigned and is placed in the Public Domain.
- * This file is part of the mingw-w64 runtime package.
- * No warranty is given; refer to the file DISCLAIMER.PD within this package.
- */
- #ifndef _IO_H_
- #define _IO_H_
- #include <crtdefs.h>
- #include <string.h>
- #if defined(__LIBMSVCRT__)
- /* When building mingw-w64, this should be blank. */
- #define _SECIMP
- #else
- #ifndef _SECIMP
- #define _SECIMP __declspec(dllimport)
- #endif /* _SECIMP */
- #endif /* defined(__LIBMSVCRT__) */
- #pragma pack(push,_CRT_PACKING)
- #ifdef __cplusplus
- extern "C" {
- #endif
- _CRTIMP char* __cdecl _getcwd (char*, int);
- #ifndef _FSIZE_T_DEFINED
- typedef unsigned long _fsize_t;
- #define _FSIZE_T_DEFINED
- #endif
- #ifndef _FINDDATA_T_DEFINED
- struct _finddata32_t {
- unsigned attrib;
- __time32_t time_create;
- __time32_t time_access;
- __time32_t time_write;
- _fsize_t size;
- char name[260];
- };
- struct _finddata32i64_t {
- unsigned attrib;
- __time32_t time_create;
- __time32_t time_access;
- __time32_t time_write;
- __MINGW_EXTENSION __int64 size;
- char name[260];
- };
- struct _finddata64i32_t {
- unsigned attrib;
- __time64_t time_create;
- __time64_t time_access;
- __time64_t time_write;
- _fsize_t size;
- char name[260];
- };
- struct __finddata64_t {
- unsigned attrib;
- __time64_t time_create;
- __time64_t time_access;
- __time64_t time_write;
- __MINGW_EXTENSION __int64 size;
- char name[260];
- };
- #ifdef _USE_32BIT_TIME_T
- #define _finddata_t _finddata32_t
- #define _finddatai64_t _finddata32i64_t
- #define _findfirst _findfirst32
- #define _findnext _findnext32
- #define _findfirsti64 _findfirst32i64
- #define _findnexti64 _findnext32i64
- #else
- #define _finddata_t _finddata64i32_t
- #define _finddatai64_t __finddata64_t
- #define _findfirst _findfirst64i32
- #define _findnext _findnext64i32
- #define _findfirsti64 _findfirst64
- #define _findnexti64 _findnext64
- #endif /* _USE_32BIT_TIME_T */
- #define _FINDDATA_T_DEFINED
- #endif /* _FINDDATA_T_DEFINED */
- #ifndef _WFINDDATA_T_DEFINED
- struct _wfinddata32_t {
- unsigned attrib;
- __time32_t time_create;
- __time32_t time_access;
- __time32_t time_write;
- _fsize_t size;
- wchar_t name[260];
- };
- struct _wfinddata32i64_t {
- unsigned attrib;
- __time32_t time_create;
- __time32_t time_access;
- __time32_t time_write;
- __MINGW_EXTENSION __int64 size;
- wchar_t name[260];
- };
- struct _wfinddata64i32_t {
- unsigned attrib;
- __time64_t time_create;
- __time64_t time_access;
- __time64_t time_write;
- _fsize_t size;
- wchar_t name[260];
- };
- struct _wfinddata64_t {
- unsigned attrib;
- __time64_t time_create;
- __time64_t time_access;
- __time64_t time_write;
- __MINGW_EXTENSION __int64 size;
- wchar_t name[260];
- };
- #ifdef _USE_32BIT_TIME_T
- #define _wfinddata_t _wfinddata32_t
- #define _wfinddatai64_t _wfinddata32i64_t
- #define _wfindfirst _wfindfirst32
- #define _wfindnext _wfindnext32
- #define _wfindfirst32i64 _wfindfirsti64
- #define _wfindnext32i64 _wfindnexti64
- #else
- #define _wfinddata_t _wfinddata64i32_t
- #define _wfinddatai64_t _wfinddata64_t
- #define _wfindfirst _wfindfirst64i32
- #define _wfindnext _wfindnext64i32
- #define _wfindfirsti64 _wfindfirst64
- #define _wfindnexti64 _wfindnext64
- #endif /* _USE_32BIT_TIME_T */
- #define _WFINDDATA_T_DEFINED
- #endif /* _WFINDDATA_T_DEFINED */
- #define _A_NORMAL 0x00
- #define _A_RDONLY 0x01
- #define _A_HIDDEN 0x02
- #define _A_SYSTEM 0x04
- #define _A_SUBDIR 0x10
- #define _A_ARCH 0x20
- #ifndef _SIZE_T_DEFINED
- #define _SIZE_T_DEFINED
- #undef size_t
- #ifdef _WIN64
- __MINGW_EXTENSION typedef unsigned __int64 size_t;
- #else
- typedef unsigned int size_t;
- #endif /* _WIN64 */
- #endif /* _SIZE_T_DEFINED */
- #ifndef _SSIZE_T_DEFINED
- #define _SSIZE_T_DEFINED
- #undef ssize_t
- #ifdef _WIN64
- __MINGW_EXTENSION typedef __int64 ssize_t;
- #else
- typedef int ssize_t;
- #endif /* _WIN64 */
- #endif /* _SSIZE_T_DEFINED */
- #include <_mingw_off_t.h>
- /* Some defines for _access nAccessMode (MS doesn't define them, but
- * it doesn't seem to hurt to add them). */
- #define F_OK 0 /* Check for file existence */
- #define X_OK 1 /* Check for execute permission. */
- #define W_OK 2 /* Check for write permission */
- #define R_OK 4 /* Check for read permission */
- _CRTIMP int __cdecl _access(const char *_Filename,int _AccessMode);
- _SECIMP errno_t __cdecl _access_s(const char *_Filename,int _AccessMode);
- _CRTIMP int __cdecl _chmod(const char *_Filename,int _Mode);
- _CRTIMP int __cdecl _chsize(int _FileHandle,long _Size) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
- _SECIMP errno_t __cdecl _chsize_s (int _FileHandle,__int64 _Size);
- _CRTIMP int __cdecl _close(int _FileHandle);
- _CRTIMP int __cdecl _commit(int _FileHandle);
- _CRTIMP int __cdecl _creat(const char *_Filename,int _PermissionMode) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
- _CRTIMP int __cdecl _dup(int _FileHandle);
- _CRTIMP int __cdecl _dup2(int _FileHandleSrc,int _FileHandleDst);
- _CRTIMP int __cdecl _eof(int _FileHandle);
- _CRTIMP long __cdecl _filelength(int _FileHandle);
- _CRTIMP intptr_t __cdecl _findfirst32(const char *_Filename,struct _finddata32_t *_FindData);
- _CRTIMP int __cdecl _findnext32(intptr_t _FindHandle,struct _finddata32_t *_FindData);
- _CRTIMP int __cdecl _findclose(intptr_t _FindHandle);
- _CRTIMP int __cdecl _isatty(int _FileHandle);
- _CRTIMP int __cdecl _locking(int _FileHandle,int _LockMode,long _NumOfBytes);
- _CRTIMP long __cdecl _lseek(int _FileHandle,long _Offset,int _Origin);
- _off64_t lseek64(int fd,_off64_t offset, int whence);
- _CRTIMP char *__cdecl _mktemp(char *_TemplateName) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
- _SECIMP errno_t __cdecl _mktemp_s (char *_TemplateName,size_t _Size);
- #ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
- _CRTIMP int __cdecl _pipe(int *_PtHandles,unsigned int _PipeSize,int _TextMode);
- #endif /* _CRT_USE_WINAPI_FAMILY_DESKTOP_APP */
- _CRTIMP int __cdecl _read(int _FileHandle,void *_DstBuf,unsigned int _MaxCharCount);
- #ifndef _CRT_DIRECTORY_DEFINED
- #define _CRT_DIRECTORY_DEFINED
- int __cdecl remove(const char *_Filename);
- int __cdecl rename(const char *_OldFilename,const char *_NewFilename);
- _CRTIMP int __cdecl _unlink(const char *_Filename);
- #ifndef NO_OLDNAMES
- int __cdecl unlink(const char *_Filename) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- #endif
- #endif
- _CRTIMP int __cdecl _setmode(int _FileHandle,int _Mode);
- _CRTIMP long __cdecl _tell(int _FileHandle);
- _CRTIMP int __cdecl _umask(int _Mode) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
- _SECIMP errno_t __cdecl _umask_s (int _NewMode,int *_OldMode);
- _CRTIMP int __cdecl _write(int _FileHandle,const void *_Buf,unsigned int _MaxCharCount);
- __MINGW_EXTENSION _CRTIMP __int64 __cdecl _filelengthi64(int _FileHandle);
- _CRTIMP intptr_t __cdecl _findfirst32i64(const char *_Filename,struct _finddata32i64_t *_FindData);
- _CRTIMP intptr_t __cdecl _findfirst64(const char *_Filename,struct __finddata64_t *_FindData);
- #ifdef __cplusplus
- #include <string.h>
- #endif
- intptr_t __cdecl _findfirst64i32(const char *_Filename,struct _finddata64i32_t *_FindData);
- #ifndef __CRT__NO_INLINE
- __CRT_INLINE intptr_t __cdecl _findfirst64i32(const char *_Filename,struct _finddata64i32_t *_FindData)
- {
- struct __finddata64_t fd;
- intptr_t ret = _findfirst64(_Filename,&fd);
- if (ret == -1) {
- memset(_FindData,0,sizeof(struct _finddata64i32_t));
- return -1;
- }
- _FindData->attrib=fd.attrib;
- _FindData->time_create=fd.time_create;
- _FindData->time_access=fd.time_access;
- _FindData->time_write=fd.time_write;
- _FindData->size=(_fsize_t) fd.size;
- strncpy(_FindData->name,fd.name,260);
- return ret;
- }
- #endif /* __CRT__NO_INLINE */
- _CRTIMP int __cdecl _findnext32i64(intptr_t _FindHandle,struct _finddata32i64_t *_FindData);
- _CRTIMP int __cdecl _findnext64(intptr_t _FindHandle,struct __finddata64_t *_FindData);
- int __cdecl _findnext64i32(intptr_t _FindHandle,struct _finddata64i32_t *_FindData);
- #ifndef __CRT__NO_INLINE
- __CRT_INLINE int __cdecl _findnext64i32(intptr_t _FindHandle,struct _finddata64i32_t *_FindData)
- {
- struct __finddata64_t fd;
- int __ret = _findnext64(_FindHandle,&fd);
- if (__ret == -1) {
- memset(_FindData,0,sizeof(struct _finddata64i32_t));
- return -1;
- }
- _FindData->attrib=fd.attrib;
- _FindData->time_create=fd.time_create;
- _FindData->time_access=fd.time_access;
- _FindData->time_write=fd.time_write;
- _FindData->size=(_fsize_t) fd.size;
- strncpy(_FindData->name,fd.name,260);
- return __ret;
- }
- #endif /* __CRT__NO_INLINE */
- __MINGW_EXTENSION __int64 __cdecl _lseeki64(int _FileHandle,__int64 _Offset,int _Origin);
- __MINGW_EXTENSION __int64 __cdecl _telli64(int _FileHandle);
- #ifndef NO_OLDNAMES
- #ifndef _UWIN
- int __cdecl chdir (const char *) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- char *__cdecl getcwd (char *, int) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl mkdir (const char *) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- char *__cdecl mktemp(char *) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl rmdir (const char*) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl chmod (const char *, int) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- #endif /* _UWIN */
- #endif /* Not NO_OLDNAMES */
- _SECIMP errno_t __cdecl _sopen_s(int *_FileHandle,const char *_Filename,int _OpenFlag,int _ShareFlag,int _PermissionMode);
- _CRTIMP int __cdecl _open(const char *_Filename,int _OpenFlag,...) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
- _CRTIMP int __cdecl _sopen(const char *_Filename,int _OpenFlag,int _ShareFlag,...) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
- #ifndef _WIO_DEFINED
- #define _WIO_DEFINED
- _CRTIMP int __cdecl _waccess(const wchar_t *_Filename,int _AccessMode);
- _SECIMP errno_t __cdecl _waccess_s (const wchar_t *_Filename,int _AccessMode);
- _CRTIMP int __cdecl _wchmod(const wchar_t *_Filename,int _Mode);
- _CRTIMP int __cdecl _wcreat(const wchar_t *_Filename,int _PermissionMode) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
- _CRTIMP intptr_t __cdecl _wfindfirst32(const wchar_t *_Filename,struct _wfinddata32_t *_FindData);
- _CRTIMP int __cdecl _wfindnext32(intptr_t _FindHandle,struct _wfinddata32_t *_FindData);
- _CRTIMP int __cdecl _wunlink(const wchar_t *_Filename);
- _CRTIMP int __cdecl _wrename(const wchar_t *_OldFilename,const wchar_t *_NewFilename);
- _CRTIMP wchar_t *__cdecl _wmktemp(wchar_t *_TemplateName) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
- _SECIMP errno_t __cdecl _wmktemp_s (wchar_t *_TemplateName, size_t _SizeInWords);
- _CRTIMP intptr_t __cdecl _wfindfirst32i64(const wchar_t *_Filename,struct _wfinddata32i64_t *_FindData);
- intptr_t __cdecl _wfindfirst64i32(const wchar_t *_Filename,struct _wfinddata64i32_t *_FindData);
- _CRTIMP intptr_t __cdecl _wfindfirst64(const wchar_t *_Filename,struct _wfinddata64_t *_FindData);
- _CRTIMP int __cdecl _wfindnext32i64(intptr_t _FindHandle,struct _wfinddata32i64_t *_FindData);
- int __cdecl _wfindnext64i32(intptr_t _FindHandle,struct _wfinddata64i32_t *_FindData);
- _CRTIMP int __cdecl _wfindnext64(intptr_t _FindHandle,struct _wfinddata64_t *_FindData);
- _CRTIMP errno_t __cdecl _wsopen_s(int *_FileHandle,const wchar_t *_Filename,int _OpenFlag,int _ShareFlag,int _PermissionFlag);
- _CRTIMP int __cdecl _wopen(const wchar_t *_Filename,int _OpenFlag,...) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
- _CRTIMP int __cdecl _wsopen(const wchar_t *_Filename,int _OpenFlag,int _ShareFlag,...) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
- #endif
- int __cdecl __lock_fhandle(int _Filehandle);
- void __cdecl _unlock_fhandle(int _Filehandle);
- _CRTIMP intptr_t __cdecl _get_osfhandle(int _FileHandle);
- _CRTIMP int __cdecl _open_osfhandle(intptr_t _OSFileHandle,int _Flags);
- #ifndef NO_OLDNAMES
- int __cdecl access(const char *_Filename,int _AccessMode) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl chmod(const char *_Filename,int _AccessMode) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl chsize(int _FileHandle,long _Size) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl close(int _FileHandle) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl creat(const char *_Filename,int _PermissionMode) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl dup(int _FileHandle) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl dup2(int _FileHandleSrc,int _FileHandleDst) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl eof(int _FileHandle) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- long __cdecl filelength(int _FileHandle) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl isatty(int _FileHandle) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl locking(int _FileHandle,int _LockMode,long _NumOfBytes) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- long __cdecl lseek(int _FileHandle,long _Offset,int _Origin) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- char *__cdecl mktemp(char *_TemplateName) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl open(const char *_Filename,int _OpenFlag,...) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl read(int _FileHandle,void *_DstBuf,unsigned int _MaxCharCount) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl setmode(int _FileHandle,int _Mode) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl sopen(const char *_Filename,int _OpenFlag,int _ShareFlag,...) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- long __cdecl tell(int _FileHandle) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl umask(int _Mode) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- int __cdecl write(int _Filehandle,const void *_Buf,unsigned int _MaxCharCount) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
- #endif
- #ifndef _FILE_OFFSET_BITS_SET_LSEEK
- #define _FILE_OFFSET_BITS_SET_LSEEK
- #if (defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64))
- #define lseek lseek64
- #endif /* (defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)) */
- #endif /* _FILE_OFFSET_BITS_SET_LSEEK */
- #ifdef _POSIX
- /* Misc stuff */
- char *getlogin(void);
- #ifdef __USE_MINGW_ALARM
- unsigned int alarm(unsigned int seconds);
- #endif
- #endif
- #ifdef __USE_MINGW_ACCESS
- /* Old versions of MSVCRT access() just ignored X_OK, while the version
- shipped with Vista, returns an error code. This will restore the
- old behaviour */
- int __cdecl __mingw_access (const char *__fname, int __mode);
- #define access(__f,__m) __mingw_access (__f, __m)
- #endif
- #if __MINGW_FORTIFY_LEVEL > 0
- _CRTIMP int __cdecl __mingw_call__read(int, void *, unsigned int) __MINGW_ASM_CRT_CALL(_read);
- __mingw_bos_extern_ovr
- int _read(int __fh, void * __dst, unsigned int __n)
- {
- __mingw_bos_ptr_chk_warn(__dst, __n, 0);
- return __mingw_call__read(__fh, __dst, __n);
- }
- #ifndef NO_OLDNAMES
- __mingw_bos_extern_ovr
- int read(int __fh, void * __dst, unsigned int __n)
- {
- return _read(__fh, __dst, __n);
- }
- #endif
- #if __MINGW_FORTIFY_VA_ARG
- #define _O_CREAT 0x0100
- _CRTIMP int __cdecl __mingw_call__open(const char *, int, ...) __MINGW_ASM_CRT_CALL(_open);
- _CRTIMP int __cdecl __mingw_call__open_warn_toomany(const char *, int, ...) __MINGW_ASM_CRT_CALL(_open)
- __attribute__((__warning__("_open(): too many arguments")));
- _CRTIMP int __cdecl __mingw_call__open_warn_missing(const char *, int, ...) __MINGW_ASM_CRT_CALL(_open)
- __attribute__((__warning__("_open(..._O_CREAT...): missing argument")));
- __mingw_bos_extern_ovr
- int _open(const char * __filename, int __flags, ...)
- {
- if (__builtin_va_arg_pack_len() > 1)
- return __mingw_call__open_warn_toomany(__filename, __flags, __builtin_va_arg_pack());
- if (__builtin_va_arg_pack_len() < 1 && __builtin_constant_p(__flags) && (__flags & _O_CREAT))
- return __mingw_call__open_warn_missing(__filename, __flags, 0);
- if (__builtin_va_arg_pack_len() < 1)
- return __mingw_call__open(__filename, __flags, 0);
- return __mingw_call__open(__filename, __flags, __builtin_va_arg_pack());
- }
- _CRTIMP int __cdecl __mingw_call__sopen(const char *, int, int, ...) __MINGW_ASM_CRT_CALL(_sopen);
- _CRTIMP int __cdecl __mingw_call__sopen_warn_toomany(const char *, int, int, ...) __MINGW_ASM_CRT_CALL(_sopen)
- __attribute__((__warning__("_sopen(): too many arguments")));
- _CRTIMP int __cdecl __mingw_call__sopen_warn_missing(const char *, int, int, ...) __MINGW_ASM_CRT_CALL(_sopen)
- __attribute__((__warning__("_sopen(..._O_CREAT...): missing argument")));
- __mingw_bos_extern_ovr
- int _sopen(const char * __filename, int __flags, int __share, ...)
- {
- if (__builtin_va_arg_pack_len() > 1)
- return __mingw_call__sopen_warn_toomany(__filename, __flags, __share, __builtin_va_arg_pack());
- if (__builtin_va_arg_pack_len() < 1 && __builtin_constant_p(__flags) && (__flags & _O_CREAT))
- return __mingw_call__sopen_warn_missing(__filename, __flags, __share, 0);
- if (__builtin_va_arg_pack_len() < 1)
- return __mingw_call__sopen(__filename, __flags, __share, 0);
- return __mingw_call__sopen(__filename, __flags, __share, __builtin_va_arg_pack());
- }
- _CRTIMP int __cdecl __mingw_call__wopen(const wchar_t *, int, ...) __MINGW_ASM_CRT_CALL(_wopen);
- _CRTIMP int __cdecl __mingw_call__wopen_warn_toomany(const wchar_t *, int, ...) __MINGW_ASM_CRT_CALL(_wopen)
- __attribute__((__warning__("_wopen(): too many arguments")));
- _CRTIMP int __cdecl __mingw_call__wopen_warn_missing(const wchar_t *, int, ...) __MINGW_ASM_CRT_CALL(_wopen)
- __attribute__((__warning__("_wopen(..._O_CREAT...): missing argument")));
- __mingw_bos_extern_ovr
- int _wopen(const wchar_t * __filename, int __flags, ...)
- {
- if (__builtin_va_arg_pack_len() > 1)
- return __mingw_call__wopen_warn_toomany(__filename, __flags, __builtin_va_arg_pack());
- if (__builtin_va_arg_pack_len() < 1 && __builtin_constant_p(__flags) && (__flags & _O_CREAT))
- return __mingw_call__wopen_warn_missing(__filename, __flags, 0);
- if (__builtin_va_arg_pack_len() < 1)
- return __mingw_call__wopen(__filename, __flags, 0);
- return __mingw_call__wopen(__filename, __flags, __builtin_va_arg_pack());
- }
- _CRTIMP int __cdecl __mingw_call__wsopen(const wchar_t *, int, int, ...) __MINGW_ASM_CRT_CALL(_wsopen);
- _CRTIMP int __cdecl __mingw_call__wsopen_warn_toomany(const wchar_t *, int, int, ...) __MINGW_ASM_CRT_CALL(_wsopen)
- __attribute__((__warning__("_wsopen(): too many arguments")));
- _CRTIMP int __cdecl __mingw_call__wsopen_warn_missing(const wchar_t *, int, int, ...) __MINGW_ASM_CRT_CALL(_wsopen)
- __attribute__((__warning__("_wsopen(..._O_CREAT...): missing argument")));
- __mingw_bos_extern_ovr
- int _wsopen(const wchar_t * __filename, int __flags, int __share, ...)
- {
- if (__builtin_va_arg_pack_len() > 1)
- return __mingw_call__wsopen_warn_toomany(__filename, __flags, __share, __builtin_va_arg_pack());
- if (__builtin_va_arg_pack_len() < 1 && __builtin_constant_p(__flags) && (__flags & _O_CREAT))
- return __mingw_call__wsopen_warn_missing(__filename, __flags, __share, 0);
- if (__builtin_va_arg_pack_len() < 1)
- return __mingw_call__wsopen(__filename, __flags, __share, 0);
- return __mingw_call__wsopen(__filename, __flags, __share, __builtin_va_arg_pack());
- }
- #ifndef NO_OLDNAMES
- __mingw_bos_extern_ovr
- int open(const char * __filename, int __flags, ...)
- {
- return _open(__filename, __flags, __builtin_va_arg_pack());
- }
- __mingw_bos_extern_ovr
- int sopen(const char * __filename, int __flags, int __share, ...)
- {
- return _sopen(__filename, __flags, __share, __builtin_va_arg_pack());
- }
- #endif
- #endif /* __MINGW_FORTIFY_VA_ARG */
- #endif /* __MINGW_FORTIFY_LEVEL > 0 */
- #ifdef __cplusplus
- }
- #endif
- #pragma pack(pop)
- #endif /* End _IO_H_ */
|