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
cfd8bb8c
Commit
cfd8bb8c
authored
Mar 14, 2003
by
Rein Klazes
Committed by
Alexandre Julliard
Mar 14, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for GetDevicePowerState().
parent
d5897a64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
kernel32.spec
dlls/kernel/kernel32.spec
+1
-1
newfns.c
win32/newfns.c
+9
-0
No files found.
dlls/kernel/kernel32.spec
View file @
cfd8bb8c
...
...
@@ -384,7 +384,7 @@
@ stdcall GetDefaultCommConfigA(str ptr long) GetDefaultCommConfigA
@ stdcall GetDefaultCommConfigW(wstr ptr long) GetDefaultCommConfigW
@ stub GetDefaultSortkeySize
@ st
ub
GetDevicePowerState
@ st
dcall GetDevicePowerState(long ptr)
GetDevicePowerState
@ stdcall GetDiskFreeSpaceA(str ptr ptr ptr ptr) GetDiskFreeSpaceA
@ stdcall GetDiskFreeSpaceW(wstr ptr ptr ptr ptr) GetDiskFreeSpaceW
@ stdcall GetDriveTypeA(str) GetDriveTypeA
...
...
win32/newfns.c
View file @
cfd8bb8c
...
...
@@ -311,3 +311,12 @@ BOOL WINAPI GetQueuedCompletionStatus(
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/******************************************************************************
* GetDevicePowerState (KERNEL32.@)
*/
BOOL
WINAPI
GetDevicePowerState
(
HANDLE
hDevice
,
BOOL
*
pfOn
)
{
FIXME
(
"(hDevice %p pfOn %p): stub
\n
"
,
hDevice
,
pfOn
);
return
TRUE
;
/* no information */
}
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