add ability to get ttxpid from python
[enigma2.git] / lib / service / servicefs.cpp
index cf3f31f62821e6606adf880d8544564cec7662a6..a22b88d33f5785a8a94259eceaa6cec8375120ef 100644 (file)
@@ -25,6 +25,7 @@ DEFINE_REF(eStaticServiceFSInformation);
 RESULT eStaticServiceFSInformation::getName(const eServiceReference &ref, std::string &name)
 {
        name = ref.path;
+       return 0;
 }
 
 // eServiceFactoryFS
@@ -176,4 +177,10 @@ int eServiceFS::compareLessEqual(const eServiceReference &a, const eServiceRefer
                return a.path < b.path;
 }
 
+RESULT eServiceFS::startEdit(ePtr<iMutableServiceList> &res)
+{
+       res = 0;
+       return -1;
+}
+
 eAutoInitPtr<eServiceFactoryFS> init_eServiceFactoryFS(eAutoInitNumbers::service+1, "eServiceFactoryFS");