clap

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

commit f4deb931f1ed7efe3c4a9ec232f55f675c4a46c5
parent 370058ecce91c1eeec212eb7791486f8df0c375f
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Tue, 29 Nov 2022 14:28:19 +0100

Merge branch 'next' into channel-info

Diffstat:
Minclude/clap/ext/draft/param-indication.h | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/include/clap/ext/draft/param-indication.h b/include/clap/ext/draft/param-indication.h @@ -12,6 +12,10 @@ static CLAP_CONSTEXPR const char CLAP_EXT_PARAM_INDICATION[] = "clap.param-indication.draft/0"; +#ifdef __cplusplus +extern "C" { +#endif + typedef struct clap_plugin_param_indication { // Sets or clears a mapping indication. // If the host doesn't use mapping color, then mapping_color should be null. @@ -22,3 +26,7 @@ typedef struct clap_plugin_param_indication { bool is_mapped, const clap_color_t *mapping_color); } clap_plugin_param_indication_t; + +#ifdef __cplusplus +} +#endif