// mpiowmi.h
typedef struct _SCSI_ADDR {
UCHAR PortNumber;
UCHAR ScsiPathId;
UCHAR TargetId;
UCHAR Lun;
} SCSI_ADDR, *PSCSI_ADDR;
View the official Windows Driver Kit DDI referenceNo description available.
The SCSI_ADDR structure represents 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.