summaryrefslogtreecommitdiff
path: root/include/libcss/functypes.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/functypes.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/functypes.h')
-rw-r--r--include/libcss/functypes.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/include/libcss/functypes.h b/include/libcss/functypes.h
index 52cb33f..c091f0b 100644
--- a/include/libcss/functypes.h
+++ b/include/libcss/functypes.h
@@ -15,13 +15,7 @@
#include <libcss/types.h>
/* Type of allocation function for libcss */
-typedef void *(*css_alloc)(void *ptr, size_t size, void *pw);
-
-/**
- * Type of parse error handling function
- */
-typedef void (*css_error_handler)(uint32_t line, uint32_t col,
- const char *message, void *pw);
+typedef void *(*css_allocator_fn)(void *ptr, size_t size, void *pw);
#endif