// ndis.h
typedef struct _NDIS_PD_TRANSMIT_QUEUE_COUNTER {
ULONG64 PacketsTransmitted;
ULONG64 BytesTransmitted;
} NDIS_PD_TRANSMIT_QUEUE_COUNTER;
View the official Windows Driver Kit DDI referenceNo description available.
This structure is used to hold counter information for a transmit queue.
PacketsTransmittedThe amount of packets transmitted.
BytesTransmittedThe amount of bytes transmitted.