Code: Alles auswählen
#include <sectionsdclient/sectionsdclient.h>
CSectionsdClient *g_Sectionsd;
CEPGData epgdata;
void getepg(int id) {
int chan_id = 0x2f1c;
if (g_Sectionsd->getActualEPGServiceKey(chan_id,&epgdata)) {
printf("[EPG] ID:%d TITLE=<%s>\n",epgdata.eventID,epgdata.title.c_str());
}
}
main() {
g_Sectionsd = new CSectionsdClient;
for (int i=0;i<0xffff;i++) {
getepg(i);
}
delete g_Sectionsd;
}
aber die hier tut mir garkein gefallen ..
anscheinend wird zwar sectiond connected aber er sendet nix.
mach ich was falsch ? was vergessen ?
kann sectionsd nur ein client at same time vertragen ?