aboutsummaryrefslogtreecommitdiff
path: root/sound/mods/rjp1.h
diff options
context:
space:
mode:
authorGregory Montoir2007-02-18 21:46:40 +0000
committerGregory Montoir2007-02-18 21:46:40 +0000
commit18cab2cc65b8f13a8c69d65318706e75258b4b4f (patch)
tree33210359a781b529844cef4115a44d8adc1f6126 /sound/mods/rjp1.h
parent23a4e1de640a046d9517416b43a671b43ff9d81e (diff)
downloadscummvm-rg350-18cab2cc65b8f13a8c69d65318706e75258b4b4f.tar.gz
scummvm-rg350-18cab2cc65b8f13a8c69d65318706e75258b4b4f.tar.bz2
scummvm-rg350-18cab2cc65b8f13a8c69d65318706e75258b4b4f.zip
added basic support for playing FOTAQ amiga modules files (rjp1) instead of MIDI (code is currently #ifdef'ed out).
svn-id: r25707
Diffstat (limited to 'sound/mods/rjp1.h')
-rw-r--r--sound/mods/rjp1.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/sound/mods/rjp1.h b/sound/mods/rjp1.h
new file mode 100644
index 0000000000..ae36869a73
--- /dev/null
+++ b/sound/mods/rjp1.h
@@ -0,0 +1,36 @@
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2007 The ScummVM project
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+#ifndef SOUND_MODS_RJP1_H
+#define SOUND_MODS_RJP1_H
+
+#include "common/stream.h"
+
+namespace Audio {
+
+class AudioStream;
+
+AudioStream *makeRjp1Stream(Common::SeekableReadStream *songData, Common::SeekableReadStream *instrumentsData, int song);
+
+} // End of namespace Audio
+
+#endif