make code inline
[enigma2.git] / lib / dvb / sec.h
index ab1f1ac32c0676e2e4b5067ae8c33fb74730c6bf..499e3737f3f0830ca2eb70b2d25f0dce28f842fa 100644 (file)
@@ -21,6 +21,7 @@ public:
                UPDATE_CURRENT_ROTORPARAMS, INVALIDATE_CURRENT_ROTORPARMS,
                IF_ROTORPOS_VALID_GOTO,
                IF_TUNER_LOCKED_GOTO,
+               IF_TONE_GOTO, IF_NOT_TONE_GOTO,
                START_TUNE_TIMEOUT
        };
        int cmd;
@@ -33,7 +34,12 @@ public:
        };
        struct pair
        {
-               int voltage;
+               union
+               {
+                       int voltage;
+                       int tone;
+                       int val;
+               };
                int steps;
        };
        union
@@ -246,8 +252,6 @@ class eDVBSatelliteEquipmentControl: public iDVBSatelliteEquipmentControl
        eDVBSatelliteEquipmentControl();
        ~eDVBSatelliteEquipmentControl();
 #endif
-       // helper function for setTunerLinked and setTunerDepends
-       RESULT setDependencyPointers( int no1, int no2, int dest_data_byte );
 public:
 #ifndef SWIG
        eDVBSatelliteEquipmentControl(eSmartPtrList<eDVBRegisteredFrontend> &avail_frontends);
@@ -290,7 +294,7 @@ public:
        RESULT setTunerLinked(int from, int to);
        RESULT setTunerDepends(int from, int to);
 
-       PyObject *get_different_satellites(int tu1, int tu2);
+       PyObject *get_exclusive_satellites(int tu1, int tu2);
        void setRotorMoving(bool); // called from the frontend's
        bool isRotorMoving();
 };