From 52f2a6835a8e29132a35161776aa74b06689249f Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 2 Nov 2024 22:55:29 +0100 Subject: [PATCH] Some dummy syscall --- 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 2f22d2a1..5578e68e 100644 --- a/src/windows-emulator/syscalls.cpp +++ b/src/windows-emulator/syscalls.cpp @@ -1599,6 +1599,11 @@ namespace return STATUS_NOT_SUPPORTED; } + NTSTATUS handle_NtGetNlsSectionPtr() + { + return STATUS_NOT_SUPPORTED; + } + NTSTATUS handle_NtAlpcSendWaitReceivePort(const syscall_context& c, const uint64_t port_handle, const ULONG /*flags*/, const emulator_object /*send_message*/, @@ -2335,6 +2340,7 @@ void syscall_dispatcher::add_handlers(std::map& ha add_handler(NtSetInformationFile); add_handler(NtUserRegisterWindowMessage); add_handler(NtQueryValueKey); + add_handler(NtGetNlsSectionPtr); #undef add_handler }