diff options
author | David Robillard <d@drobilla.net> | 2011-01-29 18:14:16 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-29 18:14:16 +0000 |
commit | 26ddd2ade551d347794da9237f0a2a55ff88f9f0 (patch) | |
tree | 52332ff541c067a64db64e112eb4f71eea05f7d3 /src/slv2_internal.h | |
parent | 4bd0ab43209ab81239cb7ff9ccc9365354a5fb91 (diff) | |
download | lilv-26ddd2ade551d347794da9237f0a2a55ff88f9f0.tar.gz lilv-26ddd2ade551d347794da9237f0a2a55ff88f9f0.tar.bz2 lilv-26ddd2ade551d347794da9237f0a2a55ff88f9f0.zip |
Use uint8_t instead of the horribly verbose `unsigned char'.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2852 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r-- | src/slv2_internal.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h index be2f243..8f614b5 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -27,6 +27,7 @@ extern "C" { #include <stdbool.h> #include <stddef.h> +#include <stdint.h> #include <stdlib.h> #include <inttypes.h> #include <redland.h> @@ -36,11 +37,11 @@ extern "C" { #include "lv2/lv2plug.in/ns/ext/dyn-manifest/dyn-manifest.h" #endif -#define SLV2_NS_RDFS (const unsigned char*)"http://www.w3.org/2000/01/rdf-schema#" -#define SLV2_NS_SLV2 (const unsigned char*)"http://drobilla.net/ns/slv2#" -#define SLV2_NS_LV2 (const unsigned char*)"http://lv2plug.in/ns/lv2core#" -#define SLV2_NS_XSD (const unsigned char*)"http://www.w3.org/2001/XMLSchema#" -#define SLV2_NS_RDF (const unsigned char*)"http://www.w3.org/1999/02/22-rdf-syntax-ns#" +#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#" +#define SLV2_NS_XSD (const uint8_t*)"http://www.w3.org/2001/XMLSchema#" +#define SLV2_NS_RDF (const uint8_t*)"http://www.w3.org/1999/02/22-rdf-syntax-ns#" /* ********* PORT ********* */ |