Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
c1f52e00
Commit
c1f52e00
authored
Jan 20, 2006
by
H. Verbeet
Committed by
Alexandre Julliard
Jan 20, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add a stubbed NtSetSystemInformation.
parent
4ce433d8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
nt.c
dlls/ntdll/nt.c
+9
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-2
No files found.
dlls/ntdll/nt.c
View file @
c1f52e00
...
@@ -904,6 +904,15 @@ NTSTATUS WINAPI NtQuerySystemInformation(
...
@@ -904,6 +904,15 @@ NTSTATUS WINAPI NtQuerySystemInformation(
return
ret
;
return
ret
;
}
}
/******************************************************************************
* NtSetSystemInformation [NTDLL.@]
* ZwSetSystemInformation [NTDLL.@]
*/
NTSTATUS
WINAPI
NtSetSystemInformation
(
SYSTEM_INFORMATION_CLASS
SystemInformationClass
,
PVOID
SystemInformation
,
ULONG
Length
)
{
FIXME
(
"(0x%08x,%p,0x%08lx) stub
\n
"
,
SystemInformationClass
,
SystemInformation
,
Length
);
return
STATUS_SUCCESS
;
}
/******************************************************************************
/******************************************************************************
* NtCreatePagingFile [NTDLL.@]
* NtCreatePagingFile [NTDLL.@]
...
...
dlls/ntdll/ntdll.spec
View file @
c1f52e00
...
@@ -337,7 +337,7 @@
...
@@ -337,7 +337,7 @@
@ stdcall NtSetSecurityObject(long long ptr)
@ stdcall NtSetSecurityObject(long long ptr)
@ stub NtSetSystemEnvironmentValue
@ stub NtSetSystemEnvironmentValue
# @ stub NtSetSystemEnvironmentValueEx
# @ stub NtSetSystemEnvironmentValueEx
@ st
ub NtSetSystemInformation
@ st
dcall NtSetSystemInformation(long ptr long)
@ stub NtSetSystemPowerState
@ stub NtSetSystemPowerState
@ stdcall NtSetSystemTime(ptr ptr)
@ stdcall NtSetSystemTime(ptr ptr)
# @ stub NtSetThreadExecutionState
# @ stub NtSetThreadExecutionState
...
@@ -1179,7 +1179,7 @@
...
@@ -1179,7 +1179,7 @@
@ stdcall ZwSetSecurityObject(long long ptr) NtSetSecurityObject
@ stdcall ZwSetSecurityObject(long long ptr) NtSetSecurityObject
@ stub ZwSetSystemEnvironmentValue
@ stub ZwSetSystemEnvironmentValue
# @ stub ZwSetSystemEnvironmentValueEx
# @ stub ZwSetSystemEnvironmentValueEx
@ st
ub Zw
SetSystemInformation
@ st
dcall ZwSetSystemInformation(long ptr long) Nt
SetSystemInformation
@ stub ZwSetSystemPowerState
@ stub ZwSetSystemPowerState
@ stdcall ZwSetSystemTime(ptr ptr) NtSetSystemTime
@ stdcall ZwSetSystemTime(ptr ptr) NtSetSystemTime
# @ stub ZwSetThreadExecutionState
# @ stub ZwSetThreadExecutionState
...
...
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