Displaying the recording DVB interface status in the decimal points of the RCU display

This commit is contained in:
Klaus Schmidinger
2000-05-07 09:28:39 +02:00
parent bc44196ee5
commit 820de6bf59
5 changed files with 29 additions and 7 deletions

View File

@@ -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