diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-02-17 16:03:49 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-02-17 16:03:49 +0100 |
commit | 3db87e806caf5deef10918e58294774a291eb939 (patch) | |
tree | df37900ceffc8111a1b5f56f177ae468059102fa /config.h | |
parent | aaf792357da5d9aaa0f8f61da78daf12508a69c4 (diff) | |
download | vdr-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.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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; |