clap

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

commit 8b7a4521407218b67d50cecff73c49eaeb43a4d4
parent aa8c410ba02a549ec1a3b6d9b9bd1e00aba5cdb0
Author: Dalton Messmer <33463986+messmerd@users.noreply.github.com>
Date:   Fri,  3 Nov 2023 00:12:16 -0400

Clarify return values in posix-fd-support.h
Diffstat:
Minclude/clap/ext/posix-fd-support.h | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/include/clap/ext/posix-fd-support.h b/include/clap/ext/posix-fd-support.h @@ -31,12 +31,15 @@ typedef struct clap_plugin_posix_fd_support { } clap_plugin_posix_fd_support_t; typedef struct clap_host_posix_fd_support { + // Returns true on success. // [main-thread] bool(CLAP_ABI *register_fd)(const clap_host_t *host, int fd, clap_posix_fd_flags_t flags); + // Returns true on success. // [main-thread] bool(CLAP_ABI *modify_fd)(const clap_host_t *host, int fd, clap_posix_fd_flags_t flags); + // Returns true on success. // [main-thread] bool(CLAP_ABI *unregister_fd)(const clap_host_t *host, int fd); } clap_host_posix_fd_support_t;