summaryrefslogtreecommitdiffstats
path: root/slv2
diff options
context:
space:
mode:
Diffstat (limited to 'slv2')
-rw-r--r--slv2/value.h21
-rw-r--r--slv2/world.h3
2 files changed, 2 insertions, 22 deletions
diff --git a/slv2/value.h b/slv2/value.h
index 2d0fb51..3073e7e 100644
--- a/slv2/value.h
+++ b/slv2/value.h
@@ -31,27 +31,6 @@ extern "C" {
*/
-#if 0
-/** Wrap a URI string (e.g. "http://example.org/foo") as an SLV2Value.
- *
- * The result is returned by value and refers directly to \a uri, it
- * does not need to be freed by the caller - calling slv2_value_free
- * on the returned value will destroy \a uri.
- */
-SLV2Value
-slv2_uri(const char* uri);
-
-
-/** Wrap a QName string (e.g. "lv2:Plugin") as an SLV2Value.
- *
- * The result is returned by value and refers directly to \a uri, it
- * does not need to be freed by the caller - calling slv2_value_free
- * on the returned value will destroy \a qname.
- */
-SLV2Value
-slv2_qname(const char* qname);
-#endif
-
/** Return whether two values are equivalent.
*/
diff --git a/slv2/world.h b/slv2/world.h
index b5a4f30..8dfa1d3 100644
--- a/slv2/world.h
+++ b/slv2/world.h
@@ -160,6 +160,7 @@ slv2_world_get_plugins_by_filter(SLV2World world,
bool (*include)(SLV2Plugin));
+#if 0
/** Return a list of found plugins in a given class.
*
* Returned list must be freed by user with slv2_plugins_free. The contained
@@ -170,7 +171,7 @@ slv2_world_get_plugins_by_filter(SLV2World world,
SLV2Plugins
slv2_world_get_plugins_by_class(SLV2World world,
SLV2PluginClass plugin_class);
-
+#endif
#if 0
/** Get plugins filtered by a user-defined SPARQL query.