summaryrefslogtreecommitdiffstats
path: root/src/lilv_internal.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-09-28 14:26:47 +0000
committerDavid Robillard <d@drobilla.net>2011-09-28 14:26:47 +0000
commitfe43ff5fe29d5bbe59ead086782131144e451dc6 (patch)
tree02f61a44871e39405cc99256271ad3cd7893e6a2 /src/lilv_internal.h
parentec0b7f8db95b11bdb4d87a349be42148ff5d99f5 (diff)
downloadlilv-fe43ff5fe29d5bbe59ead086782131144e451dc6.tar.gz
lilv-fe43ff5fe29d5bbe59ead086782131144e451dc6.tar.bz2
lilv-fe43ff5fe29d5bbe59ead086782131144e451dc6.zip
Remove use of GSList.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3500 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/lilv_internal.h')
-rw-r--r--src/lilv_internal.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lilv_internal.h b/src/lilv_internal.h
index 9698fe9..770f144 100644
--- a/src/lilv_internal.h
+++ b/src/lilv_internal.h
@@ -67,9 +67,10 @@ struct LilvPortImpl {
struct LilvSpecImpl {
- SordNode* spec;
- SordNode* bundle;
- LilvNodes* data_uris;
+ SordNode* spec;
+ SordNode* bundle;
+ LilvNodes* data_uris;
+ struct LilvSpecImpl* next;
};
/**
@@ -115,7 +116,7 @@ struct LilvWorldImpl {
unsigned n_read_files;
LilvPluginClass* lv2_plugin_class;
LilvPluginClasses* plugin_classes;
- GSList* specs;
+ LilvSpec* specs;
LilvPlugins* plugins;
SordNode* dc_replaces_node;
SordNode* dyn_manifest_node;