mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
MIDI-CI: Add module
This commit is contained in:
parent
387ab88c13
commit
8ebbc20311
85 changed files with 11013 additions and 16 deletions
|
|
@ -685,6 +685,11 @@ MidiMessage MidiMessage::createSysExMessage (const void* sysexData, const int da
|
|||
return MidiMessage (m, dataSize + 2);
|
||||
}
|
||||
|
||||
MidiMessage MidiMessage::createSysExMessage (Span<const std::byte> data)
|
||||
{
|
||||
return createSysExMessage (data.data(), (int) data.size());
|
||||
}
|
||||
|
||||
const uint8* MidiMessage::getSysExData() const noexcept
|
||||
{
|
||||
return isSysEx() ? getRawData() + 1 : nullptr;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue