summaryrefslogtreecommitdiff
path: root/src/core/document_type.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-08-30 13:06:19 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-08-30 13:06:19 +0000
commit7b12b43398bd2beaebe9444ca76e5150b8410691 (patch)
tree4ce25caee01c0a2a2ebbe052999b5eb8a2fbe2e3 /src/core/document_type.h
parente1c80e0df81cec4ccf6a9dd378942d091a0f15dd (diff)
downloadlibdom-7b12b43398bd2beaebe9444ca76e5150b8410691.tar.gz
libdom-7b12b43398bd2beaebe9444ca76e5150b8410691.tar.bz2
Merge branches/struggleyb/libdom-html to trunk.
A few additional fixes to reduce the number of regressions to single figures. svn path=/trunk/dom/; revision=10724
Diffstat (limited to 'src/core/document_type.h')
-rw-r--r--src/core/document_type.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/document_type.h b/src/core/document_type.h
index 50dd5ea..93db617 100644
--- a/src/core/document_type.h
+++ b/src/core/document_type.h
@@ -12,6 +12,12 @@ struct dom_document_type;
struct dom_resource_mgr;
struct dom_implementation;
+/* Create a DOM document type */
+dom_exception _dom_document_type_create(struct dom_string *qname,
+ struct dom_string *public_id,
+ struct dom_string *system_id,
+ dom_alloc alloc, void *pw,
+ struct dom_document_type **doctype);
/* Destroy a document type */
void _dom_document_type_destroy(struct dom_node_internal *doctypenode);
dom_exception _dom_document_type_initialise(struct dom_document_type *doctype,