diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-08 18:31:11 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-11 18:31:27 +0100 |
commit | 84a279a83ff32eb31203a6c876ff26d009da4dec (patch) | |
tree | 95f292781980c6287939741425d840c656d8133a /src/Driver/Ntdriver.h | |
parent | 9a6b371c96dea8b82d915c2ce2ac7e621d029e0f (diff) | |
download | VeraCrypt-84a279a83ff32eb31203a6c876ff26d009da4dec.tar.gz VeraCrypt-84a279a83ff32eb31203a6c876ff26d009da4dec.zip |
Windows Driver: change inherited TrueCrypt constants in kernel objects tags by VeraCrypt specific values. These are used in crash dumps analysis and during debugging.
Diffstat (limited to 'src/Driver/Ntdriver.h')
-rw-r--r-- | src/Driver/Ntdriver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Driver/Ntdriver.h b/src/Driver/Ntdriver.h index 5fc92843..90ceb6b8 100644 --- a/src/Driver/Ntdriver.h +++ b/src/Driver/Ntdriver.h @@ -169,6 +169,6 @@ void GetElapsedTimeInit (LARGE_INTEGER *lastPerfCounter); int64 GetElapsedTime (LARGE_INTEGER *lastPerfCounter);
BOOL IsOSAtLeast (OSVersionEnum reqMinOS);
-#define TC_BUG_CHECK(status) KeBugCheckEx (SECURITY_SYSTEM, __LINE__, (ULONG_PTR) status, 0, 'TC')
+#define TC_BUG_CHECK(status) KeBugCheckEx (SECURITY_SYSTEM, __LINE__, (ULONG_PTR) status, 0, 'VC')
#endif // TC_HEADER_NTDRIVER
|