Small fixes

This commit is contained in:
momo5502
2025-06-07 20:10:36 +02:00
parent f44f3f2bb3
commit 906cec808a
3 changed files with 13 additions and 5 deletions

View File

@@ -39,6 +39,11 @@ namespace syscalls
return STATUS_SUCCESS;
}
NTSTATUS handle_NtQueryEvent()
{
return STATUS_NOT_SUPPORTED;
}
NTSTATUS handle_NtClearEvent(const syscall_context& c, const handle event_handle)
{
auto* e = c.proc.events.get(event_handle);