summaryrefslogtreecommitdiff
path: root/src/core/document.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-07-06 14:32:44 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-07-06 14:32:44 +0000
commit5da747ff564cdcfeff90c5f5cfcfac03bc48332b (patch)
tree18a60e0aa3081bcb49156782f4c30576679cdc52 /src/core/document.h
downloadlibdom-5da747ff564cdcfeff90c5f5cfcfac03bc48332b.tar.gz
libdom-5da747ff564cdcfeff90c5f5cfcfac03bc48332b.tar.bz2
Import DOM library.
This is mainly stub functions atm (and is missing a number of key interfaces). svn path=/trunk/dom/; revision=3384
Diffstat (limited to 'src/core/document.h')
-rw-r--r--src/core/document.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/core/document.h b/src/core/document.h
new file mode 100644
index 0000000..399b2c8
--- /dev/null
+++ b/src/core/document.h
@@ -0,0 +1,19 @@
+/*
+ * 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_internal_document_h_
+#define dom_internal_document_h_
+
+#include <inttypes.h>
+
+struct dom_ctx;
+struct dom_document;
+
+const uint8_t *dom_document_get_base(struct dom_ctx *ctx,
+ struct dom_document *doc);
+
+#endif