summaryrefslogtreecommitdiff
path: root/remote.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-07-15 16:35:18 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-07-15 16:35:18 +0200
commitc9e45322981dbe4c235ad7b9909138626184666f (patch)
treeee9a63907dc6bf1fff8b208e9ec46bb26589c61f /remote.h
parent744849128df1318b70349223685d9fce8cf805c5 (diff)
downloadvdr-c9e45322981dbe4c235ad7b9909138626184666f.tar.gz
vdr-c9e45322981dbe4c235ad7b9909138626184666f.tar.bz2
Fixed/improved LIRC key handling
Diffstat (limited to 'remote.h')
-rw-r--r--remote.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/remote.h b/remote.h
index 38961b9c..7b94ac78 100644
--- a/remote.h
+++ b/remote.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: remote.h 1.6 2000/06/24 15:52:56 kls Exp $
+ * $Id: remote.h 1.7 2000/07/15 16:32:43 kls Exp $
*/
#ifndef __REMOTE_H
@@ -75,9 +75,9 @@ public:
class cRcIoLIRC : public cRcIoBase {
private:
- enum { LIRC_BUFFER_SIZE = 128 };
+ enum { LIRC_KEY_BUF = 8, LIRC_BUFFER_SIZE = 128 };
int f;
- char buf[LIRC_BUFFER_SIZE];
+ char keyName[LIRC_KEY_BUF];
const char *ReceiveString(void);
public:
cRcIoLIRC(char *DeviceName);