mz_stream_create method

Pointer<Void> mz_stream_create(
  1. Pointer<Pointer<Void>> stream,
  2. Pointer<mz_stream_vtbl> vtbl
)

Implementation

ffi.Pointer<ffi.Void> mz_stream_create(
  ffi.Pointer<ffi.Pointer<ffi.Void>> stream,
  ffi.Pointer<mz_stream_vtbl> vtbl,
) {
  return _mz_stream_create(
    stream,
    vtbl,
  );
}