摘要: 使用OutputDebugStringW(LPCWSTR lpOutputString)在output输出指定点的调试状态,可代替断点调试调试开始行:1 WCHAR szLine[1024] = { 0 };//定义输出行2 {3 //调试输出开始4 swprintf_s(szLine, _countof(szLine), L"WriteClipboard() start...\n");5 ::OutputDebugStringW(szLine);6 }调试行:1 //输出调试点变量值或者函数返回值2 {3 swprintf_s(szLine, _countof... 阅读全文
posted @ 2012-07-12 09:58 海螺一枚 阅读(143) 评论(0) 推荐(0) 编辑