From 87af3eecd53d2414b7fe348d39eefedec411b1bc Mon Sep 17 00:00:00 2001 From: Bremmers Date: Mon, 9 Oct 2023 16:18:20 +0200 Subject: [PATCH] a few updates --- include/clap/ext/draft/midi-info.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/clap/ext/draft/midi-info.h b/include/clap/ext/draft/midi-info.h index da3f8857..f280ba12 100644 --- a/include/clap/ext/draft/midi-info.h +++ b/include/clap/ext/draft/midi-info.h @@ -41,14 +41,14 @@ enum { /* This describes a MIDI control/message */ typedef struct clap_midiinfo { //CLAP_MIDIINFO_STATUS, describes what kind of control this struct is about. - status: uint32_t; + uint32_t status; //controller number, nrpn number etc. //zero if not applicable the status value - number: uint32_t; + uint32_t number; //Display name - //If name is empty the host can assume the standard MIDI name + //If name is empty the host can assume default MIDI controller names (cc7 is Volume etc.) char name[CLAP_NAME_SIZE]; } clap_midiinfo_t;