snd_pcm_hook_add method

int snd_pcm_hook_add(
  1. Pointer<Pointer<snd_pcm_hook_>> hookp,
  2. Pointer<snd_pcm_> pcm,
  3. int type,
  4. Pointer<NativeFunction<snd_pcm_hook_func_t>> func,
  5. Pointer<Void> private_data,
)

Implementation

int snd_pcm_hook_add(
  ffi.Pointer<ffi.Pointer<snd_pcm_hook_>> hookp,
  ffi.Pointer<snd_pcm_> pcm,
  int type,
  ffi.Pointer<ffi.NativeFunction<snd_pcm_hook_func_t>> func,
  ffi.Pointer<ffi.Void> private_data,
) {
  return _snd_pcm_hook_add(
    hookp,
    pcm,
    type,
    func,
    private_data,
  );
}