PCW_DATA - NtDoc

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

typedef struct _PCW_DATA {
  const VOID *Data;
  ULONG      Size;
} PCW_DATA, *PPCW_DATA;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdm-_pcw_data)

PCW_DATA structure

Description

The PCW_DATA structure describes the data blocks that are associated with an instance. This structure is used with the PcwAddInstance and PcwCreateInstance functions. Most developers do not need to access this structure directly because it is automatically managed by the Add/Create helper functions generated by the CTRPP tool.

Members

Data

A pointer to a buffer of Size bytes containing a block of counter data.

Size

A numeric value that specifies the size, in bytes, of the Data buffer.

See also

PcwAddInstance function

PcwCreateInstance function

CTRPP