diff options
Diffstat (limited to 'slv2/plugin.h')
-rw-r--r-- | slv2/plugin.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/slv2/plugin.h b/slv2/plugin.h index 473a12b..fa533f9 100644 --- a/slv2/plugin.h +++ b/slv2/plugin.h @@ -1,6 +1,6 @@ /* SLV2 * Copyright (C) 2007 Dave Robillard <http://drobilla.net> - * + * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) @@ -47,7 +47,7 @@ extern "C" { * This is used by plugin lists to avoid loading plugins that are not valid * and will not work with libslv2 (eg plugins missing required fields, or * having multiple values for mandatory single-valued fields, etc. - * + * * Note that normal hosts do NOT need to use this - slv2 does not * load invalid plugins into plugin lists. This is included for plugin * testing utilities, etc. @@ -90,7 +90,7 @@ slv2_plugin_get_uri(SLV2Plugin plugin); * * Note this always returns a fully qualified URI. If you want a local * filesystem path, use slv2_uri_to_path. - * + * * \return a shared string which must not be modified or freed. * * Time = O(1) @@ -119,7 +119,7 @@ slv2_plugin_get_data_uris(SLV2Plugin plugin); * * Note this always returns a fully qualified URI. If you want a local * filesystem path, use slv2_uri_to_path. - * + * * \return a shared string which must not be modified or freed. * * Time = O(1) @@ -151,7 +151,7 @@ slv2_plugin_get_class(SLV2Plugin plugin); * Returns the ?object of all triples found of the form: * * <code><plugin-uri> predicate ?object</code> - * + * * May return NULL if the property was not found, or if object(s) is not * sensibly represented as an SLV2Values (e.g. blank nodes). * @@ -291,14 +291,14 @@ slv2_plugin_get_num_ports(SLV2Plugin p); * with array index corresponding to port index. If a port doesn't have a * minimum, maximum or default value, or the port's type is not float, the * corresponding array element will be set to NAN. - * + * * This is a convenience method for the common case of getting the range of * all float ports on a plugin, and may be significantly faster than * repeated calls to slv2_port_get_range. */ void -slv2_plugin_get_port_ranges_float(SLV2Plugin p, - float* min_values, +slv2_plugin_get_port_ranges_float(SLV2Plugin p, + float* min_values, float* max_values, float* def_values); @@ -405,7 +405,7 @@ slv2_plugin_get_port_by_symbol(SLV2Plugin plugin, * * Returned value must be freed by caller using slv2_uis_free. * - * \param plugin The plugin to get the UIs for. + * \param plugin The plugin to get the UIs for. * * Time = Query */ |