furnace/extern/rtmidi/doc/doxygen/samples/getting_started.cpp
2022-02-13 15:02:43 -05:00

11 lines
173 B
C++

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