snd_seq_create_simple_port method

int snd_seq_create_simple_port(
  1. Pointer<snd_seq_t> seq,
  2. Pointer<Char> name,
  3. int caps,
  4. int type,
)

Implementation

int snd_seq_create_simple_port(
  ffi.Pointer<snd_seq_t> seq,
  ffi.Pointer<ffi.Char> name,
  int caps,
  int type,
) {
  return _snd_seq_create_simple_port(
    seq,
    name,
    caps,
    type,
  );
}