From 118296c069eb477825126c879a10ebde00735be4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 3 Aug 2008 17:25:53 +0000 Subject: Minor cleanups for easier seddability. git-svn-id: http://svn.drobilla.net/lad/slv2@1319 a436a847-0d15-0410-975c-d299462d15a1 --- slv2/plugin.h | 2 +- slv2/pluginclass.h | 2 +- slv2/pluginclasses.h | 2 +- slv2/plugininstance.h | 2 +- slv2/plugins.h | 2 +- slv2/pluginui.h | 2 +- slv2/pluginuiinstance.h | 2 +- slv2/pluginuis.h | 2 +- slv2/port.h | 2 +- slv2/scalepoint.h | 2 +- slv2/scalepoints.h | 4 ++-- slv2/slv2.h | 2 +- slv2/types.h | 2 +- slv2/util.h | 2 +- slv2/value.h | 2 +- slv2/values.h | 4 ++-- slv2/world.h | 2 +- 17 files changed, 19 insertions(+), 19 deletions(-) (limited to 'slv2') diff --git a/slv2/plugin.h b/slv2/plugin.h index 8f41677..5aebde1 100644 --- a/slv2/plugin.h +++ b/slv2/plugin.h @@ -437,7 +437,7 @@ slv2_plugin_get_author_homepage(SLV2Plugin plugin); /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_PLUGIN_H__ */ diff --git a/slv2/pluginclass.h b/slv2/pluginclass.h index 790cc15..02fcbfb 100644 --- a/slv2/pluginclass.h +++ b/slv2/pluginclass.h @@ -71,7 +71,7 @@ slv2_plugin_class_get_children(SLV2PluginClass plugin_class); /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_PLUGIN_CLASS_H__ */ diff --git a/slv2/pluginclasses.h b/slv2/pluginclasses.h index 29d98cd..e998b22 100644 --- a/slv2/pluginclasses.h +++ b/slv2/pluginclasses.h @@ -69,7 +69,7 @@ slv2_plugin_classes_get_at(SLV2PluginClasses classes, /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_PLUGIN_CLASSES_H__ */ diff --git a/slv2/plugininstance.h b/slv2/plugininstance.h index 383e404..e648513 100644 --- a/slv2/plugininstance.h +++ b/slv2/plugininstance.h @@ -211,7 +211,7 @@ slv2_instance_get_handle(SLV2Instance instance) /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif diff --git a/slv2/plugins.h b/slv2/plugins.h index 6457af8..e6257ac 100644 --- a/slv2/plugins.h +++ b/slv2/plugins.h @@ -80,7 +80,7 @@ slv2_plugins_get_at(SLV2Plugins plugins, /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_PLUGINS_H__ */ diff --git a/slv2/pluginui.h b/slv2/pluginui.h index 8fc1f06..81c7a8c 100644 --- a/slv2/pluginui.h +++ b/slv2/pluginui.h @@ -82,7 +82,7 @@ slv2_ui_get_binary_uri(SLV2UI ui); /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_PLUGIN_UI_H__ */ diff --git a/slv2/pluginuiinstance.h b/slv2/pluginuiinstance.h index b3daef6..beb9d6d 100644 --- a/slv2/pluginuiinstance.h +++ b/slv2/pluginuiinstance.h @@ -110,7 +110,7 @@ slv2_ui_instance_get_handle(SLV2UIInstance instance); /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif diff --git a/slv2/pluginuis.h b/slv2/pluginuis.h index 7eacc4a..315e260 100644 --- a/slv2/pluginuis.h +++ b/slv2/pluginuis.h @@ -80,7 +80,7 @@ slv2_uis_get_at(SLV2UIs list, /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_PLUGIN_UIS_H__ */ diff --git a/slv2/port.h b/slv2/port.h index 6b55a56..a55a1a8 100644 --- a/slv2/port.h +++ b/slv2/port.h @@ -161,7 +161,7 @@ slv2_port_get_scale_points(SLV2Plugin plugin, /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_PORT_H__ */ diff --git a/slv2/scalepoint.h b/slv2/scalepoint.h index e5fd9cf..6f021b7 100644 --- a/slv2/scalepoint.h +++ b/slv2/scalepoint.h @@ -49,7 +49,7 @@ slv2_scale_point_get_value(SLV2ScalePoint point); /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_SCALE_POINT_H__ */ diff --git a/slv2/scalepoints.h b/slv2/scalepoints.h index c8fee6a..f8d53f9 100644 --- a/slv2/scalepoints.h +++ b/slv2/scalepoints.h @@ -44,7 +44,7 @@ slv2_scale_points_new(); /** Free an SLV2ScalePoints. */ void -slv2_scale_points_free(SLV2ScalePoints); +slv2_scale_points_free(SLV2ScalePoints points); /** Get the number of scale points in a collection. @@ -66,7 +66,7 @@ slv2_scale_points_get_at(SLV2ScalePoints points, unsigned index); /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_SCALE_POINTS_H__ */ diff --git a/slv2/slv2.h b/slv2/slv2.h index 3ddd85f..90dd2e1 100644 --- a/slv2/slv2.h +++ b/slv2/slv2.h @@ -40,7 +40,7 @@ extern "C" { #include #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_H__ */ diff --git a/slv2/types.h b/slv2/types.h index e72d880..fa98940 100644 --- a/slv2/types.h +++ b/slv2/types.h @@ -84,7 +84,7 @@ typedef void* SLV2UIs; #ifdef __cplusplus -} +} /* extern "C" */ #endif diff --git a/slv2/util.h b/slv2/util.h index cba7af3..f01fdaa 100644 --- a/slv2/util.h +++ b/slv2/util.h @@ -43,7 +43,7 @@ const char* slv2_uri_to_path(const char* uri); /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_UTIL_H__ */ diff --git a/slv2/value.h b/slv2/value.h index 94a7f95..4beef14 100644 --- a/slv2/value.h +++ b/slv2/value.h @@ -182,7 +182,7 @@ slv2_value_as_int(SLV2Value value); /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_VALUE_H__ */ diff --git a/slv2/values.h b/slv2/values.h index bdff538..474323d 100644 --- a/slv2/values.h +++ b/slv2/values.h @@ -44,7 +44,7 @@ slv2_values_new(); /** Free an SLV2Values. */ void -slv2_values_free(SLV2Values); +slv2_values_free(SLV2Values values); /** Get the number of elements in a value collection. @@ -74,7 +74,7 @@ slv2_values_contains(SLV2Values values, SLV2Value value); /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_VALUES_H__ */ diff --git a/slv2/world.h b/slv2/world.h index e9c328d..268251e 100644 --- a/slv2/world.h +++ b/slv2/world.h @@ -204,7 +204,7 @@ slv2_world_get_plugins_by_query(SLV2World world, /** @} */ #ifdef __cplusplus -} +} /* extern "C" */ #endif #endif /* __SLV2_WORLD_H__ */ -- cgit v1.2.1