我应该怎么做才能将 HWND 数据类型转换为 LPCSTR。OutputDebugStringA
我需要使用函数将其打印到调试窗口
问问题
2549 次
1 回答
2
您可以使用std::stringstream
std::stringstream ss;
ss << hwnd;
OutputDebugStringA(ss.str().c_str());
于 2013-10-26T21:46:14.203 回答