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.