]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/wave.h
wxWave class for wxGTK (linux)
[wxWidgets.git] / include / wx / msw / wave.h
index ce7e14fbe43137aed2ca6baa8478491481365d40..80426fc0bdc70d1db778bacb57aebb89bf788aac 100644 (file)
@@ -23,10 +23,15 @@ class wxWave : public wxObject
 public:
   wxWave();
   wxWave(const wxString& fileName, bool isResource = FALSE);
+  wxWave(int size, const byte* 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  IsOk() const { return (m_waveData ? TRUE : FALSE); };
   bool  Play(bool async = TRUE, bool looped = FALSE) const;