branches/gmyth-0.1b/tests/http.c
author rosfran
Fri Feb 09 20:42:28 2007 +0000 (2007-02-09)
branchtrunk
changeset 346 4ba962630375
permissions -rw-r--r--
[svn r348] Fixes.
renatofilho@320
     1
#include <glib-object.h>
renatofilho@320
     2
#include "gmyth.h"
renatofilho@320
     3
#include <glib.h>
renatofilho@320
     4
renatofilho@320
     5
int
renatofilho@320
     6
main (int args, const char **argv)
renatofilho@320
     7
{
renatofilho@320
     8
    GMythBackendInfo *backend_info;
renatofilho@320
     9
    g_type_init();
renatofilho@320
    10
    //g_thread_init(NULL);
renatofilho@320
    11
renatofilho@320
    12
    backend_info = gmyth_backend_info_new ();
renatofilho@320
    13
renatofilho@320
    14
    gmyth_backend_info_set_hostname (backend_info, "localhost");
renatofilho@320
    15
    gmyth_backend_info_set_port (backend_info, 6543);
renatofilho@320
    16
    
renatofilho@320
    17
    GTimeVal* start = gmyth_util_string_to_time_val("2006-01-01T00:00");
renatofilho@320
    18
    GTimeVal* end = gmyth_util_string_to_time_val("2007-01-01T00:00");
renatofilho@320
    19
    GMythEpg epg;
renatofilho@320
    20
    epg  = retrieve_epg(backend_info, 6544, start, end, 0, 2, "True");
renatofilho@320
    21
renatofilho@320
    22
renatofilho@320
    23
    return 0;    
renatofilho@320
    24
}