summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-09-01 15:04:14 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2001-09-01 15:04:14 +0200
commit5a5fc72814c0a687d38b64c387f9bda642f8c4aa (patch)
tree08f216114cc768b79d3e3447457e2066631638c9 /menu.h
parente2701822e83dbdb893e60ab556dbb0cbc7b3af21 (diff)
downloadvdr-5a5fc72814c0a687d38b64c387f9bda642f8c4aa.tar.gz
vdr-5a5fc72814c0a687d38b64c387f9bda642f8c4aa.tar.bz2
Stopping finished timer recordings before starting new ones
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/menu.h b/menu.h
index 58cc8469..2c5ed394 100644
--- a/menu.h
+++ b/menu.h
@@ -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);
};