ntoskrnl.exe: Implement MmPageEntireDriver and MmResetDriverPaging.

This commit is contained in:
Paul Chitescu 2008-02-05 20:19:52 +02:00 committed by Alexandre Julliard
parent 1552f22acf
commit 4e511d9e8c
2 changed files with 19 additions and 2 deletions

View File

@ -561,6 +561,23 @@ void WINAPI MmFreeNonCachedMemory( void *addr, SIZE_T size )
VirtualFree( addr, 0, MEM_RELEASE ); VirtualFree( addr, 0, MEM_RELEASE );
} }
/***********************************************************************
* 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.@) * PsCreateSystemThread (NTOSKRNL.EXE.@)
*/ */

View File

@ -700,7 +700,7 @@
@ stub MmMapViewOfSection @ stub MmMapViewOfSection
@ stub MmMarkPhysicalMemoryAsBad @ stub MmMarkPhysicalMemoryAsBad
@ stub MmMarkPhysicalMemoryAsGood @ stub MmMarkPhysicalMemoryAsGood
@ stub MmPageEntireDriver @ stdcall MmPageEntireDriver(ptr)
@ stub MmPrefetchPages @ stub MmPrefetchPages
@ stub MmProbeAndLockPages @ stub MmProbeAndLockPages
@ stub MmProbeAndLockProcessPages @ stub MmProbeAndLockProcessPages
@ -708,7 +708,7 @@
@ stub MmProtectMdlSystemAddress @ stub MmProtectMdlSystemAddress
@ stub MmQuerySystemSize @ stub MmQuerySystemSize
@ stub MmRemovePhysicalMemory @ stub MmRemovePhysicalMemory
@ stub MmResetDriverPaging @ stdcall MmResetDriverPaging(ptr)
@ stub MmSectionObjectType @ stub MmSectionObjectType
@ stub MmSecureVirtualMemory @ stub MmSecureVirtualMemory
@ stub MmSetAddressRangeModified @ stub MmSetAddressRangeModified