diff options
author | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2024-11-06 12:09:28 +0000 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-11-08 11:06:42 +0100 |
commit | e7e76150a2e9642adf6763bcd8ca9a2a5d3b74b3 (patch) | |
tree | 53fb5783a275cdc3163db3fe4fc357aa7d75d7c2 /include | |
parent | 44e21ef055c4a9beef8766ca9a2c3bd32da664f1 (diff) |
ui/input-legacy.c: remove unused legacy qemu_add_kbd_event_handler() function
Since the last keyboard device has now been converted over to use
qemu_input_handler_register(), the legacy qemu_add_kbd_event_handler() function
is now unused and can be removed.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20241106120928.242443-3-mark.cave-ayland@ilande.co.uk>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/ui/console.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/ui/console.h b/include/ui/console.h index 5832d52a8a..46b3128185 100644 --- a/include/ui/console.h +++ b/include/ui/console.h @@ -70,8 +70,6 @@ typedef struct QEMUPutMouseEntry QEMUPutMouseEntry; typedef struct QEMUPutKbdEntry QEMUPutKbdEntry; typedef struct QEMUPutLEDEntry QEMUPutLEDEntry; -QEMUPutKbdEntry *qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, - void *opaque); QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func, void *opaque, int absolute, const char *name); |