#ifndef _NTPOAPI_H
// rev
typedef struct _POWER_INFORMATION_ENERGY_TRACKER_QUERY_OUTPUT
{
ULONG Signature;
ULONG HeaderSize;
ULONG TotalSize;
ULONG Sequence;
ULONG DeltaPerformanceTime; // Elapsed Ticks
ULONG DeltaInterruptTime; // Elapsed Ms
ULONG CurrentPerformanceTime;
ULONG CurrentTimelineTime;
ULONG CurrentTimelineBitmapTime;
ULONG ProcessRecordOffset;
ULONG ProcessRecordCount;
ULONG EnergyDeltaOffset;
ULONG EnergyCumulativeOffset;
ULONG Offset;
ULONG Type;
USHORT Size;
USHORT Reserved;
ULONG CurrentSystemTimeLow;
ULONG CurrentSystemTimeHigh;
// UCHAR Data[1];
} POWER_INFORMATION_ENERGY_TRACKER_QUERY_OUTPUT, *PPOWER_INFORMATION_ENERGY_TRACKER_QUERY_OUTPUT;
View code on GitHubNo description available.