]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/media.i
'[1219035] cleanup: miscellaneous' and minor source cleaning.
[wxWidgets.git] / wxPython / src / media.i
index b8b8ebb870967ed17ae12986256f92abda8fdd6a..d2db77b6671297354980db74c5242d4d280cc967 100644 (file)
@@ -102,6 +102,9 @@ public:
     
     wxFileOffset Tell()    { return 0; }
     wxFileOffset Length()    { return 0; }
+
+    double GetVolume() { return 0.0; }
+    bool   SetVolume(double dVolume) { return false; }
 };
 
 const wxEventType wxEVT_MEDIA_FINISHED = 0;
@@ -177,6 +180,9 @@ public:
     bool Pause();
     bool Stop();
 
+    double GetVolume();                 //DirectShow only
+    bool   SetVolume(double dVolume);   //DirectShow only
+
     bool Load(const wxString& fileName);
     %extend {
         bool LoadFromURI(const wxString& location) {