summaryrefslogtreecommitdiff
path: root/src/stylesheet.h
diff options
context:
space:
mode:
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,