summaryrefslogtreecommitdiffstats
path: root/raul/MIDISink.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-12-06 06:16:30 +0000
committerDavid Robillard <d@drobilla.net>2007-12-06 06:16:30 +0000
commit1739aa1b633a592e595fe3bfb56c615e3b76c6f8 (patch)
tree65ea0ac19a492fe4f1122e791e0c4f6a1e422c49 /raul/MIDISink.hpp
parentfeab87ff3c9dce87ef127c8c7e42e6d51950aa2e (diff)
downloadraul-1739aa1b633a592e595fe3bfb56c615e3b76c6f8.tar.gz
raul-1739aa1b633a592e595fe3bfb56c615e3b76c6f8.tar.bz2
raul-1739aa1b633a592e595fe3bfb56c615e3b76c6f8.zip
MIDI robustness fixes.
git-svn-id: http://svn.drobilla.net/lad/raul@954 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul/MIDISink.hpp')
-rw-r--r--raul/MIDISink.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/raul/MIDISink.hpp b/raul/MIDISink.hpp
index 6955911..e30dad2 100644
--- a/raul/MIDISink.hpp
+++ b/raul/MIDISink.hpp
@@ -29,9 +29,9 @@ namespace Raul {
*/
class MIDISink : public Deletable {
public:
- virtual void write_event(BeatTime time,
- size_t ev_size,
- const unsigned char* ev) throw (std::logic_error) = 0;
+ virtual void write_event(BeatTime time,
+ size_t ev_size,
+ const uint8_t* ev) throw (std::logic_error) = 0;
};