Define stat in msvcrt/wchar.h.

This commit is contained in:
Felix Nawothnig 2004-03-25 00:10:06 +00:00 committed by Alexandre Julliard
parent a122499a98
commit 4b2edce840
1 changed files with 14 additions and 0 deletions

View File

@ -167,6 +167,20 @@ struct MSVCRT(_stat) {
MSVCRT(time_t) st_ctime;
};
struct MSVCRT(stat) {
MSVCRT(_dev_t) st_dev;
MSVCRT(_ino_t) st_ino;
unsigned short st_mode;
short st_nlink;
short st_uid;
short st_gid;
MSVCRT(_dev_t) st_rdev;
MSVCRT(_off_t) st_size;
MSVCRT(time_t) st_atime;
MSVCRT(time_t) st_mtime;
MSVCRT(time_t) st_ctime;
};
struct MSVCRT(_stati64) {
MSVCRT(_dev_t) st_dev;
MSVCRT(_ino_t) st_ino;