2.2.13 FW_PORT_RANGE_LIST

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

 typedef struct _tag_FW_PORT_RANGE_LIST {
   [range(0, 1000)] unsigned long dwNumEntries;
   [size_is(dwNumEntries)] PFW_PORT_RANGE pPorts;
 } FW_PORT_RANGE_LIST,
  *PFW_PORT_RANGE_LIST;

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

pPorts: A pointer to an array of FW_PORT_RANGE elements. The number of elements is given as dwNumEntries.