summaryrefslogtreecommitdiffstats
path: root/src/slv2_internal.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-11 05:15:56 +0000
committerDavid Robillard <d@drobilla.net>2011-02-11 05:15:56 +0000
commit9749ab338c735f777be4fe6dc89082ea30044df1 (patch)
tree556314b7eb9d0472d06a78b003c56e820d6dd288 /src/slv2_internal.h
parent28d3d1608126a676ea1d08249bac167bd5e88035 (diff)
downloadlilv-9749ab338c735f777be4fe6dc89082ea30044df1.tar.gz
lilv-9749ab338c735f777be4fe6dc89082ea30044df1.tar.bz2
lilv-9749ab338c735f777be4fe6dc89082ea30044df1.zip
Reduce internal use of _by_qname variants (unnecessary overhead).
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2918 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r--src/slv2_internal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h
index 12a32a0..4424467 100644
--- a/src/slv2_internal.h
+++ b/src/slv2_internal.h
@@ -40,6 +40,7 @@ extern "C" {
#include "lv2/lv2plug.in/ns/ext/dyn-manifest/dyn-manifest.h"
#endif
+#define SLV2_NS_DOAP (const uint8_t*)"http://usefulinc.com/ns/doap#"
#define SLV2_NS_RDFS (const uint8_t*)"http://www.w3.org/2000/01/rdf-schema#"
#define SLV2_NS_SLV2 (const uint8_t*)"http://drobilla.net/ns/slv2#"
#define SLV2_NS_LV2 (const uint8_t*)"http://lv2plug.in/ns/lv2core#"
@@ -202,6 +203,8 @@ struct _SLV2World {
SLV2Node slv2_dmanifest_node;
SLV2Node xsd_integer_node;
SLV2Node xsd_decimal_node;
+ SLV2Value doap_name_val;
+ SLV2Value lv2_name_val;
bool filter_language;
};