Skip to content

Commit

Permalink
a few updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Bremmers authored Oct 9, 2023
1 parent f4c261c commit 87af3ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/clap/ext/draft/midi-info.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 87af3ee

Please sign in to comment.