📄 whusb20debugprint.h
字号:
//////////////////////////////////////////////////////////////////////////////
//文件名称:DebugPrint.h
//文件功能:
//文件作者:张伟标
//工作部门:研究一室
//创建时间:2003年8月25日
//修改记录:
//版权所有:维豪信息技术有限公司
//
//Copyright 2003 WellHope Information Technology Corporation, Ltd.
//All rights reserved.
/////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
extern "C"
{
#endif
#define DEBUGPRINT 1 // Set to 1 to do DebugPrints in free version
/////////////////////////////////////////////////////////////////////////////
#if DBG || DEBUGPRINT
#define DODEBUGPRINT 1
#else
#define DODEBUGPRINT 0
#endif
#if DODEBUGPRINT
void DebugPrintInit(char*);
void DebugPrintClose();
void DebugPrintMsg(char*);
#else
#define DebugPrintInit(x)
#define DebugPrintClose()
#define DebugPrintMsg(x)
#endif
void DebugPrint2(int max, const char *format, ... );
void DebugPrint(const char *format, ... );
/////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif
/////////////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -