rename ucimap_data::section to ptr
[project/uci.git] / ucimap.h
index 1e596eb..d56d8ef 100644 (file)
--- a/ucimap.h
+++ b/ucimap.h
@@ -82,7 +82,7 @@ union ucimap_data {
        int i;
        bool b;
        char *s;
-       void *section;
+       void *ptr;
        struct ucimap_list *list;
 };
 
@@ -165,5 +165,6 @@ extern void ucimap_cleanup(struct uci_map *map);
 extern void ucimap_set_changed(struct ucimap_section_data *sd, void *field);
 extern int ucimap_store_section(struct uci_map *map, struct uci_package *p, struct ucimap_section_data *sd);
 extern void ucimap_parse(struct uci_map *map, struct uci_package *pkg);
+extern int ucimap_parse_section(struct uci_map *map, struct uci_sectionmap *sm, struct ucimap_section_data *sd, struct uci_section *s);
 
 #endif