aboutsummaryrefslogtreecommitdiffstats
path: root/qemu-gtk.h
diff options
context:
space:
mode:
authorkraxel <kraxel>2008-09-30 12:14:49 +0000
committerkraxel <kraxel>2008-09-30 12:14:49 +0000
commiteb91e8c3ca50b3124b40e37a5c5836734eb36000 (patch)
tree5feaecb9453ce70ed9aff3069d98602349cbacfe /qemu-gtk.h
parentdefe66190b7e8b1c877b44d6cbb8a20b8eb13f24 (diff)
downloadqemu-gtk-eb91e8c3ca50b3124b40e37a5c5836734eb36000.tar.gz
- media change support.
Diffstat (limited to 'qemu-gtk.h')
-rw-r--r--qemu-gtk.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/qemu-gtk.h b/qemu-gtk.h
index ab4a309..4e63d8c 100644
--- a/qemu-gtk.h
+++ b/qemu-gtk.h
@@ -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);