1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY version SYSTEM "version.xml">
]>
<refentry id="raptor-section-constants">
<refmeta>
<refentrytitle role="top_of_page">Constants</refentrytitle>
<manvolnum>3</manvolnum>
<refmiscinfo>RAPTOR Library</refmiscinfo>
</refmeta>
<refnamediv>
<refname>Constants</refname>
<refpurpose>Constant values and strings</refpurpose>
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
</refnamediv>
<refsynopsisdiv role="synopsis">
<title role="synopsis.title">Synopsis</title>
<synopsis>
extern const unsigned int <link linkend="raptor-rdf-namespace-uri-len">raptor_rdf_namespace_uri_len</link>;
extern const unsigned int <link linkend="raptor-xml-literal-datatype-uri-string-len">raptor_xml_literal_datatype_uri_string_len</link>;
#define <link linkend="RAPTOR-RDF-MS-URI:CAPS">RAPTOR_RDF_MS_URI</link>
#define <link linkend="RAPTOR-RDF-SCHEMA-URI:CAPS">RAPTOR_RDF_SCHEMA_URI</link>
#define <link linkend="RAPTOR-XMLSCHEMA-DATATYPES-URI:CAPS">RAPTOR_XMLSCHEMA_DATATYPES_URI</link>
#define <link linkend="RAPTOR-OWL-URI:CAPS">RAPTOR_OWL_URI</link>
</synopsis>
</refsynopsisdiv>
<refsect1 role="desc">
<title role="desc.title">Description</title>
<para>
Version numbers and often-used namespace URI strings.
</para>
</refsect1>
<refsect1 role="details">
<title role="details.title">Details</title>
<refsect2>
<title><anchor id="raptor-rdf-namespace-uri-len" role="variable"/>raptor_rdf_namespace_uri_len</title>
<indexterm><primary>raptor_rdf_namespace_uri_len</primary></indexterm><programlisting>extern const unsigned int raptor_rdf_namespace_uri_len;
</programlisting>
<para>
Length of <link linkend="raptor-rdf-namespace-uri"><type>raptor_rdf_namespace_uri</type></link> string</para>
<para>
</para></refsect2>
<refsect2>
<title><anchor id="raptor-xml-literal-datatype-uri-string-len" role="variable"/>raptor_xml_literal_datatype_uri_string_len</title>
<indexterm><primary>raptor_xml_literal_datatype_uri_string_len</primary></indexterm><programlisting>extern const unsigned int raptor_xml_literal_datatype_uri_string_len;
</programlisting>
<para>
Length of <link linkend="raptor-xml-literal-datatype-uri-string"><type>raptor_xml_literal_datatype_uri_string</type></link></para>
<para>
</para></refsect2>
<refsect2>
<title><anchor id="RAPTOR-RDF-MS-URI:CAPS" role="macro"/>RAPTOR_RDF_MS_URI</title>
<indexterm><primary>RAPTOR_RDF_MS_URI</primary></indexterm><programlisting>#define RAPTOR_RDF_MS_URI raptor_rdf_namespace_uri
</programlisting>
<para>
RDF Namespace URI (rdf:).
</para>
<para>
Copy with <link linkend="raptor-uri-copy"><function>raptor_uri_copy()</function></link> to use.</para>
<para>
</para></refsect2>
<refsect2>
<title><anchor id="RAPTOR-RDF-SCHEMA-URI:CAPS" role="macro"/>RAPTOR_RDF_SCHEMA_URI</title>
<indexterm><primary>RAPTOR_RDF_SCHEMA_URI</primary></indexterm><programlisting>#define RAPTOR_RDF_SCHEMA_URI raptor_rdf_schema_namespace_uri
</programlisting>
<para>
RDF Schema Namespace URI (rdfs:).
</para>
<para>
Copy with <link linkend="raptor-uri-copy"><function>raptor_uri_copy()</function></link> to use.</para>
<para>
</para></refsect2>
<refsect2>
<title><anchor id="RAPTOR-XMLSCHEMA-DATATYPES-URI:CAPS" role="macro"/>RAPTOR_XMLSCHEMA_DATATYPES_URI</title>
<indexterm><primary>RAPTOR_XMLSCHEMA_DATATYPES_URI</primary></indexterm><programlisting>#define RAPTOR_XMLSCHEMA_DATATYPES_URI raptor_xmlschema_datatypes_namespace_uri
</programlisting>
<para>
XML Schema Datatypes URI (xsd:).
</para>
<para>
Copy with <link linkend="raptor-uri-copy"><function>raptor_uri_copy()</function></link> to use.</para>
<para>
</para></refsect2>
<refsect2>
<title><anchor id="RAPTOR-OWL-URI:CAPS" role="macro"/>RAPTOR_OWL_URI</title>
<indexterm><primary>RAPTOR_OWL_URI</primary></indexterm><programlisting>#define RAPTOR_OWL_URI raptor_owl_namespace_uri
</programlisting>
<para>
OWL Namespace URI (owl:).
</para>
<para>
Copy with <link linkend="raptor-uri-copy"><function>raptor_uri_copy()</function></link> to use.</para>
<para>
</para></refsect2>
</refsect1>
</refentry>
|