author | renatofilho |
Wed Oct 24 23:47:06 2007 +0100 (2007-10-24) | |
branch | trunk |
changeset 866 | 640fc18c9f37 |
parent 865 | 3eeb6b565018 |
permissions | -rw-r--r-- |
1 #include "gmyth-dbus-server.h"
3 int main (int argc, char* argv[])
4 {
5 GMainLoop *loop;
6 GMythDbusServer *srv;
8 g_type_init ();
9 g_thread_init (NULL);
12 loop = g_main_loop_new (NULL, FALSE);
13 srv = gmyth_dbus_server_start_dbus_service ();
15 if (srv)
16 g_main_loop_run (loop);
18 return 0;
19 }