summaryrefslogtreecommitdiff
path: root/include/libcss/libcss.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2009-02-14 11:54:37 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2009-02-14 11:54:37 +0000
commit7c3e35e586771fcdd0ebfe59f67f7dbc68ef8226 (patch)
tree6f8f57b3bac39f6fdb08de2e792266b3c82a263f /include/libcss/libcss.h
parent1233ce0a1a0e95966b8e1cf3bed01f7dcb63a360 (diff)
downloadlibcss-7c3e35e586771fcdd0ebfe59f67f7dbc68ef8226.tar.gz
libcss-7c3e35e586771fcdd0ebfe59f67f7dbc68ef8226.tar.bz2
Drop css_error_handler and rename css_alloc to css_allocator_fn
svn path=/trunk/libcss/; revision=6482
Diffstat (limited to 'include/libcss/libcss.h')
-rw-r--r--include/libcss/libcss.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/libcss/libcss.h b/include/libcss/libcss.h
index 361304d..84a8be7 100644
--- a/include/libcss/libcss.h
+++ b/include/libcss/libcss.h
@@ -11,13 +11,15 @@
#include <libcss/errors.h>
#include <libcss/types.h>
#include <libcss/functypes.h>
+#include <libcss/computed.h>
+#include <libcss/select.h>
/* Initialise the CSS library for use */
css_error css_initialise(const char *aliases_file,
- css_alloc alloc, void *pw);
+ css_allocator_fn alloc, void *pw);
/* Clean up after LibCSS */
-css_error css_finalise(css_alloc alloc, void *pw);
+css_error css_finalise(css_allocator_fn alloc, void *pw);
#endif