clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 66d0998a4b5f3256f5f4e742987bc402538c349e
parent ccfb56b5132c517cc0c18a4b7a00ddaa63eec363
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Fri,  4 Mar 2022 18:24:28 +0100

Missing callback

Diffstat:
Minclude/clap/ext/gui.h | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/include/clap/ext/gui.h b/include/clap/ext/gui.h @@ -159,6 +159,10 @@ typedef struct clap_host_gui { * Return true on success, false otherwise. * [main-thread] */ bool (*request_hide)(const clap_host_t *host); + + // The plugin's floating window has been closed. + // [main-thread] + void (*window_closed)(const clap_host_t *host); } clap_host_gui_t; #ifdef __cplusplus