summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
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;