summaryrefslogtreecommitdiff
path: root/src/stylesheet.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-09-20 11:37:45 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-09-20 11:37:45 +0000
commit3986ea98445d605596d94318aa0d91fabc883cc4 (patch)
tree23900dd021a82b57c63140ff58b0eae202524ca3 /src/stylesheet.h
parent3b6358f8254e8256f7af4e20b413f56f90a47eb1 (diff)
downloadlibcss-3986ea98445d605596d94318aa0d91fabc883cc4.tar.gz
libcss-3986ea98445d605596d94318aa0d91fabc883cc4.tar.bz2
Implement a bunch of css_stylesheet_*
svn path=/trunk/libcss/; revision=5376
Diffstat (limited to 'src/stylesheet.h')
-rw-r--r--src/stylesheet.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stylesheet.h b/src/stylesheet.h
index 15d86ab..0b87b9f 100644
--- a/src/stylesheet.h
+++ b/src/stylesheet.h
@@ -11,6 +11,7 @@
#include <inttypes.h>
#include <libcss/errors.h>
+#include <libcss/functypes.h>
#include <libcss/types.h>
typedef struct css_rule css_rule;
@@ -131,6 +132,9 @@ struct css_stylesheet {
css_stylesheet *last_child; /**< Last in child list */
css_stylesheet *next; /**< Next in sibling list */
css_stylesheet *prev; /**< Previous in sibling list */
+
+ css_alloc alloc; /**< Allocation function */
+ void *pw; /**< Private word */
};
css_selector *css_stylesheet_selector_create(css_stylesheet *sheet,