summaryrefslogtreecommitdiff
path: root/src/core/document.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-07-06 21:42:18 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-07-06 21:42:18 +0000
commitd39dbc93d93f537962fe998031ade04d7ee6ca6a (patch)
tree38200fb0d97551967a2d9063daaf28927c043902 /src/core/document.h
parent5da747ff564cdcfeff90c5f5cfcfac03bc48332b (diff)
downloadlibdom-d39dbc93d93f537962fe998031ade04d7ee6ca6a.tar.gz
libdom-d39dbc93d93f537962fe998031ade04d7ee6ca6a.tar.bz2
Purge all trace of the ballache that was dom_ctx.
Document the functions in document.c svn path=/trunk/dom/; revision=3385
Diffstat (limited to 'src/core/document.h')
-rw-r--r--src/core/document.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/document.h b/src/core/document.h
index 399b2c8..7c18fe9 100644
--- a/src/core/document.h
+++ b/src/core/document.h
@@ -9,11 +9,11 @@
#define dom_internal_document_h_
#include <inttypes.h>
+#include <stddef.h>
-struct dom_ctx;
struct dom_document;
-const uint8_t *dom_document_get_base(struct dom_ctx *ctx,
- struct dom_document *doc);
+const uint8_t *dom_document_get_base(struct dom_document *doc);
+void *dom_document_alloc(struct dom_document *doc, void *ptr, size_t size);
#endif