1#ifndef MIDI_H_ 2#define MIDI_H_ 3 4#include <alsa/asoundlib.h> 5 6#define CLIENT_NAME "ttdaw" 7#define MAX_MIDI_PORTS 1 8 9typedef struct { 10 char *port_name; 11} MidiArgs; 12 13void *midi(void *arg); 14 15#endif // MIDI_H_ 16