summaryrefslogtreecommitdiff
path: root/bindings/xml/xmlbinding.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-11-04 01:06:53 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-11-04 01:06:53 +0000
commit85dcf3c9a1d83129768f675921a7816b94f8b12a (patch)
treec0f000206efc85cc728334c4ed96fb824c6f511a /bindings/xml/xmlbinding.h
parentdedeeac53ec4c72afb2270478c48342be997a323 (diff)
downloadlibdom-85dcf3c9a1d83129768f675921a7816b94f8b12a.tar.gz
libdom-85dcf3c9a1d83129768f675921a7816b94f8b12a.tar.bz2
Fix up bindings buildsystem to permit multiple bindings to be built -- quite why this wasn't done in the first place is currently beyond me.
Tidy up XML binding -- ensure all public API is prefixed dom_xml_ to avoid confusion, remove xml_alloc (it's pointless), and move xml_msg to <dom/functypes.h> (as dom_msg, as it's more useful there) Fix up testobject to compile once more svn path=/trunk/dom/; revision=3643
Diffstat (limited to 'bindings/xml/xmlbinding.h')
-rw-r--r--bindings/xml/xmlbinding.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/bindings/xml/xmlbinding.h b/bindings/xml/xmlbinding.h
index 9b21b9e..1a8c207 100644
--- a/bindings/xml/xmlbinding.h
+++ b/bindings/xml/xmlbinding.h
@@ -9,12 +9,11 @@
#define xml_xmlbinding_h_
#include "xmlerror.h"
-#include "functypes.h"
/* Initialise the XML DOM binding */
-xml_error xml_dom_binding_initialise(xml_alloc alloc, void *pw);
+dom_xml_error dom_xml_binding_initialise(dom_alloc alloc, void *pw);
/* Finalise the XML DOM binding */
-xml_error xml_dom_binding_finalise(void);
+dom_xml_error dom_xml_binding_finalise(void);
#endif