Add dummy stub for NtFlushInstructionCache

This commit is contained in:
ahm3dgg
2026-01-07 20:21:19 +02:00
parent 0b47eb77f1
commit 49ae9ef68a
3 changed files with 15 additions and 2 deletions

View File

@@ -421,4 +421,14 @@ namespace syscalls
return STATUS_NOT_SUPPORTED;
}
NTSTATUS handle_NtFlushInstructionCache(const syscall_context& c, const handle process_handle,
const emulator_object<uint64_t> base_address, const uint64_t region_size)
{
(void)c;
(void)process_handle;
(void)base_address;
(void)region_size;
return STATUS_SUCCESS;
}
}