From a06305e2c8068f0519f25ab3d0eddf7278d6ba7c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Sep 2007 18:51:21 +0000 Subject: Support for plugin UIs in separate bundles. Fix some memory leaks. Better/more future proof UI interface. git-svn-id: http://svn.drobilla.net/lad/slv2@772 a436a847-0d15-0410-975c-d299462d15a1 --- slv2/plugin.h | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) (limited to 'slv2/plugin.h') diff --git a/slv2/plugin.h b/slv2/plugin.h index 224a450..97d830f 100644 --- a/slv2/plugin.h +++ b/slv2/plugin.h @@ -201,7 +201,7 @@ slv2_plugin_get_value_for_subject(SLV2Plugin p, * understand all the LV2 Properties associated with that plugin (if this is * not what you want, see slv2_plugin_get_hints). * - * Return value must be freed by caller with slv2_value_free. + * Return value must be freed by caller with slv2_values_free. * * Time = Query */ @@ -214,7 +214,7 @@ slv2_plugin_get_properties(SLV2Plugin p); * LV2 Hints are suggestions that may be useful for a host. LV2 Hints may be * ignored and the plugin will still function correctly. * - * Return value must be freed by caller with slv2_value_free. + * Return value must be freed by caller with slv2_values_free. * * Time = Query */ @@ -352,22 +352,10 @@ slv2_plugin_get_port_by_symbol(SLV2Plugin plugin, * * Time = Query */ -SLV2Values +SLV2PluginUIs slv2_plugin_get_uis(SLV2Plugin plugin); -/** Get the URI for a UI library. - * - * \param plugin The plugin that the UI is for. - * \param ui A UI identifier as returned by slv2_plugin_get_uis() (with type SLV2_VALUE_UI). - * - * Time = Query - */ -SLV2Value -slv2_plugin_get_ui_library_uri(SLV2Plugin plugin, - SLV2Value ui); - - /** @} */ #ifdef __cplusplus -- cgit v1.2.1