diff options
-rw-r--r-- | sound/mods/rjp1.h | 4 | ||||
-rw-r--r-- | sound/mods/soundfx.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/sound/mods/rjp1.h b/sound/mods/rjp1.h index 2fb54d88a6..c22c0a1a17 100644 --- a/sound/mods/rjp1.h +++ b/sound/mods/rjp1.h @@ -32,6 +32,10 @@ namespace Audio { class AudioStream; +/* + * FIXME: Document this function. In particular, who is responsible for + * freeing the data passed in, resp. the AudioStream it returns? + */ AudioStream *makeRjp1Stream(Common::SeekableReadStream *songData, Common::SeekableReadStream *instrumentsData, int num, int rate = 44100, bool stereo = true); } // End of namespace Audio diff --git a/sound/mods/soundfx.h b/sound/mods/soundfx.h index 353aa6ecdc..e724707193 100644 --- a/sound/mods/soundfx.h +++ b/sound/mods/soundfx.h @@ -32,6 +32,10 @@ class AudioStream; typedef byte *(*LoadSoundFxInstrumentCallback)(const char *name, uint32 *size); +/* + * FIXME: Document this function. In particular, who is responsible for + * freeing the data passed in, resp. the AudioStream it returns? + */ AudioStream *makeSoundFxStream(Common::SeekableReadStream *data, LoadSoundFxInstrumentCallback loadCb, int rate = 44100, bool stereo = true); } // End of namespace Audio |