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
674 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1994, Microsoft Corporation
  4. //
  5. // File: srchdbg.hxx
  6. //
  7. // Contents: macros, definitions for debugging
  8. //
  9. // Classes:
  10. //
  11. // History: 20-Dec-94 dlee Created
  12. //
  13. //----------------------------------------------------------------------------
  14. #pragma once
  15. DECLARE_DEBUG(srch)
  16. #if DBG
  17. #define srchDebugOut(x) srchInlineDebugOut x
  18. #define srchAssert(x) Win4Assert x
  19. #define srchDebugStr(x) srchInlineDebugOut x
  20. #else // DBG
  21. #define srchDebugStr(x)
  22. #define srchDebugOut(x)
  23. #define srchAssert(x)
  24. #endif // DBG