// ntddndis.h
typedef struct _NDIS_NDK_STATISTICS_INFO {
NDIS_OBJECT_HEADER Header;
ULONG Flags;
NDIS_NDK_PERFORMANCE_COUNTERS CounterSet;
} NDIS_NDK_STATISTICS_INFO;
View the official Windows Driver Kit DDI reference
No description available.
The NDIS_NDK_STATISTICS_INFO structure contains the NDK statistics.
Header
An NDIS_OBJECT_HEADER structure that describes this NDIS_NDK_STATISTICS_INFO structure. Set the members of the NDIS_OBJECT_HEADER structure as follows:
Flags
CounterSet
An NDIS_NDK_PERFORMANCE_COUNTERS structure that contains the NDK performance counters.
The NDIS_NDK_STATISTICS_INFO structure is returned with the OID_NDK_STATISTICS OID. The InformationBuffer member of the NDIS_OID_REQUEST structure contains a pointer to this structure.
The NDK-capable miniport driver is required to fill in the CounterSet member, which is an NDIS_NDK_PERFORMANCE_COUNTERS structure.