You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
284 B
16 lines
284 B
20 years ago
|
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;
|
||
|
|