diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-01 15:04:14 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-01 15:04:14 +0200 |
commit | 5a5fc72814c0a687d38b64c387f9bda642f8c4aa (patch) | |
tree | 08f216114cc768b79d3e3447457e2066631638c9 /menu.h | |
parent | e2701822e83dbdb893e60ab556dbb0cbc7b3af21 (diff) | |
download | vdr-5a5fc72814c0a687d38b64c387f9bda642f8c4aa.tar.gz vdr-5a5fc72814c0a687d38b64c387f9bda642f8c4aa.tar.bz2 |
Stopping finished timer recordings before starting new ones
Diffstat (limited to 'menu.h')
-rw-r--r-- | menu.h | 6 |
1 files changed, 3 insertions, 3 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.24 2001/08/19 14:44:32 kls Exp $ + * $Id: menu.h 1.25 2001/09/01 14:52:48 kls Exp $ */ #ifndef _MENU_H @@ -78,7 +78,7 @@ private: public: cRecordControl(cDvbApi *DvbApi, cTimer *Timer = NULL); virtual ~cRecordControl(); - bool Process(void); + bool Process(time_t t); bool Uses(cDvbApi *DvbApi) { return DvbApi == dvbApi; } void Stop(bool KeepInstant = false); bool IsInstant(void) { return instantId; } @@ -93,7 +93,7 @@ public: static void Stop(const char *InstantId); static void Stop(cDvbApi *DvbApi); static const char *GetInstantId(const char *LastInstantId); - static void Process(void); + static void Process(time_t t); static bool Active(void); }; |