Debug.h
上传用户:kklily621
上传日期:2013-06-25
资源大小:252k
文件大小:1k
开发平台:

Visual C++

  1. //=============================================================================================
  2. /*
  3. Debug.h
  4. The Debug Header Function
  5. Project : XFILTER 1.0 Personal Firewall
  6. Author : Tony Zhu
  7. Create Date : 2001/08/03
  8. Email : xstudio@xfilt.com
  9. URL : http://www.xfilt.com
  10. Copyright (c) 2001-2002 XStudio Technology.
  11. All Rights Reserved.
  12. WARNNING: 
  13. */
  14. //=============================================================================================
  15. #ifdef _DEBUG
  16. #define ODS(fmt)
  17. {
  18. OutputDebugString(fmt);
  19. OutputDebugString(_T("n"));
  20. }
  21. #define ODS2(fmt,fmt2)
  22. {
  23. OutputDebugString(fmt);
  24. OutputDebugString(fmt2);
  25. OutputDebugString(_T("n"));
  26. }
  27. #define DP1(fmt, var)
  28. {
  29. TCHAR sOut[256];
  30. _stprintf(sOut, fmt, var);
  31. OutputDebugString(sOut);
  32. }
  33. #else
  34. #define ODS(fmt)
  35. #define ODS2(fmt,fmt2)
  36. #define DP1(fmt, x1)
  37. #endif