]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Added missing alsa_midi.h
authorJohn Melton G0ORX <john.d.melton@googlemail.com>
Fri, 26 Feb 2021 08:10:22 +0000 (08:10 +0000)
committerJohn Melton G0ORX <john.d.melton@googlemail.com>
Fri, 26 Feb 2021 08:10:22 +0000 (08:10 +0000)
alsa_midi.h [new file with mode: 0644]

diff --git a/alsa_midi.h b/alsa_midi.h
new file mode 100644 (file)
index 0000000..02acc84
--- /dev/null
@@ -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);