X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8482f24cfc00645607f8526fde38d39e0dcaa63..9f556d1dd6a06524c0d5419862836b9f0e9e6e1d:/contrib/include/wx/mmedia/sndfile.h?ds=sidebyside diff --git a/contrib/include/wx/mmedia/sndfile.h b/contrib/include/wx/mmedia/sndfile.h index 65dc888510..a3fed7ab42 100644 --- a/contrib/include/wx/mmedia/sndfile.h +++ b/contrib/include/wx/mmedia/sndfile.h @@ -4,12 +4,14 @@ // Date: 08/11/1999 // Author: Guilhem Lavaux (C) 1999 // CVSID: $Id$ +// License: wxWindows license // -------------------------------------------------------------------------- #ifndef _WX_SNDFILE_H #define _WX_SNDFILE_H #include "wx/defs.h" #include "wx/stream.h" +#include "wx/mmedia/defs.h" #include "wx/mmedia/sndbase.h" #include "wx/mmedia/sndcodec.h" @@ -19,7 +21,7 @@ // Codec router class // -class WXDLLEXPORT wxSoundRouterStream: public wxSoundStreamCodec { +class WXDLLIMPEXP_MMEDIA wxSoundRouterStream: public wxSoundStreamCodec { public: wxSoundRouterStream(wxSoundStream& sndio); ~wxSoundRouterStream(); @@ -49,7 +51,7 @@ typedef enum { // Base class for file coders/decoders // -class wxSoundFileStream: public wxSoundStream { +class WXDLLIMPEXP_MMEDIA wxSoundFileStream: public wxSoundStream { public: wxSoundFileStream(wxInputStream& stream, wxSoundStream& io_sound); wxSoundFileStream(wxOutputStream& stream, wxSoundStream& io_sound); @@ -97,7 +99,7 @@ public: // You should use this function to test whether this file codec can read // the stream you passed to it. - virtual bool CanRead() { return FALSE; } + virtual bool CanRead() { return false; } protected: wxSoundRouterStream m_codec;