diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-03-26 09:46:58 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-03-26 09:46:58 +0200 |
commit | 22b60d96108b98f11af7fcf27f755637e2d106c5 (patch) | |
tree | 492770e115e27cd7621ff6865f7d855bcf140f45 /device.h | |
parent | 1fe46dfa9faf971fee27870a49f652485e52647a (diff) | |
download | vdr-22b60d96108b98f11af7fcf27f755637e2d106c5.tar.gz vdr-22b60d96108b98f11af7fcf27f755637e2d106c5.tar.bz2 |
The new function cDevice::ForceTransferMode() can be used to force the primary device into transfer mode
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.h 1.72 2006/02/04 14:22:08 kls Exp $ + * $Id: device.h 1.73 2006/03/26 09:42:40 kls Exp $ */ #ifndef __DEVICE_H @@ -236,6 +236,8 @@ protected: public: static int CurrentChannel(void) { return primaryDevice ? currentChannel : 0; } ///< Returns the number of the current channel on the primary device. + void ForceTransferMode(void); + ///< Forces the device into transfermode for the current channel. virtual bool HasLock(int TimeoutMs = 0);//XXX PLUGINS.html ///< Returns true if the device has a lock on the requested transponder. ///< Default is true, a specific device implementation may return false |