fix for canAllocateChannel
[enigma2.git] / lib / nav / core.h
index c4306e3999994e6b6be89501d75dd43cd8a66328..b71a0fd1a66c44c33598645dba49d4c81f32f869 100644 (file)
@@ -12,8 +12,6 @@ class eNavigation: public iObject, public Object
 private:
        ePtr<iPlayableService> m_runningService;
        
-       ePtr<iRecordableService> m_recordingService;
-       
        ePtr<iServiceHandler> m_servicehandler;
        Signal2<void,eNavigation*,int> m_event;
        ePtr<eConnection> m_service_event_conn;
@@ -27,7 +25,8 @@ public:
                evNewService,   /** a new "current" service was just started */
                evPlayFailed,   /** the next service (in playlist) or the one given in playService failed to play */
                evPlaylistDone, /** the last service in the playlist was just played */
-               evUpdatedEventInfo /** the "currently running" event info was updated */
+               evUpdatedEventInfo, /** the "currently running" event info was updated */
+               evUpdatedInfo /** the program info of this service was updated */
        };
        
        RESULT playService(const eServiceReference &service);
@@ -38,8 +37,7 @@ public:
        RESULT getPlaylist(ePtr<ePlaylist> &playlist);
        RESULT stopService(void);
        
-       RESULT recordService(const eServiceReference &service);
-       RESULT endRecording();
+       RESULT recordService(const eServiceReference &ref, ePtr<iRecordableService> &service);
        
        RESULT pause(int p);
        eNavigation(iServiceHandler *serviceHandler);