From 71eed46e425e1ff9dbdbe17d9f5317cd3f8e83f9 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Wed, 3 Feb 2016 16:25:24 -0800 Subject: [PATCH] inc: fsctl.h --- inc/winfsp/fsctl.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/inc/winfsp/fsctl.h b/inc/winfsp/fsctl.h index 81df38da..5107ba70 100644 --- a/inc/winfsp/fsctl.h +++ b/inc/winfsp/fsctl.h @@ -195,6 +195,27 @@ typedef struct { UINT64 AllocationSize; } Allocation; + struct + { + UINT32 FileAttributes; + UINT64 CreationTime; + UINT64 LastAccessTime; + UINT64 LastWriteTime; + } Basic; + struct + { + UINT32 Delete:1; + } Disposition; + struct + { + UINT64 FileSize; + UINT32 AdvanceOnly:1; + } EndOfFile; + struct + { + FSP_FSCTL_TRANSACT_BUF NewFileName; + UINT32 ReplaceIfExists:1; + } Rename; } Info; } SetInformation; } Req;