stdafx.h 에 추가한다.
#define _ON (0) #define _OFF (1) #define D0 _ON ? (VOID)0 : DebugView inline void DebugView(LPTSTR err, ...) { static CString strErr; va_list ap; va_start(ap, err); strErr.FormatV(err, ap); va_end(ap); OutputDebugString(_T("[프로젝트 이름] ") + strErr + _T("\n")); };
쓸 때는 이런 식으로 사용.
D0(_T("OpenProcess=%d %s"), _ttoi(buf), _T("abcde"));
[1776] [프로젝트 이름] OpenProcess=5012 abcde
DebugView
Helper
MFC
Macro
Retrieved from http://hyacinth.byus.net/moniwiki/wiki.php/C++/(MFC)DebugView 출력 Helper
last modified 2011-07-14 15:14:21