summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-02-17 16:03:49 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-02-17 16:03:49 +0100
commit3db87e806caf5deef10918e58294774a291eb939 (patch)
treedf37900ceffc8111a1b5f56f177ae468059102fa /config.h
parentaaf792357da5d9aaa0f8f61da78daf12508a69c4 (diff)
downloadvdr-3db87e806caf5deef10918e58294774a291eb939.tar.gz
vdr-3db87e806caf5deef10918e58294774a291eb939.tar.bz2
Taking EPG data from 'start + 5min' for instant recordings
Diffstat (limited to 'config.h')
-rw-r--r--config.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/config.h b/config.h
index 60cfafde..393bc77a 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 1.96 2002/02/17 12:17:29 kls Exp $
+ * $Id: config.h 1.97 2002/02/17 15:41:44 kls Exp $
*/
#ifndef __CONFIG_H
@@ -119,6 +119,12 @@ public:
bool Switch(cDvbApi *DvbApi = NULL, bool Log = true);
};
+enum eTimerActive { taInactive = 0,
+ taActive = 1,
+ taInstant = 2,
+ taActInst = (taActive | taInstant)
+ };
+
class cTimer : public cListObject {
private:
time_t startTime, stopTime;