flutterxel_core_play method

bool flutterxel_core_play(
  1. int ch,
  2. int snd_kind,
  3. int snd_value,
  4. Pointer<Int32> snd_sequence_ptr,
  5. int snd_sequence_len,
  6. Pointer<Char> snd_string,
  7. double sec,
  8. int loop,
  9. int resume,
)

Implementation

bool flutterxel_core_play(
  int ch,
  int snd_kind,
  int snd_value,
  ffi.Pointer<ffi.Int32> snd_sequence_ptr,
  int snd_sequence_len,
  ffi.Pointer<ffi.Char> snd_string,
  double sec,
  int loop,
  int resume,
) {
  return _flutterxel_core_play(
    ch,
    snd_kind,
    snd_value,
    snd_sequence_ptr,
    snd_sequence_len,
    snd_string,
    sec,
    loop,
    resume,
  );
}