snd_ctl_open_fallback method

int snd_ctl_open_fallback(
  1. Pointer<Pointer<snd_ctl_t>> ctl,
  2. Pointer<snd_config_t> root,
  3. Pointer<Char> name,
  4. Pointer<Char> orig_name,
  5. int mode,
)

Implementation

int snd_ctl_open_fallback(
  ffi.Pointer<ffi.Pointer<snd_ctl_t>> ctl,
  ffi.Pointer<snd_config_t> root,
  ffi.Pointer<ffi.Char> name,
  ffi.Pointer<ffi.Char> orig_name,
  int mode,
) {
  return _snd_ctl_open_fallback(
    ctl,
    root,
    name,
    orig_name,
    mode,
  );
}