Prepare APC support

This commit is contained in:
momo5502
2025-04-13 09:48:02 +02:00
parent 4bf2e9287e
commit f58dec38a2
6 changed files with 18 additions and 27 deletions

View File

@@ -413,10 +413,10 @@ namespace syscalls
return STATUS_NOT_SUPPORTED;
}
NTSTATUS handle_NtTestAlert()
NTSTATUS handle_NtTestAlert(const syscall_context& c)
{
// puts("NtTestAlert not supported");
return STATUS_NOT_SUPPORTED;
c.win_emu.yield_thread(true);
return STATUS_SUCCESS;
}
NTSTATUS handle_NtUserSystemParametersInfo()