diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-08-25 10:49:02 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-08-25 10:49:02 +0200 |
commit | 2d487365a12c857a4c1fd424ce900f7b35855ba1 (patch) | |
tree | 412a11a0d26acc224895d520e1f0089975426de8 /eit.c | |
parent | e63b279d967564b847f19dbd694dab9a577acfb1 (diff) | |
download | vdr-2d487365a12c857a4c1fd424ce900f7b35855ba1.tar.gz vdr-2d487365a12c857a4c1fd424ce900f7b35855ba1.tar.bz2 |
New SVDRP command CLRE
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.48 2002/08/11 11:11:12 kls Exp $ + * $Id: eit.c 1.49 2002/08/25 10:43:36 kls Exp $ ***************************************************************************/ #include "eit.h" @@ -1035,6 +1035,13 @@ bool cSIProcessor::Read(FILE *f) return result; } +void cSIProcessor::Clear(void) +{ + cMutexLock MutexLock(&schedulesMutex); + delete schedules; + schedules = new cSchedules; +} + void cSIProcessor::SetEpgDataFileName(const char *FileName) { epgDataFileName = NULL; |