标签: c++ windows unicode
我想用unicode获得Spotify窗口标题,但是GetWindowText总是返回一个截断的标题,例如“ artist-”,其中真正的标题是“ artist-[unicode title]”。但是GetWindowTextLength返回标题的真实长度,因此我不明白为什么它不起作用。
GetWindowText
GetWindowTextLength
wchar_t *wnd_title = new wchar_t[256]; GetWindowText(spotify_hwnd, wnd_title, 256);