diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-05-08 20:08:22 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-05-08 20:08:22 +0000 |
| commit | ca7d92c97764d916bb8dd6731efa1ccff693b944 (patch) | |
| tree | d5883fbc6b73cd2ce8bf4e85f64e26d26a605ac7 /lib/dvb/idvb.h | |
| parent | 4bbe1d7e132ead361bf179b8ee618bdaba2335dc (diff) | |
| download | enigma2-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.h | 8 |
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; |
