#ifndef _NTPOAPI_H
/**
* The PROCESSOR_POWER_INFORMATION structure contains information about the power characteristics of a processor.
* \sa https://learn.microsoft.com/en-us/windows/win32/power/processor-power-information-str
*/
typedef struct _PROCESSOR_POWER_INFORMATION
{
ULONG Number;
ULONG MaxMhz;
ULONG CurrentMhz;
ULONG MhzLimit;
ULONG MaxIdleState;
ULONG CurrentIdleState;
} PROCESSOR_POWER_INFORMATION, *PPROCESSOR_POWER_INFORMATION;
View code on GitHub
No description available.