diff options
author | David Robillard <d@drobilla.net> | 2011-02-04 02:44:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-04 02:44:07 +0000 |
commit | cc61578f0f1417aba3c6d147d164bc644541372b (patch) | |
tree | dae833664026ff4de6e158ce4b4f038cbd8d18cd /src/slv2_internal.h | |
parent | b0c49632a5ee21d4ea35d0ae6160910fd35d68f3 (diff) | |
download | lilv-cc61578f0f1417aba3c6d147d164bc644541372b.tar.gz lilv-cc61578f0f1417aba3c6d147d164bc644541372b.tar.bz2 lilv-cc61578f0f1417aba3c6d147d164bc644541372b.zip |
Replace use of raptor (for raptor_sequence) with glib.
SLV2 now depends only on serd, sord, and glib.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2903 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r-- | src/slv2_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h index 6be329a..3d18906 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -30,7 +30,7 @@ extern "C" { #include <stdint.h> #include <stdlib.h> #include <inttypes.h> -#include <raptor.h> +#include <glib.h> #include "serd/serd.h" #include "sord/sord.h" #include "slv2/types.h" @@ -100,7 +100,7 @@ struct _SLV2Plugin { SLV2Value binary_uri; ///< lv2:binary SLV2Value dynman_uri; ///< dynamic manifest binary SLV2PluginClass plugin_class; - raptor_sequence* data_uris; ///< rdfs::seeAlso + GPtrArray* data_uris; ///< rdfs::seeAlso SLV2Port* ports; uint32_t num_ports; bool loaded; |