mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-29 07:51:01 +00:00
Add dummy stub for NtFlushInstructionCache
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user