diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-02-11 11:04:41 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-02-11 11:04:41 +0100 |
commit | 535e755278ef51b923a71299204ec86da4229d02 (patch) | |
tree | ae4a8678bb0d9c83d4be44e39ee43070f1e97aa7 /recording.h | |
parent | 7a92a259546000c367042e4c901fc4789f2225cb (diff) | |
download | vdr-535e755278ef51b923a71299204ec86da4229d02.tar.gz vdr-535e755278ef51b923a71299204ec86da4229d02.tar.bz2 |
Implemented 'Rewind' in the 'Recordings' menu
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/recording.h b/recording.h index 2d3ea392..b561fa2f 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.12 2001/02/04 11:44:37 kls Exp $ + * $Id: recording.h 1.13 2001/02/11 10:45:52 kls Exp $ */ #ifndef __RECORDING_H @@ -17,6 +17,17 @@ void RemoveDeletedRecordings(void); void AssertFreeDiskSpace(void); +class cResumeFile { +private: + char *fileName; +public: + cResumeFile(const char *FileName); + ~cResumeFile(); + int Read(void); + bool Save(int Index); + void Delete(void); + }; + class cRecording : public cListObject { friend class cRecordings; private: |