alsa-tools/envy24control/midi.h
Dirk Jagdmann 1be230856c envy24control: midi support for mixer
Hello devlopers,

I have made the mixer sliders in envy24control react to MIDI
controllers. This way the hardware mixer can be controlled from a
sequencer program or some external MIDI controller hardware.

envy24control became a standard ALSA sequencer client which you can
connect to arbitrary other MIDI sources/sinks.

Signed-off-by: Dirk Jagdmann <doj@cubic.org>
2004-11-17 11:41:56 +00:00

12 lines
262 B
C

#ifndef MIDI__H
#define MIDI__H
#include <gdk/gdk.h>
int midi_init(char *appname, int channel);
int midi_close();
void midi_maxstreams(int);
int midi_controller(int c, int v);
void midi_process(gpointer data, gint source, GdkInputCondition condition);
#endif