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.

38 lines
900 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1991 - 1997.
  5. //
  6. // File: vqdebug.hxx
  7. //
  8. // Contents: Query Local C++ Header File
  9. //
  10. // History: 19-Aug-91 KyleP Created.
  11. //
  12. //----------------------------------------------------------------------------
  13. #pragma once
  14. #if CIDBG == 1
  15. #define DEB_FINDFIRST (1 << 16)
  16. #define DEB_WIDLIST (1 << 17)
  17. #define DEB_REGEX (1 << 18)
  18. #define DEB_RESULTS (1 << 19)
  19. #define DEB_NORMALIZE (1 << 20)
  20. #define DEB_FILTER (1 << 21)
  21. #define DEB_PROPTIME (1 << 22)
  22. #define DEB_ROWTIME (1 << 23)
  23. #define DEB_PARSE (1 << 24)
  24. DECLARE_DEBUG(vq)
  25. # define vqDebugOut( x ) vqInlineDebugOut x
  26. # define vqAssert(e) Win4Assert(e)
  27. #else // CIDBG == 0
  28. # define vqDebugOut( x )
  29. # define vqAssert(e)
  30. #endif // CIDBG