summaryrefslogtreecommitdiffstats
path: root/slv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-13 16:04:14 +0000
committerDavid Robillard <d@drobilla.net>2009-05-13 16:04:14 +0000
commit0a04be1e9e8f3c6b355c014f5755bb30da0d5aec (patch)
treeb4eb149da0fc57af8c4e9356231aa191e6f1a118 /slv2
parent011d130c2b7f54b859ae41aac8b95d5825b975be (diff)
downloadlilv-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')
-rw-r--r--slv2/collections.h10
-rw-r--r--slv2/plugin.h18
-rw-r--r--slv2/pluginclass.h2
-rw-r--r--slv2/plugininstance.h10
-rw-r--r--slv2/pluginui.h2
-rw-r--r--slv2/pluginuiinstance.h8
-rw-r--r--slv2/port.h6
-rw-r--r--slv2/query.h2
-rw-r--r--slv2/scalepoint.h2
-rw-r--r--slv2/slv2.h2
-rw-r--r--slv2/types.h2
-rw-r--r--slv2/util.h2
-rw-r--r--slv2/value.h16
-rw-r--r--slv2/world.h6
14 files changed, 44 insertions, 44 deletions
diff --git a/slv2/collections.h b/slv2/collections.h
index a76e80c..86b5589 100644
--- a/slv2/collections.h
+++ b/slv2/collections.h
@@ -1,6 +1,6 @@
/* SLV2
* Copyright (C) 2008 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)
@@ -40,7 +40,7 @@ extern "C" {
#define SLV2_COLLECTION(CollType, ElemType, prefix) \
\
/** Free a collection.
- *
+ *
* Time = O(1)
*/ \
void \
@@ -103,7 +103,7 @@ slv2_plugins_size(SLV2Plugins plugins);
* modified by the caller in any way.
*
* Time = O(log2(n))
- *
+ *
* \return NULL if plugin with \a url not found in \a plugins.
*/
SLV2Plugin
@@ -136,7 +136,7 @@ slv2_plugins_get_at(SLV2Plugins plugins,
* modified by the caller in any way.
*
* Time = O(log2(n))
- *
+ *
* \return NULL if plugin with \a url not found in \a classes.
*/
SLV2PluginClass
@@ -179,7 +179,7 @@ slv2_values_contains(SLV2Values values, SLV2Value value);
* modified by the caller in any way.
*
* Time = O(log2(n))
- *
+ *
* \return NULL if plugin with \a url not found in \a list.
*/
SLV2UI
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>&lt;plugin-uri&gt; 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
*/
diff --git a/slv2/pluginclass.h b/slv2/pluginclass.h
index 2b19ac8..58864d7 100644
--- a/slv2/pluginclass.h
+++ b/slv2/pluginclass.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)
diff --git a/slv2/plugininstance.h b/slv2/plugininstance.h
index 784cea3..bbb77af 100644
--- a/slv2/plugininstance.h
+++ b/slv2/plugininstance.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)
@@ -55,7 +55,7 @@ typedef struct _Instance {
* An SLV2Instance is an instantiated SLV2Plugin (ie a loaded dynamic
* library). These functions interact with the binary library code only,
* they do not read data files in any way.
- *
+ *
* @{
*/
@@ -64,10 +64,10 @@ typedef struct _Instance {
* The returned object represents shared library objects loaded into memory,
* it must be cleaned up with slv2_instance_free when no longer
* needed.
- *
+ *
* \a plugin is not modified or directly referenced by the returned object
* (instances store only a copy of the plugin's URI).
- *
+ *
* \a host_features NULL-terminated array of features the host supports.
* NULL may be passed if the host supports no additional features (unlike
* the LV2 specification - SLV2 takes care of it).
@@ -190,7 +190,7 @@ slv2_instance_get_descriptor(SLV2Instance instance)
*
* Normally hosts should not need to access the LV2_Handle directly,
* use the slv2_instance_* functions.
- *
+ *
* The returned handle is shared and must not be deleted.
*/
static inline LV2_Handle
diff --git a/slv2/pluginui.h b/slv2/pluginui.h
index f862024..3ce9807 100644
--- a/slv2/pluginui.h
+++ b/slv2/pluginui.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)
diff --git a/slv2/pluginuiinstance.h b/slv2/pluginuiinstance.h
index 84ee690..a0e8002 100644
--- a/slv2/pluginuiinstance.h
+++ b/slv2/pluginuiinstance.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)
@@ -49,10 +49,10 @@ typedef struct _SLV2UIInstance {
* The returned object represents shared library objects loaded into memory,
* it must be cleaned up with slv2_ui_instance_free when no longer
* needed.
- *
+ *
* \a plugin is not modified or directly referenced by the returned object
* (instances store only a copy of the plugin's URI).
- *
+ *
* \a host_features NULL-terminated array of features the host supports.
* NULL may be passed if the host supports no additional features (unlike
* the LV2 specification - SLV2 takes care of it).
@@ -100,7 +100,7 @@ slv2_ui_instance_get_descriptor(SLV2UIInstance instance);
*
* Normally hosts should not need to access the LV2UI_Handle directly,
* use the slv2_ui_instance_* functions.
- *
+ *
* The returned handle is shared and must not be deleted.
*/
LV2UI_Handle
diff --git a/slv2/port.h b/slv2/port.h
index 498da54..c219100 100644
--- a/slv2/port.h
+++ b/slv2/port.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)
@@ -129,7 +129,7 @@ slv2_port_get_name(SLV2Plugin plugin,
SLV2Values
slv2_port_get_classes(SLV2Plugin plugin,
SLV2Port port);
-
+
/** Determine if a port is of a given class (input, output, audio, etc).
*
@@ -158,7 +158,7 @@ slv2_port_is_a(SLV2Plugin plugin,
* Time = Query
*/
void
-slv2_port_get_range(SLV2Plugin plugin,
+slv2_port_get_range(SLV2Plugin plugin,
SLV2Port port,
SLV2Value* def,
SLV2Value* min,
diff --git a/slv2/query.h b/slv2/query.h
index 7319c84..48bea95 100644
--- a/slv2/query.h
+++ b/slv2/query.h
@@ -1,6 +1,6 @@
/* SLV2
* Copyright (C) 2008 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)
diff --git a/slv2/scalepoint.h b/slv2/scalepoint.h
index 1fb6867..e7deab3 100644
--- a/slv2/scalepoint.h
+++ b/slv2/scalepoint.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)
diff --git a/slv2/slv2.h b/slv2/slv2.h
index 0960282..ae53ee7 100644
--- a/slv2/slv2.h
+++ b/slv2/slv2.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)
diff --git a/slv2/types.h b/slv2/types.h
index 0e18d6d..01e41b8 100644
--- a/slv2/types.h
+++ b/slv2/types.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)
diff --git a/slv2/util.h b/slv2/util.h
index f01fdaa..65cb38d 100644
--- a/slv2/util.h
+++ b/slv2/util.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)
diff --git a/slv2/value.h b/slv2/value.h
index f1af35f..299b1e8 100644
--- a/slv2/value.h
+++ b/slv2/value.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)
@@ -104,10 +104,10 @@ slv2_value_is_uri(SLV2Value value);
/** Return this value as a URI string, e.g. "http://example.org/foo".
- *
+ *
* Valid to call only if slv2_value_is_uri(\a value) returns true.
* Returned value is owned by \a value and must not be freed by caller.
- *
+ *
* Time = O(1)
*/
const char*
@@ -127,10 +127,10 @@ slv2_value_is_qname(SLV2Value value);
/** Return this value as a QName string, e.g. "lv2:Plugin".
- *
+ *
* Valid to call only if slv2_value_is_qname(\a value) returns true.
* Returned value is owned by \a value and must not be freed by caller.
- *
+ *
* Time = O(1)
*/
const char*
@@ -175,7 +175,7 @@ slv2_value_is_float(SLV2Value value);
/** Return \a value as a float.
- *
+ *
* Valid to call only if slv2_value_is_float(\a value) or
* slv2_value_is_int(\a value) returns true.
*
@@ -186,7 +186,7 @@ slv2_value_as_float(SLV2Value value);
/** Return whether this value is an integer literal.
- *
+ *
* Time = O(1)
*/
bool
@@ -194,7 +194,7 @@ slv2_value_is_int(SLV2Value value);
/** Return \a value as an integer.
- *
+ *
* Valid to call only if slv2_value_is_int(\a value) returns true.
*
* Time = O(1)
diff --git a/slv2/world.h b/slv2/world.h
index 0e6106c..9cf0058 100644
--- a/slv2/world.h
+++ b/slv2/world.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)
@@ -27,7 +27,7 @@ extern "C" {
#include "slv2/collections.h"
/** \defgroup slv2_world Global library state
- *
+ *
* The "world" represents all library state, and the data found in bundles'
* manifest.ttl (ie it is an in-memory index of all things LV2 found).
* Plugins (and plugin extensions) and the LV2 specification (and LV2
@@ -121,7 +121,7 @@ slv2_world_get_plugin_class(SLV2World world);
/** Return a list of all found plugin classes.
*
* Returned list is owned by world and must not be freed by the caller.
- *
+ *
* Time = O(1)
*/
SLV2PluginClasses