diff options
author | David Robillard <d@drobilla.net> | 2012-05-24 03:09:06 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-24 03:09:06 +0000 |
commit | 7bcc44459f7c3b76274715565cd659734538921e (patch) | |
tree | 5374afbb3f35221aaad9206ef5ed8777114e5064 /suil | |
parent | 6116836c45952d4ae67585031b5fbc704106b2b0 (diff) | |
download | suil-7bcc44459f7c3b76274715565cd659734538921e.tar.gz suil-7bcc44459f7c3b76274715565cd659734538921e.tar.bz2 suil-7bcc44459f7c3b76274715565cd659734538921e.zip |
Allow run-time configuation of module directory via environment variable SUIL_MODULE_DIR.
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@4457 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'suil')
-rw-r--r-- | suil/suil.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/suil/suil.h b/suil/suil.h index 3c3ce19..1ffafcc 100644 --- a/suil/suil.h +++ b/suil/suil.h @@ -158,6 +158,12 @@ suil_ui_supported(const char* host_type_uri, /** Instantiate a UI for an LV2 plugin. + + This funcion may load a suil module to adapt the UI to the desired toolkit. + Suil is configured at compile time to load modules from the appropriate + place, but this can be changed at run-time via the environment variable + SUIL_MODULE_DIR. This makes it possible to bundle suil with an application. + @param host Host descriptor. @param controller Opaque host controller pointer. @param container_type_uri URI of the desired host container widget type. |