commit 357e8a9cf1a3cd857655ddaa44958c1fa0f7b138 parent f62ebc36fbb90a815b989c24964bbdfeec88e077 Author: Alexandre Bique <bique.alexandre@gmail.com> Date: Mon, 27 Dec 2021 12:14:12 +0100 Adjust event filter Diffstat:
M | include/clap/ext/event-filter.h | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/clap/ext/event-filter.h b/include/clap/ext/event-filter.h @@ -17,7 +17,7 @@ extern "C" { typedef struct clap_plugin_event_filter { // Returns true if the plugin is interested in the given event type. // [main-thread] - bool (*accepts)(const clap_plugin_t *plugin, clap_event_type event_type); + bool (*accepts)(const clap_plugin_t *plugin, uint16_t space_id, uint16_t event_id); } clap_plugin_event_filter_t;