commit c09120290c91952a8ad7971cbb15c1b13fb62342
parent 471be14b8c5bcac3a3931ea9c7c9dcad862591db
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Thu, 16 Oct 2014 11:21:26 +0200
Minor updates to the plugin format
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/clap/clap.h b/include/clap/clap.h
@@ -81,7 +81,7 @@ struct clap_port_info
enum clap_port_role role;
char name[CLAP_NAME_SIZE];
uint32_t stream_id; // used to connect feedback loops
- bool repeatable;
+ bool is_repeatable;
};
struct clap_ports_config
@@ -268,14 +268,14 @@ struct clap_process
struct clap_host
{
- uint32_t clap_version; // initialized to CALP_VERSION
+ uint32_t clap_version; // initialized to CLAP_VERSION
/* host info */
char name[CLAP_NAME_SIZE];
char manufacturer[CLAP_NAME_SIZE];
char version[CLAP_NAME_SIZE];
- /* for events generated outside of process, like from the GUI. */
+ /* for events generated by the plugin. */
void (*events)(struct clap_host *host,
struct clap_plugin *plugin,
struct clap_event *events);