X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c0c133e13b36a923c65f94499554e432bc3a0daa..6041f69ca7bbb7c39e4ba64e407bc3ac39e3687f:/include/wx/msw/sound.h diff --git a/include/wx/msw/sound.h b/include/wx/msw/sound.h index 47a6967156..5be1eefc8f 100644 --- a/include/wx/msw/sound.h +++ b/include/wx/msw/sound.h @@ -19,14 +19,14 @@ class WXDLLIMPEXP_ADV wxSound : public wxSoundBase public: wxSound(); wxSound(const wxString& fileName, bool isResource = false); - wxSound(int size, const wxByte* data); + wxSound(size_t size, const void* data); virtual ~wxSound(); // Create from resource or file bool Create(const wxString& fileName, bool isResource = false); // Create from data - bool Create(int size, const wxByte* data); + bool Create(size_t size, const void* data); bool IsOk() const { return m_data != NULL; }