summaryrefslogtreecommitdiff
path: root/include/dom
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-07-22 21:40:48 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-07-22 21:40:48 +0000
commita176515001037f87312dcca7666549ed565632a2 (patch)
treecee784429f4ed4710b8e620133b50b3b76ede6fd /include/dom
parentf70939347531148c7e7013dd10ce7054ed4ca525 (diff)
downloadlibdom-a176515001037f87312dcca7666549ed565632a2.tar.gz
libdom-a176515001037f87312dcca7666549ed565632a2.tar.bz2
Add omitted dom_document_create_comment API
svn path=/trunk/dom/; revision=3459
Diffstat (limited to 'include/dom')
-rw-r--r--include/dom/core/document.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/dom/core/document.h b/include/dom/core/document.h
index 2c5c778..6d79d28 100644
--- a/include/dom/core/document.h
+++ b/include/dom/core/document.h
@@ -13,6 +13,7 @@
#include <dom/core/exceptions.h>
struct dom_attr;
+struct dom_characterdata;
struct dom_configuration;
struct dom_document;
struct dom_document_type;
@@ -35,6 +36,8 @@ dom_exception dom_document_create_document_fragment(struct dom_document *doc,
struct dom_node **result);
dom_exception dom_document_create_text_node(struct dom_document *doc,
struct dom_string *data, struct dom_text **result);
+dom_exception dom_document_create_comment(struct dom_document *doc,
+ struct dom_string *data, struct dom_characterdata **result);
dom_exception dom_document_create_cdata_section(struct dom_document *doc,
struct dom_string *data, struct dom_text **result);
dom_exception dom_document_create_processing_instruction(