myth-dbus/src/main.c
author renatofilho
Wed Oct 24 20:01:02 2007 +0100 (2007-10-24)
branchtrunk
changeset 865 3eeb6b565018
child 866 640fc18c9f37
permissions -rw-r--r--
[svn r871] created myth dbus service
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@865
     9
renatofilho@865
    10
    loop = g_main_loop_new (NULL, FALSE);
renatofilho@865
    11
    srv = gmyth_dbus_server_start_dbus_service ();
renatofilho@865
    12
renatofilho@865
    13
    if (srv)
renatofilho@865
    14
        g_main_loop_run (loop);
renatofilho@865
    15
renatofilho@865
    16
    return 0;
renatofilho@865
    17
}