add RtMidi for eventual MIDI support
This commit is contained in:
parent
65e3e623f2
commit
aa0e318543
51 changed files with 11881 additions and 0 deletions
11
extern/rtmidi/doc/doxygen/samples/getting_started.cpp
vendored
Normal file
11
extern/rtmidi/doc/doxygen/samples/getting_started.cpp
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#include "RtMidi.h"
|
||||
|
||||
int main() {
|
||||
try {
|
||||
RtMidiIn midiin;
|
||||
} catch (RtMidiError &error) {
|
||||
// Handle the exception here
|
||||
error.printMessage();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue