From ae16163e6a5d88870902cc269c00fef05e79b811 Mon Sep 17 00:00:00 2001 From: James Shaw Date: Sat, 14 Jul 2007 10:31:00 +0000 Subject: Modify node value, type and name functions to match w3c spec svn path=/trunk/dom/; revision=3409 --- include/dom/core/node.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/dom/core/node.h b/include/dom/core/node.h index e335007..d818515 100644 --- a/include/dom/core/node.h +++ b/include/dom/core/node.h @@ -71,13 +71,13 @@ typedef enum { void dom_node_ref(struct dom_node *node); void dom_node_unref(struct dom_node *node); -dom_exception dom_node_get_name(struct dom_node *node, +dom_exception dom_node_get_node_name(struct dom_node *node, struct dom_string **result); -dom_exception dom_node_get_value(struct dom_node *node, +dom_exception dom_node_get_node_value(struct dom_node *node, struct dom_string **result); -dom_exception dom_node_set_value(struct dom_node *node, +dom_exception dom_node_set_node_value(struct dom_node *node, struct dom_string *value); -dom_exception dom_node_get_type(struct dom_node *node, +dom_exception dom_node_get_node_type(struct dom_node *node, dom_node_type *result); dom_exception dom_node_get_parent(struct dom_node *node, struct dom_node **result); -- cgit v1.2.3