debug.h
来自「VC++视频开发实例集锦(包括“远程视频监控”"语音识别系统"」· C头文件 代码 · 共 33 行
H
33 行
#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_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?