mirror of
https://github.com/momo5502/hypervisor.git
synced 2025-04-20 05:55:44 +00:00
8 lines
172 B
C++
8 lines
172 B
C++
#pragma once
|
|
|
|
#ifdef NDEBUG
|
|
#define debug_log(...)
|
|
#else
|
|
#define debug_log(msg, ...) DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "[MOMO] " msg, __VA_ARGS__)
|
|
#endif
|