mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-06 12:55:05 +00:00
11 lines
173 B
C++
11 lines
173 B
C++
#include "RtMidi.h"
|
|
|
|
int main() {
|
|
try {
|
|
RtMidiIn midiin;
|
|
} catch (RtMidiError &error) {
|
|
// Handle the exception here
|
|
error.printMessage();
|
|
}
|
|
return 0;
|
|
}
|