librdf.h   librdf.h 
skipping to change at line 100 skipping to change at line 100
/* Public defines */ /* Public defines */
/** /**
* LIBRDF_VERSION: * LIBRDF_VERSION:
* *
* Redland librdf library version number * Redland librdf library version number
* *
* Format: major * 10000 + minor * 100 + release * Format: major * 10000 + minor * 100 + release
*/ */
#define LIBRDF_VERSION 10016 #define LIBRDF_VERSION 10017
/** /**
* LIBRDF_VERSION_STRING: * LIBRDF_VERSION_STRING:
* *
* Redland librdf library version string * Redland librdf library version string
*/ */
#define LIBRDF_VERSION_STRING "1.0.16" #define LIBRDF_VERSION_STRING "1.0.17"
/** /**
* LIBRDF_VERSION_MAJOR: * LIBRDF_VERSION_MAJOR:
* *
* Redland librdf library major version * Redland librdf library major version
*/ */
#define LIBRDF_VERSION_MAJOR 1 #define LIBRDF_VERSION_MAJOR 1
/** /**
* LIBRDF_VERSION_MINOR: * LIBRDF_VERSION_MINOR:
* *
* Redland librdf library minor version * Redland librdf library minor version
*/ */
#define LIBRDF_VERSION_MINOR 0 #define LIBRDF_VERSION_MINOR 0
/** /**
* LIBRDF_VERSION_RELEASE: * LIBRDF_VERSION_RELEASE:
* *
* Redland librdf library release * Redland librdf library release
*/ */
#define LIBRDF_VERSION_RELEASE 16 #define LIBRDF_VERSION_RELEASE 17
/* Public typedefs (references to private structures) */ /* Public typedefs (references to private structures) */
/** /**
* librdf_world: * librdf_world:
* *
* Redland world class. * Redland world class.
*/ */
typedef struct librdf_world_s librdf_world; typedef struct librdf_world_s librdf_world;
 End of changes. 3 change blocks. 
3 lines changed or deleted 3 lines changed or added


 rdf_concepts.h   rdf_concepts.h 
skipping to change at line 85 skipping to change at line 85
LIBRDF_CONCEPT_S_domain, LIBRDF_CONCEPT_S_domain,
LIBRDF_CONCEPT_S_isDefinedBy, LIBRDF_CONCEPT_S_isDefinedBy,
LIBRDF_CONCEPT_S_label, LIBRDF_CONCEPT_S_label,
LIBRDF_CONCEPT_S_range, LIBRDF_CONCEPT_S_range,
LIBRDF_CONCEPT_S_seeAlso, LIBRDF_CONCEPT_S_seeAlso,
LIBRDF_CONCEPT_S_subClassOf, LIBRDF_CONCEPT_S_subClassOf,
LIBRDF_CONCEPT_S_subPropertyOf, LIBRDF_CONCEPT_S_subPropertyOf,
/* first entry from schema namespace */ /* first entry from schema namespace */
LIBRDF_CONCEPT_FIRST_S_ID = LIBRDF_CONCEPT_S_Class, LIBRDF_CONCEPT_FIRST_S_ID = LIBRDF_CONCEPT_S_Class,
LIBRDF_CONCEPT_LAST_S_ID = LIBRDF_CONCEPT_S_subPropertyOf,
LIBRDF_CONCEPT_LAST = LIBRDF_CONCEPT_S_subPropertyOf, LIBRDF_CONCEPT_RDF11_HTML,
LIBRDF_CONCEPT_RDF11_langString,
LIBRDF_CONCEPT_LAST = LIBRDF_CONCEPT_RDF11_langString
} librdf_concepts_index; } librdf_concepts_index;
/* NOTE: If the above list changes, edit the macros below and /* NOTE: If the above list changes, edit the macros below and
* librdf_concept_labels in rdf_concepts.c The above list is ordered * librdf_concept_labels in rdf_concepts.c The above list is ordered
* by simple 'sort' order * by simple 'sort' order
*/ */
/* Get Redland uri object for RDF Syntax/Schema namespaces */ /* Get Redland uri object for RDF Syntax/Schema namespaces */
REDLAND_API REDLAND_API
librdf_uri* librdf_get_concept_ms_namespace(librdf_world *world); librdf_uri* librdf_get_concept_ms_namespace(librdf_world *world);
skipping to change at line 696 skipping to change at line 700
/** /**
* LIBRDF_S_Class_URI: * LIBRDF_S_Class_URI:
* *
* RDFS namespace concept URI Class * RDFS namespace concept URI Class
*/ */
#define LIBRDF_S_Class_URI(world) \ #define LIBRDF_S_Class_URI(world) \
librdf_get_concept_uri_by_index(world, LIBRDF_CONCEPT_S_Class) librdf_get_concept_uri_by_index(world, LIBRDF_CONCEPT_S_Class)
/** /**
* LIBRDF_RDF11_HTML:
*
* RDF 1.1 namespace concept HTML
*/
#define LIBRDF_RDF11_HTML(world) \
librdf_get_concept_resource_by_index(world, LIBRDF_CONCEPT_RDF11_HTML)
/**
* LIBRDF_RDF11_langString:
*
* RDF 1.1 namespace concept langString
*/
#define LIBRDF_RDF11_langString(world) \
librdf_get_concept_resource_by_index(world, LIBRDF_CONCEPT_RDF11_langStri
ng)
/**
* LIBRDF_URI_RDF_MS: * LIBRDF_URI_RDF_MS:
* *
* #librdf_uri for <literal>rdf:</literal> namespace. Copy with * #librdf_uri for <literal>rdf:</literal> namespace. Copy with
* librdf_new_uri_from_uri() before using. * librdf_new_uri_from_uri() before using.
*/ */
#define LIBRDF_URI_RDF_MS(world) librdf_get_concept_ms_namespace(world) #define LIBRDF_URI_RDF_MS(world) librdf_get_concept_ms_namespace(world)
/** /**
* LIBRDF_URI_RDF_SCHEMA: * LIBRDF_URI_RDF_SCHEMA:
* *
 End of changes. 3 change blocks. 
1 lines changed or deleted 22 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/