aboutsummaryrefslogtreecommitdiff
path: root/lib/service/service.h
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-11-09 23:31:47 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-11-09 23:31:47 +0100
commitb2e416ea9717c8f8e0143a90d823125e9b4a57b6 (patch)
tree1a05eb8f2295208d2961deea011c20c95ac1a11e /lib/service/service.h
parent2f085dd58effc19da8e5fec68bb5d73b0b64eb3f (diff)
downloadenigma2-b2e416ea9717c8f8e0143a90d823125e9b4a57b6.tar.gz
enigma2-b2e416ea9717c8f8e0143a90d823125e9b4a57b6.zip
add addFactoryExtension/removeFactoryExtension to eServiceCenter
Diffstat (limited to 'lib/service/service.h')
-rw-r--r--lib/service/service.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/service/service.h b/lib/service/service.h
index 6f6ab980..ffc7d275 100644
--- a/lib/service/service.h
+++ b/lib/service/service.h
@@ -40,6 +40,8 @@ public:
static RESULT getPrivInstance(ePtr<eServiceCenter> &ptr) { ptr = instance; return 0; }
RESULT addServiceFactory(int id, iServiceHandler *hnd, std::list<std::string> &extensions);
RESULT removeServiceFactory(int id);
+ RESULT addFactoryExtension(int id, const char *extension);
+ RESULT removeFactoryExtension(int id, const char *extension);
#endif
static SWIG_VOID(RESULT) getInstance(ePtr<iServiceHandler> &SWIG_NAMED_OUTPUT(ptr)) { ptr = instance; return 0; }
};