snd_pcm_htimestamp method

int snd_pcm_htimestamp(
  1. Pointer<snd_pcm_t> pcm,
  2. Pointer<snd_pcm_uframes_t> avail,
  3. Pointer<snd_htimestamp_t> tstamp
)

Implementation

int snd_pcm_htimestamp(
  ffi.Pointer<snd_pcm_t> pcm,
  ffi.Pointer<snd_pcm_uframes_t> avail,
  ffi.Pointer<snd_htimestamp_t> tstamp,
) {
  return _snd_pcm_htimestamp(
    pcm,
    avail,
    tstamp,
  );
}