[svn r918] moved debian dir from gst-gmyth and libgnomevfs2-mythtv to packages project
3 #include "gmyth_upnp.h"
6 _device_found_cb (GMythUPnP *upnp,
7 GMythBackendInfo *info,
10 g_debug ("BACKEND FOUND: %s", info->hostname);
14 _device_lost_cb (GMythUPnP *upnp,
15 GMythBackendInfo *info,
18 g_debug ("BACKEND LOST: %s", info->hostname);
23 int main (int argc, char** argv)
31 o = gmyth_upnp_get_instance ();
34 G_CALLBACK (_device_found_cb),
38 G_CALLBACK (_device_lost_cb),
42 gmyth_upnp_search (o);
44 loop = g_main_loop_new (NULL, FALSE);
45 g_main_loop_run (loop);