summaryrefslogtreecommitdiffstats
path: root/slv2/value.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-09-23 18:51:21 +0000
committerDavid Robillard <d@drobilla.net>2007-09-23 18:51:21 +0000
commita06305e2c8068f0519f25ab3d0eddf7278d6ba7c (patch)
tree57c89dffe104e5bf0fa561c35a550f564279321c /slv2/value.h
parentd26a3e39c72c17acbe5bb371a6638acd2469bdac (diff)
downloadlilv-a06305e2c8068f0519f25ab3d0eddf7278d6ba7c.tar.gz
lilv-a06305e2c8068f0519f25ab3d0eddf7278d6ba7c.tar.bz2
lilv-a06305e2c8068f0519f25ab3d0eddf7278d6ba7c.zip
Support for plugin UIs in separate bundles.
Fix some memory leaks. Better/more future proof UI interface. git-svn-id: http://svn.drobilla.net/lad/slv2@772 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/value.h')
-rw-r--r--slv2/value.h26
1 files changed, 1 insertions, 25 deletions
diff --git a/slv2/value.h b/slv2/value.h
index 47bb1ff..d3ea1c4 100644
--- a/slv2/value.h
+++ b/slv2/value.h
@@ -73,8 +73,7 @@ slv2_value_is_uri(SLV2Value value);
/** Return this value as a URI string, e.g. "http://example.org/foo".
*
- * Valid to call only if slv2_value_is_uri(\a value) or
- * slv2_value_is_ui(\a value) returns true.
+ * Valid to call only if slv2_value_is_uri(\a value) returns true.
* Returned value is owned by \a value and must not be freed by caller.
*
* Time = O(1)
@@ -172,29 +171,6 @@ int
slv2_value_as_int(SLV2Value value);
-/** Return whether this value is a GUI (URI and type).
- *
- * If this returns true, slv2_value_as_uri will return the URI of the GUI,
- * and slv2_value_as_ui_type will return the SLV2UIType (which can be
- * used to find the URI of the corresponding GUI spec itself, with
- * slv2_ui_type_get_uri).
- *
- * Time = O(1)
- */
-bool
-slv2_value_is_ui(SLV2Value value);
-
-
-/** Return \a value as an SLV2UIType.
- *
- * Valid to call only if slv2_value_is_ui(\a value) returns true.
- *
- * Time = O(1)
- */
-SLV2UIType
-slv2_value_as_ui_type(SLV2Value value);
-
-
/** @} */
#ifdef __cplusplus