2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-21 19:53:59 +08:00
linux-next/sound/oss/v_midi.h

15 lines
281 B
C
Raw Normal View History

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;