diff options
author | David Robillard <d@drobilla.net> | 2012-08-16 15:50:26 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-16 15:50:26 +0000 |
commit | a7b0d36b287a1180f69fa1b250d59473702694d8 (patch) | |
tree | 44383ab02d517fadcd7f011d32bdbcd9b1a8b756 | |
parent | 3907dc1f3e36ce13f951ab6b9d9dccd0d7fa39b3 (diff) | |
download | lv2-a7b0d36b287a1180f69fa1b250d59473702694d8.tar.xz |
Add missing LV2_SYMBOL_EXPORT declaration for lv2ui_descriptor prototype.
-rw-r--r-- | lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl | 2 | ||||
-rw-r--r-- | lv2/lv2plug.in/ns/extensions/ui/ui.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl b/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl index 64dedba..59315c2 100644 --- a/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl +++ b/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl @@ -21,6 +21,8 @@ rdfs:label "Add types for WindowsUI, CocoaUI, and Gtk3UI." ] , [ rdfs:label "Use consistent label style." + ] , [ + rdfs:label "Add missing LV2_SYMBOL_EXPORT declaration for lv2ui_descriptor prototype." ] ] ] , [ diff --git a/lv2/lv2plug.in/ns/extensions/ui/ui.h b/lv2/lv2plug.in/ns/extensions/ui/ui.h index 04e8e58..62f4c93 100644 --- a/lv2/lv2plug.in/ns/extensions/ui/ui.h +++ b/lv2/lv2plug.in/ns/extensions/ui/ui.h @@ -373,6 +373,7 @@ typedef struct _LV2UI_Peak_Data { the host should just iterate from 0 and upwards until the function returns NULL or a descriptor with an URI matching the one the host is looking for. */ +LV2_SYMBOL_EXPORT const LV2UI_Descriptor* lv2ui_descriptor(uint32_t index); /** |