X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/9daf6014a224d717fa423130a8e04acd461efc24..92929c357751afc31f7f1acbe3e724bdf307cf23:/lib/python/enigma_python.i diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index bc2d5503..7f141a94 100644 --- a/lib/python/enigma_python.i +++ b/lib/python/enigma_python.i @@ -92,6 +92,7 @@ is usually caused by not marking PSignals as immutable. #include #include #include +#include #include #include #include @@ -133,7 +134,6 @@ typedef long time_t; %include %include -%immutable eTimer::timeout; %immutable eSocketNotifier::activated; %include %include @@ -153,6 +153,7 @@ typedef long time_t; %immutable pNavigation::m_record_event; %immutable eListbox::selectionChanged; %immutable eDVBCI_UI::ciStateChanged; +%immutable eSocket_UI::socketStateChanged; %immutable eDVBResourceManager::frontendUseMaskChanged; %immutable eAVSwitch::vcr_sb_notifier; %immutable ePythonMessagePump::recv_msg; @@ -207,6 +208,7 @@ typedef long time_t; %include %include %include +%include %include %include %include @@ -297,6 +299,14 @@ PyObject *getBestPlayableServiceReference(const eServiceReference &bouquet_ref, } %} +void setTunerTypePriorityOrder(int); +%{ +void setTunerTypePriorityOrder(int order) +{ + eDVBFrontend::setTypePriorityOrder(order); +} +%} + /************** temp *****************/ /* need a better place for this, i agree. */ @@ -307,6 +317,7 @@ extern eApplication *getApplication(); extern int getPrevAsciiCode(); extern void addFont(const char *filename, const char *alias, int scale_factor, int is_replacement); extern const char *getEnigmaVersionString(); +extern void dump_malloc_stats(void); %} extern void addFont(const char *filename, const char *alias, int scale_factor, int is_replacement); @@ -315,3 +326,4 @@ extern void runMainloop(); extern void quitMainloop(int exit_code); extern eApplication *getApplication(); extern const char *getEnigmaVersionString(); +extern void dump_malloc_stats(void);