Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
424B

  1. #include <jack/jack.h>
  2. #include "common.h"
  3. enum { CONTROL, PERFORMANCE };
  4. class midievent;
  5. midievent * midi_input_event ( int port );
  6. void midi_output_event ( int port, const midievent *e );
  7. void midi_output_event ( int port, const midievent *e, tick_t duration );
  8. void midi_all_sound_off ( void );
  9. int midi_init ( void );
  10. void midi_shutdown ( void );
  11. void midi_output_immediate_event ( int port, const midievent *e );