ntoskrnl.exe: Add stub MmUnlockPagableImageSection.
This commit is contained in:
parent
efb3b07f13
commit
ba13893030
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue