diff options
author | David Robillard <d@drobilla.net> | 2007-04-18 01:05:55 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-04-18 01:05:55 +0000 |
commit | 6626f77037747855e7dcec64697d436c4300d7c2 (patch) | |
tree | 1dc1ad51e18cbdd421ff677df8427801774b1dfd /slv2/plugin.h | |
parent | edbd4d24fd67f8c1c346d9d26ed2a3708a30b684 (diff) | |
download | lilv-6626f77037747855e7dcec64697d436c4300d7c2.tar.gz lilv-6626f77037747855e7dcec64697d436c4300d7c2.tar.bz2 lilv-6626f77037747855e7dcec64697d436c4300d7c2.zip |
Documentation fixes.
git-svn-id: http://svn.drobilla.net/lad/slv2@454 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/plugin.h')
-rw-r--r-- | slv2/plugin.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/slv2/plugin.h b/slv2/plugin.h index f5add26..77a0f61 100644 --- a/slv2/plugin.h +++ b/slv2/plugin.h @@ -32,11 +32,10 @@ extern "C" { typedef struct _Plugin* SLV2Plugin; -/** \defgroup data Plugin - RDF data access +/** \defgroup data Data file access * - * These functions work exclusively with the plugin's RDF data file. They do - * not load the plugin dynamic library (or access - * it in any way). + * These functions work exclusively with the plugin's RDF data file. + * They do not load or access the plugin dynamic library in any way. * * @{ */ @@ -247,6 +246,10 @@ slv2_plugin_get_optional_features(SLV2Plugin p); /** Query a plugin for a single variable. + * + * \param sparql_str A SPARQL SELECT query. + * \param variable The variable to return results for. + * \return All matches for \a variable. */ SLV2Strings slv2_plugin_simple_query(SLV2Plugin plugin, @@ -255,6 +258,8 @@ slv2_plugin_simple_query(SLV2Plugin plugin, /** Query a plugin and return the number of results found. + * + * \param sparql_str A SPARQL SELECT query. */ unsigned slv2_plugin_query_count(SLV2Plugin plugin, |