28 Jan
2026
28 Jan
'26
10:12 a.m.
Rémi Bernon (@rbernon) commented about dlls/wineandroid.drv/dllmain.c:
if (__wine_init_unix_call()) return FALSE;
params.register_window_callback = register_window_callback; - params.start_device_callback = android_start_device; + params.start_device_callback = (UINT64) android_start_device;
You need to cast it to UINT_PTR first, pointer might be 32bit and compilers will warn as well. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9977#note_128243