summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/dmixml.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dmixml.h b/src/dmixml.h
index d7d2716..7d8c4ad 100644
--- a/src/dmixml.h
+++ b/src/dmixml.h
@@ -24,8 +24,9 @@
#define _XMLHELPER_H
#include <stdarg.h>
+#include <libxml/tree.h>
-xmlAttrNode *dmixml_AddAttribute(xmlNode *node, const char *atrname, const char *fmt, ...);
+xmlAttr *dmixml_AddAttribute(xmlNode *node, const char *atrname, const char *fmt, ...);
xmlNode *dmixml_AddTextChild(xmlNode *node, const char *tagname, const char *fmt, ...);
xmlNode *dmixml_AddTextContent(xmlNode *node, const char *fmt, ...);