cad854ec2cdd6d30c75035f42783d16c5134db31
[aubio.git] / examples / midialsa.c
1 /* __copyright__ */
2
3 #include "aubio.h"
4 #include <unistd.h>
5
6 int main(int argc, char **argv) {
7 #if ALSA_SUPPORT
8   aubio_midi_player_t * mplay = new_aubio_midi_player();
9   aubio_midi_driver_t * mdriver = new_aubio_midi_driver("alsa_seq",
10     (handle_midi_event_func_t)aubio_midi_send_event, mplay);
11   pause();
12   del_aubio_midi_driver(mdriver);
13 #endif
14   return 0;
15 }