diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-19 17:48:42 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-19 17:48:42 +0200 |
commit | 0d85a30e61e662affc1d12a4c1ca71d8b7a8e94b (patch) | |
tree | f1abf85d169796ba86cd6bedcdbb380f72697bd6 /remote.h | |
parent | 3219452195dec73875dfc5e30e575df11b33d4e8 (diff) | |
download | vdr-0d85a30e61e662affc1d12a4c1ca71d8b7a8e94b.tar.gz vdr-0d85a30e61e662affc1d12a4c1ca71d8b7a8e94b.tar.bz2 |
Fixed 'confirm' dialog
Diffstat (limited to 'remote.h')
-rw-r--r-- | remote.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: remote.h 1.8 2000/09/16 14:01:14 kls Exp $ + * $Id: remote.h 1.9 2000/09/19 17:39:36 kls Exp $ */ #ifndef __REMOTE_H @@ -29,7 +29,7 @@ public: virtual void SetPoints(unsigned char Dp, bool On) {} virtual bool String(char *s) { return true; } virtual bool DetectCode(unsigned char *Code, unsigned short *Address) { return true; } - virtual void Flush(int WaitSeconds = 0) {} + virtual void Flush(int WaitMs = 0) {} virtual bool InputAvailable(bool Wait = false) = 0; virtual bool GetCommand(unsigned int *Command, unsigned short *Address = NULL) = 0; }; @@ -42,7 +42,7 @@ private: public: cRcIoKBD(void); virtual ~cRcIoKBD(); - virtual void Flush(int WaitSeconds = 0); + virtual void Flush(int WaitMs = 0); virtual bool InputAvailable(bool Wait = false); virtual bool GetCommand(unsigned int *Command, unsigned short *Address = NULL); }; @@ -69,7 +69,7 @@ public: virtual void SetPoints(unsigned char Dp, bool On); virtual bool String(char *s); virtual bool DetectCode(unsigned char *Code, unsigned short *Address); - virtual void Flush(int WaitSeconds = 0); + virtual void Flush(int WaitMs = 0); virtual bool InputAvailable(bool Wait = false); virtual bool GetCommand(unsigned int *Command, unsigned short *Address = NULL); }; @@ -85,7 +85,7 @@ private: public: cRcIoLIRC(char *DeviceName); virtual ~cRcIoLIRC(); - virtual void Flush(int WaitSeconds = 0); + virtual void Flush(int WaitMs = 0); virtual bool InputAvailable(bool Wait = false); virtual bool GetCommand(unsigned int *Command, unsigned short *Address = NULL); }; |