// iscsifnd.h
typedef struct _ReportDiscoveredTargets_OUT {
ULONG Status;
ULONG TargetCount;
ISCSI_DiscoveredTarget Targets[1];
} ReportDiscoveredTargets_OUT, *PReportDiscoveredTargets_OUT;
View the official Windows Driver Kit DDI referenceNo description available.
The ReportDiscoveredTargets_OUT structure holds the output data for the ReportDiscoveredTargets method.
StatusOn output, the status of the ReportDiscoveredTargets operation. For a list of status qualifiers, see ISCSI_STATUS_QUALIFIERS.
TargetCountOn output, the number of targets that are discovered.
TargetsOn output, an array of ISCSI_DiscoveredTarget structures, which provide information that is related to discovered targets.
You must implement this method.