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.

34 lines
524 B

  1. ////////////////////////////////////////////////
  2. // fudebug.h
  3. //
  4. // September.3,1997 H.Ishida (FPL)
  5. //
  6. // COPYRIGHT(C) FUJITSU LIMITED 1997
  7. #ifndef fudebug_h
  8. #define fudebug_h
  9. #include <minidrv.h>
  10. #if DBG && defined(TRACE_DDI)
  11. #define TRACEDDI(a) dbgPrintf a;
  12. #else
  13. #define TRACEDDI(a)
  14. #endif
  15. #if DBG && defined(TRACE_OUT)
  16. #define TRACEOUT(a) dbgPrintf a;
  17. #else
  18. #define TRACEOUT(a)
  19. #endif
  20. #if DBG
  21. void dbgPrintf(LPSTR pszMsg, ...);
  22. #endif
  23. #endif // !fudebug_h
  24. // end of fudebug.h