commit c7032495b3b887b133f40e9e1870bab25ff6559e
parent 5a6e89b50b2da2999e2ea7f04282ba07c4e4f1f9
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Tue, 29 Nov 2022 14:15:13 +0100
Merge branch 'next' into audio-port-activation
Diffstat:
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