]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/wave.h
signned/unsigned fix
[wxWidgets.git] / include / wx / mac / wave.h
index 4dee42630097771740c973cd2e38f6024f572837..6f9f959b81542281100d8630a444daa11ab30591 100644 (file)
 
 #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,7 +33,8 @@ 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:
   void* m_sndChan;