Welcome to mirror list, hosted at ThFree Co, Russian Federation.

v_midi.h « oss « sound - github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08e2185ee816794656f8cf9a83a80706859aec84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;