Description
Follow-up to CORE-12580.
sdk/include/xdk/winnt_old.h has
3808 #if 1 /* (_WIN32_WINNT >= 0x0500) */
|
3809 typedef struct _SYSTEM_POWER_INFORMATION {
|
3810 ULONG MaxIdlenessAllowed;
|
3811 ULONG Idleness;
|
3812 ULONG TimeRemaining;
|
3813 UCHAR CoolingMode;
|
3814 } SYSTEM_POWER_INFORMATION,*PSYSTEM_POWER_INFORMATION;
|
3815 #endif
|
that was created by r63998 (by thephysicist).
Do we want "#if (_WIN32_WINNT >= 0x0500)" or no "#if" or ...?
(See also SYSTEM_POWER_INFORMATION grep.)
Fwiw,
(Microsoft) SYSTEM_POWER_INFORMATION structure
Minimum supported client
|
Windows XP [desktop apps only]
|
Minimum supported server
|
Windows Server 2003 [desktop apps only]
|