sys: IRP_MJ_SET_INFORMATION

This commit is contained in:
Bill Zissimopoulos
2016-01-26 11:05:36 -08:00
parent a889451345
commit 976c054d06
6 changed files with 313 additions and 35 deletions

View File

@ -184,6 +184,19 @@ typedef struct
UINT64 UserContext;
UINT64 UserContext2;
} QueryInformation;
struct
{
UINT64 UserContext;
UINT64 UserContext2;
UINT32 FileInformationClass;
union
{
struct
{
UINT64 AllocationSize;
} Allocation;
} Info;
} SetInformation;
} Req;
FSP_FSCTL_TRANSACT_BUF FileName;
FSP_FSCTL_DECLSPEC_ALIGN UINT8 Buffer[];
@ -226,6 +239,10 @@ typedef struct
FSP_FSCTL_FILE_INFO FileInfo;
} QueryInformation;
struct
{
FSP_FSCTL_FILE_INFO FileInfo;
} SetInformation;
struct
{
FSP_FSCTL_VOLUME_INFO VolumeInfo;
} QueryVolumeInformation;