NDIS_PD_COUNTER_PARAMETERS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndis.h

typedef struct _NDIS_PD_COUNTER_PARAMETERS {
  NDIS_OBJECT_HEADER   Header;
  ULONG                Flags;
  PCWSTR               CounterName;
  NDIS_PD_COUNTER_TYPE Type;
} NDIS_PD_COUNTER_PARAMETERS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ndis-_ndis_pd_counter_parameters)

_NDIS_PD_COUNTER_PARAMETERS structure

Description

This structure holds parameters for the provider counter.

Members

The NDIS_OBJECT_HEADER structure for the NDIS_PD_COUNTER_PARAMETERS structure. Set the members of this structure as follows:

Flags

This member is reserved and must be set to 0.

CounterName

This member is ignored by the PD provider. It is used by the PD platform for publishing the counter to the Windows Performance Counter subsystem (so that the counter can be viewed using PerfMon and accessed by system APIs programmatically).

Type

An NDIS_PD_COUNTER_TYPE enumeration value that specifies the counter type.

See also

NDIS_OBJECT_HEADER

NDIS_PD_COUNTER_TYPE

NdisPDAllocateCounter