Debug.h
上传用户:zhuzhu0204
上传日期:2020-07-13
资源大小:13165k
文件大小:0k
开发平台:

Visual C++

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