zipDirAsync method

Pointer<Void> zipDirAsync(
  1. Pointer<Void> _zip,
  2. bool hasPassword,
  3. Pointer<Pointer<Char>> dirPathList,
  4. int dirPathListCount,
  5. Pointer<Char> entryDirPathBase,
  6. int compressLevel,
  7. int skipTopLevel,
  8. int threadCount,
)

Implementation

ffi.Pointer<ffi.Void> zipDirAsync(
  ffi.Pointer<ffi.Void> _zip,
  bool hasPassword,
  ffi.Pointer<ffi.Pointer<ffi.Char>> dirPathList,
  int dirPathListCount,
  ffi.Pointer<ffi.Char> entryDirPathBase,
  int compressLevel,
  int skipTopLevel,
  int threadCount,
) {
  return _zipDirAsync(
    _zip,
    hasPassword,
    dirPathList,
    dirPathListCount,
    entryDirPathBase,
    compressLevel,
    skipTopLevel,
    threadCount,
  );
}