Mike McCormack : kernel32: Change some FIXMEs to WARNs.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Aug 7 07:13:10 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 315c097a73272c2145d2b1f214e7b9a4df958fcc
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=315c097a73272c2145d2b1f214e7b9a4df958fcc

Author: Mike McCormack <mike at codeweavers.com>
Date:   Mon Aug  7 15:39:11 2006 +0900

kernel32: Change some FIXMEs to WARNs.

---

 dlls/kernel/powermgnt.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dlls/kernel/powermgnt.c b/dlls/kernel/powermgnt.c
index f0c7f37..ceea321 100644
--- a/dlls/kernel/powermgnt.c
+++ b/dlls/kernel/powermgnt.c
@@ -30,7 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(powermgnt);
  */
 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 */
 }
 
@@ -39,7 +39,7 @@ BOOL WINAPI GetDevicePowerState(HANDLE h
  */
 BOOL WINAPI GetSystemPowerStatus(LPSYSTEM_POWER_STATUS sps_ptr)
 {
-    FIXME("(): stub, harmless.\n");
+    WARN("(): stub, harmless.\n");
     return FALSE;   /* no power management support */
 }
 
@@ -48,7 +48,7 @@ BOOL WINAPI GetSystemPowerStatus(LPSYSTE
  */
 BOOL WINAPI IsSystemResumeAutomatic(void)
 {
-    FIXME("(): stub, harmless.\n");
+    WARN("(): stub, harmless.\n");
     return FALSE;
 }
 
@@ -57,7 +57,7 @@ BOOL WINAPI IsSystemResumeAutomatic(void
  */
 BOOL WINAPI RequestWakeupLatency(LATENCY_TIME latency)
 {
-    FIXME("(): stub, harmless.\n");
+    WARN("(): stub, harmless.\n");
     return TRUE;
 }
 
@@ -67,7 +67,7 @@ BOOL WINAPI RequestWakeupLatency(LATENCY
 BOOL WINAPI SetSystemPowerState(BOOL suspend_or_hibernate,
                                   BOOL force_flag)
 {
-    FIXME("(): stub, harmless.\n");
+    WARN("(): stub, harmless.\n");
     /* suspend_or_hibernate flag: w95 does not support
        this feature anyway */
 
@@ -95,7 +95,7 @@ EXECUTION_STATE WINAPI SetThreadExecutio
         ES_SYSTEM_REQUIRED | ES_DISPLAY_REQUIRED | ES_USER_PRESENT;
     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))
         current = flags;




More information about the wine-cvs mailing list