raptor2.h | raptor2.h | |||
---|---|---|---|---|
skipping to change at line 51 | skipping to change at line 51 | |||
*/ | */ | |||
#define RAPTOR_V2_AVAILABLE 1 | #define RAPTOR_V2_AVAILABLE 1 | |||
/** | /** | |||
* RAPTOR_VERSION: | * RAPTOR_VERSION: | |||
* | * | |||
* Raptor library version number | * Raptor library version number | |||
* | * | |||
* Format: major * 10000 + minor * 100 + release | * Format: major * 10000 + minor * 100 + release | |||
*/ | */ | |||
#define RAPTOR_VERSION 20011 | #define RAPTOR_VERSION 20012 | |||
/** | /** | |||
* RAPTOR_VERSION_STRING: | * RAPTOR_VERSION_STRING: | |||
* | * | |||
* Raptor library version string | * Raptor library version string | |||
*/ | */ | |||
#define RAPTOR_VERSION_STRING "2.0.11" | #define RAPTOR_VERSION_STRING "2.0.12" | |||
/** | /** | |||
* RAPTOR_VERSION_MAJOR: | * RAPTOR_VERSION_MAJOR: | |||
* | * | |||
* Raptor library major version | * Raptor library major version | |||
*/ | */ | |||
#define RAPTOR_VERSION_MAJOR 2 | #define RAPTOR_VERSION_MAJOR 2 | |||
/** | /** | |||
* RAPTOR_VERSION_MINOR: | * RAPTOR_VERSION_MINOR: | |||
* | * | |||
* Raptor library minor version | * Raptor library minor version | |||
*/ | */ | |||
#define RAPTOR_VERSION_MINOR 0 | #define RAPTOR_VERSION_MINOR 0 | |||
/** | /** | |||
* RAPTOR_VERSION_RELEASE: | * RAPTOR_VERSION_RELEASE: | |||
* | * | |||
* Raptor library release | * Raptor library release | |||
*/ | */ | |||
#define RAPTOR_VERSION_RELEASE 11 | #define RAPTOR_VERSION_RELEASE 12 | |||
/** | /** | |||
* RAPTOR_API: | * RAPTOR_API: | |||
* | * | |||
* Macro for wrapping API function call declarations. | * Macro for wrapping API function call declarations. | |||
* | * | |||
*/ | */ | |||
#ifndef RAPTOR_API | #ifndef RAPTOR_API | |||
# ifdef WIN32 | # ifdef WIN32 | |||
# ifdef __GNUC__ | # ifdef __GNUC__ | |||
skipping to change at line 1049 | skipping to change at line 1049 | |||
raptor_term* raptor_new_term_from_uri_string(raptor_world* world, const uns igned char *uri_string); | raptor_term* raptor_new_term_from_uri_string(raptor_world* world, const uns igned char *uri_string); | |||
RAPTOR_API | RAPTOR_API | |||
raptor_term* raptor_new_term_from_literal(raptor_world* world, const unsign ed char* literal, raptor_uri* datatype, const unsigned char* language); | raptor_term* raptor_new_term_from_literal(raptor_world* world, const unsign ed char* literal, raptor_uri* datatype, const unsigned char* language); | |||
RAPTOR_API | RAPTOR_API | |||
raptor_term* raptor_new_term_from_counted_literal(raptor_world* world, cons t unsigned char* literal, size_t literal_len, raptor_uri* datatype, const u nsigned char* language, unsigned char language_len); | raptor_term* raptor_new_term_from_counted_literal(raptor_world* world, cons t unsigned char* literal, size_t literal_len, raptor_uri* datatype, const u nsigned char* language, unsigned char language_len); | |||
RAPTOR_API | RAPTOR_API | |||
raptor_term* raptor_new_term_from_blank(raptor_world* world, const unsigned char* blank); | raptor_term* raptor_new_term_from_blank(raptor_world* world, const unsigned char* blank); | |||
RAPTOR_API | RAPTOR_API | |||
raptor_term* raptor_new_term_from_counted_blank(raptor_world* world, const unsigned char* blank, size_t length); | raptor_term* raptor_new_term_from_counted_blank(raptor_world* world, const unsigned char* blank, size_t length); | |||
RAPTOR_API | RAPTOR_API | |||
raptor_term* raptor_new_term_from_counted_string(raptor_world* world, unsig | ||||
ned char* string, size_t length); | ||||
RAPTOR_API | ||||
raptor_term* raptor_term_copy(raptor_term* term); | raptor_term* raptor_term_copy(raptor_term* term); | |||
RAPTOR_API | RAPTOR_API | |||
int raptor_term_compare(const raptor_term *t1, const raptor_term *t2); | int raptor_term_compare(const raptor_term *t1, const raptor_term *t2); | |||
RAPTOR_API | RAPTOR_API | |||
int raptor_term_equals(raptor_term* t1, raptor_term* t2); | int raptor_term_equals(raptor_term* t1, raptor_term* t2); | |||
RAPTOR_API | RAPTOR_API | |||
void raptor_free_term(raptor_term *term); | void raptor_free_term(raptor_term *term); | |||
RAPTOR_API | RAPTOR_API | |||
unsigned char* raptor_term_to_counted_string(raptor_term *term, size_t* len _p); | unsigned char* raptor_term_to_counted_string(raptor_term *term, size_t* len _p); | |||
End of changes. 4 change blocks. | ||||
3 lines changed or deleted | 6 lines changed or added | |||