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); }
posted on 2010-05-05 22:00 appstudy 阅读(1154) 评论(3) 编辑 收藏 引用
Powered by: C++博客 Copyright © appstudy