diff options
author | David Robillard <d@drobilla.net> | 2007-02-18 21:12:59 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-02-18 21:12:59 +0000 |
commit | ec3e2125f960aa3de9da474d175bab353745748b (patch) | |
tree | 64d5f7e53cc47cca38bf41b6d1f69bc62dafac7f /slv2/pluginlist.h | |
parent | f340d22e82760166d24a037d8466501217b06a3e (diff) | |
download | lilv-ec3e2125f960aa3de9da474d175bab353745748b.tar.gz lilv-ec3e2125f960aa3de9da474d175bab353745748b.tar.bz2 lilv-ec3e2125f960aa3de9da474d175bab353745748b.zip |
Fixed index types of Strings and Plugins for consistency.
git-svn-id: http://svn.drobilla.net/lad/slv2@315 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/pluginlist.h')
-rw-r--r-- | slv2/pluginlist.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/slv2/pluginlist.h b/slv2/pluginlist.h index 5410bc3..1032a84 100644 --- a/slv2/pluginlist.h +++ b/slv2/pluginlist.h @@ -91,7 +91,7 @@ slv2_plugins_load_all(SLV2Plugins list); * Use of this function is \b not recommended. Use \ref slv2_plugins_load_all. */ void -slv2_plugins_load_path(SLV2Plugins list, +slv2_plugins_load_path(SLV2Plugins list, const char* search_path); @@ -108,13 +108,13 @@ slv2_plugins_load_path(SLV2Plugins list, * installed plugins. Use \ref slv2_plugins_load_all for that. */ void -slv2_plugins_load_bundle(SLV2Plugins list, - const char* bundle_base_url); +slv2_plugins_load_bundle(SLV2Plugins list, + const char* bundle_base_uri); /** Get the number of plugins in the list. */ -size_t +unsigned slv2_plugins_size(const SLV2Plugins list); @@ -129,7 +129,7 @@ slv2_plugins_size(const SLV2Plugins list); */ const SLV2Plugin* slv2_plugins_get_by_uri(const SLV2Plugins list, - const char* uri); + const char* uri); /** Get a plugin from the list by index. @@ -146,7 +146,7 @@ slv2_plugins_get_by_uri(const SLV2Plugins list, */ const SLV2Plugin* slv2_plugins_get_at(const SLV2Plugins list, - size_t index); + unsigned index); /** @} */ |