Debug.h
上传用户:zhangjjyh
上传日期:2021-11-11
资源大小:1251k
文件大小:0k
源码类别:

P2P编程

开发平台:

Objective-C

  1. ////////////////////////////////////////////
  2. // Debug.h文件
  3. // 调试支持
  4. #ifndef __DEBUG_H__
  5. #define __DEBUG_H__
  6. #ifdef _DEBUG
  7. #define ODS(szOut)
  8. {
  9. OutputDebugString(szOut);
  10. }
  11. #define ODS1(szOut, var)
  12. {
  13. TCHAR sz[1024];     
  14. _stprintf(sz, szOut, var);
  15. OutputDebugString(sz);
  16. }
  17. #else
  18. #define ODS(szOut)
  19. #define ODS1(szOut, var)
  20. #endif // _DEBUG
  21. #endif // __DEBUG_H__