clap

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

commit a7a2038b97dc0378ca28896e511141835a168df2
parent cf00bd2af9461c548ebb5a19f8a4a442559306f5
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Mon,  3 Jan 2022 15:11:12 +0100

Use four bytes for the flags, the space is there anyway...


Diffstat:
Minclude/clap/events.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/clap/events.h b/include/clap/events.h @@ -19,7 +19,7 @@ typedef struct clap_event_header { alignas(4) uint32_t time; // time at which the event happens alignas(2) uint16_t space_id; // event space, see clap_host_event_registry alignas(2) uint16_t type; // event type - alignas(2) uint16_t flags; // see clap_event_flags + alignas(4) uint32_t flags; // see clap_event_flags } clap_event_header_t; // The clap core event space