aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/idvb.h
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-05-08 20:08:22 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-05-08 20:08:22 +0000
commitca7d92c97764d916bb8dd6731efa1ccff693b944 (patch)
treed5883fbc6b73cd2ce8bf4e85f64e26d26a605ac7 /lib/dvb/idvb.h
parent4bbe1d7e132ead361bf179b8ee618bdaba2335dc (diff)
downloadenigma2-ca7d92c97764d916bb8dd6731efa1ccff693b944.tar.gz
enigma2-ca7d92c97764d916bb8dd6731efa1ccff693b944.zip
fix "Clearall before scan" handling
add ability to reset the newfound flag from single service via channellist context menu add ability to the newfound flags for all services from a "orbital position" via channellist context menu
Diffstat (limited to 'lib/dvb/idvb.h')
-rw-r--r--lib/dvb/idvb.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/dvb/idvb.h b/lib/dvb/idvb.h
index aa4d4bb2..e9fb3cf0 100644
--- a/lib/dvb/idvb.h
+++ b/lib/dvb/idvb.h
@@ -316,11 +316,13 @@ public:
class iDVBChannelList: public iObject
{
public:
- virtual RESULT removeService(eServiceReferenceDVB service)=0;
+ virtual RESULT removeService(const eServiceReference &service)=0;
virtual RESULT removeServices(eDVBChannelID chid=eDVBChannelID(), unsigned int orb_pos=0xFFFFFFFF)=0;
- virtual RESULT addFlag(eServiceReferenceDVB service, unsigned int flagmask=0xFFFFFFFF)=0;
- virtual RESULT removeFlag(eServiceReferenceDVB service, unsigned int flagmask=0xFFFFFFFF)=0;
+ virtual RESULT removeServices(int dvb_namespace=-1, int tsid=-1, int onid=-1, unsigned int orb_pos=0xFFFFFFFF)=0;
+ virtual RESULT addFlag(const eServiceReference &service, unsigned int flagmask=0xFFFFFFFF)=0;
+ virtual RESULT removeFlag(const eServiceReference &service, unsigned int flagmask=0xFFFFFFFF)=0;
virtual RESULT removeFlags(unsigned int flagmask, eDVBChannelID chid=eDVBChannelID(), unsigned int orb_pos=0xFFFFFFFF)=0;
+ virtual RESULT removeFlags(unsigned int flagmask, int dvb_namespace=-1, int tsid=-1, int onid=-1, unsigned int orb_pos=0xFFFFFFFF)=0;
virtual RESULT addChannelToList(const eDVBChannelID &id, iDVBFrontendParameters *feparm)=0;
virtual RESULT removeChannel(const eDVBChannelID &id)=0;