kernel32: Change some FIXMEs to WARNs.
This commit is contained in:
parent
c63b348a8a
commit
315c097a73
|
@ -30,7 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(powermgnt);
|
||||||
*/
|
*/
|
||||||
BOOL WINAPI GetDevicePowerState(HANDLE hDevice, BOOL* pfOn)
|
BOOL WINAPI GetDevicePowerState(HANDLE hDevice, BOOL* pfOn)
|
||||||
{
|
{
|
||||||
FIXME("(hDevice %p pfOn %p): stub\n", hDevice, pfOn);
|
WARN("(hDevice %p pfOn %p): stub\n", hDevice, pfOn);
|
||||||
return TRUE; /* no information */
|
return TRUE; /* no information */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ BOOL WINAPI GetDevicePowerState(HANDLE hDevice, BOOL* pfOn)
|
||||||
*/
|
*/
|
||||||
BOOL WINAPI GetSystemPowerStatus(LPSYSTEM_POWER_STATUS sps_ptr)
|
BOOL WINAPI GetSystemPowerStatus(LPSYSTEM_POWER_STATUS sps_ptr)
|
||||||
{
|
{
|
||||||
FIXME("(): stub, harmless.\n");
|
WARN("(): stub, harmless.\n");
|
||||||
return FALSE; /* no power management support */
|
return FALSE; /* no power management support */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ BOOL WINAPI GetSystemPowerStatus(LPSYSTEM_POWER_STATUS sps_ptr)
|
||||||
*/
|
*/
|
||||||
BOOL WINAPI IsSystemResumeAutomatic(void)
|
BOOL WINAPI IsSystemResumeAutomatic(void)
|
||||||
{
|
{
|
||||||
FIXME("(): stub, harmless.\n");
|
WARN("(): stub, harmless.\n");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ BOOL WINAPI IsSystemResumeAutomatic(void)
|
||||||
*/
|
*/
|
||||||
BOOL WINAPI RequestWakeupLatency(LATENCY_TIME latency)
|
BOOL WINAPI RequestWakeupLatency(LATENCY_TIME latency)
|
||||||
{
|
{
|
||||||
FIXME("(): stub, harmless.\n");
|
WARN("(): stub, harmless.\n");
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ BOOL WINAPI RequestWakeupLatency(LATENCY_TIME latency)
|
||||||
BOOL WINAPI SetSystemPowerState(BOOL suspend_or_hibernate,
|
BOOL WINAPI SetSystemPowerState(BOOL suspend_or_hibernate,
|
||||||
BOOL force_flag)
|
BOOL force_flag)
|
||||||
{
|
{
|
||||||
FIXME("(): stub, harmless.\n");
|
WARN("(): stub, harmless.\n");
|
||||||
/* suspend_or_hibernate flag: w95 does not support
|
/* suspend_or_hibernate flag: w95 does not support
|
||||||
this feature anyway */
|
this feature anyway */
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ EXECUTION_STATE WINAPI SetThreadExecutionState(EXECUTION_STATE flags)
|
||||||
ES_SYSTEM_REQUIRED | ES_DISPLAY_REQUIRED | ES_USER_PRESENT;
|
ES_SYSTEM_REQUIRED | ES_DISPLAY_REQUIRED | ES_USER_PRESENT;
|
||||||
EXECUTION_STATE old = current;
|
EXECUTION_STATE old = current;
|
||||||
|
|
||||||
FIXME("(0x%lx): stub, harmless.\n", flags);
|
WARN("(0x%lx): stub, harmless.\n", flags);
|
||||||
|
|
||||||
if (!(current & ES_CONTINUOUS) || (flags & ES_CONTINUOUS))
|
if (!(current & ES_CONTINUOUS) || (flags & ES_CONTINUOUS))
|
||||||
current = flags;
|
current = flags;
|
||||||
|
|
Loading…
Reference in New Issue