Prepare NtQueueApcThreadEx2 support

This commit is contained in:
momo5502
2025-04-13 10:32:22 +02:00
parent 9609a550e0
commit 82227e4d41
2 changed files with 12 additions and 0 deletions

View File

@@ -563,4 +563,12 @@ namespace syscalls
processor_number.write(number);
return STATUS_SUCCESS;
}
NTSTATUS handle_NtQueueApcThreadEx2(const syscall_context& c, const handle thread_handle,
const handle reserve_handle, const ULONG apc_flags, const uint64_t apc_routine,
const uint64_t apc_argument1, const uint64_t apc_argument2,
const uint64_t apc_argument3)
{
return STATUS_NOT_SUPPORTED;
}
}