diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-05-07 09:28:39 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-05-07 09:28:39 +0200 |
commit | 820de6bf5987a58f6ee06d7a9df5ebd89fb6cb90 (patch) | |
tree | c2203a9ad770f0cd8893071e70c3eb900d137825 /interface.c | |
parent | bc44196ee5cd21842cb5ff4e200ec3c54e86f5f9 (diff) | |
download | vdr-820de6bf5987a58f6ee06d7a9df5ebd89fb6cb90.tar.gz vdr-820de6bf5987a58f6ee06d7a9df5ebd89fb6cb90.tar.bz2 |
Displaying the recording DVB interface status in the decimal points of the RCU display
Diffstat (limited to 'interface.c')
-rw-r--r-- | interface.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/interface.c b/interface.c index a6b7e8f3..82f955dc 100644 --- a/interface.c +++ b/interface.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: interface.c 1.8 2000/05/06 15:24:18 kls Exp $ + * $Id: interface.c 1.9 2000/05/07 09:28:39 kls Exp $ */ #include "interface.h" @@ -336,6 +336,13 @@ void cInterface::DisplayChannel(int Number, const char *Name) } } +void cInterface::DisplayRecording(int Index, bool On) +{ +#ifndef DEBUG_REMOTE + RcIo.SetPoints(1 << Index, On); +#endif +} + bool cInterface::Recording(void) { // This is located here because the Interface has to do with the "PrimaryDvbApi" anyway |