diff options
author | David Robillard <d@drobilla.net> | 2011-02-12 04:25:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-12 04:25:39 +0000 |
commit | c32c1593bc6b7c887e7c106531de2567b0da5aa1 (patch) | |
tree | fedac05f9957c298de652900646811a0b35b4815 /src/plugin.c | |
parent | 4d75c4711b12747e37286f5c3cc5bf741d7b351e (diff) | |
download | lilv-c32c1593bc6b7c887e7c106531de2567b0da5aa1.tar.gz lilv-c32c1593bc6b7c887e7c106531de2567b0da5aa1.tar.bz2 lilv-c32c1593bc6b7c887e7c106531de2567b0da5aa1.zip |
Make UI support a compile-time option, and separate UI functions into slv2/ui.h.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2930 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/plugin.c')
-rw-r--r-- | src/plugin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugin.c b/src/plugin.c index 78c8b73..7e639d9 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -761,6 +761,7 @@ slv2_plugin_get_author_homepage(SLV2Plugin plugin) return NULL; } +#ifdef SLV2_WITH_UI SLV2_API SLV2UIs slv2_plugin_get_uis(SLV2Plugin p) @@ -814,4 +815,4 @@ slv2_plugin_get_uis(SLV2Plugin p) return NULL; } } - +#endif /* SLV2_WITH_UI */ |