Commit c1f52e00 authored by H. Verbeet's avatar H. Verbeet Committed by Alexandre Julliard

ntdll: Add a stubbed NtSetSystemInformation.

parent 4ce433d8
...@@ -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.@]
......
...@@ -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
@ stub NtSetSystemInformation @ stdcall 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
@ stub ZwSetSystemInformation @ stdcall ZwSetSystemInformation(long ptr long) NtSetSystemInformation
@ stub ZwSetSystemPowerState @ stub ZwSetSystemPowerState
@ stdcall ZwSetSystemTime(ptr ptr) NtSetSystemTime @ stdcall ZwSetSystemTime(ptr ptr) NtSetSystemTime
# @ stub ZwSetThreadExecutionState # @ stub ZwSetThreadExecutionState
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment