diff -r 000000000000 -r 3eeb6b565018 myth-dbus/src/main.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/myth-dbus/src/main.c Wed Oct 24 20:01:02 2007 +0100 @@ -0,0 +1,17 @@ +#include "gmyth-dbus-server.h" + +int main (int argc, char* argv[]) +{ + GMainLoop *loop; + GMythDbusServer *srv; + + g_type_init (); + + loop = g_main_loop_new (NULL, FALSE); + srv = gmyth_dbus_server_start_dbus_service (); + + if (srv) + g_main_loop_run (loop); + + return 0; +}