diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-02-17 14:29:13 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-02-17 14:29:13 +0100 |
commit | e18b303818ee1ac918176ce07eb64d3d02ae122a (patch) | |
tree | 2b909d7e684acced6883166f9fcdbf2bacdaa3dd /menu.h | |
parent | a87e7625ddf38cd2e653a256899e9119505e92ac (diff) | |
download | vdr-e18b303818ee1ac918176ce07eb64d3d02ae122a.tar.gz vdr-e18b303818ee1ac918176ce07eb64d3d02ae122a.tar.bz2 |
Terminating timer when deleting recording
Diffstat (limited to 'menu.h')
-rw-r--r-- | menu.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.h 1.35 2002/01/20 13:38:34 kls Exp $ + * $Id: menu.h 1.36 2002/02/17 13:40:41 kls Exp $ */ #ifndef _MENU_H @@ -92,6 +92,8 @@ public: void Stop(bool KeepInstant = false); bool IsInstant(void) { return instantId; } const char *InstantId(void) { return instantId; } + const char *FileName(void) { return fileName; } + cTimer *Timer(void) { return timer; } }; class cRecordControls { @@ -103,6 +105,7 @@ public: static void Stop(cDvbApi *DvbApi); static bool StopPrimary(bool DoIt = false); static const char *GetInstantId(const char *LastInstantId); + static cRecordControl *GetRecordControl(const char *FileName); static void Process(time_t t); static bool Active(void); }; |