X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/7ad3257f2a4ddd3f51aa2175f997db7d0b75f6b0..d86dfb91c834be43d9bcddd69ddbc7e463825fbd:/lib/dvb_ci/dvbci_ui.h diff --git a/lib/dvb_ci/dvbci_ui.h b/lib/dvb_ci/dvbci_ui.h index 680b7897..7d45bfaa 100644 --- a/lib/dvb_ci/dvbci_ui.h +++ b/lib/dvb_ci/dvbci_ui.h @@ -2,6 +2,7 @@ #define __dvbci_ui_h #include +#include #define MAX_SLOTS 2 @@ -25,7 +26,19 @@ public: int initialize(int slot); int startMMI(int slot); int stopMMI(int slot); - int answerMMI(int slot, int answer, char *val); + 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