summaryrefslogtreecommitdiffstats
path: root/slv2/private_types.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-02-18 21:12:59 +0000
committerDavid Robillard <d@drobilla.net>2007-02-18 21:12:59 +0000
commitec3e2125f960aa3de9da474d175bab353745748b (patch)
tree64d5f7e53cc47cca38bf41b6d1f69bc62dafac7f /slv2/private_types.h
parentf340d22e82760166d24a037d8466501217b06a3e (diff)
downloadlilv-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/private_types.h')
-rw-r--r--slv2/private_types.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/slv2/private_types.h b/slv2/private_types.h
index abda0a1..906d89c 100644
--- a/slv2/private_types.h
+++ b/slv2/private_types.h
@@ -47,7 +47,7 @@ extern "C" {
struct _Plugin {
char* plugin_uri;
char* bundle_url; // Bundle directory plugin was loaded from
- raptor_sequence* data_uris; // rdfs::seeAlso
+ raptor_sequence* data_uris; // rdfs::seeAlso
char* lib_uri; // lv2:binary
};
@@ -70,9 +70,7 @@ struct _PluginList {
/** An ordered, indexable collection of strings. */
-typedef raptor_sequence* SLV2Strings;
-
-SLV2Strings slv2_strings_new();
+//typedef raptor_sequence* SLV2Strings;
#ifdef __cplusplus