X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=internal.h;h=04512f9a97124893af9bae04964d008f58ec2ca4;hb=2c24cea28b2f4702105fcf4f54fc4e923697174a;hp=77b39073949e8c99989864489474b37340a060d0;hpb=13a89a846b79145209ac68fcc6295156699e55ea;p=ovirt-viewer.git diff --git a/internal.h b/internal.h index 77b3907..04512f9 100644 --- a/internal.h +++ b/internal.h @@ -103,13 +103,20 @@ struct vm { char *description; int hostid; int id; + int vnc_port; + int forward_vnc_port; + char *uuid; /* Printable UUID. */ + char *state; + + /* Only the fields above this point are required. The remainder may + * be NULL / -1 to indicate they were missing in the data we got + * back from the WUI. + */ + long mem_allocated; /* Kbytes */ long mem_used; /* Kbytes */ int vcpus_allocated; int vcpus_used; - char *state; - char *uuid; /* Printable UUID. */ - int vnc_port; char *mac_addr; /* Printable MAC addr. */ }; @@ -137,6 +144,11 @@ extern gboolean wui_thread_has_valid_vmlist (void); */ extern gboolean wui_thread_is_busy (void); +/* Returns true if the main vm list contains a + * running vm w/ the same name as specified one + */ +extern gboolean main_vmlist_has_running_vm(struct vm*); + /* Callbacks from the WUI thread to the main thread. The WUI thread * adds these to the Glib main loop using g_idle_add, which means they * actually get executed in the context of the main thread. @@ -169,4 +181,7 @@ extern gboolean main_login_error (gpointer str); /* The WUI thread reports a general status error. */ extern gboolean main_status_error (gpointer str); +/* The WUI thread has updated the vm list. */ +extern gboolean main_vmlist_updated (gpointer); + #endif /* OVIRT_VIEWER_INTERNAL_H */