From 6f4460aee9962a49ae872eef42ba75a439ea6e59 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 25 Jan 2008 06:55:57 +0000 Subject: Overhaul SLV2 API to return/take SLV2Value (instead of strings or primitives) wherever possible. Make 'index' a fundemental property of ingen ports. git-svn-id: http://svn.drobilla.net/lad/slv2@1113 a436a847-0d15-0410-975c-d299462d15a1 --- slv2/plugininstance.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'slv2/plugininstance.h') diff --git a/slv2/plugininstance.h b/slv2/plugininstance.h index 8f2b7fd..383e404 100644 --- a/slv2/plugininstance.h +++ b/slv2/plugininstance.h @@ -30,6 +30,8 @@ extern "C" { typedef struct _InstanceImpl* SLV2InstanceImpl; +/** \cond IGNORE */ + /* Instance of a plugin. * * The LV2 descriptor and handle of this are exposed to allow inlining of @@ -44,6 +46,8 @@ typedef struct _Instance { SLV2InstanceImpl pimpl; ///< Private implementation }* SLV2Instance; +/** \endcond */ + /** \defgroup slv2_library Plugin library access * @@ -147,7 +151,7 @@ slv2_instance_run(SLV2Instance instance, assert(instance->lv2_descriptor); assert(instance->lv2_handle); - if (instance->lv2_descriptor->run) + /*if (instance->lv2_descriptor->run)*/ instance->lv2_descriptor->run(instance->lv2_handle, sample_count); } -- cgit v1.2.1