POWER_INFORMATION_ENERGY_TRACKER_QUERY_OUTPUT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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;

#endif

View code on GitHub

NtDoc

No description available.