From 4f3316c9c7842c4c745291b6699afaade6b8531d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 4 Feb 2011 01:49:51 +0000 Subject: Remove repeated blank lines. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2897 a436a847-0d15-0410-975c-d299462d15a1 --- slv2/plugininstance.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'slv2/plugininstance.h') diff --git a/slv2/plugininstance.h b/slv2/plugininstance.h index a6888a0..c860590 100644 --- a/slv2/plugininstance.h +++ b/slv2/plugininstance.h @@ -49,7 +49,6 @@ typedef struct _Instance { /** \endcond */ - /** \defgroup slv2_library Plugin library access * * An SLV2Instance is an instantiated SLV2Plugin (ie a loaded dynamic @@ -80,7 +79,6 @@ slv2_plugin_instantiate(SLV2Plugin plugin, double sample_rate, const LV2_Feature*const* features); - /** Free a plugin instance. * * \a instance is invalid after this call. @@ -101,7 +99,6 @@ slv2_instance_get_uri(SLV2Instance instance) return instance->lv2_descriptor->URI; } - /** Connect a port to a data location. * * This may be called regardless of whether the plugin is activated, @@ -116,7 +113,6 @@ slv2_instance_connect_port(SLV2Instance instance, (instance->lv2_handle, port_index, data_location); } - /** Activate a plugin instance. * * This resets all state information in the plugin, except for port data @@ -130,7 +126,6 @@ slv2_instance_activate(SLV2Instance instance) instance->lv2_descriptor->activate(instance->lv2_handle); } - /** Run \a instance for \a sample_count frames. * * If the hint lv2:hardRTCapable is set for this plugin, this function is @@ -144,7 +139,6 @@ slv2_instance_run(SLV2Instance instance, instance->lv2_descriptor->run(instance->lv2_handle, sample_count); } - /** Deactivate a plugin instance. * * Note that to run the plugin after this you must activate it, which will @@ -157,7 +151,6 @@ slv2_instance_deactivate(SLV2Instance instance) instance->lv2_descriptor->deactivate(instance->lv2_handle); } - /** Get extension data from the plugin instance. * * The type and semantics of the data returned is specific to the particular @@ -173,7 +166,6 @@ slv2_instance_get_extension_data(SLV2Instance instance, return NULL; } - /** Get the LV2_Descriptor of the plugin instance. * * Normally hosts should not need to access the LV2_Descriptor directly, @@ -187,7 +179,6 @@ slv2_instance_get_descriptor(SLV2Instance instance) return instance->lv2_descriptor; } - /** Get the LV2_Handle of the plugin instance. * * Normally hosts should not need to access the LV2_Handle directly, @@ -209,6 +200,4 @@ slv2_instance_get_handle(SLV2Instance instance) } /* extern "C" */ #endif - #endif /* __SLV2_PLUGININSTANCE_H__ */ - -- cgit v1.2.1