aboutsummaryrefslogtreecommitdiff
path: root/backends/morphos/morphos.h
diff options
context:
space:
mode:
authorRuediger Hanke2002-08-22 12:09:06 +0000
committerRuediger Hanke2002-08-22 12:09:06 +0000
commit3b090517279b66254f5fba7bc6a3299405763295 (patch)
treeaa8f0ddd5fb5c5ee5cc8d5c35064aa8eb6273267 /backends/morphos/morphos.h
parent31f6833f87da3af3c480d0b6e605c3565efef1d0 (diff)
downloadscummvm-rg350-3b090517279b66254f5fba7bc6a3299405763295.tar.gz
scummvm-rg350-3b090517279b66254f5fba7bc6a3299405763295.tar.bz2
scummvm-rg350-3b090517279b66254f5fba7bc6a3299405763295.zip
Changed MorphOS MIDI code so that data sent from different threads are no longer a problem. Ensure Midi driver is closed, otherwise no other MIDI application will run after ScummVM has exited.
svn-id: r4801
Diffstat (limited to 'backends/morphos/morphos.h')
-rw-r--r--backends/morphos/morphos.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/backends/morphos/morphos.h b/backends/morphos/morphos.h
index 75d2c79f7b..d89c2e7371 100644
--- a/backends/morphos/morphos.h
+++ b/backends/morphos/morphos.h
@@ -24,8 +24,6 @@
#ifndef MORPHOS_MORPHOS_H
#define MORPHOS_MORPHOS_H
-#include <exec/semaphores.h>
-#include <devices/amidi.h>
#include <graphics/regions.h>
#include <intuition/intuition.h>
#include <intuition/screens.h>
@@ -187,20 +185,9 @@ class OSystem_MorphOS : public OSystem
int GameID;
};
-int morphos_sound_thread(OSystem_MorphOS *syst, ULONG SampleType);
-bool init_morphos_music(ULONG MidiUnit);
-void exit_morphos_music();
-
int morphos_main(int argc, char *argv[]);
extern OSystem_MorphOS *TheSystem;
-extern SignalSemaphore ScummMusicThreadRunning;
-extern SignalSemaphore ScummSoundThreadRunning;
-
-extern STRPTR ScummMusicDriver;
-extern LONG ScummMidiUnit;
-extern IOMidiRequest *ScummMidiRequest;
-extern timerequest *MusicTimerIORequest;
#endif