, Windows API , . , (, GetWindowTextLengthW), , NULL . , .
-- , . , , , GetWindowTextLengthW GetWindowTextW.
, .
std::wstring GetWindowTitle(HWND hwnd) {
std::wstring title(16, L'X');
int cch;
do {
title.resize(2 * title.size());
cch = GetWindowTextW(hwnd, &title[0], title.size());
} while (cch + 1 == title.size());
title.resize(cch);
return title;
}
, Windows API. API C, ++. C -, , . ++ , .