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.