diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-14 13:11:23 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-10-14 13:11:23 +0200 |
commit | 67df515c06774a549078026816a32f8520c08d17 (patch) | |
tree | 505383398de6b3ecc2b3ef526a0a0cc62145e92a /dvbdevice.c | |
parent | 7780e3664a5d76c84b5d1971e833ba8cc27c0f82 (diff) | |
download | vdr-67df515c06774a549078026816a32f8520c08d17.tar.gz vdr-67df515c06774a549078026816a32f8520c08d17.tar.bz2 |
Added cDevice::CloseFilter(); some fixes to PLUGINS.html1.5.10
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index 5864f49e..1a396064 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 1.166 2007/10/13 11:15:50 kls Exp $ + * $Id: dvbdevice.c 1.167 2007/10/14 12:56:03 kls Exp $ */ #include "dvbdevice.h" @@ -711,6 +711,11 @@ int cDvbDevice::OpenFilter(u_short Pid, u_char Tid, u_char Mask) return -1; } +void cDvbDevice::CloseFilter(int Handle) +{ + close(Handle); +} + void cDvbDevice::TurnOffLiveMode(bool LiveView) { if (LiveView) { |