summaryrefslogtreecommitdiff
path: root/src/core/document_type.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-04-07 23:28:32 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-04-07 23:28:32 +0000
commit4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43 (patch)
tree545dfc0006eeddcd000a1071c7c62afe3e47e5b5 /src/core/document_type.h
parentd24960dac782ef8e54ed91692f6aec1dd6d08bc1 (diff)
downloadlibdom-4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43.tar.gz
libdom-4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43.tar.bz2
s/struct dom_string/dom_string/g
svn path=/trunk/libdom/; revision=12172
Diffstat (limited to 'src/core/document_type.h')
-rw-r--r--src/core/document_type.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/core/document_type.h b/src/core/document_type.h
index 4fd1c83..7fcac8e 100644
--- a/src/core/document_type.h
+++ b/src/core/document_type.h
@@ -12,21 +12,21 @@ struct dom_document_type;
struct dom_resource_mgr;
/* 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_exception _dom_document_type_create(dom_string *qname,
+ dom_string *public_id,
+ 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,
- struct dom_string *qname, struct dom_string *public_id,
- struct dom_string *system_id, dom_alloc alloc, void *pw);
+ dom_string *qname, dom_string *public_id,
+ dom_string *system_id, dom_alloc alloc, void *pw);
void _dom_document_type_finalise(struct dom_document_type *doctype);
/* The virtual functions of DocumentType */
dom_exception _dom_document_type_get_name(struct dom_document_type *doc_type,
- struct dom_string **result);
+ dom_string **result);
dom_exception _dom_document_type_get_entities(
struct dom_document_type *doc_type,
struct dom_namednodemap **result);
@@ -35,13 +35,13 @@ dom_exception _dom_document_type_get_notations(
struct dom_namednodemap **result);
dom_exception _dom_document_type_get_public_id(
struct dom_document_type *doc_type,
- struct dom_string **result);
+ dom_string **result);
dom_exception _dom_document_type_get_system_id(
struct dom_document_type *doc_type,
- struct dom_string **result);
+ dom_string **result);
dom_exception _dom_document_type_get_internal_subset(
struct dom_document_type *doc_type,
- struct dom_string **result);
+ dom_string **result);
#define DOM_DOCUMENT_TYPE_VTABLE \
_dom_document_type_get_name, \