From 38fb8d0a608465affb72f0e3e98654cf69fc4e42 Mon Sep 17 00:00:00 2001 From: John Melton G0ORX Date: Fri, 26 Feb 2021 08:10:22 +0000 Subject: [PATCH] Added missing alsa_midi.h --- alsa_midi.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 alsa_midi.h diff --git a/alsa_midi.h b/alsa_midi.h new file mode 100644 index 0000000..02acc84 --- /dev/null +++ b/alsa_midi.h @@ -0,0 +1,12 @@ +typedef struct _midi_device { + char *name; + char *port; +} MIDI_DEVICE; + +#define MAX_MIDI_DEVICES 10 + +extern MIDI_DEVICE midi_devices[MAX_MIDI_DEVICES]; +extern int n_midi_devices; + +extern void get_midi_devices(); +extern int register_midi_device(char *myname); -- 2.45.2