snd_pcm_htimestamp method

int snd_pcm_htimestamp(
  1. Pointer<snd_pcm_> pcm,
  2. Pointer<Uint64> avail,
  3. Pointer<timespec> tstamp
)

Implementation

int snd_pcm_htimestamp(
  ffi.Pointer<snd_pcm_> pcm,
  ffi.Pointer<ffi.Uint64> avail,
  ffi.Pointer<timespec> tstamp,
) {
  return _snd_pcm_htimestamp(
    pcm,
    avail,
    tstamp,
  );
}