diff options
Diffstat (limited to 'src/jalv_internal.h')
-rw-r--r-- | src/jalv_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/jalv_internal.h b/src/jalv_internal.h index c171b72..e2f5dd5 100644 --- a/src/jalv_internal.h +++ b/src/jalv_internal.h @@ -57,6 +57,7 @@ struct Port { jack_port_t* jack_port; /**< For audio/MIDI ports, otherwise NULL */ float control; /**< For control ports, otherwise 0.0f */ LV2_Evbuf* evbuf; /**< For MIDI ports, otherwise NULL */ + bool old_api; /**< True for event, false for atom */ }; struct Property { @@ -102,6 +103,7 @@ typedef struct { LilvNode* control_class; /**< Control port class (URI) */ LilvNode* audio_class; /**< Audio port class (URI) */ LilvNode* event_class; /**< Event port class (URI) */ + LilvNode* aevent_class; /**< Atom event port class (URI) */ LilvNode* midi_class; /**< MIDI event class (URI) */ LilvNode* optional; /**< lv2:connectionOptional port property */ uint32_t midi_event_id; /**< MIDI event class ID */ |