Commit ba138930 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

ntoskrnl.exe: Add stub MmUnlockPagableImageSection.

parent efb3b07f
......@@ -1521,6 +1521,13 @@ PVOID WINAPI MmMapLockedPagesSpecifyCache(PMDLX MemoryDescriptorList, KPROCESSO
return NULL;
}
/***********************************************************************
* MmUnlockPagableImageSection (NTOSKRNL.EXE.@)
*/
VOID WINAPI MmUnlockPagableImageSection(PVOID ImageSectionHandle)
{
FIXME("stub %p\n", ImageSectionHandle);
}
/***********************************************************************
* MmPageEntireDriver (NTOSKRNL.EXE.@)
......
......@@ -716,7 +716,7 @@
@ stub MmSizeOfMdl
@ stub MmSystemRangeStart
@ stub MmTrimAllSystemPagableMemory
@ stub MmUnlockPagableImageSection
@ stdcall MmUnlockPagableImageSection(ptr)
@ stdcall MmUnlockPages(ptr)
@ stdcall MmUnmapIoSpace(ptr long)
@ stub MmUnmapLockedPages
......
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