summaryrefslogtreecommitdiff
path: root/include/dom/bootstrap/init_fini.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
commitac42344d05ec326f0063133498ec1c040e924db2 (patch)
tree4041bc41d72721a94dc573e5be3cb0f80988e004 /include/dom/bootstrap/init_fini.h
parentc9c2a632f38b736d6879caf00aa477ecf2e22dfb (diff)
downloadlibdom-ac42344d05ec326f0063133498ec1c040e924db2.tar.gz
libdom-ac42344d05ec326f0063133498ec1c040e924db2.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/bootstrap/init_fini.h')
-rw-r--r--include/dom/bootstrap/init_fini.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/dom/bootstrap/init_fini.h b/include/dom/bootstrap/init_fini.h
deleted file mode 100644
index 5773af6..0000000
--- a/include/dom/bootstrap/init_fini.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * This file is part of libdom.
- * Licensed under the MIT License,
- * http://www.opensource.org/licenses/mit-license.php
- * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
- */
-
-#ifndef dom_bootstrap_init_fini_h_
-#define dom_bootstrap_init_fini_h_
-
-#include <dom/functypes.h>
-#include <dom/core/exceptions.h>
-
-/* Initialise the DOM library */
-dom_exception dom_initialise(dom_alloc alloc, void *pw);
-
-/* Finalise the DOM library */
-dom_exception dom_finalise(void);
-
-#endif
-