summaryrefslogtreecommitdiffstats
path: root/slv2/plugin.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-09-23 18:51:21 +0000
committerDavid Robillard <d@drobilla.net>2007-09-23 18:51:21 +0000
commita06305e2c8068f0519f25ab3d0eddf7278d6ba7c (patch)
tree57c89dffe104e5bf0fa561c35a550f564279321c /slv2/plugin.h
parentd26a3e39c72c17acbe5bb371a6638acd2469bdac (diff)
downloadlilv-a06305e2c8068f0519f25ab3d0eddf7278d6ba7c.tar.gz
lilv-a06305e2c8068f0519f25ab3d0eddf7278d6ba7c.tar.bz2
lilv-a06305e2c8068f0519f25ab3d0eddf7278d6ba7c.zip
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
Diffstat (limited to 'slv2/plugin.h')
-rw-r--r--slv2/plugin.h18
1 files changed, 3 insertions, 15 deletions
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