Commit c189b5f9 authored by Michael Hoffman's avatar Michael Hoffman Committed by Alexandre Julliard

powrprof: Implement IsPwrShutdownAllowed.

parent 1cfaa915
...@@ -216,11 +216,9 @@ BOOLEAN WINAPI IsPwrHibernateAllowed(VOID) ...@@ -216,11 +216,9 @@ BOOLEAN WINAPI IsPwrHibernateAllowed(VOID)
BOOLEAN WINAPI IsPwrShutdownAllowed(VOID) BOOLEAN WINAPI IsPwrShutdownAllowed(VOID)
{ {
/* FIXME: See note #2 */
SYSTEM_POWER_CAPABILITIES PowerCaps; SYSTEM_POWER_CAPABILITIES PowerCaps;
FIXME("() stub!\n");
NtPowerInformation(SystemPowerCapabilities, NULL, 0, &PowerCaps, sizeof(PowerCaps)); NtPowerInformation(SystemPowerCapabilities, NULL, 0, &PowerCaps, sizeof(PowerCaps));
return FALSE; return PowerCaps.SystemS5;
} }
BOOLEAN WINAPI IsPwrSuspendAllowed(VOID) BOOLEAN WINAPI IsPwrSuspendAllowed(VOID)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment