snd_pcm_link method

int snd_pcm_link(
  1. Pointer<snd_pcm_> pcm1,
  2. Pointer<snd_pcm_> pcm2
)

Implementation

int snd_pcm_link(
  ffi.Pointer<snd_pcm_> pcm1,
  ffi.Pointer<snd_pcm_> pcm2,
) {
  return _snd_pcm_link(
    pcm1,
    pcm2,
  );
}