28 Feb
2026
28 Feb
'26
7:05 p.m.
Esme Povirk (@madewokherd) commented about dlls/comdlg32/tests/itemdlg.c:
+ } + oldproc = (WNDPROC)GetPropA(hwnd, "OLD_PROC"); + if (oldproc) + return CallWindowProcW(oldproc, hwnd, msg, wparam, lparam); + return DefWindowProcW(hwnd, msg, wparam, lparam); +} + +static void test_control_events_selection(void) +{ + IFileDialog *pfd; + IFileDialogCustomize *pfdc; + ITestEventsImpl *events; + IFileDialogEvents *pEvents; + DWORD cookie; + HRESULT hr; + static const WCHAR button_text[] = {'t','e','s','t','B','u','t','t','o','n', 0}; This pattern is no longer necessary. We can just use `L"testButton"`.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/10193#note_130842