summaryrefslogtreecommitdiffstats
path: root/src/slv2_internal.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-14 00:48:45 +0000
committerDavid Robillard <d@drobilla.net>2009-02-14 00:48:45 +0000
commit6f8391945483823638c031d9f31c3f412e6276d2 (patch)
tree9589f437d79e204d49f0045056809f254656f7d0 /src/slv2_internal.h
parentd9b5f38ffb9c0d0a6841368e7d52a71b9819d087 (diff)
downloadlilv-6f8391945483823638c031d9f31c3f412e6276d2.tar.gz
lilv-6f8391945483823638c031d9f31c3f412e6276d2.tar.bz2
lilv-6f8391945483823638c031d9f31c3f412e6276d2.zip
New generic query API.
List presets in lv2_inspect. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1932 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r--src/slv2_internal.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h
index bc1defe..ecb7255 100644
--- a/src/slv2_internal.h
+++ b/src/slv2_internal.h
@@ -74,9 +74,6 @@ void slv2_plugin_get_port_float_values(SLV2Plugin p,
const char* qname,
float* values);
-librdf_query_results* slv2_plugin_query(SLV2Plugin plugin,
- const char* sparql_str);
-
/* ********* Plugins ********* */
@@ -229,6 +226,14 @@ SLV2ScalePoint slv2_scale_point_new(SLV2Value value, SLV2Value label);
void slv2_scale_point_free(SLV2ScalePoint point);
+/* ********* Query Results********* */
+
+struct _SLV2Results {
+ SLV2World world;
+ librdf_query_results* rdf_results;
+};
+
+
/* ********* Utilities ********* */
char* slv2_strjoin(const char* first, ...);