aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/util
diff options
context:
space:
mode:
Diffstat (limited to 'include/wlr/util')
-rw-r--r--include/wlr/util/addon.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/wlr/util/addon.h b/include/wlr/util/addon.h
index 382252ae..c64200cf 100644
--- a/include/wlr/util/addon.h
+++ b/include/wlr/util/addon.h
@@ -20,6 +20,7 @@ struct wlr_addon;
struct wlr_addon_interface {
const char *name;
+ // Has to call wlr_addon_finish()
void (*destroy)(struct wlr_addon *addon);
};
@@ -34,10 +35,10 @@ void wlr_addon_set_init(struct wlr_addon_set *set);
void wlr_addon_set_finish(struct wlr_addon_set *set);
void wlr_addon_init(struct wlr_addon *addon, struct wlr_addon_set *set,
- const void *owner, const struct wlr_addon_interface *impl);
+ const void *owner, const struct wlr_addon_interface *impl);
void wlr_addon_finish(struct wlr_addon *addon);
struct wlr_addon *wlr_addon_find(struct wlr_addon_set *set, const void *owner,
- const struct wlr_addon_interface *impl);
+ const struct wlr_addon_interface *impl);
#endif