?? debug.h
字號:
#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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -