| H A D | soundcard.h | 1139 #define _CHN_VOICE(dev, event, chn, note, parm) \ argument 1145 _seqbuf[_seqbufptr+4] = (note);\ 1151 #define SEQ_START_NOTE(dev, chn, note, vol) \ argument 1152 _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol) 1154 #define SEQ_STOP_NOTE(dev, chn, note, vol) \ argument 1155 _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol) 1157 #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \ argument 1158 _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)
|