diff --git a/module.c b/module.c index 1ff828a..7f0a8e6 100644 --- a/module.c +++ b/module.c @@ -8,6 +8,7 @@ module_default_begin_expose(const struct module *mod, cairo_t *cr) return (struct module_expose_context){ .exposable = e, .width = e->begin_expose(e, cr), + .private = NULL, }; } diff --git a/module.h b/module.h index 2805649..55e4db4 100644 --- a/module.h +++ b/module.h @@ -16,6 +16,7 @@ struct module_run_context { struct module_expose_context { struct exposable *exposable; int width; + void *private; }; struct module {