ntoskrnl: Add MmIsThisAnNtAsSystem().
This function returns FALSE on all server and non-server versions of Windows since XP except for Windows Server 2003. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47578 Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2538d56946
commit
433c14b064
|
@ -2971,6 +2971,14 @@ PVOID WINAPI MmGetSystemRoutineAddress(PUNICODE_STRING SystemRoutineName)
|
|||
return pFunc;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MmIsThisAnNtAsSystem (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
BOOLEAN WINAPI MmIsThisAnNtAsSystem(void)
|
||||
{
|
||||
TRACE("\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MmQuerySystemSize (NTOSKRNL.EXE.@)
|
||||
|
|
|
@ -699,7 +699,7 @@
|
|||
@ stub MmIsDriverVerifying
|
||||
@ stub MmIsNonPagedSystemAddressValid
|
||||
@ stub MmIsRecursiveIoFault
|
||||
@ stub MmIsThisAnNtAsSystem
|
||||
@ stdcall MmIsThisAnNtAsSystem()
|
||||
@ stub MmIsVerifierEnabled
|
||||
@ stub MmLockPagableDataSection
|
||||
@ stub MmLockPagableImageSection
|
||||
|
|
Loading…
Reference in New Issue