aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-11-13 03:14:44 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-11-13 03:14:44 +0000
commite126edab6b5649fef4c00f871925e06f24338843 (patch)
tree69d1ad1f7a231fa9fcd1666e6d1f11c564e3a006 /lib
parent3d7cb9400565bd6909d4e4740b31880596018d9a (diff)
downloadenigma2-e126edab6b5649fef4c00f871925e06f24338843.tar.gz
enigma2-e126edab6b5649fef4c00f871925e06f24338843.zip
add stop service
Diffstat (limited to 'lib')
-rw-r--r--lib/nav/pcore.cpp5
-rw-r--r--lib/nav/pcore.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/lib/nav/pcore.cpp b/lib/nav/pcore.cpp
index 593af58e..3dbe7106 100644
--- a/lib/nav/pcore.cpp
+++ b/lib/nav/pcore.cpp
@@ -46,6 +46,11 @@ RESULT pNavigation::pause(int p)
return m_core->pause(p);
}
+RESULT pNavigation::stopService()
+{
+ return m_core->stopService();
+}
+
void pNavigation::navEvent(eNavigation *nav, int event)
{
/* just relay the events here. */
diff --git a/lib/nav/pcore.h b/lib/nav/pcore.h
index 9e490844..20d7f94b 100644
--- a/lib/nav/pcore.h
+++ b/lib/nav/pcore.h
@@ -29,6 +29,7 @@ public:
RESULT enqueueService(const eServiceReference &service);
SWIG_VOID(RESULT) getCurrentService(ePtr<iPlayableService> &SWIG_OUTPUT);
SWIG_VOID(RESULT) getPlaylist(ePtr<ePlaylist> &SWIG_OUTPUT);
+ RESULT stopService();
RESULT pause(int p);
private: