ntoskrnl.exe: Implement MmPageEntireDriver and MmResetDriverPaging.
This commit is contained in:
parent
1552f22acf
commit
4e511d9e8c
|
@ -561,6 +561,23 @@ void WINAPI MmFreeNonCachedMemory( void *addr, SIZE_T size )
|
|||
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.@)
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue