myth-dbus/src/main.c
author renatofilho
Thu Oct 25 15:28:35 2007 +0100 (2007-10-25)
branchtrunk
changeset 868 d6e8c7ec5fd8
parent 865 3eeb6b565018
permissions -rw-r--r--
[svn r874] fixed retur of funcion programlist
renatofilho@865
     1
#include "gmyth-dbus-server.h"
renatofilho@865
     2
renatofilho@865
     3
int main (int argc, char* argv[])
renatofilho@865
     4
{
renatofilho@865
     5
    GMainLoop *loop;
renatofilho@865
     6
    GMythDbusServer *srv;
renatofilho@865
     7
renatofilho@865
     8
    g_type_init ();
renatofilho@866
     9
    g_thread_init (NULL);
renatofilho@866
    10
renatofilho@865
    11
renatofilho@865
    12
    loop = g_main_loop_new (NULL, FALSE);
renatofilho@865
    13
    srv = gmyth_dbus_server_start_dbus_service ();
renatofilho@865
    14
renatofilho@865
    15
    if (srv)
renatofilho@865
    16
        g_main_loop_run (loop);
renatofilho@865
    17
renatofilho@865
    18
    return 0;
renatofilho@865
    19
}