Pregunta

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

¿Fue útil?

Solución

You can use std::stringstream

std::stringstream ss;
ss << hwnd;
OutputDebugStringA(ss.str().c_str());
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top