Files
2026-09-16 14:07:40 +08:00

12 lines
173 B
C++
Vendored

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