]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxMMedia2/lib/sndaiff.h
Removed unnecessary code from utilsunx.cpp
[wxWidgets.git] / utils / wxMMedia2 / lib / sndaiff.h
index 20539e6fb04f7257215956be78d7c0611177951c..3862ab35a831d473bdfc6a66d9dc3b410e1399d3 100644 (file)
@@ -22,7 +22,7 @@
 //
 
 class wxSoundAiff: public wxSoundFileStream {
- public:
+public:
     wxSoundAiff(wxInputStream& stream, wxSoundStream& io_sound);
     wxSoundAiff(wxOutputStream& stream, wxSoundStream& io_sound);
     ~wxSoundAiff();
@@ -30,13 +30,16 @@ class wxSoundAiff: public wxSoundFileStream {
     bool CanRead();
     wxString GetCodecName() const;
     
- protected:
+protected:
     bool PrepareToPlay(); 
-    bool PrepareToRecord(unsigned long time);
+    bool PrepareToRecord(wxUint32 time);
     bool FinishRecording();
+    bool RepositionStream(wxUint32 position);
     
     wxUint32 GetData(void *buffer, wxUint32 len);
     wxUint32 PutData(const void *buffer, wxUint32 len);
+protected:
+    off_t m_base_offset;
 };
 
 #endif