clap

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

commit ebef92f75b6c384deb27a28fd38e26be1c47135a
parent 39c5d4a6372e8ef6124e1d144086b2b32ade498c
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Wed, 18 May 2022 13:44:56 +0200

Fixes  #79

Diffstat:
Minclude/clap/ext/draft/check-for-update.h | 11+++++------
1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/include/clap/ext/draft/check-for-update.h b/include/clap/ext/draft/check-for-update.h @@ -9,16 +9,16 @@ extern "C" { #endif typedef struct clap_check_for_update_info { - const char *version; + const char *version; // latest version const char *release_date; // YYYY-MM-DD - const char *url; + const char *url; // url to a download page which the user can visit - bool is_stable; + bool is_preview; // true if this version is a preview release } clap_check_for_update_info_t; typedef struct clap_plugin_check_for_update { // [main-thread] - void (*check)(const clap_host_t *host, bool include_beta); + void (*check)(const clap_plugin_t *plugin, bool include_preview); } clap_plugin_check_for_update; typedef struct clap_host_check_for_update { @@ -28,4 +28,4 @@ typedef struct clap_host_check_for_update { #ifdef __cplusplus } -#endif -\ No newline at end of file +#endif