// winioctl.h
typedef struct _FSCTL_QUERY_REGION_INFO_INPUT {
DWORD Version;
DWORD Size;
DWORD Flags;
DWORD NumberOfTierIds;
GUID TierIds[ANYSIZE_ARRAY];
} FSCTL_QUERY_REGION_INFO_INPUT, *PFSCTL_QUERY_REGION_INFO_INPUT;
View the official Win32 API referenceNo description available.
Contains the storage tier regions from the storage stack for a particular volume.
VersionThe size of this structure serves as the version. Set it to sizeof(FSCTL_QUERY_REGION_INFO_INPUT).
SizeThe size of this structure in bytes.
FlagsReserved for future use.
NumberOfTierIdsNumber of entries in TierIds, 0 to request IDs for the entire volume.
TierIdsArray of storage tiers (represented by GUID values) for which to return information.