diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-09 13:57:39 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-09 13:57:39 +0200 |
commit | a4520107608cdd4abf38153fd169a78408b18ca0 (patch) | |
tree | 60aed7511e4e20e4696fa3606cca4615aa40fe81 /recording.h | |
parent | 765f8267a5542af43b405cdb8440c5534a3a2a65 (diff) | |
download | vdr-a4520107608cdd4abf38153fd169a78408b18ca0.tar.gz vdr-a4520107608cdd4abf38153fd169a78408b18ca0.tar.bz2 |
Changed the behaviour when hitting the end of a recording in fast forward mode
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recording.h b/recording.h index f0c3c0e5..28656855 100644 --- a/recording.h +++ b/recording.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.h 1.53 2006/02/25 12:24:46 kls Exp $ + * $Id: recording.h 1.54 2006/04/09 13:47:11 kls Exp $ */ #ifndef __RECORDING_H @@ -210,6 +210,7 @@ public: int Last(void) { CatchUp(); return last; } int GetResume(void) { return resumeFile.Read(); } bool StoreResume(int Index) { return resumeFile.Save(Index); } + bool IsStillRecording(void); }; class cFileName { |