mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
24 lines
No EOL
341 B
C
24 lines
No EOL
341 B
C
#ifndef DRIVER_H
|
|
#define DRIVER_H
|
|
|
|
#include <ntifs.h>
|
|
#include <wdftypes.h>
|
|
#include <wdf.h>
|
|
|
|
VOID UpdateProtectedProcessId(
|
|
_In_ LONG NewProcessId
|
|
);
|
|
|
|
VOID GetProtectedProcessId(
|
|
_Out_ PLONG ProcessId
|
|
);
|
|
|
|
VOID GetProtectedProcessParentId(
|
|
_Out_ PLONG ProcessId
|
|
);
|
|
|
|
VOID UpdateProtectedProcessParentId(
|
|
_In_ LONG NewProcessId
|
|
);
|
|
|
|
#endif |