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/plugin.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/plugin.h')
-rw-r--r-- | slv2/plugin.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/slv2/plugin.h b/slv2/plugin.h index 97d830f..fa82bae 100644 --- a/slv2/plugin.h +++ b/slv2/plugin.h @@ -241,8 +241,7 @@ bool slv2_plugin_has_latency(SLV2Plugin p); -/** Return the index of the plugin's latency port, or the empty string if the - * plugin has no latency. +/** Return the index of the plugin's latency port. * * It is a fatal error to call this on a plugin without checking if the port * exists by first calling slv2_plugin_has_latency. @@ -345,14 +344,14 @@ slv2_plugin_get_port_by_symbol(SLV2Plugin plugin, /** Get a list of all UIs available for this plugin. * * Note this returns the URI of the UI, and not the path/URI to its shared - * library, use slv2_plugin_ui_get_library_uri with the values returned + * library, use slv2_ui_get_library_uri with the values returned * here for that. * * \param plugin The plugin to get the UIs for. * * Time = Query */ -SLV2PluginUIs +SLV2UIs slv2_plugin_get_uis(SLV2Plugin plugin); |