diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-04-24 12:08:37 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-04-24 11:50:18 -0500 |
commit | 72711efb58c13e28c89813490120b32947a2d719 (patch) | |
tree | 9473e824dfff783dd042d58420007908672af8ac /ui/input.c | |
parent | a3ac6b53d4e8ed6fa2ca1af87c68a8b7d5535220 (diff) | |
download | qemu-72711efb58c13e28c89813490120b32947a2d719.zip |
input: make QEMUPutLEDEntry + QEMUPutMouseEntry private
There is no need for anybody outside ui/input.c to access the
struct elements. Move the definitions, leaving only the typedefs
in the header files.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 1366798118-3248-2-git-send-email-kraxel@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'ui/input.c')
-rw-r--r-- | ui/input.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ui/input.c b/ui/input.c index ecfeb43824..d8793e7798 100644 --- a/ui/input.c +++ b/ui/input.c @@ -29,6 +29,24 @@ #include "qmp-commands.h" #include "qapi-types.h" +struct QEMUPutMouseEntry { + QEMUPutMouseEvent *qemu_put_mouse_event; + void *qemu_put_mouse_event_opaque; + int qemu_put_mouse_event_absolute; + char *qemu_put_mouse_event_name; + + int index; + + /* used internally by qemu for handling mice */ + QTAILQ_ENTRY(QEMUPutMouseEntry) node; +}; + +struct QEMUPutLEDEntry { + QEMUPutLEDEvent *put_led; + void *opaque; + QTAILQ_ENTRY(QEMUPutLEDEntry) next; +}; + static QEMUPutKBDEvent *qemu_put_kbd_event; static void *qemu_put_kbd_event_opaque; static QTAILQ_HEAD(, QEMUPutLEDEntry) led_handlers = QTAILQ_HEAD_INITIALIZER(led_handlers); |