X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/d026012d8ba6198d879df68cb4bf6c92c95a633a..f097c3b368c10b7c88f63038459c4c5a38889a1f:/lib/base/ebase.h diff --git a/lib/base/ebase.h b/lib/base/ebase.h index fffe252f..a224e2cc 100644 --- a/lib/base/ebase.h +++ b/lib/base/ebase.h @@ -182,7 +182,7 @@ class eMainloop ePtrList m_timer_list; bool app_quit_now; int loop_level; - int processOneEvent(unsigned int user_timeout); + int processOneEvent(unsigned int user_timeout, PyObject **res=0, PyObject *additional=0); int retval; pthread_mutex_t recalcLock; @@ -222,11 +222,14 @@ public: 1 - timeout 2 - signal */ - int iterate(unsigned int timeout=0); + int iterate(unsigned int timeout=0, PyObject **res=0, PyObject *additional=0); /* run will iterate endlessly until the app is quit, and return the exit code */ int runLoop(); + + /* our new shared polling interface. */ + PyObject *poll(PyObject *dict, PyObject *timeout); }; /**