DEBUG.H
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
- #ifndef _DEBUG_H_
- #define _DEBUG_H_
- #ifndef _DECORE
- #ifdef _DEBUG
- extern void _SetPrintCond(
- int picnum_start, int picnum_end,
- int mba_start, int mba_end);
- extern void _Print(const char * format, ...);
- extern void _Break(int picnum, int mba);
- extern void _Error(const char * format, ...);
- #else
- #define _SetPrintCond(a, b, c, d)
- #define _Break(a, b)
- #define _Print
- #define _Error
- #endif // _DEBUG
- #else
- #define _SetPrintCond(a, b, c, d)
- #define _Break(a, b)
- #define _Print
- #define _Error
- #endif // ! _DECORE
- #endif // _DEBUG_H_