mz_zip_writer_add_process method

int mz_zip_writer_add_process(
  1. Pointer<Void> handle,
  2. Pointer<Void> stream,
  3. mz_stream_read_cb read_cb
)

Implementation

int mz_zip_writer_add_process(
  ffi.Pointer<ffi.Void> handle,
  ffi.Pointer<ffi.Void> stream,
  mz_stream_read_cb read_cb,
) {
  return _mz_zip_writer_add_process(
    handle,
    stream,
    read_cb,
  );
}