diff options
author | Filippos Karapetis | 2009-11-26 08:19:56 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-11-26 08:19:56 +0000 |
commit | 4a1080a597fff9f572037143030d961c7e8652e5 (patch) | |
tree | 70c557551c92e1ed5d89e8cebe2cf00c0df52521 /engines | |
parent | 1c4408f59378b6bc996f29283f0d6416d4154478 (diff) | |
download | scummvm-rg350-4a1080a597fff9f572037143030d961c7e8652e5.tar.gz scummvm-rg350-4a1080a597fff9f572037143030d961c7e8652e5.tar.bz2 scummvm-rg350-4a1080a597fff9f572037143030d961c7e8652e5.zip |
Removed dead code
svn-id: r46150
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/sfx/device.h | 18 |
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 */ |