// ntddstor.h
typedef struct _STORAGE_PROTOCOL_DATA_DESCRIPTOR_EXT {
ULONG Version;
ULONG Size;
STORAGE_PROTOCOL_SPECIFIC_DATA_EXT ProtocolSpecificData;
} STORAGE_PROTOCOL_DATA_DESCRIPTOR_EXT, *PSTORAGE_PROTOCOL_DATA_DESCRIPTOR_EXT;
View the official Windows Driver Kit DDI referenceNo description available.
This structure is used in conjunction with IOCTL_STORAGE_QUERY_PROPERTY and IOCTL_STORAGE_SET_PROPERTY to respectively return and set protocol-specific data from a storage device or adapter.
VersionVersion of this structure. Set this to be sizeof(STORAGE_PROTOCOL_DATA_DESCRIPTOR_EXT).
SizeSize, in bytes, of the buffer containing the descriptor, including the space for all protocol data. Must be >= sizeof(STORAGE_PROTOCOL_DATA_DESCRIPTOR_EXT).
ProtocolSpecificDataSTORAGE_PROTOCOL_SPECIFIC_DATA_EXT structure that contains the protocol-specific data.
STORAGE_PROTOCOL_SPECIFIC_DATA_EXT