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.

48 lines
787 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1993.
  5. //
  6. // File: debug.h
  7. //
  8. // Contents:
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 9-21-94 RichardW Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #ifndef __DEBUG_H__
  18. #define __DEBUG_H__
  19. #include <dsysdbg.h>
  20. // The following Debug Flags can be turned on to trace different areas to
  21. // trace while executing. Feel free to add more levels.
  22. #define DEB_TRACE_UI 0x00000008
  23. #if DBG
  24. DECLARE_DEBUG2(MoveMe);
  25. #define DebugLog(x) MoveMeDebugPrint x
  26. #else // Not DBG
  27. #define DebugLog(x)
  28. #endif
  29. VOID
  30. InitDebugSupport(
  31. VOID );
  32. #endif // __DEBUG_H__