clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 3df6cfa3281d44b846362ace210c5df9717e5ee5
parent 5bc6e408d5714a6d2060b17b7742b87a34fc2450
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Sun,  9 Jan 2022 16:53:23 +0100

Fixes #40

Diffstat:
Minclude/clap/ext/note-ports.h | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/include/clap/ext/note-ports.h b/include/clap/ext/note-ports.h @@ -20,9 +20,17 @@ extern "C" { #pragma pack(push, CLAP_ALIGN) enum clap_note_dialect { + // Uses clap_event_note and clap_event_note_expression. + // Default if the port info are not provided or inspected. CLAP_NOTE_DIALECT_CLAP = 1 << 0, + + // Uses clap_event_midi, no polyphonic expression CLAP_NOTE_DIALECT_MIDI = 1 << 1, + + // Uses clap_event_midi, with polyphonic expression CLAP_NOTE_DIALECT_MIDI_MPE = 1 << 2, + + // Uses clap_event_midi2 CLAP_NOTE_DIALECT_MIDI2 = 1 << 3, };