// ntddstor.h
typedef struct _DEVICE_WRITE_AGGREGATION_DESCRIPTOR {
ULONG Version;
ULONG Size;
BOOLEAN BenefitsFromWriteAggregation;
} DEVICE_WRITE_AGGREGATION_DESCRIPTOR, *PDEVICE_WRITE_AGGREGATION_DESCRIPTOR;
View the official Windows Driver Kit DDI reference// winioctl.h
typedef struct _DEVICE_WRITE_AGGREGATION_DESCRIPTOR {
DWORD Version;
DWORD Size;
BOOLEAN BenefitsFromWriteAggregation;
} DEVICE_WRITE_AGGREGATION_DESCRIPTOR, *PDEVICE_WRITE_AGGREGATION_DESCRIPTOR;
View the official Win32 API referenceNo description available.
Reserved for system use.
VersionContains the size, in bytes, of this structure. The value of this member will change as members are added to the structure.
SizeSpecifies the total size of the descriptor, in bytes.
BenefitsFromWriteAggregationTRUE if the device benefits from write aggregation.
Reserved for system use.
VersionContains the size, in bytes, of this structure. The value of this member will change as members are added to the structure.
SizeSpecifies the total size of the descriptor, in bytes.
BenefitsFromWriteAggregationTRUE if the device benefits from write aggregation.