#ifndef _NTPOAPI_H
/**
* The SYSTEM_POWER_INFORMATION structure contains information about the idleness of the system.
* \sa https://learn.microsoft.com/en-us/windows/win32/power/system-power-information-str
*/
typedef struct _SYSTEM_POWER_INFORMATION
{
ULONG MaxIdlenessAllowed;
ULONG Idleness;
ULONG TimeRemaining;
UCHAR CoolingMode;
} SYSTEM_POWER_INFORMATION, *PSYSTEM_POWER_INFORMATION;
View code on GitHub
No description available.