Leaked source code of windows server 2003
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.

36 lines
871 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1997.
  5. //
  6. // File: debug.h
  7. //
  8. // Contents: Debug helpers
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 2-20-97 RichardW Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #ifndef __DEBUG_H__
  18. #define __DEBUG_H__
  19. #include <dsysdbg.h>
  20. DECLARE_DEBUG2( XtcbPkg );
  21. #if DBG
  22. #define DebugLog(x) XtcbPkgDebugPrint x
  23. #else
  24. #define DebugLog(x)
  25. #endif
  26. #define DEB_TRACE_CREDS 0x00000008 // Trace Credentials
  27. #define DEB_TRACE_CTXT 0x00000010 // Trace contexts
  28. #define DEB_TRACE_CALLS 0x00000020 // Trace Enters
  29. #define DEB_TRACE_AUTH 0x00000040 // Trace Authentication
  30. #endif