ntdll: Add a stubbed NtSetSystemInformation.
This commit is contained in:
parent
4ce433d826
commit
c1f52e0013
|
@ -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 @@
|
||||||
@ 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 @@
|
||||||
@ 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
|
||||||
|
|
Loading…
Reference in New Issue