summaryrefslogtreecommitdiffstats
path: root/slv2/pluginlist.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-07-26 03:25:08 +0000
committerDavid Robillard <d@drobilla.net>2006-07-26 03:25:08 +0000
commit2cd84e4209633e59439c445f821bed8410347bab (patch)
treeba34505505795cff5cf35c2958ed21933b822e12 /slv2/pluginlist.h
parentdeca2cc89850dffc051d0a0aafc9d681af838934 (diff)
downloadlilv-2cd84e4209633e59439c445f821bed8410347bab.tar.gz
lilv-2cd84e4209633e59439c445f821bed8410347bab.tar.bz2
lilv-2cd84e4209633e59439c445f821bed8410347bab.zip
- Removed all the unsigned char garbage from the API
- Updated types in lv2.h to be non-machine-dependant (removed unsigned long in favour of uint32_t) - Updated schema - Updated example plugin to work with the above (partially) git-svn-id: http://svn.drobilla.net/lad/libslv2@101 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/pluginlist.h')
-rw-r--r--slv2/pluginlist.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/slv2/pluginlist.h b/slv2/pluginlist.h
index d29a56d..535c214 100644
--- a/slv2/pluginlist.h
+++ b/slv2/pluginlist.h
@@ -110,8 +110,8 @@ slv2_list_load_path(SLV2List list,
* installed plugins. Use \ref slv2_list_load_all.
*/
void
-slv2_list_load_bundle(SLV2List list,
- const unsigned char* bundle_base_url);
+slv2_list_load_bundle(SLV2List list,
+ const char* bundle_base_url);
/** Get the number of plugins in the list.
@@ -128,8 +128,8 @@ slv2_list_get_length(const SLV2List list);
* \return NULL if plugin with \a url not found in \a list.
*/
const SLV2Plugin*
-slv2_list_get_plugin_by_uri(const SLV2List list,
- const unsigned char* uri);
+slv2_list_get_plugin_by_uri(const SLV2List list,
+ const char* uri);
/** Get a plugin from the list by index.