* Added IsPaused() to wxSoundFileStream

* Play/Pause/Resume should work in wxMMBoard


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6051 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux
2000-02-15 18:49:25 +00:00
parent bce1406bff
commit 5bee458a0f
6 changed files with 19 additions and 1 deletions

View File

@@ -63,6 +63,7 @@ class wxSoundFileStream: public wxSoundStream {
bool Resume();
bool IsStopped() const { return m_state == wxSOUND_FILE_STOPPED; }
bool IsPaused() const { return m_state == wxSOUND_FILE_PAUSED; }
bool StartProduction(int evt);
bool StopProduction();