diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-08-09 09:17:51 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-08-15 01:09:10 +0200 |
commit | 460f552a4173f8d798f52c2ad82c06a240094b17 (patch) | |
tree | 664c0232413faecc73fb0ee85eb9425847b7953f /src/Common | |
parent | 9bfe4780d4d23e5244b2784a80d7402268bee242 (diff) | |
download | VeraCrypt-460f552a4173f8d798f52c2ad82c06a240094b17.tar.gz VeraCrypt-460f552a4173f8d798f52c2ad82c06a240094b17.zip |
Windows Driver: Add extra traces and enable tracing in release build if DEBUG_TRACE defined.
Diffstat (limited to 'src/Common')
-rw-r--r-- | src/Common/Tcdefs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Common/Tcdefs.h b/src/Common/Tcdefs.h index 015a18aa..72d0e4ae 100644 --- a/src/Common/Tcdefs.h +++ b/src/Common/Tcdefs.h @@ -195,27 +195,27 @@ typedef int BOOL; #ifndef TC_TO_STRING # define TC_TO_STRING2(n) #n # define TC_TO_STRING(n) TC_TO_STRING2(n) #endif #ifdef DEVICE_DRIVER -# if defined (DEBUG) || 0 -# if 1 // DbgPrintEx is not available on Windows 2000 +# if defined (DEBUG) || defined (DEBUG_TRACE) +# if 0 // DbgPrintEx is not available on Windows 2000 # define Dump DbgPrint # else # define Dump(...) DbgPrintEx (DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, __VA_ARGS__) # endif # define DumpMem(...) DumpMemory (__VA_ARGS__) # else # define Dump(...) # define DumpMem(...) # endif #endif #if !defined (trace_msg) && !defined (TC_WINDOWS_BOOT) -# ifdef DEBUG +# if defined(DEBUG) || defined (DEBUG_TRACE) # ifdef DEVICE_DRIVER # define trace_msg Dump # elif defined (_WIN32) # define trace_msg(...) do { char msg[2048]; StringCbPrintfA (msg, sizeof (msg), __VA_ARGS__); OutputDebugString (msg); } while (0) # endif # define trace_point trace_msg (__FUNCTION__ ":" TC_TO_STRING(__LINE__) "\n") |