]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/mmedia/sndfile.h
added support for colour cursors in wxGTK (patch 1655576)
[wxWidgets.git] / contrib / include / wx / mmedia / sndfile.h
index 65dc8885101a5aa84fd23ecdb8e5cd584c8c84fa..a3fed7ab42294ff92f73f315c2248cfbfcc65f46 100644 (file)
@@ -4,12 +4,14 @@
 // Date: 08/11/1999
 // Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
 // CVSID: $Id$
 // Date: 08/11/1999
 // Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
 // CVSID: $Id$
+// License:    wxWindows license
 // --------------------------------------------------------------------------
 #ifndef _WX_SNDFILE_H
 #define _WX_SNDFILE_H
 
 #include "wx/defs.h"
 #include "wx/stream.h"
 // --------------------------------------------------------------------------
 #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"
 
 #include "wx/mmedia/sndbase.h"
 #include "wx/mmedia/sndcodec.h"
 
@@ -19,7 +21,7 @@
 // Codec router class
 //
 
 // Codec router class
 //
 
-class WXDLLEXPORT wxSoundRouterStream: public wxSoundStreamCodec {
+class WXDLLIMPEXP_MMEDIA wxSoundRouterStream: public wxSoundStreamCodec {
  public:
   wxSoundRouterStream(wxSoundStream& sndio);
   ~wxSoundRouterStream();
  public:
   wxSoundRouterStream(wxSoundStream& sndio);
   ~wxSoundRouterStream();
@@ -49,7 +51,7 @@ typedef enum {
 // Base class for file coders/decoders
 //
 
 // 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);
 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.
     
     // 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; 
     
 protected:
     wxSoundRouterStream m_codec;