add some stuff
[enigma2.git] / lib / dvb_ci / dvbci_ui.h
index b49a675bec5fb2c27d3e6972e50e6394f66a66d1..680b7897c070b138160c939e10706e55fcd1cf8e 100644 (file)
@@ -1,12 +1,15 @@
 #ifndef __dvbci_ui_h
 #define __dvbci_ui_h
 
+#include <string>
+
 #define MAX_SLOTS      2       
 
 class eDVBCI_UI
 {
        int state[MAX_SLOTS];
        static eDVBCI_UI *instance;
+       std::string appName;
 protected:
 public:
        eDVBCI_UI();
@@ -14,7 +17,15 @@ public:
 
        static eDVBCI_UI *getInstance();
        
-       int eDVBCI_UI::getState(int slot);
+       int getState(int slot);
+       void setState(int slot, int state);
+       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 answerMMI(int slot, int answer, char *val);
 };
 
 #endif