myth-dbus/src/main.c
author renatofilho
Wed Oct 24 23:47:06 2007 +0100 (2007-10-24)
branchtrunk
changeset 866 640fc18c9f37
parent 865 3eeb6b565018
permissions -rw-r--r--
[svn r872] fixed valuearray types
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
}