mirror of
https://github.com/repnz/apc-research
synced 2026-06-08 17:06:23 +00:00
27 lines
404 B
C
27 lines
404 B
C
#pragma once
|
|
#include "KeApc.h"
|
|
|
|
|
|
typedef VOID
|
|
(*PPS_APC_ROUTINE)(
|
|
PVOID SystemArgument1,
|
|
PVOID SystemArgument2,
|
|
PVOID SystemArgument3
|
|
);
|
|
|
|
|
|
NTSTATUS
|
|
SimpleNtQueueApcThread(
|
|
HANDLE ThreadHandle,
|
|
PPS_APC_ROUTINE ApcRoutine,
|
|
PVOID SystemArgument1,
|
|
PVOID SystemArgument2,
|
|
PVOID SystemArgument3
|
|
);
|
|
|
|
NTSTATUS
|
|
SimpleNtWaitForSingleObject(
|
|
HANDLE Event,
|
|
BOOLEAN Alertable,
|
|
PLARGE_INTEGER Timeout
|
|
); |