diff options
Diffstat (limited to 'recording.c')
-rw-r--r-- | recording.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recording.c b/recording.c index 379627c..fa21df2 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.c 1.143 2006/03/26 09:11:00 kls Exp $ + * $Id: recording.c 1.144 2006/04/09 13:49:51 kls Exp $ */ #include "recording.h" @@ -1368,6 +1368,11 @@ int cIndexFile::Get(uchar FileNumber, int FileOffset) return -1; } +bool cIndexFile::IsStillRecording() +{ + return f >= 0; +} + // --- cFileName ------------------------------------------------------------- #include <errno.h> |