Commit b1fc2182 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

ntoskrnl.exe: Add stub for MmUnlockPages.

parent f77605c7
......@@ -1462,6 +1462,16 @@ void WINAPI MmResetDriverPaging(PVOID AddrInSection)
TRACE("%p\n", AddrInSection);
}
/***********************************************************************
* MmUnlockPages (NTOSKRNL.EXE.@)
*/
void MmUnlockPages(PMDLX MemoryDescriptorList)
{
FIXME("(%p): stub\n", MemoryDescriptorList);
}
/***********************************************************************
* MmUnmapIoSpace (NTOSKRNL.EXE.@)
*/
......
......@@ -717,7 +717,7 @@
@ stub MmSystemRangeStart
@ stub MmTrimAllSystemPagableMemory
@ stub MmUnlockPagableImageSection
@ stub MmUnlockPages
@ stdcall MmUnlockPages(ptr)
@ stdcall MmUnmapIoSpace(ptr long)
@ stub MmUnmapLockedPages
@ stub MmUnmapReservedMapping
......
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