summaryrefslogtreecommitdiff
path: root/include/dom/bootstrap/implpriv.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-07-26 13:17:08 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-07-26 13:17:08 +0000
commitd208ad37e9dea0e3854e70eef40e33716c54aff0 (patch)
treedb63c1840db873ab4b0170a3fb030de80d8aa2e5 /include/dom/bootstrap/implpriv.h
parentb134f8403b4b38e4539488547ca84fc47e7f06ca (diff)
downloadlibdom-d208ad37e9dea0e3854e70eef40e33716c54aff0.tar.gz
libdom-d208ad37e9dea0e3854e70eef40e33716c54aff0.tar.bz2
Add ability to set a document's doctype after the document has been created
svn path=/trunk/dom/; revision=3462
Diffstat (limited to 'include/dom/bootstrap/implpriv.h')
-rw-r--r--include/dom/bootstrap/implpriv.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/dom/bootstrap/implpriv.h b/include/dom/bootstrap/implpriv.h
index aa123e0..d9cc787 100644
--- a/include/dom/bootstrap/implpriv.h
+++ b/include/dom/bootstrap/implpriv.h
@@ -12,6 +12,9 @@
* The DOMImplementation and DOMImplementationList implementations also
* include this, as those types are defined here.
*
+ * The Document implementation includes this as it needs the declaration of
+ * dom_document_set_doctype.
+ *
* No other client should be including this.
*/
@@ -241,4 +244,8 @@ struct dom_implementation_source {
dom_exception dom_register_source(struct dom_implementation_source *source,
dom_alloc alloc, void *pw);
+/* Set a Document's DocumentType */
+dom_exception dom_document_set_doctype(struct dom_document *doc,
+ struct dom_document_type *doctype);
+
#endif