more python fixes :)
[enigma2.git] / lib / dvb / idvb.h
index 16e0747cee5e0742f13ef438f0563e0389262e27..5909e76d7436e651cce058851fb66625a65b1dcc 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,10 +417,10 @@ 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> &frontend)=0;
+       virtual RESULT getFrontend(ePtr<iDVBFrontend> &SWIG_OUTPUT)=0;
 
 #ifndef SWIG
        virtual RESULT getCurrentFrontendParameters(ePtr<iDVBFrontendParameters> &)=0;
@@ -445,7 +445,7 @@ public:
        virtual void ReleaseUse() = 0;
 #endif
 };
-TEMPLATE_TYPEDEF(ePtr<iDVBChannel>, iDVBChannelPtr);
+TEMPLATE_TYPEDEF(eUsePtr<iDVBChannel>, iDVBChannelPtr);
 
 #ifndef SWIG