From a1ddd791b182937a7f6aecfc52ac9441cd8b4dd7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 5 Apr 2020 13:05:09 +0200 Subject: Add lv2:extensionData and ui:showInterface nodes --- src/jalv.c | 2 ++ src/jalv_internal.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/jalv.c b/src/jalv.c index b48b6b6..4a8ea75 100644 --- a/src/jalv.c +++ b/src/jalv.c @@ -875,6 +875,7 @@ jalv_open(Jalv* const jalv, int* argc, char*** argv) jalv->nodes.lv2_control = lilv_new_uri(world, LV2_CORE__control); jalv->nodes.lv2_default = lilv_new_uri(world, LV2_CORE__default); jalv->nodes.lv2_enumeration = lilv_new_uri(world, LV2_CORE__enumeration); + jalv->nodes.lv2_extensionData = lilv_new_uri(world, LV2_CORE__extensionData); jalv->nodes.lv2_integer = lilv_new_uri(world, LV2_CORE__integer); jalv->nodes.lv2_maximum = lilv_new_uri(world, LV2_CORE__maximum); jalv->nodes.lv2_minimum = lilv_new_uri(world, LV2_CORE__minimum); @@ -894,6 +895,7 @@ jalv_open(Jalv* const jalv, int* argc, char*** argv) jalv->nodes.rdfs_label = lilv_new_uri(world, LILV_NS_RDFS "label"); jalv->nodes.rdfs_range = lilv_new_uri(world, LILV_NS_RDFS "range"); jalv->nodes.rsz_minimumSize = lilv_new_uri(world, LV2_RESIZE_PORT__minimumSize); + jalv->nodes.ui_showInterface = lilv_new_uri(world, LV2_UI__showInterface); jalv->nodes.work_interface = lilv_new_uri(world, LV2_WORKER__interface); jalv->nodes.work_schedule = lilv_new_uri(world, LV2_WORKER__schedule); jalv->nodes.end = NULL; diff --git a/src/jalv_internal.h b/src/jalv_internal.h index b48ca5d..0e76fd0 100644 --- a/src/jalv_internal.h +++ b/src/jalv_internal.h @@ -224,6 +224,7 @@ typedef struct { LilvNode* lv2_control; LilvNode* lv2_default; LilvNode* lv2_enumeration; + LilvNode* lv2_extensionData; LilvNode* lv2_integer; LilvNode* lv2_maximum; LilvNode* lv2_minimum; @@ -243,6 +244,7 @@ typedef struct { LilvNode* rdfs_label; LilvNode* rdfs_range; LilvNode* rsz_minimumSize; + LilvNode* ui_showInterface; LilvNode* work_interface; LilvNode* work_schedule; LilvNode* end; ///< NULL terminator for easy freeing of entire structure -- cgit v1.2.1