Add stub for NtAreMappedFilesTheSame and modify NtSetInformationKey to return success

This commit is contained in:
Igor Pissolati
2025-04-23 01:03:42 -03:00
parent 16e7cac48a
commit 8dfcf2755c
3 changed files with 10 additions and 1 deletions

View File

@@ -304,4 +304,10 @@ namespace syscalls
{
return handle_NtUnmapViewOfSection(c, process_handle, base_address);
}
NTSTATUS handle_NtAreMappedFilesTheSame(const syscall_context& c, const emulator_pointer address1,
const emulator_pointer address2)
{
return STATUS_NOT_SUPPORTED;
}
}