mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
35 lines
No EOL
598 B
C
35 lines
No EOL
598 B
C
#ifndef APC_H
|
|
#define APC_H
|
|
|
|
#include "common.h"
|
|
|
|
#include "apc.h"
|
|
|
|
#include "driver.h"
|
|
#include "imports.h"
|
|
|
|
VOID
|
|
GetApcContextByIndex(_Out_ PVOID* Context, _In_ UINT32 Index);
|
|
|
|
VOID
|
|
GetApcContext(_Out_ PVOID* Context, _In_ UINT32 ContextIdentifier);
|
|
|
|
BOOLEAN
|
|
FreeApcContextStructure(_Inout_ PAPC_CONTEXT_HEADER Context);
|
|
|
|
VOID
|
|
IncrementApcCount(_In_ UINT32 ContextId);
|
|
|
|
VOID
|
|
FreeApcAndDecrementApcCount(_Inout_ PRKAPC Apc, _In_ UINT32 ContextId);
|
|
|
|
NTSTATUS
|
|
QueryActiveApcContextsForCompletion();
|
|
|
|
VOID
|
|
InsertApcContext(_In_ PVOID Context);
|
|
|
|
BOOLEAN
|
|
DrvUnloadFreeAllApcContextStructures();
|
|
|
|
#endif |