2.2.5 FW_IPV4_SUBNET_LIST

This structure is used to contain a number of FW_IPV4_SUBNET elements.

 typedef struct _tag_FW_IPV4_SUBNET_LIST {
   [range(0, 1000)] unsigned long dwNumEntries;
   [size_is(dwNumEntries)] PFW_IPV4_SUBNET pSubNets;
 } FW_IPV4_SUBNET_LIST,
  *PFW_IPV4_SUBNET_LIST;

dwNumEntries: This field specifies the number of subnets that the structure contains.

pSubNets: A pointer to an array of FW_IPV4_SUBNET elements. The number of elements is given by dwNumEntries.