aboutsummaryrefslogtreecommitdiff
path: root/lib/service/iservice.h
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-06-19 23:42:17 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-06-19 23:42:17 +0000
commitbfdeaba338b77279203281c775a103c6910e5c64 (patch)
tree40b14be7b1fb2e80563e7ab521ec60014a491ea2 /lib/service/iservice.h
parent4b058610123896242bfefcb0c55873fb0d2a6a93 (diff)
downloadenigma2-bfdeaba338b77279203281c775a103c6910e5c64.tar.gz
enigma2-bfdeaba338b77279203281c775a103c6910e5c64.zip
add stream() for play services
Diffstat (limited to 'lib/service/iservice.h')
-rw-r--r--lib/service/iservice.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/service/iservice.h b/lib/service/iservice.h
index 2e88f235..84356be8 100644
--- a/lib/service/iservice.h
+++ b/lib/service/iservice.h
@@ -704,6 +704,8 @@ public:
};
};
+class iStreamableService;
+
SWIG_IGNORE(iPlayableService);
class iPlayableService: public iPlayableService_ENUMS, public iObject
{
@@ -732,6 +734,7 @@ public:
virtual SWIG_VOID(RESULT) subtitle(ePtr<iSubtitleOutput> &SWIG_OUTPUT)=0;
virtual SWIG_VOID(RESULT) audioDelay(ePtr<iAudioDelay> &SWIG_OUTPUT)=0;
virtual SWIG_VOID(RESULT) rdsDecoder(ePtr<iRdsDecoder> &SWIG_OUTPUT)=0;
+ virtual SWIG_VOID(RESULT) stream(ePtr<iStreamableService> &SWIG_OUTPUT)=0;
};
SWIG_TEMPLATE_TYPEDEF(ePtr<iPlayableService>, iPlayableServicePtr);