getting_started.cpp 173 B

1234567891011
  1. #include "RtMidi.h"
  2. int main() {
  3. try {
  4. RtMidiIn midiin;
  5. } catch (RtMidiError &error) {
  6. // Handle the exception here
  7. error.printMessage();
  8. }
  9. return 0;
  10. }