28b87d316a
Clang Lint CI / lint-no-video (push) Successful in 59s
Clang Build CI / run-no-video (push) Successful in 59s
Clang Build CI / run-video (push) Successful in 59s
Clang Build CI / build-release (push) Successful in 1m31s
Clang Lint CI / lint-video (push) Successful in 1m7s
12 lines
282 B
C
12 lines
282 B
C
#include "types.h"
|
|
|
|
#ifndef MIDI_H
|
|
#define MIDI_H
|
|
|
|
void midi_open(MidiDevice *device, const char *name);
|
|
void midi_write(MidiDevice device, unsigned char code, unsigned char value);
|
|
void *midi_background_listen(void *args);
|
|
void midi_close(MidiDevice *device);
|
|
|
|
#endif /* MIDI_H */
|