diff options
author | erdgeist <erdgeist@bauklotz.fritz.box> | 2016-08-12 14:46:51 +0200 |
---|---|---|
committer | erdgeist <erdgeist@bauklotz.fritz.box> | 2016-08-12 14:46:51 +0200 |
commit | a8be0d3d20f07d4561826b01f566ca307eb23526 (patch) | |
tree | b2c5c6d513ae3a84aba8e4eea94ec32e46d352fa /midi.h |
commit as a backup
Diffstat (limited to 'midi.h')
-rw-r--r-- | midi.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ | |||
1 | #pragma once | ||
2 | |||
3 | int midi_init(); | ||
4 | |||
5 | void midi_playnote( int channel, int note, int octave_offset ); | ||
6 | void midi_silencenote( int channel, int note, int octave_offset ); | ||
7 | void midi_pitchbend( int channel, int pitch ); | ||
8 | //void midi_controller_event( int saite, int value ); | ||
9 | |||