ScsiReportLuns_IN - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-hbapiwmi-_scsireportluns_in)

ScsiReportLuns_IN structure (hbapiwmi.h)

Description

The ScsiReportLuns_IN structure is used to deliver input parameter data to the ScsiReportLuns WMI method.

Members

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.

Remarks

The WMI tool suite generates a declaration of the ScsiReportLuns_IN structure in Hbapiwmi.h when it compiles the MSFC_HBAAdapterMethods WMI Class.

See also

ScsiReportLuns


Windows Driver Kit DDI reference (ns-iscsiop-_scsireportluns_in)

_ScsiReportLuns_IN structure (iscsiop.h)

Description

The ScsiReportLuns_IN structure holds the input data for the ScsiReportLuns method.

Members

UniqueSessionId

A 64-bit integer that uniquely identifies the session. The LoginToTarget and AddConnectionToSession methods both return this value in their UniqueSessionId parameter.

Remarks

You must implement this method.

See also

AddConnectionToSession

LoginToTarget

ScsiReportLuns

ScsiReportLuns_OUT