Ignore:
Timestamp:
Mar 23, 2009, 12:15:39 AM (16 years ago)
Author:
Paul Smedley
Message:

Build fixes for Watcom 1.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • OCO/trunk/drv16/midimsg.hpp

    r33 r418  
    5555
    5656// Byte length of the IBM Sysex Signature (0xF000003A).
    57 const IBMSysexSigLen = 4;
     57const int IBMSysexSigLen = 4;
    5858
    5959// Miscellaneous error codes, must be <0.
     
    6868// Longest message at time of this writing is 4 byte IBM Sysex signature
    6969// plus 4 bytes sysex command and data == 8 bytes.  We'll tack on 2 extra.
    70 const MAX_MidiMsgLen = (IBMSysexSigLen + 4 + 2);
     70const int MAX_MidiMsgLen = (IBMSysexSigLen + 4 + 2);
    7171
    7272// We use this class to build up MIDI messages as we receive the bytes.
Note: See TracChangeset for help on using the changeset viewer.