Robert Wilhelm : include: Add struct _stat32i64 and struct _stat64i32.

Alexandre Julliard julliard at winehq.org
Wed May 26 11:49:08 CDT 2010


Module: wine
Branch: master
Commit: b3429e883c8977ceb3df6660d38b24d7d5cfbc16
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b3429e883c8977ceb3df6660d38b24d7d5cfbc16

Author: Robert Wilhelm <robert.wilhelm at gmx.net>
Date:   Wed May 26 10:13:31 2010 +0200

include: Add struct _stat32i64 and struct _stat64i32.

---

 include/msvcrt/sys/stat.h |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/include/msvcrt/sys/stat.h b/include/msvcrt/sys/stat.h
index 1712788..9362d2d 100644
--- a/include/msvcrt/sys/stat.h
+++ b/include/msvcrt/sys/stat.h
@@ -83,6 +83,34 @@ struct stat {
   time_t st_ctime;
 };
 
+struct _stat32i64 {
+  _dev_t st_dev;
+  _ino_t st_ino;
+  unsigned short st_mode;
+  short st_nlink;
+  short st_uid;
+  short st_gid;
+  _dev_t st_rdev;
+  __int64 DECLSPEC_ALIGN(8) st_size;
+  time_t st_atime;
+  time_t st_mtime;
+  time_t st_ctime;
+};
+
+struct _stat64i32 {
+  _dev_t st_dev;
+  _ino_t st_ino;
+  unsigned short st_mode;
+  short st_nlink;
+  short st_uid;
+  short st_gid;
+  _dev_t st_rdev;
+  _off_t st_size;
+  __time64_t st_atime;
+  __time64_t st_mtime;
+  __time64_t st_ctime;
+};
+
 struct _stati64 {
   _dev_t st_dev;
   _ino_t st_ino;




More information about the wine-cvs mailing list