Re: [Qemu-devel] [PATCH 3/4] ui/input: Add activate/remove for keyboard handlers

2017-06-13 Thread Owen Smith
Noted, I have had a look at porting the xenfb input handlers to the qemu_input_handler_*() functions, and will post an update that combines patch 3 and 4 of this series. From: Gerd Hoffmann Sent: 08 June 2017 14:39 To: Owen Smith; qemu-d

Re: [Qemu-devel] [PATCH 3/4] ui/input: Add activate/remove for keyboard handlers

2017-06-08 Thread Gerd Hoffmann
diff --git a/ui/input-legacy.c b/ui/input-legacy.c > index 7159747..fbe1ce7 100644 > --- a/ui/input-legacy.c > +++ b/ui/input-legacy.c > @@ -142,6 +142,18 @@ QEMUPutKbdEntry > *qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque) >  return entry; >  } >   > +void qemu_activate_kbd_ev

[Qemu-devel] [PATCH 3/4] ui/input: Add activate/remove for keyboard handlers

2017-06-08 Thread Owen Smith
Adds missing functions to activate and remove keyboard handlers * qemu_activate_kbd_event_handler * qemu_remove_kbd_event_handler Signed-off-by: Owen Smith --- include/ui/console.h | 2 ++ ui/input-legacy.c| 12 2 files changed, 14 insertions(+) diff --git a/include/ui/console