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.

39 lines
513 B

  1. /*++
  2. Copyright (c) 1992,1993 Microsoft Corporation
  3. Module Name:
  4. debug.h
  5. Abstract:
  6. This module defines some simple macros for determining if we are using
  7. the checked or free version of a component.
  8. Author:
  9. James Bratsanos (v-jimbr) 8-Dec-1992
  10. --*/
  11. VOID DbgPsPrint(PTCHAR, ...);
  12. #if DBG==1 && DEVL==1
  13. #define MYPSDEBUG
  14. #else
  15. #undef MYPSDEBUG
  16. #endif
  17. #ifdef MYPSDEBUG
  18. #define DBGOUT(parm) ( printf parm )
  19. #else
  20. #define DBGOUT(parm)
  21. #endif
  22.