From 91194b42d0dc174f3e550b9a440e91fccf7e03ec Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Thu, 9 Mar 2006 13:07:13 +0000 Subject: [PATCH 1/1] more python fixes :) --- lib/dvb/frontend.h | 10 +++++----- 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 &stateChange, ePtr &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 &SWIG_OUTPUT)=0; -- 2.30.2