void logoutput( const char * lpszFormat, ... ) { #ifdef _DEBUG va_list argList; va_start( argList, lpszFormat ); char chInput[512] = {0}; vsprintf( chInput, lpszFormat, argList ); va_end(argList); OutputDebugString( chInput ); OutputDebugString( "\n" ); #endif }
win32自建调试输出窗口
最新推荐文章于 2021-12-20 22:53:30 发布