1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-04 10:11:51 +00:00

Prepare hypervisor

This commit is contained in:
momo5502
2022-03-26 21:19:01 +01:00
parent 49d259f3ae
commit 6ce3597bd3
5 changed files with 79 additions and 1 deletions

View File

@ -3,5 +3,5 @@
#ifdef NDEBUG
#define debug_log(...)
#else
#define debug_log(...) DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, __VA_ARGS__)
#define debug_log(msg, ...) DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "[MOMO] " msg, __VA_ARGS__)
#endif