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
eff4087d
Commit
eff4087d
authored
Dec 10, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Dec 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added NtPowerInformation stub.
parent
f44c1f7e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
nt.c
dlls/ntdll/nt.c
+10
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
No files found.
dlls/ntdll/nt.c
View file @
eff4087d
...
@@ -532,3 +532,13 @@ NTSTATUS WINAPI NtDisplayString (
...
@@ -532,3 +532,13 @@ NTSTATUS WINAPI NtDisplayString (
WriteConsoleW
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
string
->
Buffer
,
string
->
Length
,
0
,
0
);
WriteConsoleW
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
string
->
Buffer
,
string
->
Length
,
0
,
0
);
return
0
;
return
0
;
}
}
/******************************************************************************
* NtPowerInformation [NTDLL]
*
*/
NTSTATUS
WINAPI
NtPowerInformation
(
DWORD
x1
,
DWORD
x2
,
DWORD
x3
,
DWORD
x4
,
DWORD
x5
)
{
FIXME
(
"(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub
\n
"
,
x1
,
x2
,
x3
,
x4
,
x5
);
return
0
;
}
dlls/ntdll/ntdll.spec
View file @
eff4087d
...
@@ -993,3 +993,4 @@ type win32
...
@@ -993,3 +993,4 @@ type win32
983 stub _wtoi
983 stub _wtoi
984 stub _wtol
984 stub _wtol
985 stub RtlSetPropertySetClassId
985 stub RtlSetPropertySetClassId
986 stdcall NtPowerInformation(long long long long long) NtPowerInformation
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