aboutsummaryrefslogtreecommitdiff
path: root/lib/nav/pcore.cpp
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-01-27 21:01:47 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-01-27 21:01:47 +0100
commit80059ab78691323ff8bb30ba4db8577a5185fc6d (patch)
treef55a44e97fe3640b3911c54d2ab488d1bb86a049 /lib/nav/pcore.cpp
parentfdb6f80a93867b9172223f7949d78b385aaf424a (diff)
downloadenigma2-80059ab78691323ff8bb30ba4db8577a5185fc6d.tar.gz
enigma2-80059ab78691323ff8bb30ba4db8577a5185fc6d.zip
differenciate between normal and simulate recordings
simulate recordings now no more returned in normal nav.getRecordings() call.. to get a list of running simulate recordings you can use nav.getRecordings(True)
Diffstat (limited to 'lib/nav/pcore.cpp')
-rw-r--r--lib/nav/pcore.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/nav/pcore.cpp b/lib/nav/pcore.cpp
index a6ed35f6..b38e5597 100644
--- a/lib/nav/pcore.cpp
+++ b/lib/nav/pcore.cpp
@@ -37,9 +37,9 @@ RESULT pNavigation::stopService()
return m_core->stopService();
}
-RESULT pNavigation::recordService(const eServiceReference &ref, ePtr<iRecordableService> &service)
+RESULT pNavigation::recordService(const eServiceReference &ref, ePtr<iRecordableService> &service, bool simulate)
{
- return m_core->recordService(ref, service);
+ return m_core->recordService(ref, service, simulate);
}
RESULT pNavigation::stopRecordService(ePtr<iRecordableService> &service)
@@ -47,9 +47,9 @@ RESULT pNavigation::stopRecordService(ePtr<iRecordableService> &service)
return m_core->stopRecordService(service);
}
-PyObject *pNavigation::getRecordings(void)
+PyObject *pNavigation::getRecordings(bool simulate)
{
- return m_core->getRecordings();
+ return m_core->getRecordings(simulate);
}
void pNavigation::navEvent(int event)