renatofilho@865: #include "gmyth-dbus-server.h" renatofilho@865: renatofilho@865: int main (int argc, char* argv[]) renatofilho@865: { renatofilho@865: GMainLoop *loop; renatofilho@865: GMythDbusServer *srv; renatofilho@865: renatofilho@865: g_type_init (); renatofilho@866: g_thread_init (NULL); renatofilho@866: renatofilho@865: renatofilho@865: loop = g_main_loop_new (NULL, FALSE); renatofilho@865: srv = gmyth_dbus_server_start_dbus_service (); renatofilho@865: renatofilho@865: if (srv) renatofilho@865: g_main_loop_run (loop); renatofilho@865: renatofilho@865: return 0; renatofilho@865: }