add RtMidi for eventual MIDI support

This commit is contained in:
tildearrow 2022-02-13 15:02:43 -05:00
parent 65e3e623f2
commit aa0e318543
51 changed files with 11881 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#include "RtMidi.h"
int main() {
try {
RtMidiIn midiin;
} catch (RtMidiError &error) {
// Handle the exception here
error.printMessage();
}
return 0;
}