mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
12 lines
295 B
C
12 lines
295 B
C
|
#ifndef DRIVER_H
|
||
|
#define DRIVER_H
|
||
|
|
||
|
#include <ntddk.h>
|
||
|
|
||
|
#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
|