X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5b781a6729859abc77e6ca5b1f81cbaad974a78f..aa4b7ef978937fe5d93fda9276ecbbee0cd66517:/include/wx/mac/wave.h?ds=sidebyside diff --git a/include/wx/mac/wave.h b/include/wx/mac/wave.h index e4934dedf8..6f9f959b81 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: @@ -32,13 +33,14 @@ public: bool Play(bool async = TRUE, bool looped = FALSE) const; protected: - bool Free(); + // prevent collision with some BSD definitions of macro Free() + bool FreeData(); private: - SndChannelPtr m_sndChan; + void* m_sndChan; wxString m_sndname; - SndListHandle m_hSnd; + void* m_hSnd; int m_waveLength; bool m_isResource; };