]> wimlib.net Git - wimlib/blobdiff - include/wimlib/xmlproc.h
xml: fix wimlib_set_image_property()
[wimlib] / include / wimlib / xmlproc.h
index 374d27e2cc2c4667132964d655679e9f651a6688..c202d629765efaa51246b22115677a318f7156ed 100644 (file)
@@ -38,9 +38,6 @@ struct xml_node *
 xml_new_element_with_text(struct xml_node *parent, const tchar *name,
                          const tchar *text);
 
-struct xml_node *
-xml_new_attrib(struct xml_node *parent, const tchar *name, const tchar *value);
-
 void
 xml_add_child(struct xml_node *parent, struct xml_node *child);
 
@@ -69,7 +66,7 @@ struct xml_node *
 xml_clone_tree(struct xml_node *orig);
 
 bool
-xml_legal_name(const tchar *name);
+xml_legal_path(const tchar *name);
 
 bool
 xml_legal_value(const tchar *value);
@@ -77,7 +74,7 @@ xml_legal_value(const tchar *value);
 /*****************************************************************************/
 
 int
-xml_parse_document(const tchar *p, struct xml_node **doc_ret);
+xml_parse_document(const tchar *raw_doc, struct xml_node **doc_ret);
 
 /*****************************************************************************/