// mpiodisk.h
typedef struct _PDOSCSI_ADDR {
UCHAR PortNumber;
UCHAR ScsiPathId;
UCHAR TargetId;
UCHAR Lun;
} PDOSCSI_ADDR, *PPDOSCSI_ADDR;
View the official Windows Driver Kit DDI referenceNo description available.
The PDOSCSI_ADDR structure is used to represent a SCSI address.
PortNumberAn unsigned 8-bitfield that represents the PortNumber as defined by the SCSI_ADDRESS structure in Ntddscsi.h.
ScsiPathIdAn unsigned 8-bitfield that represents the PathId as defined by the SCSI_ADDRESS structure in Ntddscsi.h.
TargetIdAn unsigned 8-bitfield that represents the TargetId as defined by the SCSI_ADDRESS structure in Ntddscsi.h.
LunAn unsigned 8-bitfield that represents the Lun as defined by the SCSI_ADDRESS structure in Ntddscsi.h.