summaryrefslogtreecommitdiffstats
path: root/src/dmixml.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dmixml.h')
-rw-r--r--src/dmixml.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dmixml.h b/src/dmixml.h
index 4683bc9..7176483 100644
--- a/src/dmixml.h
+++ b/src/dmixml.h
@@ -28,6 +28,7 @@
#include <stdarg.h>
#include <libxml/tree.h>
+#include <libxml/xpath.h>
xmlAttr *dmixml_AddAttribute(xmlNode *node, const char *atrname, const char *fmt, ...);
xmlNode *dmixml_AddTextChild(xmlNode *node, const char *tagname, const char *fmt, ...);
@@ -37,5 +38,6 @@ char *dmixml_GetAttrValue(xmlNode *node, const char *key);
xmlNode *dmixml_FindNode(xmlNode *, const char *key);
inline char *dmixml_GetContent(xmlNode *node);
inline char *dmixml_GetNodeContent(xmlNode *node, const char *key);
+char *dmixml_GetXPathContent(xmlXPathObject *xpo, int idx);
#endif