// ndis.h
typedef enum {
PDCounterTypeUnknown,
PDCounterTypeReceiveQueue,
PDCounterTypeTransmitQueue,
PDCounterTypeReceiveFilter,
PDCounterTypeMax
} NDIS_PD_COUNTER_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_PD_COUNTER_TYPE enumeration defines types of PacketDirect Provider Interface (PDPI) counters. Its enumeration values are used in the Type member of the NDIS_PD_COUNTER_PARAMETERS structure.
PDCounterTypeUnknownThe counter type is not known.
PDCounterTypeReceiveQueueThe counter is a receive queue counter.
PDCounterTypeTransmitQueueThe counter is a transmit queue counter.
PDCounterTypeReceiveFilterThe counter is a receive filter counter.
PDCounterTypeMaxThe maximum value for this enumeration. This value might change in future versions of NDIS header files and binaries.