Module: wine Branch: master Commit: 507ec2a4156364aeb2746d233c5dd27cffa34acc URL: http://source.winehq.org/git/wine.git/?a=commit;h=507ec2a4156364aeb2746d233c...
Author: Detlef Riekenberg wine.dev@web.de Date: Wed Jan 26 05:23:52 2011 +0100
include: Add missing _stat64i32 / _stat32i64.
---
include/msvcrt/wchar.h | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/include/msvcrt/wchar.h b/include/msvcrt/wchar.h index 21f2b3f..eab28b7 100644 --- a/include/msvcrt/wchar.h +++ b/include/msvcrt/wchar.h @@ -162,6 +162,34 @@ struct _stat32 { __time32_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;