unzipToDirAsync method

Pointer<Void> unzipToDirAsync(
  1. Pointer<Void> _zip,
  2. Pointer<Char> password,
  3. Pointer<Char> zipFilePath,
  4. Pointer<Pointer<Char>> entryPathsArr,
  5. int entriesCount,
  6. Pointer<Char> toDirPath,
  7. int threadCount,
)

Implementation

ffi.Pointer<ffi.Void> unzipToDirAsync(
  ffi.Pointer<ffi.Void> _zip,
  ffi.Pointer<ffi.Char> password,
  ffi.Pointer<ffi.Char> zipFilePath,
  ffi.Pointer<ffi.Pointer<ffi.Char>> entryPathsArr,
  int entriesCount,
  ffi.Pointer<ffi.Char> toDirPath,
  int threadCount,
) {
  return _unzipToDirAsync(
    _zip,
    password,
    zipFilePath,
    entryPathsArr,
    entriesCount,
    toDirPath,
    threadCount,
  );
}