aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
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: