Prepare more timer syscalls

This commit is contained in:
momo5502
2025-06-01 14:02:36 +02:00
parent 009961620b
commit aa763c8392
4 changed files with 14 additions and 0 deletions

View File

@@ -69,4 +69,10 @@ namespace syscalls
return STATUS_SUCCESS;
}
NTSTATUS handle_NtSetTimerEx(const syscall_context& /*c*/, handle /*timer_handle*/,
uint32_t /*timer_set_info_class*/, uint64_t /*timer_set_information*/,
ULONG /*timer_set_information_length*/)
{
return STATUS_NOT_SUPPORTED;
}
}