The DHCP_SUPER_SCOPE_TABLE_ENTRY structure defines the superscope-specific subnet information. This structure is used in the DHCP_SUPER_SCOPE_TABLE (section 2.2.1.2.86) structure.
typedef struct _DHCP_SUPER_SCOPE_TABLE_ENTRY {
DHCP_IP_ADDRESS SubnetAddress;
DWORD SuperScopeNumber;
DWORD NextInSuperScope;
LPWSTR SuperScopeName;
} DHCP_SUPER_SCOPE_TABLE_ENTRY,
*LPDHCP_SUPER_SCOPE_TABLE_ENTRY;
SubnetAddress: This is of type DHCP_IP_ADDRESS, a DWORD containing the IPv4 subnet ID.
SuperScopeNumber: This is of type DWORD, containing the unique identifier of the superscope.
NextInSuperScope: This is of type DWORD, specifying the index of the next subnet ID in the superscope.
SuperScopeName: This is a pointer, of type LPWSTR, to a null-terminated Unicode string that contains the superscope name. There is no restriction on the length of this Unicode string.