diff options
author | David Robillard <d@drobilla.net> | 2011-01-30 00:03:52 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-30 00:03:52 +0000 |
commit | e0c3f426f0b7b40cdb9c65f99ac77f4974f086a8 (patch) | |
tree | f50e03e731d6583518e3cf9b48d7b8b601f8d8b6 /src/world.c | |
parent | 801876c89ef1e4dcd16f5c5f9c29416b78ac15c4 (diff) | |
download | lilv-e0c3f426f0b7b40cdb9c65f99ac77f4974f086a8.tar.gz lilv-e0c3f426f0b7b40cdb9c65f99ac77f4974f086a8.tar.bz2 lilv-e0c3f426f0b7b40cdb9c65f99ac77f4974f086a8.zip |
Non-SPARQL versions of slv2_plugin_has_latency and slv2_plugin_get_latency_port_index.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2861 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/world.c')
-rw-r--r-- | src/world.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/world.c b/src/world.c index 53bee59..1909ca5 100644 --- a/src/world.c +++ b/src/world.c @@ -64,6 +64,7 @@ slv2_world_new_internal(SLV2World world) world->lv2_plugin_node = NEW_URI(SLV2_NS_LV2 "Plugin"); world->lv2_binary_node = NEW_URI(SLV2_NS_LV2 "binary"); world->lv2_port_node = NEW_URI(SLV2_NS_LV2 "port"); + world->lv2_portproperty_node = NEW_URI(SLV2_NS_LV2 "portProperty"); world->lv2_index_node = NEW_URI(SLV2_NS_LV2 "index"); world->lv2_symbol_node = NEW_URI(SLV2_NS_LV2 "symbol"); world->rdf_a_node = NEW_URI(SLV2_NS_RDF "type"); @@ -162,6 +163,7 @@ slv2_world_free(SLV2World world) librdf_free_node(world->lv2_plugin_node); librdf_free_node(world->lv2_binary_node); librdf_free_node(world->lv2_port_node); + librdf_free_node(world->lv2_portproperty_node); librdf_free_node(world->lv2_index_node); librdf_free_node(world->lv2_symbol_node); librdf_free_node(world->rdf_a_node); |