Add dummy syscall

This commit is contained in:
momo5502
2025-02-07 18:52:37 +01:00
parent a64c1e12d0
commit a2f795f33c

View File

@@ -3576,6 +3576,11 @@ namespace
return STATUS_NOT_SUPPORTED;
}
NTSTATUS handle_NtRequestWaitReplyPort()
{
return STATUS_NOT_SUPPORTED;
}
NTSTATUS handle_NtUserFindWindowEx()
{
return 0;
@@ -3822,6 +3827,7 @@ void syscall_dispatcher::add_handlers(std::map<std::string, syscall_handler>& ha
add_handler(NtUserFindWindowEx);
add_handler(NtUserMoveWindow);
add_handler(NtSystemDebugControl);
add_handler(NtRequestWaitReplyPort);
#undef add_handler
}