summaryrefslogtreecommitdiff
path: root/src/core/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/node.h')
-rw-r--r--src/core/node.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/node.h b/src/core/node.h
index d8982f6..6a72efd 100644
--- a/src/core/node.h
+++ b/src/core/node.h
@@ -54,6 +54,10 @@ struct dom_node {
dom_exception dom_node_create(struct dom_document *doc, dom_node_type type,
struct dom_string *name, struct dom_string *value,
- struct dom_node **node);
+ struct dom_node **result);
+
+dom_exception dom_node_initialise(struct dom_node *node,
+ struct dom_document *doc, dom_node_type type,
+ struct dom_string *name, struct dom_string *value);
#endif