// hbapiwmi.h
typedef struct _ScsiReportLuns_IN {
UCHAR Cdb[12];
UCHAR HbaPortWWN[8];
UCHAR DiscoveredPortWWN[8];
} ScsiReportLuns_IN, *PScsiReportLuns_IN;
View the official Windows Driver Kit DDI reference// iscsiop.h
typedef struct _ScsiReportLuns_IN {
ULONGLONG UniqueSessionId;
} ScsiReportLuns_IN, *PScsiReportLuns_IN;
View the official Windows Driver Kit DDI referenceNo description available.
The ScsiReportLuns_IN structure is used to deliver input parameter data to the ScsiReportLuns WMI method.
Cdb[12]Contains the command descriptor block that holds the SCSI report LUNs command to be sent to the target device.
HbaPortWWN[8]Contains a worldwise name for the HBA through which the target is accessed.
DiscoveredPortWWN[8]Contains a worldwide name for the port through which the target device is accessed.
The WMI tool suite generates a declaration of the ScsiReportLuns_IN structure in Hbapiwmi.h when it compiles the MSFC_HBAAdapterMethods WMI Class.
The ScsiReportLuns_IN structure holds the input data for the ScsiReportLuns method.
UniqueSessionIdA 64-bit integer that uniquely identifies the session. The LoginToTarget and AddConnectionToSession methods both return this value in their UniqueSessionId parameter.
You must implement this method.