[NTOS/MM] Introduce MmArePagesResident and MmMakePagesResident

This commit is contained in:
Jérôme Gardou
2020-10-27 17:37:38 +01:00
parent f1631b44e1
commit e4047d1521
2 changed files with 154 additions and 0 deletions

View File

@@ -1323,6 +1323,20 @@ MmMapViewInSystemSpaceEx (
_Inout_ PLARGE_INTEGER SectionOffset
);
BOOLEAN
NTAPI
MmArePagesResident(
_In_ PEPROCESS Process,
_In_ PVOID BaseAddress,
_In_ ULONG Length);
NTSTATUS
NTAPI
MmMakePagesResident(
_In_ PEPROCESS Process,
_In_ PVOID Address,
_In_ ULONG Length);
/* sysldr.c ******************************************************************/
VOID