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.

37 lines
1.0 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1997.
  5. //
  6. // File: debug.c
  7. //
  8. // Contents: Debug support
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 2-19-97 RichardW Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #include "xtcbpkg.h"
  18. DEFINE_DEBUG2( XtcbPkg );
  19. DEBUG_KEY XtcbPkgDebugKeys[] = { {DEB_ERROR, "Error"},
  20. {DEB_WARN, "Warning"},
  21. {DEB_TRACE, "Trace"},
  22. {DEB_TRACE_CREDS, "Creds"},
  23. {DEB_TRACE_CTXT, "Context"},
  24. {DEB_TRACE_CALLS, "Calls"},
  25. {DEB_TRACE_AUTH, "Auth"},
  26. {0, NULL},
  27. };
  28. void
  29. InitDebugSupport(void)
  30. {
  31. XtcbPkgInitDebug( XtcbPkgDebugKeys );
  32. }