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.

32 lines
685 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1996, Microsoft Corporation
  4. //
  5. // File: qutildbg.hxx
  6. //
  7. // Contents: macros, definitions for debugging
  8. //
  9. // Classes:
  10. //
  11. // History: 20-June-96 dlee Created
  12. //
  13. //----------------------------------------------------------------------------
  14. #pragma once
  15. DECLARE_DEBUG(qutil)
  16. #if DBG
  17. #define qutilDebugOut(x) qutilInlineDebugOut x
  18. #define qutilAssert(x) Win4Assert x
  19. #define qutilDebugStr(x) qutilInlineDebugOut x
  20. #else // DBG
  21. #define qutilDebugStr(x)
  22. #define qutilDebugOut(x)
  23. #define qutilAssert(x)
  24. #endif // DBG