aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx
diff options
context:
space:
mode:
authorFilippos Karapetis2009-11-26 08:19:56 +0000
committerFilippos Karapetis2009-11-26 08:19:56 +0000
commit4a1080a597fff9f572037143030d961c7e8652e5 (patch)
tree70c557551c92e1ed5d89e8cebe2cf00c0df52521 /engines/sci/sfx
parent1c4408f59378b6bc996f29283f0d6416d4154478 (diff)
downloadscummvm-rg350-4a1080a597fff9f572037143030d961c7e8652e5.tar.gz
scummvm-rg350-4a1080a597fff9f572037143030d961c7e8652e5.tar.bz2
scummvm-rg350-4a1080a597fff9f572037143030d961c7e8652e5.zip
Removed dead code
svn-id: r46150
Diffstat (limited to 'engines/sci/sfx')
-rw-r--r--engines/sci/sfx/device.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/engines/sci/sfx/device.h b/engines/sci/sfx/device.h
index e0b7286af4..ed4441b11f 100644
--- a/engines/sci/sfx/device.h
+++ b/engines/sci/sfx/device.h
@@ -33,24 +33,6 @@
namespace Sci {
-struct _midi_device {
- const char *name;
-
- Common::Error (*init)(struct _midi_device *self);
- /* Initializes the device
- ** Parameters: (midi_device_t *) self: Self reference
- ** Returns : (int) Common::kNoError on success, Common::kUnknownError if the device could not be
- ** opened
- */
-
- Common::Error (*set_option)(struct _midi_device *self, char *name, char *value);
- /* Sets an option for the device
- ** Parameters: (char *) name: Name of the option to set
- ** (char *) value: Value of the option to set
- ** Returns : (int) Common::kNoError on success, Common::kUnknownError otherwise (unsupported option)
- */
-};
-
struct midi_writer_t {
char *name; /* Name description of the device */