DEBUG.H
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #ifndef _DEBUG_H_
  2. #define _DEBUG_H_
  3. #ifndef _DECORE
  4. #ifdef _DEBUG
  5. extern void _SetPrintCond(
  6. int picnum_start, int picnum_end, 
  7. int mba_start, int mba_end);
  8. extern void _Print(const char * format, ...);
  9. extern void _Break(int picnum, int mba);
  10. extern void _Error(const char * format, ...);
  11. #else
  12. #define _SetPrintCond(a, b, c, d) 
  13. #define _Break(a, b) 
  14. #define _Print  
  15. #define _Error 
  16. #endif // _DEBUG
  17. #else
  18. #define _SetPrintCond(a, b, c, d) 
  19. #define _Break(a, b) 
  20. #define _Print  
  21. #define _Error 
  22. #endif // ! _DECORE
  23. #endif // _DEBUG_H_