// ntddstor.h
typedef struct _STORAGE_PROPERTY_SET {
STORAGE_PROPERTY_ID PropertyId;
STORAGE_SET_TYPE SetType;
UCHAR AdditionalParameters[1];
} STORAGE_PROPERTY_SET, *PSTORAGE_PROPERTY_SET;
View the official Windows Driver Kit DDI referenceNo description available.
The STORAGE_PROPERTY_SET structure describes the details of the property set associated with IOCTL_STORAGE_SET_PROPERTY.
PropertyIdA STORAGE_PROPERTY_ID enum value that specifies which property is being set. Currently, should be set to StorageAdapterProtocolSpecificProperty.
SetTypeA STORAGE_SET_TYPE enum value that describes the type of set operation being performed.
AdditionalParametersSpace for additional parameters if necessary, depending on PropertyId.