aboutsummaryrefslogtreecommitdiff
path: root/sound/mods/module.h
diff options
context:
space:
mode:
authorTravis Howell2006-10-19 05:37:22 +0000
committerTravis Howell2006-10-19 05:37:22 +0000
commit8c72861de463e0db36b234750fb19904e5f04d3b (patch)
tree9b8139009ee2510033fc3392f2daab1d8b737e35 /sound/mods/module.h
parented3c6871f967ab15321df14ca6a026e08d96fae1 (diff)
downloadscummvm-rg350-8c72861de463e0db36b234750fb19904e5f04d3b.tar.gz
scummvm-rg350-8c72861de463e0db36b234750fb19904e5f04d3b.tar.bz2
scummvm-rg350-8c72861de463e0db36b234750fb19904e5f04d3b.zip
Add option to load a module via stream
svn-id: r24387
Diffstat (limited to 'sound/mods/module.h')
-rw-r--r--sound/mods/module.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/mods/module.h b/sound/mods/module.h
index f16d3eb4f4..4073d5d4ec 100644
--- a/sound/mods/module.h
+++ b/sound/mods/module.h
@@ -24,6 +24,8 @@
#ifndef SOUND_MODS_MODULE_H
#define SOUND_MODS_MODULE_H
+#include "common/file.h"
+
namespace Modules {
/*
@@ -68,6 +70,7 @@ public:
~Module();
bool load(const char *fn);
+ bool loadStream(Common::SeekableReadStream &st);
};
} // End of namespace Modules