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