摘要: void trace(char* szFormat, ...) { #ifdef _DEBUG char buff[1024] = {0}; va_list args; va_start(args,szFormat); _vsnprintf(buff, 1023, szFormat,args); OutputDebugString(buff); va_end( args); ... 阅读全文
posted @ 2008-03-20 10:07 ahuo 阅读(270) 评论(0) 推荐(0) 编辑