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

Add basic runner to start the driver

This commit is contained in:
momo5502
2022-03-15 18:57:19 +01:00
parent 81a2aff035
commit 7b77c1a0a6
15 changed files with 207 additions and 18 deletions

7
src/driver/logging.hpp Normal file
View File

@ -0,0 +1,7 @@
#pragma once
#ifdef NDEBUG
#define DbgLog(...)
#else
#define debug_log(...) DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, __VA_ARGS__)
#endif