ntoskrnl.exe: Stub MmProtectMdlSystemAddress.
Signed-off-by: Myah Caron <qsniyg@protonmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9301a644ec
commit
c6d0d7f02a
|
@ -3145,6 +3145,15 @@ BOOLEAN WINAPI MmIsThisAnNtAsSystem(void)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MmProtectMdlSystemAddress (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
NTSTATUS WINAPI MmProtectMdlSystemAddress(PMDL MemoryDescriptorList, ULONG NewProtect)
|
||||
{
|
||||
FIXME("(%p, %u) stub\n", MemoryDescriptorList, NewProtect);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MmQuerySystemSize (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -733,7 +733,7 @@
|
|||
@ stdcall MmProbeAndLockPages(ptr long long)
|
||||
@ stub MmProbeAndLockProcessPages
|
||||
@ stub MmProbeAndLockSelectedPages
|
||||
@ stub MmProtectMdlSystemAddress
|
||||
@ stdcall MmProtectMdlSystemAddress(ptr long)
|
||||
@ stdcall MmQuerySystemSize()
|
||||
@ stub MmRemovePhysicalMemory
|
||||
@ stdcall MmResetDriverPaging(ptr)
|
||||
|
|
Loading…
Reference in New Issue