raptor.h | raptor.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 20000 | #define RAPTOR_VERSION 20001 | |||
/** | /** | |||
* RAPTOR_VERSION_STRING: | * RAPTOR_VERSION_STRING: | |||
* | * | |||
* Raptor library version string | * Raptor library version string | |||
*/ | */ | |||
#define RAPTOR_VERSION_STRING "2.0.0" | #define RAPTOR_VERSION_STRING "2.0.1" | |||
/** | /** | |||
* 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 0 | #define RAPTOR_VERSION_RELEASE 1 | |||
/** | /** | |||
* 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 659 | skipping to change at line 659 | |||
* | * | |||
*/ | */ | |||
typedef void (*raptor_log_handler)(void *user_data, raptor_log_message *mes sage); | typedef void (*raptor_log_handler)(void *user_data, raptor_log_message *mes sage); | |||
/** | /** | |||
* raptor_statement_handler: | * raptor_statement_handler: | |||
* @user_data: user data | * @user_data: user data | |||
* @statement: statement to report | * @statement: statement to report | |||
* | * | |||
* Statement (triple) reporting handler function. | * Statement (triple) reporting handler function. | |||
* | ||||
* This handler function set with | ||||
* raptor_parser_set_statement_handler() on a parser receives | ||||
* statements as the parsing proceeds. The @statement argument to the | ||||
* handler is shared and must be copied by the caller with | ||||
* raptor_statement_copy(). | ||||
*/ | */ | |||
typedef void (*raptor_statement_handler)(void *user_data, raptor_statement *statement); | typedef void (*raptor_statement_handler)(void *user_data, raptor_statement *statement); | |||
/** | /** | |||
* raptor_graph_mark_flags: | * raptor_graph_mark_flags: | |||
* @RAPTOR_GRAPH_MARK_START: mark is start of graph (otherwise is end) | * @RAPTOR_GRAPH_MARK_START: mark is start of graph (otherwise is end) | |||
* @RAPTOR_GRAPH_MARK_DECLARED: mark was declared in syntax rather than imp lict | * @RAPTOR_GRAPH_MARK_DECLARED: mark was declared in syntax rather than imp lict | |||
* | * | |||
* Graph mark handler bitmask flags | * Graph mark handler bitmask flags | |||
*/ | */ | |||
End of changes. 4 change blocks. | ||||
3 lines changed or deleted | 9 lines changed or added | |||