diff options
author | David Robillard <d@drobilla.net> | 2011-03-06 03:19:57 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-06 03:19:57 +0000 |
commit | 711b26e71b0dcc160616fa015793a0e57acc8a8c (patch) | |
tree | 66c7ad66d37246df15e6003d736a5174a90db26f /src/slv2_internal.h | |
parent | e779b2aeea2a9f9594cdb2a26c2bfd43868fe785 (diff) | |
download | lilv-711b26e71b0dcc160616fa015793a0e57acc8a8c.tar.gz lilv-711b26e71b0dcc160616fa015793a0e57acc8a8c.tar.bz2 lilv-711b26e71b0dcc160616fa015793a0e57acc8a8c.zip |
Add a UI host descriptor to allow for a graceful transition to a more powerful UI extension.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3044 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r-- | src/slv2_internal.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h index 1313bd3..7e3693a 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -158,6 +158,14 @@ struct _SLV2UIInstance { SuilInstance instance; }; +struct _SLV2UIHost { + LV2UI_Controller controller; + LV2UI_Write_Function write_function; + SLV2PortIndexFunction port_index_function; + SLV2PortSubscribeFunction port_subscribe_function; + SLV2PortUnsubscribeFunction port_unsubscribe_function; +}; + /* ********* Plugin Class ********* */ struct _SLV2PluginClass { |