winex11: Remove stub tablet_get_packet wow64 thunk.

The previous commit ensures that the WTPACKET fields align between
32-bit and 64-bit architectures, so now we can use the same
tablet_get_packet without needing another thunk.
This commit is contained in:
John Chadwick 2024-09-29 19:29:05 -04:00 committed by Alexandre Julliard
parent 5b10f924fa
commit a5de8d85d3
Notes: Alexandre Julliard 2024-11-13 22:29:58 +01:00
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/wine/merge_requests/6584

View file

@ -811,12 +811,6 @@ C_ASSERT( ARRAYSIZE(__wine_unix_call_funcs) == unix_funcs_count );
#ifdef _WIN64
static NTSTATUS x11drv_wow64_tablet_get_packet( void *arg )
{
FIXME( "%p\n", arg );
return 0;
}
static NTSTATUS x11drv_wow64_tablet_info( void *arg )
{
struct
@ -837,7 +831,7 @@ const unixlib_entry_t __wine_unix_call_wow64_funcs[] =
{
x11drv_init,
x11drv_tablet_attach_queue,
x11drv_wow64_tablet_get_packet,
x11drv_tablet_get_packet,
x11drv_wow64_tablet_info,
x11drv_tablet_load_info,
};