diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-09 13:07:13 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-09 13:07:13 +0000 |
| commit | 91194b42d0dc174f3e550b9a440e91fccf7e03ec (patch) | |
| tree | b8622cb9ba843c7ba27a596a15691ad44abf524f | |
| parent | 4008892983b7a8348b24dccea5f6f98826adc2d6 (diff) | |
| download | enigma2-91194b42d0dc174f3e550b9a440e91fccf7e03ec.tar.gz enigma2-91194b42d0dc174f3e550b9a440e91fccf7e03ec.zip | |
more python fixes :)
| -rw-r--r-- | lib/dvb/frontend.h | 10 | ||||
| -rw-r--r-- | lib/dvb/idvb.h | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/lib/dvb/frontend.h b/lib/dvb/frontend.h index 87814005..1889b971 100644 --- a/lib/dvb/frontend.h +++ b/lib/dvb/frontend.h @@ -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 diff --git a/lib/dvb/idvb.h b/lib/dvb/idvb.h index 6bfbc216..5909e76d 100644 --- a/lib/dvb/idvb.h +++ b/lib/dvb/idvb.h @@ -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; |
