From fc16cbe77008565fdbab4a36aaa810885095c670 Mon Sep 17 00:00:00 2001 From: Michael Veksler Date: Sun, 11 Apr 1999 12:11:48 +0000 Subject: [PATCH] Introduce STATSTG16 - a 16 bit variant of STATSTG. --- include/wine/obj_storage.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/include/wine/obj_storage.h b/include/wine/obj_storage.h index 090e24a0972..dd37ca71aac 100644 --- a/include/wine/obj_storage.h +++ b/include/wine/obj_storage.h @@ -41,6 +41,20 @@ typedef struct tagSTATSTG { DWORD reserved; } STATSTG; +typedef struct tagSTATSTG16 { + LPOLESTR16 pwcsName; + DWORD type; + ULARGE_INTEGER cbSize; + FILETIME mtime; + FILETIME ctime; + FILETIME atime; + DWORD grfMode; + DWORD grfLocksSupported; + CLSID clsid; + DWORD grfStateBits; + DWORD reserved; +} STATSTG16; + typedef LPOLESTR16 *SNB16; typedef LPOLESTR *SNB;