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