質問

What should i do to convert a HWND data type to LPCSTR. I need to print it to debug window using OutputDebugStringA function

役に立ちましたか?

解決

You can use std::stringstream

std::stringstream ss;
ss << hwnd;
OutputDebugStringA(ss.str().c_str());
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top