diff options
author | David Robillard <d@drobilla.net> | 2013-12-27 19:47:45 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-12-27 19:47:45 +0000 |
commit | 72ddaae31b6746f2d0f889c3b7cba38512952b94 (patch) | |
tree | cec980f7d18bf8acb0595315c0b702cc4e384e85 /src/world.c | |
parent | e35514910e663618be0da6edd0cae5926e3753ac (diff) | |
download | lilv-72ddaae31b6746f2d0f889c3b7cba38512952b94.tar.gz lilv-72ddaae31b6746f2d0f889c3b7cba38512952b94.tar.bz2 lilv-72ddaae31b6746f2d0f889c3b7cba38512952b94.zip |
Implement lv2:prototype.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5219 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/world.c')
-rw-r--r-- | src/world.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/world.c b/src/world.c index e64c5d2..5e1142a 100644 --- a/src/world.c +++ b/src/world.c @@ -74,6 +74,7 @@ lilv_world_new(void) world->uris.lv2_reportsLatency = NEW_URI(LV2_CORE__reportsLatency); world->uris.lv2_requiredFeature = NEW_URI(LV2_CORE__requiredFeature); world->uris.lv2_symbol = NEW_URI(LV2_CORE__symbol); + world->uris.lv2_prototype = NEW_URI(LV2_CORE__prototype); world->uris.pset_value = NEW_URI(LV2_PRESETS__value); world->uris.rdf_a = NEW_URI(LILV_NS_RDF "type"); world->uris.rdf_value = NEW_URI(LILV_NS_RDF "value"); @@ -322,7 +323,7 @@ lilv_world_add_spec(LilvWorld* world, spec->bundle = sord_node_copy(bundle_node); spec->data_uris = lilv_nodes_new(); - // Add all plugin data files (rdfs:seeAlso) + // Add all data files (rdfs:seeAlso) SordIter* files = sord_search( world->model, specification_node, |