Commit 4e511d9e authored by Paul Chitescu's avatar Paul Chitescu Committed by Alexandre Julliard

ntoskrnl.exe: Implement MmPageEntireDriver and MmResetDriverPaging.

parent 1552f22a
......@@ -562,6 +562,23 @@ void WINAPI MmFreeNonCachedMemory( void *addr, SIZE_T size )
}
/***********************************************************************
* MmPageEntireDriver (NTOSKRNL.EXE.@)
*/
PVOID WINAPI MmPageEntireDriver(PVOID AddrInSection)
{
TRACE("%p\n", AddrInSection);
return AddrInSection;
}
/***********************************************************************
* MmResetDriverPaging (NTOSKRNL.EXE.@)
*/
void WINAPI MmResetDriverPaging(PVOID AddrInSection)
{
TRACE("%p\n", AddrInSection);
}
/***********************************************************************
* PsCreateSystemThread (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI PsCreateSystemThread(PHANDLE ThreadHandle, ULONG DesiredAccess,
......
......@@ -700,7 +700,7 @@
@ stub MmMapViewOfSection
@ stub MmMarkPhysicalMemoryAsBad
@ stub MmMarkPhysicalMemoryAsGood
@ stub MmPageEntireDriver
@ stdcall MmPageEntireDriver(ptr)
@ stub MmPrefetchPages
@ stub MmProbeAndLockPages
@ stub MmProbeAndLockProcessPages
......@@ -708,7 +708,7 @@
@ stub MmProtectMdlSystemAddress
@ stub MmQuerySystemSize
@ stub MmRemovePhysicalMemory
@ stub MmResetDriverPaging
@ stdcall MmResetDriverPaging(ptr)
@ stub MmSectionObjectType
@ stub MmSecureVirtualMemory
@ stub MmSetAddressRangeModified
......
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