summaryrefslogtreecommitdiff
path: root/ci.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-04-20 09:53:08 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-04-20 09:53:08 +0200
commit6bdfa4638d8ba2997de3913e2c3686ca1e6ab02c (patch)
tree71847f51eb82d5cefb6846edf6d69036f56a71c4 /ci.h
parent5573a03fdc2efcdc2be94d44d49737b2a4194d47 (diff)
downloadvdr-6bdfa4638d8ba2997de3913e2c3686ca1e6ab02c.tar.gz
vdr-6bdfa4638d8ba2997de3913e2c3686ca1e6ab02c.tar.bz2
Enhanced detection of pending user I/O from CAMs
Diffstat (limited to 'ci.h')
-rw-r--r--ci.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ci.h b/ci.h
index 07ca411b..79ed62f3 100644
--- a/ci.h
+++ b/ci.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: ci.h 1.6 2003/04/19 10:25:24 kls Exp $
+ * $Id: ci.h 1.7 2003/04/20 09:21:23 kls Exp $
*/
#ifndef __CI_H
@@ -81,6 +81,7 @@ private:
cMutex mutex;
int numSlots;
bool newCaSupport;
+ bool hasUserIO;
cCiSession *sessions[MAX_CI_SESSION];
cCiTransportLayer *tpl;
cCiTransportConnection *tc;
@@ -98,6 +99,7 @@ public:
static cCiHandler *CreateCiHandler(const char *FileName);
int NumSlots(void) { return numSlots; }
bool Process(void);
+ bool HasUserIO(void) { return hasUserIO; }
bool EnterMenu(int Slot);
cCiMenu *GetMenu(void);
cCiEnquiry *GetEnquiry(void);