X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fpython%2Fenigma_python.i;h=e934885e01ae6c1710f15513256aba840fb4e77c;hb=654bb0a0f8583b7cbc47b32f7e9b6921dffc4e03;hp=ee5a13ba561d600eac52456249f5a02fa2342926;hpb=cff3511b75d95143bcd315ade417a41aa1d8316e;p=vuplus_dvbapp diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index ee5a13b..e934885 100644 --- a/lib/python/enigma_python.i +++ b/lib/python/enigma_python.i @@ -50,7 +50,6 @@ is usually caused by not marking PSignals as immutable. #include #include #include -#include #include #include #include @@ -93,6 +92,7 @@ is usually caused by not marking PSignals as immutable. #include #include #include +#include #include #include #include @@ -134,7 +134,6 @@ typedef long time_t; %include %include -%immutable eTimer::timeout; %immutable eSocketNotifier::activated; %include %include @@ -145,6 +144,8 @@ typedef long time_t; // TODO: embed these... %immutable eConsoleAppContainer::appClosed; %immutable eConsoleAppContainer::dataAvail; +%immutable eConsoleAppContainer::stdoutAvail; +%immutable eConsoleAppContainer::stderrAvail; %immutable eConsoleAppContainer::dataSent; %immutable eButton::selected; %immutable eInput::changed; @@ -154,6 +155,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; @@ -165,7 +167,6 @@ typedef long time_t; %include %include %include -%include %include %include %include @@ -209,6 +210,7 @@ typedef long time_t; %include %include %include +%include %include %include %include @@ -299,6 +301,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. */ @@ -309,6 +319,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); @@ -317,3 +328,4 @@ extern void runMainloop(); extern void quitMainloop(int exit_code); extern eApplication *getApplication(); extern const char *getEnigmaVersionString(); +extern void dump_malloc_stats(void);