sys, dll: add AllocationSize, FileSize in Response::Rsp::Create::Opened

This commit is contained in:
Bill Zissimopoulos
2016-01-04 14:09:17 -08:00
parent d88831bd33
commit 30662ac9fa
4 changed files with 17 additions and 4 deletions

View File

@@ -28,7 +28,13 @@ typedef struct _FSP_FILE_SYSTEM FSP_FILE_SYSTEM;
typedef struct _FSP_FILE_NODE
{
PVOID UserContext;
DWORD Flags;
UINT64 AllocationSize;
UINT64 FileSize;
struct
{
BOOLEAN DeleteOnClose:1;
BOOLEAN DeletePending:1;
} Flags;
struct
{
ULONG OpenCount;