From: Martin Mares Date: Thu, 12 Feb 2015 23:31:57 +0000 (+0100) Subject: XML: ABI cleanup X-Git-Tag: v6.3~4^2~5 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=0d17175975e6f73cdece67f6b3da44f336125229;p=libucw.git XML: ABI cleanup --- diff --git a/maint/libucw.abi b/maint/libucw.abi index 1b6376e9..ca9287eb 100644 --- a/maint/libucw.abi +++ b/maint/libucw.abi @@ -843,9 +843,11 @@ xml_skip_comment xml_push_pi xml_pop_pi xml_skip_pi -xml_attrs_table_init -xml_attrs_table_cleanup xml_validate_attr +xml_ns_cleanup +xml_ns_reset +xml_ns_push_element +xml_ns_pop_element # ucw-xml/xml.h xml_init xml_cleanup @@ -856,8 +858,12 @@ xml_next xml_next_state xml_skip_element xml_row +xml_node_qname +xml_attr_qname xml_attr_find +xml_attr_find_ns xml_attr_value +xml_attr_value_ns xml_def_find_entity xml_def_resolve_entity xml_normalize_white @@ -866,3 +872,6 @@ xml_merge_dom_chars xml_warn xml_error xml_fatal +xml_ns_enable +xml_ns_by_id +xml_ns_by_name diff --git a/ucw-xml/internals.h b/ucw-xml/internals.h index 0a81ecad..8752cc2d 100644 --- a/ucw-xml/internals.h +++ b/ucw-xml/internals.h @@ -19,6 +19,10 @@ #define xml_fatal_expected_white ucw_xml_fatal_expected_white #define xml_fatal_nested ucw_xml_fatal_nested #define xml_hash_new ucw_xml_hash_new +#define xml_ns_cleanup ucw_xml_ns_cleanup +#define xml_ns_pop_element ucw_xml_ns_pop_element +#define xml_ns_push_element ucw_xml_ns_push_element +#define xml_ns_reset ucw_xml_ns_reset #define xml_parse_attr_list_decl ucw_xml_parse_attr_list_decl #define xml_parse_attr_value ucw_xml_parse_attr_value #define xml_parse_char_ref ucw_xml_parse_char_ref diff --git a/ucw-xml/xml.h b/ucw-xml/xml.h index 9fe06f3b..38ede891 100644 --- a/ucw-xml/xml.h +++ b/ucw-xml/xml.h @@ -18,7 +18,10 @@ #ifdef CONFIG_UCW_CLEAN_ABI #define xml_attr_find ucw_xml_attr_find +#define xml_attr_find_ns ucw_xml_attr_find_ns +#define xml_attr_qname ucw_xml_attr_qname #define xml_attr_value ucw_xml_attr_value +#define xml_attr_value_ns ucw_xml_attr_value_ns #define xml_cleanup ucw_xml_cleanup #define xml_def_find_entity ucw_xml_def_find_entity #define xml_def_resolve_entity ucw_xml_def_resolve_entity @@ -29,7 +32,11 @@ #define xml_merge_dom_chars ucw_xml_merge_dom_chars #define xml_next ucw_xml_next #define xml_next_state ucw_xml_next_state +#define xml_node_qname ucw_xml_node_qname #define xml_normalize_white ucw_xml_normalize_white +#define xml_ns_by_id ucw_xml_ns_by_id +#define xml_ns_by_name ucw_xml_ns_by_name +#define xml_ns_enable ucw_xml_ns_enable #define xml_parse ucw_xml_parse #define xml_push_fastbuf ucw_xml_push_fastbuf #define xml_reset ucw_xml_reset