]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/wave.cpp
Changed wxStat, wxAccess and wxOpen to no longer
[wxWidgets.git] / src / mac / wave.cpp
index d06eee48380ed2d31fd0e75a727ff983a968124e..01c7b9b035e4da0bd4c16a3738dc420816f41f11 100644 (file)
@@ -19,6 +19,9 @@
 
 #ifdef __WXMAC__
 #include "wx/mac/private.h"
+#ifndef __DARWIN__
+#include <Sound.h>
+#endif
 #endif
 
 wxWave::wxWave()
@@ -35,9 +38,14 @@ wxWave::wxWave(const wxString& sFileName, bool isResource)
 
 wxWave::~wxWave()
 {
-    Free();
+    FreeData();
 }
 
+wxWave::wxWave(int size, const wxByte* data)
+  : m_sndChan(0), m_hSnd(NULL), m_waveLength(0), m_isResource(false)
+{
+    //TODO convert data
+}
 
 bool wxWave::Create(const wxString& fileName, bool isResource)
 {
@@ -148,7 +156,7 @@ bool wxWave::Play(bool async, bool looped) const
 }
 
 
-bool wxWave::Free()
+bool wxWave::FreeData()
 {
        bool ret = false;