diff options
author | kraxel <kraxel> | 2008-09-30 12:14:49 +0000 |
---|---|---|
committer | kraxel <kraxel> | 2008-09-30 12:14:49 +0000 |
commit | eb91e8c3ca50b3124b40e37a5c5836734eb36000 (patch) | |
tree | 5feaecb9453ce70ed9aff3069d98602349cbacfe /qemu-gtk.h | |
parent | defe66190b7e8b1c877b44d6cbb8a20b8eb13f24 (diff) | |
download | qemu-gtk-eb91e8c3ca50b3124b40e37a5c5836734eb36000.tar.gz |
- media change support.
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); |