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