/*#include /**/ /*#include /**/ dx7SetVoice(midi,channel,n) /* ** Set the dx7 program (ie, voice) to 'n'. ** Note that 'n' is '0'-based; i.e., to simulate pressing ** program button labeled '7' on the dx7, do 'dx7SetVoice(midi,channel,6)'. */ { dx7Push(midi,channel,n); /* static unsigned char s[] = {MPU_WANT_TO_SEND_DATA,0,0}; s[1] = CH_PRG | channel; s[2] = n; MpuSetTrack(midi,MPU_TR_COM); write(midi,s,sizeof s); MpuSetTrack(midi,0); */ }