add setInfo / setInfoString for iServiceInformation and iStaticServiceInformation
[enigma2.git] / lib / service / service.cpp
index aa1ee4d855a0152a99b966f202b0bce57c635389..8ac7ebd41495c8e800fe0575fd73c68faa075de7 100644 (file)
@@ -208,4 +208,24 @@ PyObject* iServiceInformation::getInfoObject(int w)
        return Py_None;
 }
 
+int iStaticServiceInformation::setInfo(const eServiceReference &ref, int w, int v)
+{
+       return -1;
+}
+
+int iStaticServiceInformation::setInfoString(const eServiceReference &ref, int w, const char *v)
+{
+       return -1;
+}
+
+int iServiceInformation::setInfo(int w, int v)
+{
+       return -1;
+}
+
+int iServiceInformation::setInfoString(int w, const char *v)
+{
+       return -1;
+}
+
 eAutoInitPtr<eServiceCenter> init_eServiceCenter(eAutoInitNumbers::service, "eServiceCenter");