aboutsummaryrefslogtreecommitdiff
path: root/sound/mods/soundfx.h
diff options
context:
space:
mode:
authorGregory Montoir2007-05-20 11:50:06 +0000
committerGregory Montoir2007-05-20 11:50:06 +0000
commite0159324cce0b6ad354c8eeff0484431d52b4b00 (patch)
tree456cd6f9cf077d88e1ac87f6e25584bff3a78269 /sound/mods/soundfx.h
parentb37c83448aaeb9a88a6f88fb58d9dda6634ef5f4 (diff)
downloadscummvm-rg350-e0159324cce0b6ad354c8eeff0484431d52b4b00.tar.gz
scummvm-rg350-e0159324cce0b6ad354c8eeff0484431d52b4b00.tar.bz2
scummvm-rg350-e0159324cce0b6ad354c8eeff0484431d52b4b00.zip
some fixes for the music in Amiga OS Demo
svn-id: r26886
Diffstat (limited to 'sound/mods/soundfx.h')
-rw-r--r--sound/mods/soundfx.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/mods/soundfx.h b/sound/mods/soundfx.h
index c48b9a0c69..353aa6ecdc 100644
--- a/sound/mods/soundfx.h
+++ b/sound/mods/soundfx.h
@@ -30,7 +30,9 @@ namespace Audio {
class AudioStream;
-AudioStream *makeSoundFxStream(Common::SeekableReadStream *data, int rate = 44100, bool stereo = true);
+typedef byte *(*LoadSoundFxInstrumentCallback)(const char *name, uint32 *size);
+
+AudioStream *makeSoundFxStream(Common::SeekableReadStream *data, LoadSoundFxInstrumentCallback loadCb, int rate = 44100, bool stereo = true);
} // End of namespace Audio