变体格式化调试

变体格式化调试

void DebugOutput(const char *pszFormat,...)
{
 va_list argp;
 va_start( argp, pszFormat );
 char strTemp[4096]={'\0'};
 _vsnprintf( strTemp, sizeof(strTemp), pszFormat, argp );
 va_end( argp ); 

 OutputDebugString(strTemp); 
}

你可能感兴趣的:(变体格式化调试)