diff options
Diffstat (limited to 'eit.c')
-rw-r--r-- | eit.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -16,7 +16,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: eit.c 1.35 2002/02/15 13:58:26 kls Exp $ + * $Id: eit.c 1.36 2002/02/23 13:53:53 kls Exp $ ***************************************************************************/ #include "eit.h" @@ -913,6 +913,13 @@ cSIProcessor::~cSIProcessor() delete fileName; } +const cSchedules *cSIProcessor::Schedules(cMutexLock &MutexLock) +{ + if (MutexLock.Lock(&schedulesMutex)) + return schedules; + return NULL; +} + void cSIProcessor::SetEpgDataFileName(const char *FileName) { epgDataFileName = NULL; |