ReportDiscoveredTargets2_OUT structure (iscsifnd.h)

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

Syntax

typedef struct _ReportDiscoveredTargets2_OUT {
  ULONG                   Status;
  ULONG                   TargetCount;
  ISCSI_DiscoveredTarget2 Targets[1];
} ReportDiscoveredTargets2_OUT, *PReportDiscoveredTargets2_OUT;

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[1]

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

Remarks

You must implement this method.

Requirements

Requirement Value
Header iscsifnd.h (include Iscsifnd.h)

See also

ISCSI_DiscoveredTarget2

ISCSI_STATUS_QUALIFIERS

ReportDiscoveredTargets2