8 Apr
2021
8 Apr
'21
5:01 p.m.
Rémi Bernon <rbernon(a)codeweavers.com> writes:
+#ifdef _WIN64 + todo_wine + ok( res == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED, "SendInput returned %u, error %#x\n", res, GetLastError() ); +#else + ok( res == 16 && GetLastError() == 0xdeadbeef, "SendInput returned %u, error %#x\n", res, GetLastError() ); +#endif
I doubt that there's anything 64-bit specific about this. Most likely that's another case of imperfect WoW64 translation that wouldn't appear on pure 32-bit. I don't think we want to add #ifdefs for this. -- Alexandre Julliard julliard(a)winehq.org