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