snd_output_stdio_attach method

int snd_output_stdio_attach(
  1. Pointer<Pointer<snd_output_t>> outputp,
  2. Pointer<FILE> fp,
  3. int _close
)

Implementation

int snd_output_stdio_attach(
  ffi.Pointer<ffi.Pointer<snd_output_t>> outputp,
  ffi.Pointer<FILE> fp,
  int _close,
) {
  return _snd_output_stdio_attach(
    outputp,
    fp,
    _close,
  );
}