fix: e2 didn't start when no sat-frontend was detected
[enigma2.git] / lib / dvb_ci / dvbci_ui.h
index 79f5e03f6f6133a5e9d7e6837bba56e26910632c..7d45bfaad16aa988b248c11decf5bc94319978dd 100644 (file)
@@ -2,6 +2,7 @@
 #define __dvbci_ui_h
 
 #include <string>
+#include <Python.h>
 
 #define MAX_SLOTS      2       
 
@@ -22,7 +23,22 @@ public:
        std::string getAppName(int slot);
        void setAppName(int slot, const char *name);
        void setReset(int slot);
+       int initialize(int slot);
        int startMMI(int slot);
+       int stopMMI(int slot);
+       int availableMMI(int slot);
+
+       int answerMenu(int slot, int answer);
+       int answerEnq(int slot, int answer, char *val);
+
+       PyObject *eDVBCI_UI::getMMIScreen(int slot);
+       PyObject *mmiScreen;
+       int mmiTuplePos;
+       int mmiScreenReady;
+       
+       int mmiScreenBegin(int slot, int listmenu);
+       int mmiScreenAddText(int slot, int type, char *value);
+       int mmiScreenFinish(int slot);
 };
 
 #endif