src/overlay.c: clean up timer on exit

This commit is contained in:
Consolatis 2025-02-11 00:39:36 +01:00 committed by Hiroaki Yamamoto
parent 63da13a62b
commit a4d1fcfef2
3 changed files with 15 additions and 0 deletions

View file

@ -35,9 +35,14 @@ struct overlay {
};
void overlay_reconfigure(struct seat *seat);
/* Calls overlay_hide() internally if there's no overlay to show */
void overlay_update(struct seat *seat);
/* This function must be called when server->grabbed_view is destroyed */
void overlay_hide(struct seat *seat);
/* This function is called to clean up the timer on exit */
void overlay_finish(struct seat *seat);
#endif