]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/wave.h
fix bcc bug
[wxWidgets.git] / include / wx / mac / wave.h
index 0f30137a644d0068b2f1ca06bc68db790161d1fe..6fdbf6519bf581c63b5b4723f4d3f38c6b64999b 100644 (file)
 #ifndef _WX_WAVE_H_
 #define _WX_WAVE_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
 #pragma interface "wave.h"
 #endif
 
+#if wxUSE_WAVE
+
 #include "wx/object.h"
 
 class WXDLLEXPORT wxWave : public wxObject
@@ -33,16 +35,18 @@ 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;
-       
+
   wxString m_sndname;
   void* m_hSnd;
   int   m_waveLength;
   bool  m_isResource;
 };
 
+#endif
 #endif
     // _WX_WAVE_H_