// kdnetpf.h
typedef struct _NDIS_KDNET_ENUMERATE_PFS {
NDIS_OBJECT_HEADER Header;
ULONG ElementSize;
ULONG NumberOfElements;
ULONG OffsetToFirstElement;
} NDIS_KDNET_ENUMERATE_PFS, *PNDIS_KDNET_ENUMERATE_PFS;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_KDNET_ENUMERATE_PFS structure describes the data required to enumerate the list of PF. It is used by OID_KDNET_ENUMERATE_PFS.
HeaderA NDIS_OBJECT_HEADER structure used to package the object type, version, and size information that is required in many NDIS 6.0 structures.
ElementSizeThe size of each element is the sizeof(NDIS_KDNET_PF_ENUM_ELEMENT).
NumberOfElementsThe number of elements in the returned array.
OffsetToFirstElementOffset value to the first element of the returned array. Each array element is defined by NDIS_KDNET_PF_ENUM_ELEMENT.