diff options
author | David Robillard <d@drobilla.net> | 2008-09-29 03:10:19 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-09-29 03:10:19 +0000 |
commit | 6ad5c37141cedcf00ef46ca2fd6bd141eca81d60 (patch) | |
tree | 8a9c401b1b7dbccca21b313b2c352304784d2938 /slv2 | |
parent | 82aa51e246d65348e9e88902c6f82b18a3b7453a (diff) | |
download | lilv-6ad5c37141cedcf00ef46ca2fd6bd141eca81d60.tar.gz lilv-6ad5c37141cedcf00ef46ca2fd6bd141eca81d60.tar.bz2 lilv-6ad5c37141cedcf00ef46ca2fd6bd141eca81d60.zip |
Add slv2_port_get_value.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1533 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2')
-rw-r--r-- | slv2/port.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/slv2/port.h b/slv2/port.h index a55a1a8..1497884 100644 --- a/slv2/port.h +++ b/slv2/port.h @@ -38,6 +38,16 @@ extern "C" { * Time = Query */ SLV2Values +slv2_port_get_value(SLV2Plugin plugin, + SLV2Port port, + SLV2Value predicate); + + +/** Port analog of slv2_plugin_get_value_by_qname. + * + * Time = Query + */ +SLV2Values slv2_port_get_value_by_qname(SLV2Plugin plugin, SLV2Port port, const char* property_uri); |