diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-03-10 12:45:58 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-03-10 12:45:58 +0100 |
commit | f9a3885ef2d21cef30180f2a90a0a305981a27c6 (patch) | |
tree | 068fc60123196fdb2ac15c4304b7520bae96e18f /config.h | |
parent | 550c79e411a3e9237cb357bb4dab45cc3b7d5d0f (diff) | |
download | vdr-f9a3885ef2d21cef30180f2a90a0a305981a27c6.tar.gz vdr-f9a3885ef2d21cef30180f2a90a0a305981a27c6.tar.bz2 |
New Setup parameter TrustedTransponder
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 5 |
1 files changed, 4 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.103 2002/03/08 17:59:02 kls Exp $ + * $Id: config.h 1.104 2002/03/10 12:45:11 kls Exp $ */ #ifndef __CONFIG_H @@ -92,6 +92,8 @@ public: void Set(eKeys Key, unsigned int Code); }; +#define ISTRANSPONDER(f1, f2) (abs((f1) - (f2)) < 4) + class cChannel : public cListObject { private: static char *buffer; @@ -340,6 +342,7 @@ public: int LnbFrequHi; int DiSEqC; int SetSystemTime; + int TrustedTransponder; int MarginStart, MarginStop; int EPGScanTimeout; int EPGBugfixLevel; |