// iscsidef.h
typedef struct _ISCSI_TargetPortalGroup {
ULONG PortalCount;
ISCSI_TargetPortal Portals[1];
} ISCSI_TargetPortalGroup, *PISCSI_TargetPortalGroup;
View the official Windows Driver Kit DDI referenceNo description available.
The ISCSI_TargetPortalGroup structure provides a definition of a target portal group.
PortalCountThe number of portals in the portal group.
PortalsA variable-length array of ISCSI_TargetPortal structures, which describe portals in the target portal group. The number of elements in the array is specified by the PortalCount field.
ISCSI_TargetPortalGroup WMI Class