#include <crtdefs.h>
#include <sys/types.h>
Go to the source code of this file.
Data Structures |
| struct | _stat32 |
| struct | _stat |
| struct | stat |
Defines |
| #define | _STAT_DEFINED |
| #define | __stat64 _stat64 |
| #define | _S_IFMT 0xF000 |
| #define | _S_IFDIR 0x4000 |
| #define | _S_IFCHR 0x2000 |
| #define | _S_IFIFO 0x1000 |
| #define | _S_IFREG 0x8000 |
| #define | _S_IREAD 0x0100 |
| #define | _S_IWRITE 0x0080 |
| #define | _S_IEXEC 0x0040 |
| #define | _WSTAT_DEFINED |
| #define | _fstat64i32 _fstat |
| #define | _S_IFBLK 0x3000 /* Block: Is this ever set under w32? */ |
| #define | S_IFMT _S_IFMT |
| #define | S_IFDIR _S_IFDIR |
| #define | S_IFCHR _S_IFCHR |
| #define | S_IFREG _S_IFREG |
| #define | S_IREAD _S_IREAD |
| #define | S_IWRITE _S_IWRITE |
| #define | S_IEXEC _S_IEXEC |
| #define | S_IFIFO _S_IFIFO |
| #define | S_IFBLK _S_IFBLK |
| #define | _S_IRWXU (_S_IREAD | _S_IWRITE | _S_IEXEC) |
| #define | _S_IXUSR _S_IEXEC |
| #define | _S_IWUSR _S_IWRITE |
| #define | S_IRWXU _S_IRWXU |
| #define | S_IXUSR _S_IXUSR |
| #define | S_IWUSR _S_IWUSR |
| #define | S_IRUSR _S_IRUSR |
| #define | _S_IRUSR _S_IREAD |
| #define | S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) |
| #define | S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) |
| #define | S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) |
| #define | S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) |
| #define | S_ISREG(m) (((m) & S_IFMT) == S_IFREG) |
Functions |
| _CRTIMP int __cdecl | _fstat (int _FileDes, struct _stat *_Stat) |
| _CRTIMP int __cdecl | _fstat32 (int _FileDes, struct _stat32 *_Stat) |
| _CRTIMP int __cdecl | _stat (const char *_Name, struct _stat *_Stat) |
| _CRTIMP int __cdecl | _stat32 (const char *_Name, struct _stat32 *_Stat) |
| _CRTIMP int __cdecl | _wstat (const wchar_t *_Name, struct _stat *_Stat) |
| _CRTIMP int __cdecl | _wstat32 (const wchar_t *_Name, struct _stat32 *_Stat) |
| __CRT_INLINE int __cdecl | _fstat32i64 (int _FileDes, struct _stat32i64 *_Stat) |
| _CRTIMP int __cdecl | stat (const char *_Filename, struct stat *_Stat) |
| _CRTIMP int __cdecl | fstat (int _Desc, struct stat *_Stat) |
| _CRTIMP int __cdecl | wstat (const wchar_t *_Filename, struct stat *_Stat) |