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 );
|
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.@)
|
||||||
*/
|
*/
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user