remove test cruft, add possibility for a seperator
[enigma2.git] / lib / service / iservice.h
index 785330178e336b872f282a2a1abfc0f40b43cddb..86f2a29460eb05405ba11bb57153c6b8fd997112 100644 (file)
@@ -388,6 +388,7 @@ public:
                        /* returns a list of (pts, what)-tuples */
        virtual PyObject *getCutList() = 0;
        virtual void setCutList(PyObject *list) = 0;
+       virtual void setCutListEnable(int enable) = 0;
        enum { cutIn = 0, cutOut = 1, cutMark = 2 };
 };
 
@@ -418,6 +419,9 @@ public:
                
                evEOF,
                evSOF, /* bounced against start of file (when seeking backwards) */
+               
+                       /* only when cueSheet is implemented */
+               evCuesheetChanged,
        };
        virtual RESULT connectEvent(const Slot2<void,iPlayableService*,int> &event, ePtr<eConnection> &connection)=0;
        virtual RESULT start()=0;
@@ -441,7 +445,7 @@ class iRecordableService: public iObject
        ~iRecordableService();
 #endif
 public:
-       virtual RESULT prepare(const char *filename)=0;
+       virtual RESULT prepare(const char *filename, time_t begTime=-1, time_t endTime=-1, int eit_event_id=-1)=0;
        virtual RESULT start()=0;
        virtual RESULT stop()=0;
 };