diff options
author | David Robillard <d@drobilla.net> | 2007-09-24 01:05:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-09-24 01:05:07 +0000 |
commit | 3af94d8f422593fc16951b7365a5c6e62708e4c0 (patch) | |
tree | 393b42798c9ad4ce3fdd7dcd844e238ddb06322a /slv2/pluginuis.h | |
parent | 123ba8acf4817ae246130081f76fc7f4398e412d (diff) | |
download | lilv-3af94d8f422593fc16951b7365a5c6e62708e4c0.tar.gz lilv-3af94d8f422593fc16951b7365a5c6e62708e4c0.tar.bz2 lilv-3af94d8f422593fc16951b7365a5c6e62708e4c0.zip |
LV2 UI interface cleanups.
Documentation reorganization.
Updated LV2 spec (1.0beta5).
git-svn-id: http://svn.drobilla.net/lad/slv2@775 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/pluginuis.h')
-rw-r--r-- | slv2/pluginuis.h | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/slv2/pluginuis.h b/slv2/pluginuis.h index 06c38b7..f3eb699 100644 --- a/slv2/pluginuis.h +++ b/slv2/pluginuis.h @@ -26,11 +26,7 @@ extern "C" { #endif -/** \defgroup plugins Collections of plugins - * - * These functions work with lists of plugins which come from an - * SLV2World. These lists contain only a weak reference to an LV2 plugin - * in the Model. +/** \addtogroup collections * * @{ */ @@ -42,13 +38,13 @@ extern "C" { * are owned by the world). \a list is invalid after this call. */ void -slv2_plugin_uis_free(SLV2PluginUIs list); +slv2_uis_free(SLV2UIs list); /** Get the number of plugins in the list. */ unsigned -slv2_plugin_uis_size(SLV2PluginUIs list); +slv2_uis_size(SLV2UIs list); /** Get a plugin from the list by URI. @@ -60,9 +56,9 @@ slv2_plugin_uis_size(SLV2PluginUIs list); * * \return NULL if plugin with \a url not found in \a list. */ -SLV2PluginUI -slv2_plugin_uis_get_by_uri(SLV2PluginUIs list, - const char* uri); +SLV2UI +slv2_uis_get_by_uri(SLV2UIs list, + const char* uri); /** Get a plugin from the list by index. @@ -76,9 +72,9 @@ slv2_plugin_uis_get_by_uri(SLV2PluginUIs list, * * \return NULL if \a index out of range. */ -SLV2PluginUI -slv2_plugin_uis_get_at(SLV2PluginUIs list, - unsigned index); +SLV2UI +slv2_uis_get_at(SLV2UIs list, + unsigned index); /** @} */ |