summaryrefslogtreecommitdiff
path: root/include/dom/ctx.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 /include/dom/ctx.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 'include/dom/ctx.h')
-rw-r--r--include/dom/ctx.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/dom/ctx.h b/include/dom/ctx.h
deleted file mode 100644
index f69ec65..0000000
--- a/include/dom/ctx.h
+++ /dev/null
@@ -1,26 +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_ctx_h_
-#define dom_ctx_h_
-
-#include <stddef.h>
-
-/**
- * Type of allocation function for DOM implementation
- */
-typedef void *(*dom_alloc)(void *ptr, size_t size, void *pw);
-
-/**
- * DOM allocation context
- */
-struct dom_ctx {
- dom_alloc alloc; /**< Memory (de)allocation function */
- void *pw; /**< Pointer to client data */
-};
-
-#endif