diff options
author | David Robillard <d@drobilla.net> | 2011-01-30 20:05:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-30 20:05:30 +0000 |
commit | 7d5759899900e99d235cc3be9d3cd968ebf505f8 (patch) | |
tree | d637cdffdd75388ed65dbd44905f76ab6dc3a8e3 /src | |
parent | 6412e04de2654b216c8c95ed78297d265d771c6a (diff) | |
download | lilv-7d5759899900e99d235cc3be9d3cd968ebf505f8.tar.gz lilv-7d5759899900e99d235cc3be9d3cd968ebf505f8.tar.bz2 lilv-7d5759899900e99d235cc3be9d3cd968ebf505f8.zip |
Remove slv2_plugin_get_properties and slv2_plugin_get_hints.
The comments say this is an API break, but since they are not explicitly
exported, this part of the API actually broke when to switch to
-fvisibility=hidden was made.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2872 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/plugin.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/plugin.c b/src/plugin.c index 986eed2..45177e1 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -538,22 +538,6 @@ slv2_plugin_get_value_for_subject(SLV2Plugin p, } -SLV2Values -slv2_plugin_get_properties(SLV2Plugin p) -{ - // FIXME: APIBREAK: This predicate does not even exist. Remove this function. - return slv2_plugin_get_value_by_qname(p, "lv2:pluginProperty"); -} - - -SLV2Values -slv2_plugin_get_hints(SLV2Plugin p) -{ - // FIXME: APIBREAK: This predicate does not even exist. Remove this function. - return slv2_plugin_get_value_by_qname(p, "lv2:pluginHint"); -} - - uint32_t slv2_plugin_get_num_ports(SLV2Plugin p) { |