mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
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>
12 lines
262 B
C
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
|