From: Felix Domke Date: Sun, 13 Nov 2005 03:14:44 +0000 (+0000) Subject: add stop service X-Git-Tag: 2.6.0~5280 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/e126edab6b5649fef4c00f871925e06f24338843 add stop service --- 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 &SWIG_OUTPUT); SWIG_VOID(RESULT) getPlaylist(ePtr &SWIG_OUTPUT); + RESULT stopService(); RESULT pause(int p); private: