Staging
v0.8.1
swh:1:snp:a902887e4be9191b7c6c4406aa06b31c1ce2c7cc
Raw File
Tip revision: bce7f793daec3e65ec5c5705d2457b81fe7b5725 authored by Linus Torvalds on 13 July 2008, 21:51:29 UTC
Linux 2.6.26
Tip revision: bce7f79
v_midi.h
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;

back to top