summaryrefslogtreecommitdiffstats
path: root/slv2/pluginclass.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-03-05 20:11:04 +0000
committerDavid Robillard <d@drobilla.net>2010-03-05 20:11:04 +0000
commit4d2cf9582ba6c5e9cdb29b07427934b2f1e0ef02 (patch)
tree0fe2c738a54718ae1c5dc3d5a905308b58fe69d0 /slv2/pluginclass.h
parentd8437709d6f69b4952993a6794313edb38361a53 (diff)
downloadlilv-4d2cf9582ba6c5e9cdb29b07427934b2f1e0ef02.tar.gz
lilv-4d2cf9582ba6c5e9cdb29b07427934b2f1e0ef02.tar.bz2
lilv-4d2cf9582ba6c5e9cdb29b07427934b2f1e0ef02.zip
Hide symbols by default and explicitly export API (clean ABI).
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2530 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/pluginclass.h')
-rw-r--r--slv2/pluginclass.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/slv2/pluginclass.h b/slv2/pluginclass.h
index 0c14235..37682be 100644
--- a/slv2/pluginclass.h
+++ b/slv2/pluginclass.h
@@ -37,7 +37,9 @@ extern "C" {
*
* Time = O(1)
*/
-SLV2Value slv2_plugin_class_get_parent_uri(SLV2PluginClass plugin_class);
+SLV2_API
+SLV2Value
+slv2_plugin_class_get_parent_uri(SLV2PluginClass plugin_class);
/** Get the URI of this plugin class.
@@ -46,7 +48,9 @@ SLV2Value slv2_plugin_class_get_parent_uri(SLV2PluginClass plugin_class);
*
* Time = O(1)
*/
-SLV2Value slv2_plugin_class_get_uri(SLV2PluginClass plugin_class);
+SLV2_API
+SLV2Value
+slv2_plugin_class_get_uri(SLV2PluginClass plugin_class);
/** Get the label of this plugin class, ie "Oscillators".
@@ -55,6 +59,7 @@ SLV2Value slv2_plugin_class_get_uri(SLV2PluginClass plugin_class);
*
* Time = O(1)
*/
+SLV2_API
SLV2Value slv2_plugin_class_get_label(SLV2PluginClass plugin_class);