linux-surface/kernel/sound/oss/v_midi.h

16 lines
320 B
C
Raw Normal View History

2017-11-06 02:38:20 +00:00
/* SPDX-License-Identifier: GPL-2.0 */
2017-08-10 13:25:24 +00:00
typedef struct vmidi_devc {
int dev;
/* State variables */
int opened;
spinlock_t lock;
/* MIDI fields */
int my_mididev;
int pair_mididev;
int input_opened;
int intr_active;
void (*midi_input_intr) (int dev, unsigned char data);
} vmidi_devc;