Commit c6d0d7f0 authored by Myah Caron's avatar Myah Caron Committed by Alexandre Julliard

ntoskrnl.exe: Stub MmProtectMdlSystemAddress.

parent 9301a644
......@@ -3146,6 +3146,15 @@ BOOLEAN WINAPI MmIsThisAnNtAsSystem(void)
}
/***********************************************************************
* MmProtectMdlSystemAddress (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI MmProtectMdlSystemAddress(PMDL MemoryDescriptorList, ULONG NewProtect)
{
FIXME("(%p, %u) stub\n", MemoryDescriptorList, NewProtect);
return STATUS_SUCCESS;
}
/***********************************************************************
* MmQuerySystemSize (NTOSKRNL.EXE.@)
*/
MM_SYSTEMSIZE WINAPI MmQuerySystemSize(void)
......
......@@ -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)
......
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