diff options
author | David Robillard <d@drobilla.net> | 2006-07-22 19:19:05 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-07-22 19:19:05 +0000 |
commit | deca2cc89850dffc051d0a0aafc9d681af838934 (patch) | |
tree | cfca762a3b03289385bb40c17673b4483142c420 /slv2/query.h | |
parent | c7153b1a3d607108bab6cd8d6719977ffb213092 (diff) | |
download | lilv-deca2cc89850dffc051d0a0aafc9d681af838934.tar.gz lilv-deca2cc89850dffc051d0a0aafc9d681af838934.tar.bz2 lilv-deca2cc89850dffc051d0a0aafc9d681af838934.zip |
Removed data type enumeration in favour of using the URI directly
git-svn-id: http://svn.drobilla.net/lad/libslv2@100 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/query.h')
-rw-r--r-- | slv2/query.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/slv2/query.h b/slv2/query.h index f1708d7..79e7301 100644 --- a/slv2/query.h +++ b/slv2/query.h @@ -87,10 +87,13 @@ rasqal_query_results* slv2_plugin_run_query(const SLV2Plugin* p, const uchar* query_string, ...); - SLV2Property slv2_query_get_results(rasqal_query_results* results); +/** Free an SLV2Property. */ +void +slv2_property_free(SLV2Property); + /** @} */ |