How do i convert HWND to LPCSTR in C++

2.7k Views Asked by At

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

1

There are 1 best solutions below

0
On BEST ANSWER

You can use std::stringstream

std::stringstream ss;
ss << hwnd;
OutputDebugStringA(ss.str().c_str());