📄 cxtvratedbg.h
字号:
// cxTVRate.h
#ifndef _CXTVRATE_DBG_H
#define _CXTVRATE_DBG_H
#include "stdio.h"
static
void dbgPrnt( char *fmt, ... )
{
va_list args;
va_start( args, fmt );
char buf[200] = "cxTVRate: ";
vsprintf( buf + sizeof "cxTVRate: " - 1, fmt, args );
OutputDebugString( buf );
va_end( args );
}
#ifdef _DEBUG
#define DBP(x) dbgPrnt x
#else
#define DBP(x)
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -