diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-04-24 12:08:38 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-04-24 11:50:18 -0500 |
commit | 5a37532d0897de488c35ab2db6d86647bd2a1b6f (patch) | |
tree | 13c6185efc40487fef39999ba0055120ac739aac /include/ui | |
parent | 72711efb58c13e28c89813490120b32947a2d719 (diff) | |
download | qemu-5a37532d0897de488c35ab2db6d86647bd2a1b6f.zip qemu-5a37532d0897de488c35ab2db6d86647bd2a1b6f.tar.gz qemu-5a37532d0897de488c35ab2db6d86647bd2a1b6f.tar.bz2 |
input: introduce keyboard handler list
Add a linked list of keyboard handlers. Added handlers will go
to the head of the list. Removed handlers will be zapped from
the list. The head of the list will be used for events.
This fixes the keyboard-dead-after-usb-kbd-unplug issue, key events
will be re-routed to the ps/2 kbd instead of being discarded.
[ v2: fix cut+paste bug found my Markus ]
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 1366798118-3248-3-git-send-email-kraxel@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'include/ui')
-rw-r--r-- | include/ui/console.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/ui/console.h b/include/ui/console.h index 5cc5d0c..1c82f51 100644 --- a/include/ui/console.h +++ b/include/ui/console.h @@ -29,10 +29,12 @@ typedef void QEMUPutLEDEvent(void *opaque, int ledstate); typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state); typedef struct QEMUPutMouseEntry QEMUPutMouseEntry; +typedef struct QEMUPutKbdEntry QEMUPutKbdEntry; typedef struct QEMUPutLEDEntry QEMUPutLEDEntry; -void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque); -void qemu_remove_kbd_event_handler(void); +QEMUPutKbdEntry *qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, + void *opaque); +void qemu_remove_kbd_event_handler(QEMUPutKbdEntry *entry); QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func, void *opaque, int absolute, const char *name); |