mirror of
https://github.com/momo5502/hypervisor.git
synced 2025-04-19 13:42:55 +00:00
7 lines
145 B
C
7 lines
145 B
C
#pragma once
|
|
|
|
#ifdef NDEBUG
|
|
#define DbgLog(...)
|
|
#else
|
|
#define DbgLog(...) DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, __VA_ARGS__)
|
|
#endif |