fmsynth_set_mod_wheel method
\brief Set modulation wheel state.
@param fm Handle to an FM synth instance.
@param wheel wheel is parsed using MIDI rules. Valid range is 0, 127. Intial state is 0.
Implementation
void fmsynth_set_mod_wheel(
ffi.Pointer<fmsynth> fm,
int wheel,
) {
return _fmsynth_set_mod_wheel(
fm,
wheel,
);
}