diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-11 15:48:54 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-11 15:48:54 +0200 |
commit | f7fff8b7be0cf0017cd83302439d3b44048669dc (patch) | |
tree | ccf8bcc398037f983e872a59029ec7ca506f93e9 /config.h | |
parent | 0b73f060d0a3b72bfac3da139d2cb0e40b1a78bc (diff) | |
download | vdr-f7fff8b7be0cf0017cd83302439d3b44048669dc.tar.gz vdr-f7fff8b7be0cf0017cd83302439d3b44048669dc.tar.bz2 |
If there is no free DVB device to record, the log message will now be given only once
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 5 |
1 files changed, 3 insertions, 2 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.58 2001/08/10 12:40:43 kls Exp $ + * $Id: config.h 1.59 2001/08/11 15:28:21 kls Exp $ */ #ifndef __CONFIG_H @@ -122,7 +122,7 @@ private: static const char *ToText(cTimer *Timer); public: enum { MaxFileName = 256 }; - bool recording; + bool recording, pending; int active; int channel; int day; @@ -145,6 +145,7 @@ public: time_t StartTime(void); time_t StopTime(void); void SetRecording(bool Recording); + void SetPending(bool Pending); static cTimer *GetMatch(void); static int TimeToInt(int t); static time_t Day(time_t t); |