// scsi.h
typedef struct _PHYSICAL_ELEMENT_STATUS_PARAMETER_DATA {
UCHAR DescriptorCount[4];
UCHAR ReturnedDescriptorCount[4];
UCHAR ElementIdentifierBeingDepoped[4];
UCHAR Reserved[20];
PHYSICAL_ELEMENT_STATUS_DATA_DESCRIPTOR Descriptors[ANYSIZE_ARRAY];
} PHYSICAL_ELEMENT_STATUS_PARAMETER_DATA, *PPHYSICAL_ELEMENT_STATUS_PARAMETER_DATA;
View the official Windows Driver Kit DDI referenceNo description available.
The PHYSICAL_ELEMENT_STATUS_PARAMETER_DATA structure contains the parameter data for a physical element.
DescriptorCountSpecifies the number of descriptors in the element descriptors list given as input in PHYSICAL_ELEMENT_STATUS_REQUEST.
ReturnedDescriptorCountSpecifies the number of valid descriptors returned.
ElementIdentifierBeingDepopedSpecifies the element identifier of a de-popped descriptor.
ReservedReserved for future use.
DescriptorsThe valid descriptors sorted in ascending order based on the element identifier.
PHYSICAL_ELEMENT_STATUS_REQUEST
PHYSICAL_ELEMENT_STATUS_DATA_DESCRIPTOR