#ifndef _NTIOAPI_H
typedef struct _FILE_FS_CONTROL_INFORMATION
{
LARGE_INTEGER FreeSpaceStartFiltering;
LARGE_INTEGER FreeSpaceThreshold;
LARGE_INTEGER FreeSpaceStopFiltering;
LARGE_INTEGER DefaultQuotaThreshold;
LARGE_INTEGER DefaultQuotaLimit;
ULONG FileSystemControlFlags; // FILE_VC_*
} FILE_FS_CONTROL_INFORMATION, *PFILE_FS_CONTROL_INFORMATION;
View code on GitHub
This structure is documented in Windows Driver Kit.
Structure FILE_FS_CONTROL_INFORMATION
is user as input and output buffers in calls to NtQueryVolumeInformationFile
and NtSetVolumeInformationFile
with information class set to FileFsControlInformation
.