// ndis.h
typedef struct _NDIS_PD_RECEIVE_QUEUE_COUNTER {
ULONG64 PacketsReceived;
ULONG64 BytesReceived;
ULONG64 PacketsDropped;
} NDIS_PD_RECEIVE_QUEUE_COUNTER;
View the official Windows Driver Kit DDI referenceNo description available.
This structure is used to hold counter information for a receive queue.
PacketsReceivedThe amount of packets received.
BytesReceivedThe amount of bytes received.
PacketsDroppedThe amount of packets dropped.