VC中实现在OUTPUT中打印log

inline bool MyDbgStr(LPCSTR lpszFormat, ...)
{
    va_list   args;
    int       nBuf;
    TCHAR     szBuffer[512];
    va_start(args, lpszFormat);
    nBuf = _vsnprintf(szBuffer, sizeof(szBuffer)*sizeof(TCHAR), lpszFormat, args);
    Assert(nBuf > 0);
    OutputDebugString(szBuffer);
    va_end(args);
}
posted @ 2012-02-03 16:34  $逝水无痕$  阅读(175)  评论(0编辑  收藏  举报