diff options
author | emersion <contact@emersion.fr> | 2018-03-12 09:17:06 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-12 09:17:06 +0100 |
commit | 6ac3534df6ce1ac35932fb71584675d32507fed7 (patch) | |
tree | 3557c3a132b43d123db9d230ced6b60f64a94fb8 /include | |
parent | 1f8854f2172b124572f53976b9067fc4ef33a8a1 (diff) |
rootston: add destroy to view interface
Diffstat (limited to 'include')
-rw-r--r-- | include/rootston/view.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/rootston/view.h b/include/rootston/view.h index 0844a6da..1e5c0933 100644 --- a/include/rootston/view.h +++ b/include/rootston/view.h @@ -142,6 +142,7 @@ struct roots_view { void (*maximize)(struct roots_view *view, bool maximized); void (*set_fullscreen)(struct roots_view *view, bool fullscreen); void (*close)(struct roots_view *view); + void (*destroy)(struct roots_view *view); }; struct roots_view_child { |