diff options
author | David Robillard <d@drobilla.net> | 2011-02-04 01:49:51 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-04 01:49:51 +0000 |
commit | 4f3316c9c7842c4c745291b6699afaade6b8531d (patch) | |
tree | c9424da990c35a86b8f77d1352b2ca7a5c264a06 /slv2/world.h | |
parent | cfa70a49ec316be6ab83769161a5e02b97c84f65 (diff) | |
download | lilv-4f3316c9c7842c4c745291b6699afaade6b8531d.tar.gz lilv-4f3316c9c7842c4c745291b6699afaade6b8531d.tar.bz2 lilv-4f3316c9c7842c4c745291b6699afaade6b8531d.zip |
Remove repeated blank lines.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2897 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/world.h')
-rw-r--r-- | slv2/world.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/slv2/world.h b/slv2/world.h index 04d80a9..4404c3f 100644 --- a/slv2/world.h +++ b/slv2/world.h @@ -44,7 +44,6 @@ extern "C" { * @{ */ - /** Initialize a new, empty world. * * If initialization fails, NULL is returned. @@ -53,7 +52,6 @@ SLV2_API SLV2World slv2_world_new(); - /** Destroy the world, mwahaha. * * NB: Destroying the world will leave dangling references in any plugin lists, @@ -64,7 +62,6 @@ SLV2_API void slv2_world_free(SLV2World world); - /** Load all installed LV2 bundles on the system. * * This is the recommended way for hosts to load LV2 data. It does the most @@ -82,7 +79,6 @@ SLV2_API void slv2_world_load_all(SLV2World world); - /** Load a specific bundle. * * \arg bundle_uri A fully qualified URI to the bundle directory, @@ -106,7 +102,6 @@ void slv2_world_load_bundle(SLV2World world, SLV2Value bundle_uri); - /** Get the parent of all other plugin classes, lv2:Plugin. * * Time = O(1) @@ -115,7 +110,6 @@ SLV2_API SLV2PluginClass slv2_world_get_plugin_class(SLV2World world); - /** Return a list of all found plugin classes. * * Returned list is owned by world and must not be freed by the caller. @@ -126,7 +120,6 @@ SLV2_API SLV2PluginClasses slv2_world_get_plugin_classes(SLV2World world); - /** Return a list of all found plugins. * * The returned list contains just enough references to query @@ -144,7 +137,6 @@ SLV2_API SLV2Plugins slv2_world_get_all_plugins(SLV2World world); - /** Return a list of found plugins filtered by a user-defined filter function. * * All plugins currently found in \a world that return true when passed to @@ -161,7 +153,6 @@ SLV2Plugins slv2_world_get_plugins_by_filter(SLV2World world, bool (*include)(SLV2Plugin)); - /** @} */ #ifdef __cplusplus @@ -169,4 +160,3 @@ slv2_world_get_plugins_by_filter(SLV2World world, #endif #endif /* __SLV2_WORLD_H__ */ - |