[PATCH 1/5] user32/tests: Add more SendInput tests.

Alexandre Julliard julliard at winehq.org
Thu Apr 8 12:01:26 CDT 2021


Rémi Bernon <rbernon at 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 at winehq.org



More information about the wine-devel mailing list