aboutsummaryrefslogtreecommitdiff
path: root/lib/service/service.h
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-09-29 23:06:02 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-09-29 23:06:02 +0000
commitfc233e3a96e68514165781859afc94a2bb33e9e9 (patch)
tree83aa8cbf23e063dbb4d6d145f74c6534dfec6bca /lib/service/service.h
parent75cfae3a16a0ce7f806871d11c53d9e50fbfacd1 (diff)
downloadenigma2-fc233e3a96e68514165781859afc94a2bb33e9e9.tar.gz
enigma2-fc233e3a96e68514165781859afc94a2bb33e9e9.zip
consistently use iServiceHandler instead of eServiceCenter to use properly wrapped interface
Diffstat (limited to 'lib/service/service.h')
-rw-r--r--lib/service/service.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/service/service.h b/lib/service/service.h
index e08c2ada..f98d3e51 100644
--- a/lib/service/service.h
+++ b/lib/service/service.h
@@ -27,7 +27,8 @@ public:
RESULT offlineOperations(const eServiceReference &, ePtr<iServiceOfflineOperations> &ptr);
// eServiceCenter
- static RESULT getInstance(eServiceCenterPtr &ptr) { ptr = instance; return 0; }
+ static RESULT getPrivInstance(eServiceCenterPtr &ptr) { ptr = instance; return 0; }
+ static RESULT getInstance(iServiceHandlerPtr &SWIG_NAMED_OUTPUT(ptr)) { ptr = instance; return 0; }
RESULT addServiceFactory(int id, iServiceHandler *hnd);
RESULT removeServiceFactory(int id);
};