ma_data_source_seek_seconds function

ma_result ma_data_source_seek_seconds(
  1. Pointer<Void> pDataSource,
  2. double secondCount,
  3. Pointer<Float> pSecondsSeeked
)

Implementation

ma_result ma_data_source_seek_seconds(
  ffi.Pointer<ma_data_source> pDataSource,
  double secondCount,
  ffi.Pointer<ffi.Float> pSecondsSeeked,
) => ma_result.fromValue(
  _ma_data_source_seek_seconds(pDataSource, secondCount, pSecondsSeeked),
);