mirror-ac/testdrv/driver.h

12 lines
295 B
C
Raw Normal View History

2023-10-31 15:17:40 +01:00
#ifndef DRIVER_H
#define DRIVER_H
2023-11-01 10:48:14 +01:00
#include <ntifs.h>
2023-10-31 15:17:40 +01:00
#define STATIC static
#define VOID void
#define DEBUG_LOG(fmt, ...) DbgPrintEx(DPFLTR_IHVDRIVER_ID, 0, "[+] " fmt "\n", ##__VA_ARGS__)
#define DEBUG_ERROR(fmt, ...) DbgPrintEx(DPFLTR_IHVDRIVER_ID, 0, "[-] " fmt "\n", ##__VA_ARGS__)
#endif