9 Jan
2023
9 Jan
'23
1:37 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/user32/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))
the e here probably means the expected length. And then you changed it to use strings. Not a big deal but we usually pass a, b, etc for these parameters. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1886#note_20543