cddandroidOpenSLEngine.cpp with updated method declaration

This commit is contained in:
folecr 2013-07-24 16:59:17 -07:00
parent b01e27abc0
commit c308d37a4b
1 changed files with 5 additions and 1 deletions

View File

@ -17,7 +17,11 @@ namespace CocosDenshion {
void OpenSLEngine::setBackgroundMusicVolume(float volume) { }
float OpenSLEngine::getEffectsVolume() { }
void OpenSLEngine::setEffectsVolume(float volume) { }
unsigned int OpenSLEngine::playEffect(const char* pszFilePath, bool bLoop) { }
unsigned int OpenSLEngine::playEffect(const char* pszFilePath,
bool bLoop,
float pitch, float pan,
float gain) {
}
void OpenSLEngine::pauseEffect(unsigned int nSoundId) { }
void OpenSLEngine::pauseAllEffects() { }
void OpenSLEngine::resumeEffect(unsigned int nSoundId) { }