mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
45 lines
No EOL
637 B
C
45 lines
No EOL
637 B
C
#ifndef SESSION_H
|
|
#define SESSION_H
|
|
|
|
#include "common.h"
|
|
|
|
#include "driver.h"
|
|
|
|
NTSTATUS
|
|
SessionInitialiseStructure();
|
|
|
|
VOID
|
|
SessionInitialiseCallbackConfiguration();
|
|
|
|
VOID
|
|
SessionIsActive(_Out_ PBOOLEAN Flag);
|
|
|
|
VOID
|
|
SessionGetProcess(_Out_ PEPROCESS* Process);
|
|
|
|
VOID
|
|
SessionGetProcessId(_Out_ PLONG ProcessId);
|
|
|
|
VOID
|
|
SessionGetCallbackConfiguration(
|
|
_Out_ POB_CALLBACKS_CONFIG* CallbackConfiguration);
|
|
|
|
VOID
|
|
SessionTerminate();
|
|
|
|
NTSTATUS
|
|
SessionInitialise(_In_ PIRP Irp);
|
|
|
|
VOID
|
|
SessionTerminateProcess();
|
|
|
|
VOID
|
|
SessionIncrementIrpsProcessedCount();
|
|
|
|
VOID
|
|
SessionIncrementReportCount();
|
|
|
|
VOID
|
|
SessionIncrementHeartbeatCount();
|
|
|
|
#endif |