summaryrefslogtreecommitdiff
path: root/include/dom/dom.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-12-05 23:52:56 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-12-05 23:52:56 +0000
commit6ab986acd57b516b5b9aff04ee09d57db02ed0b6 (patch)
tree4041bc41d72721a94dc573e5be3cb0f80988e004 /include/dom/dom.h
parentcf7e104bab600e6c22c3bf8d1d6cbc138360038b (diff)
downloadlibdom-6ab986acd57b516b5b9aff04ee09d57db02ed0b6.tar.gz
libdom-6ab986acd57b516b5b9aff04ee09d57db02ed0b6.tar.bz2
Remove bootstrap infrastructure, and just make dom_implementation a stub.
We only support a single implementation, so all the registry and implementation list stuff is totally unnecesary and overcomplex svn path=/trunk/dom/; revision=11017
Diffstat (limited to 'include/dom/dom.h')
-rw-r--r--include/dom/dom.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/dom/dom.h b/include/dom/dom.h
index 3a0a138..d39b85f 100644
--- a/include/dom/dom.h
+++ b/include/dom/dom.h
@@ -17,9 +17,6 @@
/* Base library headers */
#include <dom/functypes.h>
-/* DOM bootstrap headers */
-#include <dom/bootstrap/implregistry.h>
-
/* DOM core headers */
#include <dom/core/attr.h>
#include <dom/core/characterdata.h>
@@ -28,7 +25,6 @@
#include <dom/core/element.h>
#include <dom/core/exceptions.h>
#include <dom/core/implementation.h>
-#include <dom/core/impllist.h>
#include <dom/core/namednodemap.h>
#include <dom/core/node.h>
#include <dom/core/cdatasection.h>
@@ -58,4 +54,7 @@ typedef enum dom_namespace {
extern struct dom_string *dom_namespaces[DOM_NAMESPACE_COUNT];
+dom_exception dom_initialise(dom_alloc alloc, void *pw);
+dom_exception dom_finalise(void);
+
#endif