aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/sound/sound.h
diff options
context:
space:
mode:
authorSven Hesse2009-03-19 23:40:59 +0000
committerSven Hesse2009-03-19 23:40:59 +0000
commit51109a5cfcc8d9f817813499c39f243016aa170f (patch)
tree9b6fe1c1095f4fc3b2eb83c7438aca9d18936892 /engines/gob/sound/sound.h
parent7077ea36e0a805c356e7b7492fce6945854f95bb (diff)
downloadscummvm-rg350-51109a5cfcc8d9f817813499c39f243016aa170f.tar.gz
scummvm-rg350-51109a5cfcc8d9f817813499c39f243016aa170f.tar.bz2
scummvm-rg350-51109a5cfcc8d9f817813499c39f243016aa170f.zip
Adding simple support for protracker playback
svn-id: r39550
Diffstat (limited to 'engines/gob/sound/sound.h')
-rw-r--r--engines/gob/sound/sound.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/gob/sound/sound.h b/engines/gob/sound/sound.h
index 6fde4660aa..dbdd580ec7 100644
--- a/engines/gob/sound/sound.h
+++ b/engines/gob/sound/sound.h
@@ -31,6 +31,7 @@
#include "gob/sound/soundblaster.h"
#include "gob/sound/adlib.h"
#include "gob/sound/infogrames.h"
+#include "gob/sound/protracker.h"
#include "gob/sound/cdrom.h"
#include "gob/sound/bgatmosphere.h"
@@ -102,6 +103,11 @@ public:
void infogramesStop();
+ // Protracker
+ bool protrackerPlay(const char *fileName);
+ void protrackerStop();
+
+
// CD-ROM
void cdLoadLIC(const char *fname);
void cdUnloadLIC();
@@ -139,6 +145,7 @@ private:
SoundBlaster *_blaster;
AdLib *_adlib;
Infogrames *_infogrames;
+ Protracker *_protracker;
CDROM *_cdrom;
BackgroundAtmosphere *_bgatmos;
};