#ifndef _WX_SOUND_H_
#define _WX_SOUND_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "sound.h"
-#endif
-
#if wxUSE_SOUND
#include "wx/object.h"
public:
wxSound();
wxSound(const wxString& fileName, bool isResource = false);
- wxSound(int size, const wxByte* data);
- ~wxSound();
+ wxSound(size_t size, const void* data);
+ virtual ~wxSound();
public:
// 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_waveData ? true : false); };
int m_waveLength;
bool m_isResource;
- DECLARE_NO_COPY_CLASS(wxSound)
+ wxDECLARE_NO_COPY_CLASS(wxSound);
};
#endif
#endif