mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
Closes: https://github.com/alsa-project/alsa-tools/pull/35 Signed-off-by: Andreas Persson <andreasp56@outlook.com> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
13 lines
315 B
C
13 lines
315 B
C
#ifndef MIDI__H
|
|
#define MIDI__H
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
int midi_init(char *appname, int channel, int midi_enhanced);
|
|
int midi_close();
|
|
void midi_maxstreams(int);
|
|
int midi_controller(int c, int v);
|
|
gboolean midi_process(GIOChannel *gio, GIOCondition condition, gpointer data);
|
|
int midi_button(int b, int v);
|
|
|
|
#endif
|