본문 바로가기
IT-개발,DB

[개발/MFC] 비주얼스튜디오 디버깅 메세지 출력하기

by SB리치퍼슨 2011. 9. 7.


/////////////////////////////////////////////////////////////////////////////
// 디버그 로그
/////////////////////////////////////////////////////////////////////////////
void DebugLog(const char *format, ...)
{
va_list vl;
FILE *pf = NULL;
char szLog[512] = {0,};

va_start(vl, format);
wvsprintf(szLog, format, vl);
va_end(vl);
// sends a string to the debugger for display. show me the visual studio output window on debug mode. 
    OutputDebugString(szLog);
// or 
//TCHAR str[256];
//wsprintf(str, TEXT("current message : %s", szLog);
//OutputDebugString(str);
}
반응형

댓글