more python fixes :)
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 9 Mar 2006 13:07:13 +0000 (13:07 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 9 Mar 2006 13:07:13 +0000 (13:07 +0000)
lib/dvb/frontend.h
lib/dvb/idvb.h

index 8781400..1889b97 100644 (file)
@@ -16,17 +16,17 @@ public:
        eDVBFrontendParameters();
        
        RESULT getSystem(int &type) const;
-       RESULT getDVBS(eDVBFrontendParametersSatellite &p) const;
-       RESULT getDVBC(eDVBFrontendParametersCable &p) const;
-       RESULT getDVBT(eDVBFrontendParametersTerrestrial &p) const;
+       RESULT getDVBS(eDVBFrontendParametersSatellite &SWIG_OUTPUT) const;
+       RESULT getDVBC(eDVBFrontendParametersCable &SWIG_OUTPUT) const;
+       RESULT getDVBT(eDVBFrontendParametersTerrestrial &SWIG_OUTPUT) const;
 
        RESULT setDVBS(const eDVBFrontendParametersSatellite &p);
        RESULT setDVBC(const eDVBFrontendParametersCable &p);
        RESULT setDVBT(const eDVBFrontendParametersTerrestrial &p);
        
-       RESULT calculateDifference(const iDVBFrontendParameters *parm, int &diff) const;
+       RESULT calculateDifference(const iDVBFrontendParameters *parm, int &SWIG_OUTPUT) const;
        
-       RESULT getHash(unsigned long &hash) const;
+       RESULT getHash(unsigned long &SWIG_OUTPUT) const;
 };
 
 #ifndef SWIG
index 6bfbc21..5909e76 100644 (file)
@@ -347,7 +347,7 @@ public:
        enum {
                feSatellite, feCable, feTerrestrial
        };
-       virtual RESULT getFrontendType(int &type)=0;
+       virtual RESULT getFrontendType(int &SWIG_OUTPUT)=0;
        virtual RESULT tune(const iDVBFrontendParameters &where)=0;
 #ifndef SWIG
        virtual RESULT connectStateChange(const Slot1<void,iDVBFrontend*> &stateChange, ePtr<eConnection> &connection)=0;
@@ -359,7 +359,7 @@ public:
                stateLock = 3,
                stateLostLock = 4,
        };
-       virtual RESULT getState(int &state)=0;
+       virtual RESULT getState(int &SWIG_OUTPUT)=0;
        enum {
                toneOff, toneOn
        };
@@ -417,7 +417,7 @@ public:
                state_last_instance, /* just one reference to this channel is left */
                state_release      /* channel is being shut down. */
        };
-       virtual RESULT getState(int &state)=0;  
+       virtual RESULT getState(int &SWIG_OUTPUT)=0;    
 
                /* direct frontend access for raw channels and/or status inquiries. */
        virtual RESULT getFrontend(ePtr<iDVBFrontend> &SWIG_OUTPUT)=0;