From 43ff5313544afcd19d6f52f1ae54352afb0a9a96 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 14 Jun 2025 08:46:27 +0200 Subject: [PATCH] Add NtRemoveIoCompletionEx syscall stub --- src/windows-emulator/syscalls.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/windows-emulator/syscalls.cpp b/src/windows-emulator/syscalls.cpp index bbbde5ad..cb07797c 100644 --- a/src/windows-emulator/syscalls.cpp +++ b/src/windows-emulator/syscalls.cpp @@ -464,6 +464,11 @@ namespace syscalls return STATUS_SUCCESS; } + NTSTATUS handle_NtRemoveIoCompletionEx() + { + return STATUS_NOT_SUPPORTED; + } + NTSTATUS handle_NtCreateWaitCompletionPacket( const syscall_context& c, const emulator_object event_handle, const ACCESS_MASK desired_access, const emulator_object>> object_attributes) @@ -1173,6 +1178,7 @@ void syscall_dispatcher::add_handlers(std::map& ha add_handler(NtSetWnfProcessNotificationEvent); add_handler(NtQuerySecurityObject); add_handler(NtQueryEvent); + add_handler(NtRemoveIoCompletionEx); #undef add_handler }