Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
926 B

  1. //+--------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation 2000
  6. //
  7. // File: debug.h
  8. //
  9. // Contents: debugging information for SSP
  10. //
  11. // Helper functions:
  12. //
  13. // History: KDamour 15Mar00 created
  14. //
  15. //---------------------------------------------------------------------
  16. #ifndef NTDIGEST_DEBUG_H
  17. #define NTDIGEST_DEBUG_H
  18. #include "dsysdbg.h"
  19. DECLARE_DEBUG2(Digest);
  20. #if DBG
  21. #define DebugLog(x) DigestDebugPrint x
  22. #else
  23. #define DebugLog(x)
  24. #endif
  25. #define DEB_ERROR 0x00000001
  26. #define DEB_WARN 0x00000002
  27. #define DEB_TRACE 0x00000004
  28. #define DEB_TRACE_ASC 0x00000008
  29. #define DEB_TRACE_ISC 0x00000010
  30. #define DEB_TRACE_LSA 0x00000020
  31. #define DEB_TRACE_USER 0x00000040
  32. #define DEB_TRACE_FUNC 0x00000080
  33. #define DEB_TRACE_MEM 0x00000100
  34. #define TRACE_STUFF 0x00000200
  35. #endif /* NTDIGEST_DEBUG_H */