// scsi.h
typedef struct {
PRI_FULL_STATUS_DESCRIPTOR_HEADER Header;
UCHAR TransportID[ANYSIZE_ARRAY];
} PRI_FULL_STATUS_DESCRIPTOR, *PPRI_FULL_STATUS_DESCRIPTOR;
View the official Windows Driver Kit DDI reference// storport.h
typedef struct {
PRI_FULL_STATUS_DESCRIPTOR_HEADER Header;
UCHAR TransportID[ANYSIZE_ARRAY];
} PRI_FULL_STATUS_DESCRIPTOR, *PPRI_FULL_STATUS_DESCRIPTOR;
View the official Windows Driver Kit DDI referenceNo description available.
The PRI_FULL_STATUS_DESCRIPTOR structure is used to construct the PRI_FULL_STATUS_LIST structure that is returned in response to a Persistent Reserve In command with ServiceAction=RESERVATION_ACTION_READ_FULL_STATUS.
HeaderContains the PRI_FULL_STATUS_DESCRIPTOR_HEADER structure.
TransportID[ANYSIZE_ARRAY]The TransportID identifies the SCSI initiator port that is described by this full status descriptor.
The IOCTL_STORAGE_PERSISTENT_RESERVE_IN request is used to obtain information about persistent reservations and reservation keys that are active within a device server.
The PRI_FULL_STATUS_DESCRIPTOR structure is used to construct the PRI_FULL_STATUS_LIST structure that is returned in response to a Persistent Reserve In command with ServiceAction=RESERVATION_ACTION_READ_FULL_STATUS.
HeaderContains the PRI_FULL_STATUS_DESCRIPTOR_HEADER structure.
TransportID[ANYSIZE_ARRAY]The TransportID identifies the initiator port that is described by this full status descriptor.
The IOCTL_STORAGE_PERSISTENT_RESERVE_IN request is used to obtain information about persistent reservations and reservation keys that are active within a device server.