fmsynth_set_mod_wheel method

void fmsynth_set_mod_wheel(
  1. Pointer<fmsynth> fm,
  2. int wheel
)

\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,
  );
}