X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5b781a6729859abc77e6ca5b1f81cbaad974a78f..59840ba3b16e4baf3228dd79c6b7ae40b55cf488:/include/wx/mac/wave.h

diff --git a/include/wx/mac/wave.h b/include/wx/mac/wave.h
index e4934dedf8..0f30137a64 100644
--- a/include/wx/mac/wave.h
+++ b/include/wx/mac/wave.h
@@ -19,11 +19,12 @@
 
 #include "wx/object.h"
 
-class wxWave : public wxObject
+class WXDLLEXPORT wxWave : public wxObject
 {
 public:
   wxWave();
   wxWave(const wxString& fileName, bool isResource = FALSE);
+  wxWave(int size, const wxByte* data);
   ~wxWave();
 
 public:
@@ -35,10 +36,10 @@ protected:
   bool  Free();
 
 private:
-  SndChannelPtr m_sndChan;
+  void* m_sndChan;
 	
   wxString m_sndname;
-  SndListHandle m_hSnd;
+  void* m_hSnd;
   int   m_waveLength;
   bool  m_isResource;
 };