/////////////////////////////////////////////////////////////////////////////
// 디버그 로그
/////////////////////////////////////////////////////////////////////////////
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);
}
반응형
'IT-개발,DB' 카테고리의 다른 글
[개발/MFC] GetLastError(), System Error Codes (0-999) (0) | 2011.09.20 |
---|---|
[개발/VC] IERefreshElevationPolicy() 함수 인터넷 익스플로러 보호모드에서 (0) | 2011.09.20 |
[개발/MFC] error LNK2001: "public: ... " ... 외부 기호를 확인할 수 없습니다. (0) | 2011.08.26 |
[개발/델파이] 델파이 단축키 (0) | 2011.08.21 |
[개발/MFC] Stack around the variable 'variable' was corrupted. (0) | 2011.08.18 |
댓글