LMMS
Loading...
Searching...
No Matches
juce_UMPSysEx7.h
Go to the documentation of this file.
1/*
2 ==============================================================================
3
4 This file is part of the JUCE library.
5 Copyright (c) 2022 - Raw Material Software Limited
6
7 JUCE is an open source library subject to commercial or open-source
8 licensing.
9
10 The code included in this file is provided under the terms of the ISC license
11 http://www.isc.org/downloads/software-support-policy/isc-license. Permission
12 To use, copy, modify, and/or distribute this software for any purpose with or
13 without fee is hereby granted provided that the above copyright notice and
14 this permission notice appear in all copies.
15
16 JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
17 EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
18 DISCLAIMED.
19
20 ==============================================================================
21*/
22
23#ifndef DOXYGEN
24
25namespace juce
26{
28{
29
36struct SysEx7
37{
46
48 enum class Kind : uint8_t
49 {
51 complete = 0,
52
54 begin = 1,
55
57 continuation = 2,
58
60 end = 3
61 };
62
65 {
66 std::array<uint8_t, 6> data;
68 };
69
71 static PacketBytes getDataBytes (const PacketX2& packet);
72};
73
74}
75}
76
77#endif
unsigned int uint32_t
Definition mid.cpp:100
unsigned char uint8_t
Definition mid.cpp:98
Definition juce_UMP_test.cpp:26
Packet< 2 > PacketX2
Definition juce_UMPacket.h:186
Definition carla_juce.cpp:31
RangedDirectoryIterator end(const RangedDirectoryIterator &)
Definition juce_RangedDirectoryIterator.h:184
RangedDirectoryIterator begin(const RangedDirectoryIterator &it)
Definition juce_RangedDirectoryIterator.h:179
uint8_t size
Definition juce_UMPSysEx7.h:67
std::array< uint8_t, 6 > data
Definition juce_UMPSysEx7.h:66
Definition juce_UMPSysEx7.h:37
static uint32_t getNumPacketsRequiredForDataSize(uint32_t)
Definition juce_UMPSysEx7.cpp:28
Kind
Definition juce_UMPSysEx7.h:49
static PacketBytes getDataBytes(const PacketX2 &packet)
Definition juce_UMPSysEx7.cpp:34