Changeset 418 for OCO/trunk/drv16/midimsg.hpp
- Timestamp:
- Mar 23, 2009, 12:15:39 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OCO/trunk/drv16/midimsg.hpp
r33 r418 55 55 56 56 // Byte length of the IBM Sysex Signature (0xF000003A). 57 const IBMSysexSigLen = 4;57 const int IBMSysexSigLen = 4; 58 58 59 59 // Miscellaneous error codes, must be <0. … … 68 68 // Longest message at time of this writing is 4 byte IBM Sysex signature 69 69 // plus 4 bytes sysex command and data == 8 bytes. We'll tack on 2 extra. 70 const MAX_MidiMsgLen = (IBMSysexSigLen + 4 + 2);70 const int MAX_MidiMsgLen = (IBMSysexSigLen + 4 + 2); 71 71 72 72 // We use this class to build up MIDI messages as we receive the bytes.
Note:
See TracChangeset
for help on using the changeset viewer.