diff options
Diffstat (limited to 'qemu-gtk.h')
-rw-r--r-- | qemu-gtk.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -55,6 +55,10 @@ struct qemu_window { /* devices */ GtkActionGroup *mc_ag; guint mc_id; + GtkActionGroup *usb_ag; + guint usb_id; + GtkActionGroup *usbhost_ag; + guint usbhost_id; /* gdb */ GtkWidget *gdb_vte; @@ -88,3 +92,6 @@ void monitor_append(struct qemu_window *win, char *cmd); /* devices.c */ void devices_parse_info_block(struct qemu_window *win, char *str); +void devices_parse_info_usb(struct qemu_window *win, char *str); +void devices_parse_info_usbhost(struct qemu_window *win, char *str); +void devices_rescan(struct qemu_window *win); |