summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-07-28 17:27:49 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-07-28 17:27:49 +0000
commitf6b4e5eeaf8e7afda0df4a5d44a309c291788382 (patch)
treeb2ddc6d872d17a64a1b4f902589b0cf418625807 /include
parent7cbcc882de7d5747e2342f0829bbcc9f2bcca60f (diff)
downloadlibdom-f6b4e5eeaf8e7afda0df4a5d44a309c291788382.tar.gz
libdom-f6b4e5eeaf8e7afda0df4a5d44a309c291788382.tar.bz2
Add Document constructor
svn path=/trunk/dom/; revision=3466
Diffstat (limited to 'include')
-rw-r--r--include/dom/bootstrap/implpriv.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/dom/bootstrap/implpriv.h b/include/dom/bootstrap/implpriv.h
index d9cc787..00ba9fc 100644
--- a/include/dom/bootstrap/implpriv.h
+++ b/include/dom/bootstrap/implpriv.h
@@ -244,6 +244,10 @@ struct dom_implementation_source {
dom_exception dom_register_source(struct dom_implementation_source *source,
dom_alloc alloc, void *pw);
+/* Create a DOM document */
+dom_exception dom_document_create(struct dom_implementation *impl,
+ dom_alloc alloc, void *pw, struct dom_document **doc);
+
/* Set a Document's DocumentType */
dom_exception dom_document_set_doctype(struct dom_document *doc,
struct dom_document_type *doctype);