mirror-ac/driver/driver.h

24 lines
341 B
C
Raw Normal View History

2023-08-17 10:45:50 +02:00
#ifndef DRIVER_H
#define DRIVER_H
#include <ntifs.h>
#include <wdftypes.h>
#include <wdf.h>
2023-08-20 16:12:04 +02:00
VOID UpdateProtectedProcessId(
_In_ LONG NewProcessId
);
VOID GetProtectedProcessId(
_Out_ PLONG ProcessId
);
VOID GetProtectedProcessParentId(
_Out_ PLONG ProcessId
);
VOID UpdateProtectedProcessParentId(
_In_ LONG NewProcessId
);
2023-08-17 10:45:50 +02:00
#endif