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.

29 lines
629 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1991 - 1992.
  5. //
  6. // File: CUDEBUG.HXX
  7. //
  8. // Contents: Cursor Debugging Help
  9. //
  10. //
  11. // History: 22-Dec-92 BartoszM Created.
  12. //
  13. //----------------------------------------------------------------------------
  14. #pragma once
  15. #if CIDBG == 1
  16. DECLARE_DEBUG(cu);
  17. # define cuDebugOut( x ) cuInlineDebugOut x
  18. # define cuAssert(e) Win4Assert(e)
  19. #else // CIDBG == 0
  20. # define cuDebugOut( x )
  21. # define cuAssert(e)
  22. #endif // CIDBG == 1