diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | lilv/lilv.h | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -3,11 +3,12 @@ lilv (0.22.1) unstable; * Unload contained resources when bundle is unloaded * Support re-loading plugins * Fix loading dyn-manifest from bundles with spaces in their path + * Add LILV_URI_ATOM_PORT and LILV_URI_CV_PORT defines * Fix Python bindings * Fix documentation installation * Fix outdated comment references to lilv_uri_to_path() - -- David Robillard <d@drobilla.net> Thu, 29 Oct 2015 00:41:34 -0400 + -- David Robillard <d@drobilla.net> Thu, 29 Oct 2015 10:32:39 -0400 lilv (0.22.0) stable; diff --git a/lilv/lilv.h b/lilv/lilv.h index feb8a0b..8418e9a 100644 --- a/lilv/lilv.h +++ b/lilv/lilv.h @@ -66,8 +66,10 @@ extern "C" { #define LILV_NS_RDFS "http://www.w3.org/2000/01/rdf-schema#" #define LILV_NS_XSD "http://www.w3.org/2001/XMLSchema#" +#define LILV_URI_ATOM_PORT "http://lv2plug.in/ns/ext/atom#AtomPort" #define LILV_URI_AUDIO_PORT "http://lv2plug.in/ns/lv2core#AudioPort" #define LILV_URI_CONTROL_PORT "http://lv2plug.in/ns/lv2core#ControlPort" +#define LILV_URI_CV_PORT "http://lv2plug.in/ns/lv2core#CVPort" #define LILV_URI_EVENT_PORT "http://lv2plug.in/ns/ext/event#EventPort" #define LILV_URI_INPUT_PORT "http://lv2plug.in/ns/lv2core#InputPort" #define LILV_URI_MIDI_EVENT "http://lv2plug.in/ns/ext/midi#MidiEvent" |