aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorChris Apers2003-06-17 08:58:50 +0000
committerChris Apers2003-06-17 08:58:50 +0000
commit3764908eb320b0a73c7577abcc6e66c1d4daaf0f (patch)
tree807922bbec246e29c25aaa0d26dbc6e748563f9c /backends
parentd120ea093f27c58f5bd6b66aff32aa0eac1bb236 (diff)
downloadscummvm-rg350-3764908eb320b0a73c7577abcc6e66c1d4daaf0f.tar.gz
scummvm-rg350-3764908eb320b0a73c7577abcc6e66c1d4daaf0f.tar.bz2
scummvm-rg350-3764908eb320b0a73c7577abcc6e66c1d4daaf0f.zip
Adlib
svn-id: r8527
Diffstat (limited to 'backends')
-rw-r--r--backends/PalmOS/Src/midi/adlib.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/backends/PalmOS/Src/midi/adlib.cpp b/backends/PalmOS/Src/midi/adlib.cpp
new file mode 100644
index 0000000000..a9d333743e
--- /dev/null
+++ b/backends/PalmOS/Src/midi/adlib.cpp
@@ -0,0 +1,33 @@
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2001-2003 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ */
+
+#include "stdafx.h"
+#include "sound/mpu401.h"
+
+/* NULL driver */
+class MidiDriver_ADLIB : public MidiDriver_MPU401 {
+public:
+ int open() { return 0; }
+ void send(uint32 b) { }
+};
+
+MidiDriver *MidiDriver_ADLIB_create() {
+ return new MidiDriver_ADLIB();
+}