ReportDiscoveredTargets2_OUT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// iscsifnd.h

typedef struct _ReportDiscoveredTargets2_OUT {
  ULONG                   Status;
  ULONG                   TargetCount;
  ISCSI_DiscoveredTarget2 Targets[1];
} ReportDiscoveredTargets2_OUT, *PReportDiscoveredTargets2_OUT;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-iscsifnd-_reportdiscoveredtargets2_out)

_ReportDiscoveredTargets2_OUT structure

Description

The ReportDiscoveredTargets2_OUT structure holds the output data for the ReportDiscoveredTargets2 method.

Members

Status

On output, the status of the ReportDiscoveredTargets operation. For a list of status qualifiers, see ISCSI_STATUS_QUALIFIERS.

TargetCount

On output, the number of targets that are discovered.

Targets

On output, an array of ISCSI_DiscoveredTarget2 structures, which provide information that is related to discovered targets.

Remarks

You must implement this method.

See also

ISCSI_DiscoveredTarget2

ISCSI_STATUS_QUALIFIERS

ReportDiscoveredTargets2