diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-06-23 09:44:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-06-23 09:44:00 +0200 |
commit | 0bb9a1a77b866b79b73fc71e9863e7da5fc57c56 (patch) | |
tree | 69e37ffba78ba7aa1045431f935444f7d5bd31a2 /interface.h | |
parent | 359e90b8a7fee368e496b79ab253045b989fa6a5 (diff) | |
download | vdr-0bb9a1a77b866b79b73fc71e9863e7da5fc57c56.tar.gz vdr-0bb9a1a77b866b79b73fc71e9863e7da5fc57c56.tar.bz2 |
Moved handling of the Menu key entirely into vdr.c
Diffstat (limited to 'interface.h')
-rw-r--r-- | interface.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/interface.h b/interface.h index 240db631..137c7d48 100644 --- a/interface.h +++ b/interface.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: interface.h 1.26 2002/05/18 13:43:20 kls Exp $ + * $Id: interface.h 1.27 2002/06/22 14:39:48 kls Exp $ */ #ifndef __INTERFACE_H @@ -33,6 +33,7 @@ private: public: cInterface(int SVDRPport = 0); ~cInterface(); + bool IsOpen(void) { return open > 0; } void Open(int NumCols = 0, int NumLines = 0); void Close(void); void Interrupt(void) { interrupted = true; } |