snd_hctl_open method

int snd_hctl_open(
  1. Pointer<Pointer<snd_hctl_t>> hctl,
  2. Pointer<Char> name,
  3. int mode
)

Implementation

int snd_hctl_open(
  ffi.Pointer<ffi.Pointer<snd_hctl_t>> hctl,
  ffi.Pointer<ffi.Char> name,
  int mode,
) {
  return _snd_hctl_open(
    hctl,
    name,
    mode,
  );
}