mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-31 22:25:34 -04:00
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
|