3
我在WINAPI一個初學者,我想轉換wstringstream到LPCWSTR這樣的(內部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);
只產生垃圾雖然,有人可以幫忙嗎?謝謝。
你如何顯示字符串? –