renatofilho@320: #include renatofilho@320: #include "gmyth.h" renatofilho@320: #include renatofilho@320: renatofilho@320: int renatofilho@320: main (int args, const char **argv) renatofilho@320: { renatofilho@320: GMythBackendInfo *backend_info; renatofilho@320: g_type_init(); renatofilho@320: //g_thread_init(NULL); renatofilho@320: renatofilho@320: backend_info = gmyth_backend_info_new (); renatofilho@320: renatofilho@320: gmyth_backend_info_set_hostname (backend_info, "localhost"); renatofilho@320: gmyth_backend_info_set_port (backend_info, 6543); renatofilho@320: renatofilho@320: GTimeVal* start = gmyth_util_string_to_time_val("2006-01-01T00:00"); renatofilho@320: GTimeVal* end = gmyth_util_string_to_time_val("2007-01-01T00:00"); renatofilho@320: GMythEpg epg; renatofilho@320: epg = retrieve_epg(backend_info, 6544, start, end, 0, 2, "True"); renatofilho@320: renatofilho@320: renatofilho@320: return 0; renatofilho@320: }