2.2.1.2.97 DHCP_CLIENT_FILTER_STATUS_INFO_ARRAY

The DHCP_CLIENT_FILTER_STATUS_INFO_ARRAY structure defines an array of DHCP_CLIENT_FILTER_STATUS_INFO (section 2.2.1.2.96) structures that contains a list of DHCPv4 client information. This structure is used by methods such as R_DhcpEnumSubnetClientsFilterStatusInfo (section 3.2.4.89) that retrieve information for more than one DHCPv4 client.

 typedef struct _DHCP_CLIENT_FILTER_STATUS_INFO_ARRAY {
   DWORD NumElements;
   [size_is(NumElements)] LPDHCP_CLIENT_FILTER_STATUS_INFO* Clients;
 } DHCP_CLIENT_FILTER_STATUS_INFO_ARRAY,
  *LPDHCP_CLIENT_FILTER_STATUS_INFO_ARRAY;

NumElements: This member is of type DWORD that contains the number of DHCPv4 clients in the subsequent field the Clients member.

Clients: This member is a pointer of type DHCP_CLIENT_FILTER_STATUS_INFO (section 2.2.1.2.96) structure that points to the array of length NumElements containing the DHCPv4 client's information.