summaryrefslogtreecommitdiffstats
path: root/lilv
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-01-29 22:56:16 +0000
committerDavid Robillard <d@drobilla.net>2015-01-29 22:56:16 +0000
commit3257b52a2ceb7d6ad36a8cd8768612ce33090003 (patch)
treeab6f606ef350263d1e86b32f46a3e6fd4377f6cb /lilv
parent48648e4330b224391307343198152cce4f446874 (diff)
downloadlilv-3257b52a2ceb7d6ad36a8cd8768612ce33090003.tar.gz
lilv-3257b52a2ceb7d6ad36a8cd8768612ce33090003.tar.bz2
lilv-3257b52a2ceb7d6ad36a8cd8768612ce33090003.zip
Expose lilv_world_load_specifications() and lilv_world_load_plugin_classes().
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5529 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'lilv')
-rw-r--r--lilv/lilv.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/lilv/lilv.h b/lilv/lilv.h
index ca63e90..9d7b940 100644
--- a/lilv/lilv.h
+++ b/lilv/lilv.h
@@ -563,6 +563,26 @@ lilv_world_load_bundle(LilvWorld* world,
LilvNode* bundle_uri);
/**
+ Load all specifications from currently loaded bundles.
+
+ This is for hosts that explicitly load specific bundles, its use is not
+ necessary when using lilv_world_load_all(). This function parses the
+ specifications and adds them to the model.
+*/
+LILV_API void
+lilv_world_load_specifications(LilvWorld* world);
+
+/**
+ Load all plugin classes from currently loaded specifications.
+
+ Must be called after lilv_world_load_specifications(). This is for hosts
+ that explicitly load specific bundles, its use is not necessary when using
+ lilv_world_load_all().
+*/
+LILV_API void
+lilv_world_load_plugin_classes(LilvWorld* world);
+
+/**
Unload a specific bundle.
This unloads statements loaded by lilv_world_load_bundle(). Note that this