clap

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

commit 08c43d6508931c63f3e5d4ce2bbfb421e1547a1f
parent 8bc0faecb7ab661ccf78876bafceb126f8ae4f0f
Author: Dalton Messmer <33463986+messmerd@users.noreply.github.com>
Date:   Fri,  3 Nov 2023 00:01:38 -0400

Fix typo in event-registry.h
Diffstat:
Minclude/clap/ext/event-registry.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/clap/ext/event-registry.h b/include/clap/ext/event-registry.h @@ -12,7 +12,7 @@ typedef struct clap_host_event_registry { // Queries an event space id. // The space id 0 is reserved for CLAP's core events. See CLAP_CORE_EVENT_SPACE. // - // Return false and sets *space to UINT16_MAX if the space name is unknown to the host. + // Return false and sets *space_id to UINT16_MAX if the space name is unknown to the host. // [main-thread] bool(CLAP_ABI *query)(const clap_host_t *host, const char *space_name, uint16_t *space_id); } clap_host_event_registry_t;