diff options
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 2.40 2011/05/22 09:42:57 kls Exp $ + * $Id: device.c 2.41 2011/06/02 13:14:16 kls Exp $ */ #include "device.h" @@ -618,6 +618,16 @@ int cDevice::NumProvidedSystems(void) const return 0; } +int cDevice::SignalStrength(void) const +{ + return -1; +} + +int cDevice::SignalQuality(void) const +{ + return -1; +} + const cChannel *cDevice::GetCurrentlyTunedTransponder(void) const { return NULL; |