#ifndef _NTPSAPI_H
//
// Threads
//
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* A pointer to a function that serves as an APC routine.
*
* @param ApcArgument1 Optional. A pointer to the first argument to be passed to the APC routine.
* @param ApcArgument2 Optional. A pointer to the second argument to be passed to the APC routine.
* @param ApcArgument3 Optional. A pointer to the third argument to be passed to the APC routine.
*/
typedef _Function_class_(PS_APC_ROUTINE)
VOID NTAPI PS_APC_ROUTINE(
_In_opt_ PVOID ApcArgument1,
_In_opt_ PVOID ApcArgument2,
_In_opt_ PVOID ApcArgument3
);
View code on GitHub
No description available.