diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-09-02 09:35:31 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-09-02 09:35:31 +0200 |
commit | 378a05a96d797eb87be04dc9473a1e5562a32d4e (patch) | |
tree | 9d8a82bcf00daee9f091a8e76afcb2deeeaf4e7d /receiver.h | |
parent | 13edfc13820efc784c08b7b93e73f34a73c1e80e (diff) | |
download | vdr-378a05a96d797eb87be04dc9473a1e5562a32d4e.tar.gz vdr-378a05a96d797eb87be04dc9473a1e5562a32d4e.tar.bz2 |
Changed the semantics of the cReceiver::Activate() function (it is now called with 'false' *after* the receiver has been detached from the device
Diffstat (limited to 'receiver.h')
-rw-r--r-- | receiver.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: receiver.h 2.8 2012/06/02 13:20:44 kls Exp $ + * $Id: receiver.h 2.9 2012/09/02 09:27:20 kls Exp $ */ #ifndef __RECEIVER_H @@ -27,7 +27,7 @@ protected: void Detach(void); virtual void Activate(bool On) {} ///< This function is called just before the cReceiver gets attached to - ///< (On == true) or detached from (On == false) a cDevice. It can be used + ///< (On == true) and right after it gets detached from (On == false) a cDevice. It can be used ///< to do things like starting/stopping a thread. ///< It is guaranteed that Receive() will not be called before Activate(true). virtual void Receive(uchar *Data, int Length) = 0; |