Re: [PATCH v2] adb-mouse: convert to use QemuInputHandler

2024-09-10 Thread Philippe Mathieu-Daudé
On 10/9/24 22:36, Mark Cave-Ayland wrote: On 10/09/2024 15:48, Philippe Mathieu-Daudé wrote: Hi Mark, On 7/9/24 19:37, Mark Cave-Ayland wrote: Update the ADB mouse implementation to use QemuInputHandler instead of the legacy qemu_add_mouse_event_handler() function. Signed-off-by: Mark Cave-

Re: [PATCH v2] adb-mouse: convert to use QemuInputHandler

2024-09-10 Thread Mark Cave-Ayland
On 10/09/2024 15:48, Philippe Mathieu-Daudé wrote: Hi Mark, On 7/9/24 19:37, Mark Cave-Ayland wrote: Update the ADB mouse implementation to use QemuInputHandler instead of the legacy qemu_add_mouse_event_handler() function. Signed-off-by: Mark Cave-Ayland ---   hw/input/adb-mouse.c | 56

Re: [PATCH v2] adb-mouse: convert to use QemuInputHandler

2024-09-10 Thread Philippe Mathieu-Daudé
Hi Mark, On 7/9/24 19:37, Mark Cave-Ayland wrote: Update the ADB mouse implementation to use QemuInputHandler instead of the legacy qemu_add_mouse_event_handler() function. Signed-off-by: Mark Cave-Ayland --- hw/input/adb-mouse.c | 56 1 file cha

[PATCH v2] adb-mouse: convert to use QemuInputHandler

2024-09-07 Thread Mark Cave-Ayland
Update the ADB mouse implementation to use QemuInputHandler instead of the legacy qemu_add_mouse_event_handler() function. Signed-off-by: Mark Cave-Ayland --- hw/input/adb-mouse.c | 56 1 file changed, 46 insertions(+), 10 deletions(-) v2: - Rebase o