clap

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

commit 5bb414379f63ef63ff73106e249ab0526687dd60
parent 05b3518b1d90184a940848835bccafa93481ca6d
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Thu, 24 Mar 2016 21:26:39 +0100

Better parameter order

Diffstat:
Minclude/clap/ext/embed-x11.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/clap/ext/embed-x11.h b/include/clap/ext/embed-x11.h @@ -18,8 +18,8 @@ struct clap_plugin_embed_x11 * Note for the host, the display_name can be retrieved from your own * display->display_name. */ bool (*attach)(struct clap_plugin *plugin, - unsigned long window, - const char *display_name); + const char *display_name, + unsigned long window); bool (*detach)(struct clap_plugin *plugin); };