commit 008f56c08a9d4a68350f570c84471ab54d947a0b
parent 1f22cc6ca764b075ca3ab376ee3ea815d2c489b1
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date: Sat, 15 May 2021 19:19:35 +0200
Add keywords to remote controls
Diffstat:
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/clap/ext/draft/remote-controls.h b/include/clap/ext/draft/remote-controls.h
@@ -12,6 +12,7 @@ extern "C" {
typedef struct clap_remote_controls_page {
clap_id id;
char name[CLAP_NAME_SIZE];
+ char keywords[CLAP_KEYWORDS_SIZE];
clap_id param_id[8];
} clap_remote_controls_page;
diff --git a/include/clap/string-sizes.h b/include/clap/string-sizes.h
@@ -9,6 +9,7 @@ extern "C" {
enum {
CLAP_NAME_SIZE = 64,
CLAP_MODULE_SIZE = 128,
+ CLAP_KEYWORDS_SIZE = 128,
};
#ifdef __cplusplus