mirror of https://github.com/xemu-project/xemu.git
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>
This commit is contained in:
parent
a3ac6b53d4
commit
72711efb58
|
@ -28,23 +28,8 @@ typedef void QEMUPutKBDEvent(void *opaque, int keycode);
|
||||||
typedef void QEMUPutLEDEvent(void *opaque, int ledstate);
|
typedef void QEMUPutLEDEvent(void *opaque, int ledstate);
|
||||||
typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state);
|
typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state);
|
||||||
|
|
||||||
typedef struct QEMUPutMouseEntry {
|
typedef struct QEMUPutMouseEntry QEMUPutMouseEntry;
|
||||||
QEMUPutMouseEvent *qemu_put_mouse_event;
|
typedef struct QEMUPutLEDEntry QEMUPutLEDEntry;
|
||||||
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;
|
|
||||||
} QEMUPutMouseEntry;
|
|
||||||
|
|
||||||
typedef struct QEMUPutLEDEntry {
|
|
||||||
QEMUPutLEDEvent *put_led;
|
|
||||||
void *opaque;
|
|
||||||
QTAILQ_ENTRY(QEMUPutLEDEntry) next;
|
|
||||||
} QEMUPutLEDEntry;
|
|
||||||
|
|
||||||
void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque);
|
void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque);
|
||||||
void qemu_remove_kbd_event_handler(void);
|
void qemu_remove_kbd_event_handler(void);
|
||||||
|
|
18
ui/input.c
18
ui/input.c
|
@ -29,6 +29,24 @@
|
||||||
#include "qmp-commands.h"
|
#include "qmp-commands.h"
|
||||||
#include "qapi-types.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 QEMUPutKBDEvent *qemu_put_kbd_event;
|
||||||
static void *qemu_put_kbd_event_opaque;
|
static void *qemu_put_kbd_event_opaque;
|
||||||
static QTAILQ_HEAD(, QEMUPutLEDEntry) led_handlers = QTAILQ_HEAD_INITIALIZER(led_handlers);
|
static QTAILQ_HEAD(, QEMUPutLEDEntry) led_handlers = QTAILQ_HEAD_INITIALIZER(led_handlers);
|
||||||
|
|
Loading…
Reference in New Issue