Added HandledExternally() to the EPG handler interface

This commit is contained in:
Klaus Schmidinger
2012-06-04 10:19:23 +02:00
parent 4bce65eb10
commit 8d8dd8ecbd
5 changed files with 28 additions and 5 deletions

11
epg.c
View File

@@ -7,7 +7,7 @@
* Original version (as used in VDR before 1.3.0) written by
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
*
* $Id: epg.c 2.15 2012/06/04 09:49:48 kls Exp $
* $Id: epg.c 2.16 2012/06/04 10:06:22 kls Exp $
*/
#include "epg.h"
@@ -1331,6 +1331,15 @@ bool cEpgHandlers::HandleEitEvent(cSchedule *Schedule, const SI::EIT::Event *Eit
return false;
}
bool cEpgHandlers::HandledExternally(const cChannel *Channel)
{
for (cEpgHandler *eh = First(); eh; eh = Next(eh)) {
if (eh->HandledExternally(Channel))
return true;
}
return false;
}
void cEpgHandlers::SetEventID(cEvent *Event, tEventID EventID)
{
for (cEpgHandler *eh = First(); eh; eh = Next(eh)) {