snd_ctl_get_dB_range method

int snd_ctl_get_dB_range(
  1. Pointer<snd_ctl_> ctl,
  2. Pointer<snd_ctl_elem_id_> id,
  3. Pointer<Int64> min,
  4. Pointer<Int64> max,
)

Implementation

int snd_ctl_get_dB_range(
  ffi.Pointer<snd_ctl_> ctl,
  ffi.Pointer<snd_ctl_elem_id_> id,
  ffi.Pointer<ffi.Int64> min,
  ffi.Pointer<ffi.Int64> max,
) {
  return _snd_ctl_get_dB_range(
    ctl,
    id,
    min,
    max,
  );
}