]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/wave.h
wxMimeTypesManager::IsOfType() added (and documented)
[wxWidgets.git] / include / wx / gtk / wave.h
index 6b4095c2430f40671b83663724b242de39c5a5dd..14bdf11293cfd0f2c3d82c6de0daa20dc714b013 100644 (file)
 #pragma interface "wave.h"
 #endif
 
-#ifndef byte
-#define byte unsigned char
-#endif
-
 #include "wx/object.h"
 
 #ifndef AUDIODEV
@@ -31,14 +27,14 @@ class wxWave : public wxObject
 public:
   wxWave();
   wxWave(const wxString& fileName, bool isResource = FALSE);
-  wxWave(int size, const byte* data);
+  wxWave(int size, const wxByte* data);
   ~wxWave();
 
 public:
   // Create from resource or file
   bool  Create(const wxString& fileName, bool isResource = FALSE);
   // Create from data
-  bool Create(int size, const byte* data);
+  bool Create(int size, const wxByte* data);
 
   bool  IsOk() const { return (m_waveData ? TRUE : FALSE); };
   bool  Play(bool async = TRUE, bool looped = FALSE);
@@ -47,7 +43,7 @@ protected:
   bool  Free();
 
 private:
-  byte* m_waveData;
+  wxByte* m_waveData;
   int   m_waveLength;
   bool  m_isResource;