gmyth-dbus/src/main.c
author renatofilho
Thu Oct 25 15:40:47 2007 +0100 (2007-10-25)
branchtrunk
changeset 870 735d9b563b02
child 878 016b3410871d
permissions -rw-r--r--
[svn r876] renamed project
renatofilho@870
     1
#include "gmyth-dbus-server.h"
renatofilho@870
     2
renatofilho@870
     3
int main (int argc, char* argv[])
renatofilho@870
     4
{
renatofilho@870
     5
    GMainLoop *loop;
renatofilho@870
     6
    GMythDbusServer *srv;
renatofilho@870
     7
renatofilho@870
     8
    g_type_init ();
renatofilho@870
     9
    g_thread_init (NULL);
renatofilho@870
    10
renatofilho@870
    11
renatofilho@870
    12
    loop = g_main_loop_new (NULL, FALSE);
renatofilho@870
    13
    srv = gmyth_dbus_server_start_dbus_service ();
renatofilho@870
    14
renatofilho@870
    15
    if (srv)
renatofilho@870
    16
        g_main_loop_run (loop);
renatofilho@870
    17
renatofilho@870
    18
    return 0;
renatofilho@870
    19
}