]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/wave.h
signned/unsigned fix
[wxWidgets.git] / include / wx / mac / wave.h
index e4934dedf802d0b4a91d755de568ce947f20a926..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,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;
 };