diff options
| author | Daniel P. Berrange <berrange@redhat.com> | 2017-09-29 11:12:01 +0100 |
|---|---|---|
| committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-10-16 14:50:54 +0200 |
| commit | 3ad35e7a9bf98da8f2f6fb3335bc57bce70e3767 (patch) | |
| tree | 05aca73b0706e266203492049a7898bac3101743 /include/ui/input.h | |
| parent | af07e5ff02ae6d4258fc5331007811d0b1c4d35a (diff) | |
| download | focaccia-qemu-3ad35e7a9bf98da8f2f6fb3335bc57bce70e3767.tar.gz focaccia-qemu-3ad35e7a9bf98da8f2f6fb3335bc57bce70e3767.zip | |
ui: don't export qemu_input_event_new_key
All public code should use qemu_input_event_send_key* functions instead of creating an event directly. Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Message-id: 20170929101201.21039-7-berrange@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include/ui/input.h')
| -rw-r--r-- | include/ui/input.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/ui/input.h b/include/ui/input.h index 479cc46cfc..f8cee43f65 100644 --- a/include/ui/input.h +++ b/include/ui/input.h @@ -38,7 +38,6 @@ void qemu_input_event_send_impl(QemuConsole *src, InputEvent *evt); void qemu_input_event_sync(void); void qemu_input_event_sync_impl(void); -InputEvent *qemu_input_event_new_key(KeyValue *key, bool down); void qemu_input_event_send_key(QemuConsole *src, KeyValue *key, bool down); void qemu_input_event_send_key_number(QemuConsole *src, int num, bool down); void qemu_input_event_send_key_qcode(QemuConsole *src, QKeyCode q, bool down); |