2.2.1.2.84 DHCP_MCLIENT_INFO_ARRAY

The DHCP_MCLIENT_INFO_ARRAY structure defines an array of DHCP_MCLIENT_INFO (section 2.2.1.2.21) structures. This structure is used by the methods that retrieve information for more than one MADCAP client. The first member contains the number of MADCAP clients present in the specific IPv4 multicast subnet, and the second member points to the array of length NumElements containing the MADCAP client's information.

 typedef struct _DHCP_MCLIENT_INFO_ARRAY {
   DWORD NumElements;
   [size_is(NumElements)] LPDHCP_MCLIENT_INFO* Clients;
 } DHCP_MCLIENT_INFO_ARRAY,
  *LPDHCP_MCLIENT_INFO_ARRAY;

NumElements: This is of type DWORD, specifying the number of MADCAP clients in subsequent field the Clients member.

Clients: This is pointer of type DHCP_MCLIENT_INFO (section 2.2.1.2.21), a structure that points to an array of length NumElements containing MADCAP client information.