Pergunta

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

Foi útil?

Solução

You can use std::stringstream

std::stringstream ss;
ss << hwnd;
OutputDebugStringA(ss.str().c_str());
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top