summaryrefslogtreecommitdiffstats
path: root/slv2/query.h
diff options
context:
space:
mode:
Diffstat (limited to 'slv2/query.h')
-rw-r--r--slv2/query.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/slv2/query.h b/slv2/query.h
index 3faba15..ea78735 100644
--- a/slv2/query.h
+++ b/slv2/query.h
@@ -82,11 +82,15 @@ rasqal_query_results*
slv2_plugin_query(SLV2Plugin* plugin,
const char* sparql_str);
-SLV2Value
+SLV2Strings
slv2_plugin_simple_query(SLV2Plugin* plugin,
const char* sparql_str,
const char* variable);
+unsigned
+slv2_plugin_query_count(SLV2Plugin* plugin,
+ const char* sparql_str);
+
#if 0
/** Run a SPARQL query on a plugin's data file and return variable matches.
*
@@ -96,7 +100,7 @@ slv2_plugin_simple_query(SLV2Plugin* plugin,
*
* Returned is a list of all matches for the query variable \a var_name.
*/
-SLV2Value
+SLV2Strings
slv2_query_get_results(const SLV2Plugin* p,
const char* query_string,
const char* var_name);