diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-08 16:14:22 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-08 16:14:22 +0200 |
| commit | c05e271a0507231eaf131930b5b9711ef85ae4a8 (patch) | |
| tree | 768eeb6b03a2e7f5485d9a739618920a8f442d6f /midi.h | |
| parent | 65ffdf410ca5c36f059bee8619f87147f802a82e (diff) | |
| download | ttdaw-c05e271a0507231eaf131930b5b9711ef85ae4a8.tar.gz | |
MIDI is now read in threaded way
Diffstat (limited to 'midi.h')
| -rw-r--r-- | midi.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,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_ + |
