mirror-ac/driver/driver.h
lhodges1 0d853853bf eee
2023-08-21 01:04:53 +10:00

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