9 Jan
2023
9 Jan
'23
1:35 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/tests/edit.c:
DestroyWindow(hEdit); }
+/* In Windows 10+, the WM_PASTE message isn't always successful. + * So retry in case of failures. + */ +#define check_paste(h, e) _check_paste(__LINE__, (h), (e)) +static void _check_paste(unsigned int line, HWND hedit, unsigned explen)
Let's pass a string parameter to _check_paste() as what you did for user32/tests. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1886#note_20542