Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
315c097a
Commit
315c097a
authored
Aug 07, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Change some FIXMEs to WARNs.
parent
c63b348a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
powermgnt.c
dlls/kernel/powermgnt.c
+6
-6
No files found.
dlls/kernel/powermgnt.c
View file @
315c097a
...
...
@@ -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 hDevice, BOOL* pfOn)
*/
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(LPSYSTEM_POWER_STATUS sps_ptr)
*/
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_TIME 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 SetThreadExecutionState(EXECUTION_STATE flags)
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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment