Debug.h
资源名称:P2PCSHARP.rar [点击查看]
上传用户:zhangjjyh
上传日期:2021-11-11
资源大小:1251k
文件大小:0k
源码类别:
P2P编程
开发平台:
Objective-C
- ////////////////////////////////////////////
- // Debug.h文件
- // 调试支持
- #ifndef __DEBUG_H__
- #define __DEBUG_H__
- #ifdef _DEBUG
- #define ODS(szOut)
- {
- OutputDebugString(szOut);
- }
- #define ODS1(szOut, var)
- {
- TCHAR sz[1024];
- _stprintf(sz, szOut, var);
- OutputDebugString(sz);
- }
- #else
- #define ODS(szOut)
- #define ODS1(szOut, var)
- #endif // _DEBUG
- #endif // __DEBUG_H__