summaryrefslogtreecommitdiff
path: root/libs/midi++2/parser.cc
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2013-07-25 07:19:51 +0100
committerJohn Emmas <johne53@tiscali.co.uk>2013-07-25 07:19:51 +0100
commit369c0e4a6692f7f5fd356783be7da773e452cb34 (patch)
treec73adc2054be6f01721ed8d11869e8dc2b4b953a /libs/midi++2/parser.cc
parentb8109ef87ef9d5332fa16d246b6cf5a6576fe363 (diff)
'libs/midi++2' - Modify to be buildable with MSVC
Diffstat (limited to 'libs/midi++2/parser.cc')
-rw-r--r--libs/midi++2/parser.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/midi++2/parser.cc b/libs/midi++2/parser.cc
index 8e3af64504..94daef7871 100644
--- a/libs/midi++2/parser.cc
+++ b/libs/midi++2/parser.cc
@@ -137,7 +137,7 @@ Parser::~Parser ()
}
void
-Parser::trace_event (Parser &, byte *msg, size_t len)
+Parser::trace_event (Parser &, MIDI::byte *msg, size_t len)
{
eventType type;
ostream *o;
@@ -659,7 +659,7 @@ Parser::system_msg (unsigned char inbyte)
}
void
-Parser::signal (byte *msg, size_t len)
+Parser::signal (MIDI::byte *msg, size_t len)
{
channel_t chan = msg[0]&0xF;
int chan_i = chan;
@@ -762,7 +762,7 @@ Parser::signal (byte *msg, size_t len)
}
bool
-Parser::possible_mmc (byte *msg, size_t msglen)
+Parser::possible_mmc (MIDI::byte *msg, size_t msglen)
{
if (!MachineControl::is_mmc (msg, msglen)) {
return false;