author | renatofilho |
Thu Oct 25 15:28:35 2007 +0100 (2007-10-25) | |
branch | trunk |
changeset 868 | d6e8c7ec5fd8 |
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 }