snd_pcm_hook_add method

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

Implementation

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