]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxMMedia2/lib/sndulaw.h
some changes to make wxHtmlHelpController easier to subclass
[wxWidgets.git] / utils / wxMMedia2 / lib / sndulaw.h
index 97cbf93e13f10e73647e2ccf8dfefb39e377656f..67129da0831f77b198a65141478d529120e007be 100644 (file)
@@ -30,8 +30,8 @@ class WXDLLEXPORT wxSoundFormatUlaw: public wxSoundFormatBase {
   wxSoundFormatType GetType() const { return wxSOUND_ULAW; }
   wxSoundFormatBase *Clone() const;
 
-  wxUint32 GetTimeFromByte(wxUint32 bytes) const;
-  wxUint32 GetByteFromTime(wxUint32 time) const;
+  wxUint32 GetTimeFromBytes(wxUint32 bytes) const;
+  wxUint32 GetBytesFromTime(wxUint32 time) const;
 
   bool operator !=(const wxSoundFormatBase& frmt2) const;
 
@@ -49,8 +49,8 @@ class WXDLLEXPORT wxSoundStreamUlaw: public wxSoundStreamCodec {
   wxSoundStreamUlaw(wxSoundStream& sndio);
   ~wxSoundStreamUlaw();
 
-  wxSoundStream& Read(void *buffer, size_t len);
-  wxSoundStream& Write(const void *buffer, size_t len);
+  wxSoundStream& Read(void *buffer, wxUint32 len);
+  wxSoundStream& Write(const void *buffer, wxUint32 len);
 
   bool SetSoundFormat(const wxSoundFormatBase& format);