diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-03-23 15:20:00 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-03-23 15:20:00 +0100 |
commit | be06e04d5583264f67d365d2fe32ebe89472c722 (patch) | |
tree | 8be2785871bec004e19cc505fbae329d08230d0a /ci.h | |
parent | e76f9858400b0fa0df8feadbd891ab9066f76a14 (diff) | |
download | vdr-be06e04d5583264f67d365d2fe32ebe89472c722.tar.gz vdr-be06e04d5583264f67d365d2fe32ebe89472c722.tar.bz2 |
CAM access only for CA channels and no longer during replay
Diffstat (limited to 'ci.h')
-rw-r--r-- | ci.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: ci.h 1.3 2003/02/16 10:55:21 kls Exp $ + * $Id: ci.h 1.4 2003/03/23 15:18:40 kls Exp $ */ #ifndef __CI_H @@ -80,6 +80,7 @@ class cCiHandler { private: cMutex mutex; int numSlots; + bool enabled; cCiSession *sessions[MAX_CI_SESSION]; cCiTransportLayer *tpl; cCiTransportConnection *tc; @@ -95,6 +96,7 @@ private: public: ~cCiHandler(); static cCiHandler *CreateCiHandler(const char *FileName); + void SetEnabled(bool Enabled) { enabled = Enabled; } bool Process(void); bool EnterMenu(int Slot); cCiMenu *GetMenu(void); |