snd_pcm_mmap_begin method
int
snd_pcm_mmap_begin(
- Pointer<
snd_pcm_t> pcm, - Pointer<
Pointer< areas,snd_pcm_channel_area_t> > - Pointer<
snd_pcm_uframes_t> offset, - Pointer<
snd_pcm_uframes_t> frames,
Implementation
int snd_pcm_mmap_begin(
ffi.Pointer<snd_pcm_t> pcm,
ffi.Pointer<ffi.Pointer<snd_pcm_channel_area_t>> areas,
ffi.Pointer<snd_pcm_uframes_t> offset,
ffi.Pointer<snd_pcm_uframes_t> frames,
) {
return _snd_pcm_mmap_begin(
pcm,
areas,
offset,
frames,
);
}