convert event_id from string to long
[enigma2.git] / lib / dvb / frontend.h
index 7862e2eac4c47881b6bca80c5748dc4c7fa721e3..0a7943f997b47e5da30ab06de55b879da27c2a2f 100644 (file)
@@ -43,7 +43,7 @@ class eDVBFrontend: public iDVBFrontend, public Object
        char m_filename[128];
 #if HAVE_DVB_API_VERSION < 3
        int m_secfd;
-       char m_secfilename[128];
+       char m_sec_filename[128];
 #endif
 
        FRONTENDPARAMETERS parm;
@@ -57,7 +57,7 @@ class eDVBFrontend: public iDVBFrontend, public Object
 
        eSecCommandList m_sec_sequence;
 
-       int m_data[8]; /* when satellite frontend then
+       int m_data[9]; /* when satellite frontend then
                data[0] = lastcsw -> state of the committed switch
                data[1] = lastucsw -> state of the uncommitted switch
                data[2] = lastToneburst -> current state of toneburst switch
@@ -65,7 +65,8 @@ class eDVBFrontend: public iDVBFrontend, public Object
                data[4] = newRotorPos -> current Rotor Position
                data[5] = curRotorCmd
                data[6] = curRotorPos
-               data[7] = linkedToTunerNo */
+               data[7] = linkedToTunerNo
+               data[8] = dependsToTunerNo (just satpos.. for rotor with twin lnb) */
 
        int m_idleInputpower[2];  // 13V .. 18V
        int m_runningInputpower;
@@ -100,7 +101,7 @@ public:
        int getID() { return m_fe; }
 
        int openFrontend();
-       void closeFrontend();
+       int closeFrontend();
 };
 
 #endif