我是 Winapi 的初学者,我正在尝试像这样(在 WM_PAINT 内部)将 wstringstream 转换为 LPCWSTR:
wstringstream ws;
ws << "my text" << endl;
LPCWSTR myWindowOutput = ws.str().c_str();
hdc = BeginPaint(hWnd, &ps);
TextOut(hdc, 150, 305, myWindowOutput, 10);
它只会产生垃圾,有人可以帮忙吗?谢谢你。