Introduce STATSTG16 - a 16 bit variant of STATSTG.

oldstable
Michael Veksler 1999-04-11 12:11:48 +00:00 committed by Alexandre Julliard
parent 2ff8485bf9
commit fc16cbe770
1 changed files with 14 additions and 0 deletions

View File

@ -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;