ntdll: Add a stubbed NtSetSystemInformation.
This commit is contained in:
parent
4ce433d826
commit
c1f52e0013
|
@ -904,6 +904,15 @@ NTSTATUS WINAPI NtQuerySystemInformation(
|
|||
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.@]
|
||||
|
|
|
@ -337,7 +337,7 @@
|
|||
@ stdcall NtSetSecurityObject(long long ptr)
|
||||
@ stub NtSetSystemEnvironmentValue
|
||||
# @ stub NtSetSystemEnvironmentValueEx
|
||||
@ stub NtSetSystemInformation
|
||||
@ stdcall NtSetSystemInformation(long ptr long)
|
||||
@ stub NtSetSystemPowerState
|
||||
@ stdcall NtSetSystemTime(ptr ptr)
|
||||
# @ stub NtSetThreadExecutionState
|
||||
|
@ -1179,7 +1179,7 @@
|
|||
@ stdcall ZwSetSecurityObject(long long ptr) NtSetSecurityObject
|
||||
@ stub ZwSetSystemEnvironmentValue
|
||||
# @ stub ZwSetSystemEnvironmentValueEx
|
||||
@ stub ZwSetSystemInformation
|
||||
@ stdcall ZwSetSystemInformation(long ptr long) NtSetSystemInformation
|
||||
@ stub ZwSetSystemPowerState
|
||||
@ stdcall ZwSetSystemTime(ptr ptr) NtSetSystemTime
|
||||
# @ stub ZwSetThreadExecutionState
|
||||
|
|
Loading…
Reference in New Issue