diff options
author | David Robillard <d@drobilla.net> | 2009-05-13 16:04:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-05-13 16:04:14 +0000 |
commit | 0a04be1e9e8f3c6b355c014f5755bb30da0d5aec (patch) | |
tree | b4eb149da0fc57af8c4e9356231aa191e6f1a118 /slv2/plugin.h | |
parent | 011d130c2b7f54b859ae41aac8b95d5825b975be (diff) | |
download | lilv-0a04be1e9e8f3c6b355c014f5755bb30da0d5aec.tar.gz lilv-0a04be1e9e8f3c6b355c014f5755bb30da0d5aec.tar.bz2 lilv-0a04be1e9e8f3c6b355c014f5755bb30da0d5aec.zip |
Strip trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1999 a436a847-0d15-0410-975c-d299462d15a1
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 */ |