diff options
Diffstat (limited to 'qemu-gtk.h')
-rw-r--r-- | qemu-gtk.h | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -2,7 +2,7 @@ struct qemu_window; struct qemu_mq { struct qemu_mq *next; - char cmd[64]; + char cmd[128]; }; enum vnc_state { @@ -52,6 +52,10 @@ struct qemu_window { struct qemu_mq *mqueue; struct qemu_mq *mrun; + /* devices */ + GtkActionGroup *mc_ag; + guint mc_id; + /* gdb */ GtkWidget *gdb_vte; pid_t gdb_pid; @@ -76,4 +80,5 @@ void qemu_conn_tab(struct qemu_window *win, struct qemu_conn *conn, int pos); int monitor_connect(struct qemu_window *win, char *dest); void monitor_append(struct qemu_window *win, char *cmd); - +/* devices.c */ +void devices_parse_info_block(struct qemu_window *win, char *str); |