This structure is used to contain a number of FW_ICMP_TYPE_CODE elements.
typedef struct _tag_FW_ICMP_TYPE_CODE_LIST {
[range(0, 1000)] unsigned long dwNumEntries;
[size_is(dwNumEntries)] PFW_ICMP_TYPE_CODE pEntries;
} FW_ICMP_TYPE_CODE_LIST,
*PFW_ICMP_TYPE_CODE_LIST;
dwNumEntries: This field specifies the number of FW_ICMP_TYPE_CODE elements that the structure contains.
pEntries: A pointer to an array of FW_ICMP_TYPE_CODE elements. The number of elements is given by dwNumEntries.