summaryrefslogtreecommitdiff
path: root/include/dom/core/attr.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-07-06 21:42:18 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-07-06 21:42:18 +0000
commitd39dbc93d93f537962fe998031ade04d7ee6ca6a (patch)
tree38200fb0d97551967a2d9063daaf28927c043902 /include/dom/core/attr.h
parent5da747ff564cdcfeff90c5f5cfcfac03bc48332b (diff)
downloadlibdom-d39dbc93d93f537962fe998031ade04d7ee6ca6a.tar.gz
libdom-d39dbc93d93f537962fe998031ade04d7ee6ca6a.tar.bz2
Purge all trace of the ballache that was dom_ctx.
Document the functions in document.c svn path=/trunk/dom/; revision=3385
Diffstat (limited to 'include/dom/core/attr.h')
-rw-r--r--include/dom/core/attr.h27
1 files changed, 12 insertions, 15 deletions
diff --git a/include/dom/core/attr.h b/include/dom/core/attr.h
index 782513e..8807686 100644
--- a/include/dom/core/attr.h
+++ b/include/dom/core/attr.h
@@ -12,26 +12,23 @@
#include <dom/core/exceptions.h>
-struct dom_ctx;
struct dom_element;
struct dom_typeinfo;
struct dom_node;
struct dom_attr;
struct dom_string;
-dom_exception dom_attr_get_name(struct dom_ctx *ctx,
- struct dom_attr *attr, struct dom_string **result);
-dom_exception dom_attr_get_specified(struct dom_ctx *ctx,
- struct dom_attr *attr, bool *result);
-dom_exception dom_attr_get_value(struct dom_ctx *ctx,
- struct dom_attr *attr, struct dom_string **result);
-dom_exception dom_attr_set_value(struct dom_ctx *ctx,
- struct dom_attr *attr, struct dom_string *value);
-dom_exception dom_attr_get_owner(struct dom_ctx *ctx,
- struct dom_attr *attr, struct dom_element **result);
-dom_exception dom_attr_get_typeinfo(struct dom_ctx *ctx,
- struct dom_attr *attr, struct dom_typeinfo **result);
-dom_exception dom_attr_is_id(struct dom_ctx *ctx,
- struct dom_attr *attr, bool *result);
+dom_exception dom_attr_get_name(struct dom_attr *attr,
+ struct dom_string **result);
+dom_exception dom_attr_get_specified(struct dom_attr *attr, bool *result);
+dom_exception dom_attr_get_value(struct dom_attr *attr,
+ struct dom_string **result);
+dom_exception dom_attr_set_value(struct dom_attr *attr,
+ struct dom_string *value);
+dom_exception dom_attr_get_owner(struct dom_attr *attr,
+ struct dom_element **result);
+dom_exception dom_attr_get_typeinfo(struct dom_attr *attr,
+ struct dom_typeinfo **result);
+dom_exception dom_attr_is_id(struct dom_attr *attr, bool *result);
#endif