|
@@ -33,13 +33,13 @@ static int snd_emux_unuse(void *private_data, struct snd_seq_port_subscribe *inf
|
|
* MIDI emulation operators
|
|
* MIDI emulation operators
|
|
*/
|
|
*/
|
|
static struct snd_midi_op emux_ops = {
|
|
static struct snd_midi_op emux_ops = {
|
|
- snd_emux_note_on,
|
|
|
|
- snd_emux_note_off,
|
|
|
|
- snd_emux_key_press,
|
|
|
|
- snd_emux_terminate_note,
|
|
|
|
- snd_emux_control,
|
|
|
|
- snd_emux_nrpn,
|
|
|
|
- snd_emux_sysex,
|
|
|
|
|
|
+ .note_on = snd_emux_note_on,
|
|
|
|
+ .note_off = snd_emux_note_off,
|
|
|
|
+ .key_press = snd_emux_key_press,
|
|
|
|
+ .note_terminate = snd_emux_terminate_note,
|
|
|
|
+ .control = snd_emux_control,
|
|
|
|
+ .nrpn = snd_emux_nrpn,
|
|
|
|
+ .sysex = snd_emux_sysex,
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|