#ifndef _NTPSAPI_H
/**
* The COUNTER_READING structure is used to store individual counter data from a hardware counter.
*
* \sa https://learn.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-hardware_counter_data
*/
typedef struct _COUNTER_READING
{
HARDWARE_COUNTER_TYPE Type; // Specifies the type of hardware counter data collected.
ULONG Index; // An identifier for the specific counter.
ULONG64 Start; // The initial value of the counter when measurement started.
ULONG64 Total; // The accumulated value of the counter over the measurement period.
} COUNTER_READING, *PCOUNTER_READING;
View code on GitHub
No description available.