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.

31 lines
760 B

  1. //----------------------------------------------------------------------------
  2. //
  3. // rsdbg.cpp
  4. //
  5. // Setup debugging support.
  6. //
  7. // Copyright (C) Microsoft Corporation, 1997.
  8. //
  9. //----------------------------------------------------------------------------
  10. #include "rgb_pch.h"
  11. #pragma hdrstop
  12. #if 0 && DBG
  13. static DebugModuleFlags g_RastSpanInitOutputFlags[] =
  14. {
  15. DBG_DECLARE_MODFLAG(SPIM, INVALID),
  16. DBG_DECLARE_MODFLAG(SPIM, REPORT),
  17. 0, NULL,
  18. };
  19. static DebugModuleFlags g_RastSpanInitUserFlags[] =
  20. {
  21. DBG_DECLARE_MODFLAG(SPIU, BREAK_ON_SPANINIT),
  22. 0, NULL,
  23. };
  24. DBG_DECLARE_ONCE(RastSpanInit, SPI,
  25. g_RastSpanInitOutputFlags, 0,
  26. g_RastSpanInitUserFlags, 0);
  27. #endif // #if DBG