📄 debug.h
字号:
//------------------------------------------------------------------------------
// File: debug.h
//------------------------------------------------------------------------------
#ifndef __DEBUG__H
#define __DEBUG__H
void _cdecl DebugPrintF(TCHAR * szFormat, ...);
//Debug statements for Errors
#define DP_ERROR(msg) DebugPrintF msg // Error statements
#define DP_WARNING(msg) DebugPrintF msg // Warning statements
//main debugging statements
#define DP_FUNC(msg) //DebugPrintF msg //function calling statements
#define DP_INFO(msg) //DebugPrintF msg //Information statements
#define DP_DATA(msg) //DebugPrintF msg //Input/Output statements
#endif // __DEBUG__H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -