cxtvratedbg.h

来自「pci-tv卡底层驱动源代码」· C头文件 代码 · 共 25 行

H
25
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?