├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── gradle.xml ├── misc.xml └── vcs.xml ├── 7-zip.license ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── nmmedit │ │ └── p7zip │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── nmmedit │ │ │ └── p7zip │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── nmmedit │ └── p7zip │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── p7zip-android ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── net │ │ └── sf │ │ └── sevenzipjbinding │ │ └── SevenZipTest.java │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── RegisterNative.cxx │ ├── jbinding-cpp │ │ ├── BaseSystem.h │ │ ├── CMakeLists.txt │ │ ├── CPPToJava │ │ │ ├── CPPToJavaAbstract.h │ │ │ ├── CPPToJavaArchiveExtractCallback.cpp │ │ │ ├── CPPToJavaArchiveExtractCallback.h │ │ │ ├── CPPToJavaArchiveOpenCallback.cpp │ │ │ ├── CPPToJavaArchiveOpenCallback.h │ │ │ ├── CPPToJavaArchiveOpenVolumeCallback.cpp │ │ │ ├── CPPToJavaArchiveOpenVolumeCallback.h │ │ │ ├── CPPToJavaArchiveUpdateCallback.cpp │ │ │ ├── CPPToJavaArchiveUpdateCallback.h │ │ │ ├── CPPToJavaCryptoGetTextPassword.cpp │ │ │ ├── CPPToJavaCryptoGetTextPassword.h │ │ │ ├── CPPToJavaInStream.cpp │ │ │ ├── CPPToJavaInStream.h │ │ │ ├── CPPToJavaOutStream.cpp │ │ │ ├── CPPToJavaOutStream.h │ │ │ ├── CPPToJavaProgress.cpp │ │ │ ├── CPPToJavaProgress.h │ │ │ ├── CPPToJavaSequentialInStream.cpp │ │ │ ├── CPPToJavaSequentialInStream.h │ │ │ ├── CPPToJavaSequentialOutStream.cpp │ │ │ └── CPPToJavaSequentialOutStream.h │ │ ├── Client7z.cpp │ │ ├── CodecTools.cpp │ │ ├── CodecTools.h │ │ ├── Debug.cpp │ │ ├── Debug.h │ │ ├── JBindingTools.cpp │ │ ├── JBindingTools.h │ │ ├── JNISession.h │ │ ├── JNITools.cpp │ │ ├── JNITools.h │ │ ├── JObjectList.h │ │ ├── JavaStatInfos │ │ │ ├── JavaPackageSevenZip.h │ │ │ └── JavaStandardLibrary.h │ │ ├── JavaStaticInfo.cpp │ │ ├── JavaStaticInfo.h │ │ ├── JavaToCPP │ │ │ ├── JavaToCPPInArchiveImpl.cpp │ │ │ ├── JavaToCPPOutArchiveImpl.cpp │ │ │ └── JavaToCPPSevenZip.cpp │ │ ├── PlatformMinGW │ │ │ ├── MyUser32.cpp │ │ │ ├── MyWindows.cpp │ │ │ └── StdAfx.h │ │ ├── PlatformUnix │ │ │ └── StdAfx.h │ │ ├── ScopedLocalRef.h │ │ ├── SevenZipJBinding.cpp │ │ ├── SevenZipJBinding.h │ │ ├── UnicodeHelper.h │ │ ├── UniversalArchiveOpenCallback.cpp │ │ ├── UniversalArchiveOpenCallback.h │ │ ├── UserTrace.cpp │ │ └── UserTrace.h │ ├── p7zip_16.02 │ │ ├── Asm │ │ │ └── x86 │ │ │ │ ├── 7zAsm.asm │ │ │ │ ├── 7zCrcOpt_asm.asm │ │ │ │ └── AesOpt.asm │ │ ├── C │ │ │ ├── 7zBuf.h │ │ │ ├── 7zBuf2.c │ │ │ ├── 7zCrc.c │ │ │ ├── 7zCrc.h │ │ │ ├── 7zCrcOpt.c │ │ │ ├── 7zStream.c │ │ │ ├── 7zTypes.h │ │ │ ├── 7zVersion.h │ │ │ ├── Aes.c │ │ │ ├── Aes.h │ │ │ ├── AesOpt.c │ │ │ ├── Alloc.c │ │ │ ├── Alloc.h │ │ │ ├── Bcj2.c │ │ │ ├── Bcj2.h │ │ │ ├── Bcj2Enc.c │ │ │ ├── Blake2.h │ │ │ ├── Blake2s.c │ │ │ ├── Bra.c │ │ │ ├── Bra.h │ │ │ ├── Bra86.c │ │ │ ├── BraIA64.c │ │ │ ├── BwtSort.c │ │ │ ├── BwtSort.h │ │ │ ├── Compiler.h │ │ │ ├── CpuArch.c │ │ │ ├── CpuArch.h │ │ │ ├── Delta.c │ │ │ ├── Delta.h │ │ │ ├── HuffEnc.c │ │ │ ├── HuffEnc.h │ │ │ ├── LzFind.c │ │ │ ├── LzFind.h │ │ │ ├── LzFindMt.c │ │ │ ├── LzFindMt.h │ │ │ ├── LzHash.h │ │ │ ├── Lzma2Dec.c │ │ │ ├── Lzma2Dec.h │ │ │ ├── Lzma2Enc.c │ │ │ ├── Lzma2Enc.h │ │ │ ├── Lzma86.h │ │ │ ├── Lzma86Dec.c │ │ │ ├── Lzma86Enc.c │ │ │ ├── LzmaDec.c │ │ │ ├── LzmaDec.h │ │ │ ├── LzmaEnc.c │ │ │ ├── LzmaEnc.h │ │ │ ├── MtCoder.c │ │ │ ├── MtCoder.h │ │ │ ├── Ppmd.h │ │ │ ├── Ppmd7.c │ │ │ ├── Ppmd7.h │ │ │ ├── Ppmd7Dec.c │ │ │ ├── Ppmd7Enc.c │ │ │ ├── Ppmd8.c │ │ │ ├── Ppmd8.h │ │ │ ├── Ppmd8Dec.c │ │ │ ├── Ppmd8Enc.c │ │ │ ├── Precomp.h │ │ │ ├── RotateDefs.h │ │ │ ├── Sha1.c │ │ │ ├── Sha1.h │ │ │ ├── Sha256.c │ │ │ ├── Sha256.h │ │ │ ├── Sort.c │ │ │ ├── Sort.h │ │ │ ├── Threads.c │ │ │ ├── Threads.h │ │ │ ├── Xz.c │ │ │ ├── Xz.h │ │ │ ├── XzCrc64.c │ │ │ ├── XzCrc64.h │ │ │ ├── XzCrc64Opt.c │ │ │ ├── XzDec.c │ │ │ ├── XzEnc.c │ │ │ ├── XzEnc.h │ │ │ ├── XzIn.c │ │ │ ├── zstd │ │ │ │ ├── COPYING │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bitstream.h │ │ │ │ ├── compiler.h │ │ │ │ ├── cpu.h │ │ │ │ ├── debug.c │ │ │ │ ├── debug.h │ │ │ │ ├── entropy_common.c │ │ │ │ ├── error_private.c │ │ │ │ ├── error_private.h │ │ │ │ ├── error_public.h │ │ │ │ ├── fse.h │ │ │ │ ├── fse_compress.c │ │ │ │ ├── fse_decompress.c │ │ │ │ ├── hist.c │ │ │ │ ├── hist.h │ │ │ │ ├── huf.h │ │ │ │ ├── huf_compress.c │ │ │ │ ├── huf_decompress.c │ │ │ │ ├── mem.h │ │ │ │ ├── pool.c │ │ │ │ ├── pool.h │ │ │ │ ├── threading.c │ │ │ │ ├── threading.h │ │ │ │ ├── xxhash.c │ │ │ │ ├── xxhash.h │ │ │ │ ├── zstd.h │ │ │ │ ├── zstd_common.c │ │ │ │ ├── zstd_compress.c │ │ │ │ ├── zstd_compress_internal.h │ │ │ │ ├── zstd_compress_literals.c │ │ │ │ ├── zstd_compress_literals.h │ │ │ │ ├── zstd_compress_sequences.c │ │ │ │ ├── zstd_compress_sequences.h │ │ │ │ ├── zstd_ddict.c │ │ │ │ ├── zstd_ddict.h │ │ │ │ ├── zstd_decompress.c │ │ │ │ ├── zstd_decompress_block.c │ │ │ │ ├── zstd_decompress_block.h │ │ │ │ ├── zstd_decompress_internal.h │ │ │ │ ├── zstd_double_fast.c │ │ │ │ ├── zstd_double_fast.h │ │ │ │ ├── zstd_errors.h │ │ │ │ ├── zstd_fast.c │ │ │ │ ├── zstd_fast.h │ │ │ │ ├── zstd_internal.h │ │ │ │ ├── zstd_lazy.c │ │ │ │ ├── zstd_lazy.h │ │ │ │ ├── zstd_ldm.c │ │ │ │ ├── zstd_ldm.h │ │ │ │ ├── zstd_legacy.h │ │ │ │ ├── zstd_opt.c │ │ │ │ ├── zstd_opt.h │ │ │ │ ├── zstd_v01.c │ │ │ │ ├── zstd_v01.h │ │ │ │ ├── zstd_v02.c │ │ │ │ ├── zstd_v02.h │ │ │ │ ├── zstd_v03.c │ │ │ │ ├── zstd_v03.h │ │ │ │ ├── zstd_v04.c │ │ │ │ ├── zstd_v04.h │ │ │ │ ├── zstd_v05.c │ │ │ │ ├── zstd_v05.h │ │ │ │ ├── zstd_v06.c │ │ │ │ ├── zstd_v06.h │ │ │ │ ├── zstd_v07.c │ │ │ │ ├── zstd_v07.h │ │ │ │ ├── zstdmt_common.c │ │ │ │ ├── zstdmt_compress.c │ │ │ │ ├── zstdmt_compress.h │ │ │ │ └── zstdmt_decompress.c │ │ │ └── zstdmt │ │ │ │ ├── README.md │ │ │ │ ├── list.h │ │ │ │ ├── lz4mt.h │ │ │ │ ├── lz4mt_common.c │ │ │ │ ├── lz4mt_compress.c │ │ │ │ ├── lz4mt_decompress.c │ │ │ │ ├── lz5mt.h │ │ │ │ ├── lz5mt_common.c │ │ │ │ ├── lz5mt_compress.c │ │ │ │ ├── lz5mt_decompress.c │ │ │ │ ├── mem.h │ │ │ │ ├── threading.c │ │ │ │ ├── threading.h │ │ │ │ ├── zstdmt.h │ │ │ │ ├── zstdmt_common.c │ │ │ │ ├── zstdmt_compress.c │ │ │ │ └── zstdmt_decompress.c │ │ ├── CMakeLists.txt │ │ ├── CPP │ │ │ ├── 7zip │ │ │ │ ├── Archive │ │ │ │ │ ├── 7z │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ └── 7zUpdate.h │ │ │ │ │ ├── ApmHandler.cpp │ │ │ │ │ ├── ArHandler.cpp │ │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ │ ├── ArjHandler.cpp │ │ │ │ │ ├── Bz2Handler.cpp │ │ │ │ │ ├── Cab │ │ │ │ │ │ ├── CabBlockInStream.cpp │ │ │ │ │ │ ├── CabBlockInStream.h │ │ │ │ │ │ ├── CabHandler.cpp │ │ │ │ │ │ ├── CabHandler.h │ │ │ │ │ │ ├── CabHeader.cpp │ │ │ │ │ │ ├── CabHeader.h │ │ │ │ │ │ ├── CabIn.cpp │ │ │ │ │ │ ├── CabIn.h │ │ │ │ │ │ ├── CabItem.h │ │ │ │ │ │ └── CabRegister.cpp │ │ │ │ │ ├── Chm │ │ │ │ │ │ ├── ChmHandler.cpp │ │ │ │ │ │ ├── ChmHandler.h │ │ │ │ │ │ ├── ChmIn.cpp │ │ │ │ │ │ └── ChmIn.h │ │ │ │ │ ├── ComHandler.cpp │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ ├── FindSignature.cpp │ │ │ │ │ │ ├── FindSignature.h │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ ├── OutStreamWithSha1.cpp │ │ │ │ │ │ ├── OutStreamWithSha1.h │ │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ │ └── ParseProperties.h │ │ │ │ │ ├── CpioHandler.cpp │ │ │ │ │ ├── CramfsHandler.cpp │ │ │ │ │ ├── DeflateProps.cpp │ │ │ │ │ ├── DeflateProps.h │ │ │ │ │ ├── DllExports2.cpp │ │ │ │ │ ├── DmgHandler.cpp │ │ │ │ │ ├── ElfHandler.cpp │ │ │ │ │ ├── ExtHandler.cpp │ │ │ │ │ ├── FatHandler.cpp │ │ │ │ │ ├── FlvHandler.cpp │ │ │ │ │ ├── GptHandler.cpp │ │ │ │ │ ├── GzHandler.cpp │ │ │ │ │ ├── HandlerCont.cpp │ │ │ │ │ ├── HandlerCont.h │ │ │ │ │ ├── HfsHandler.cpp │ │ │ │ │ ├── IArchive.h │ │ │ │ │ ├── IhexHandler.cpp │ │ │ │ │ ├── Iso │ │ │ │ │ │ ├── IsoHandler.cpp │ │ │ │ │ │ ├── IsoHandler.h │ │ │ │ │ │ ├── IsoHeader.cpp │ │ │ │ │ │ ├── IsoHeader.h │ │ │ │ │ │ ├── IsoIn.cpp │ │ │ │ │ │ ├── IsoIn.h │ │ │ │ │ │ ├── IsoItem.h │ │ │ │ │ │ └── IsoRegister.cpp │ │ │ │ │ ├── LzhHandler.cpp │ │ │ │ │ ├── LzmaHandler.cpp │ │ │ │ │ ├── MachoHandler.cpp │ │ │ │ │ ├── MbrHandler.cpp │ │ │ │ │ ├── MslzHandler.cpp │ │ │ │ │ ├── MubHandler.cpp │ │ │ │ │ ├── Nsis │ │ │ │ │ │ ├── NsisDecode.cpp │ │ │ │ │ │ ├── NsisDecode.h │ │ │ │ │ │ ├── NsisHandler.cpp │ │ │ │ │ │ ├── NsisHandler.h │ │ │ │ │ │ ├── NsisIn.cpp │ │ │ │ │ │ ├── NsisIn.h │ │ │ │ │ │ └── NsisRegister.cpp │ │ │ │ │ ├── NtfsHandler.cpp │ │ │ │ │ ├── PeHandler.cpp │ │ │ │ │ ├── PpmdHandler.cpp │ │ │ │ │ ├── QcowHandler.cpp │ │ │ │ │ ├── Rar │ │ │ │ │ │ ├── Rar5Handler.cpp │ │ │ │ │ │ ├── Rar5Handler.h │ │ │ │ │ │ ├── RarHandler.cpp │ │ │ │ │ │ ├── RarHandler.h │ │ │ │ │ │ ├── RarHeader.h │ │ │ │ │ │ ├── RarItem.h │ │ │ │ │ │ └── RarVol.h │ │ │ │ │ ├── RpmHandler.cpp │ │ │ │ │ ├── SplitHandler.cpp │ │ │ │ │ ├── SquashfsHandler.cpp │ │ │ │ │ ├── SwfHandler.cpp │ │ │ │ │ ├── Tar │ │ │ │ │ │ ├── TarHandler.cpp │ │ │ │ │ │ ├── TarHandler.h │ │ │ │ │ │ ├── TarHandlerOut.cpp │ │ │ │ │ │ ├── TarHeader.cpp │ │ │ │ │ │ ├── TarHeader.h │ │ │ │ │ │ ├── TarIn.cpp │ │ │ │ │ │ ├── TarIn.h │ │ │ │ │ │ ├── TarItem.h │ │ │ │ │ │ ├── TarOut.cpp │ │ │ │ │ │ ├── TarOut.h │ │ │ │ │ │ ├── TarRegister.cpp │ │ │ │ │ │ ├── TarUpdate.cpp │ │ │ │ │ │ └── TarUpdate.h │ │ │ │ │ ├── Udf │ │ │ │ │ │ ├── UdfHandler.cpp │ │ │ │ │ │ ├── UdfHandler.h │ │ │ │ │ │ ├── UdfIn.cpp │ │ │ │ │ │ └── UdfIn.h │ │ │ │ │ ├── UefiHandler.cpp │ │ │ │ │ ├── VdiHandler.cpp │ │ │ │ │ ├── VhdHandler.cpp │ │ │ │ │ ├── VmdkHandler.cpp │ │ │ │ │ ├── Wim │ │ │ │ │ │ ├── WimHandler.cpp │ │ │ │ │ │ ├── WimHandler.h │ │ │ │ │ │ ├── WimHandlerOut.cpp │ │ │ │ │ │ ├── WimIn.cpp │ │ │ │ │ │ ├── WimIn.h │ │ │ │ │ │ └── WimRegister.cpp │ │ │ │ │ ├── XarHandler.cpp │ │ │ │ │ ├── XzHandler.cpp │ │ │ │ │ ├── XzHandler.h │ │ │ │ │ ├── ZHandler.cpp │ │ │ │ │ ├── Zip │ │ │ │ │ │ ├── ZipAddCommon.cpp │ │ │ │ │ │ ├── ZipAddCommon.h │ │ │ │ │ │ ├── ZipCompressionMode.h │ │ │ │ │ │ ├── ZipHandler.cpp │ │ │ │ │ │ ├── ZipHandler.h │ │ │ │ │ │ ├── ZipHandlerOut.cpp │ │ │ │ │ │ ├── ZipHeader.h │ │ │ │ │ │ ├── ZipIn.cpp │ │ │ │ │ │ ├── ZipIn.h │ │ │ │ │ │ ├── ZipItem.cpp │ │ │ │ │ │ ├── ZipItem.h │ │ │ │ │ │ ├── ZipOut.cpp │ │ │ │ │ │ ├── ZipOut.h │ │ │ │ │ │ ├── ZipRegister.cpp │ │ │ │ │ │ ├── ZipUpdate.cpp │ │ │ │ │ │ └── ZipUpdate.h │ │ │ │ │ └── ZstdHandler.cpp │ │ │ │ ├── Bundles │ │ │ │ │ ├── Alone │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile.list │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile.list │ │ │ │ │ ├── AloneGCOV │ │ │ │ │ │ └── makefile │ │ │ │ │ ├── Format7zFree │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile.list │ │ │ │ │ ├── LzmaCon │ │ │ │ │ │ ├── LzmaAlone.cpp │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile.list │ │ │ │ │ └── SFXCon │ │ │ │ │ │ ├── SfxCon.cpp │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile.list │ │ │ │ ├── CMAKE │ │ │ │ │ ├── 7zFM │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── 7zG │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── 7z_ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── 7za │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── 7zr │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Format7zFree │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── generate.sh │ │ │ │ │ └── generate_xcode.sh │ │ │ │ ├── Common │ │ │ │ │ ├── CWrappers.cpp │ │ │ │ │ ├── CWrappers.h │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ ├── MemBlocks.cpp │ │ │ │ │ ├── MemBlocks.h │ │ │ │ │ ├── MethodId.cpp │ │ │ │ │ ├── MethodId.h │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ ├── OffsetStream.cpp │ │ │ │ │ ├── OffsetStream.h │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ ├── OutMemStream.cpp │ │ │ │ │ ├── OutMemStream.h │ │ │ │ │ ├── ProgressMt.cpp │ │ │ │ │ ├── ProgressMt.h │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ ├── PropId.cpp │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ ├── UniqBlocks.cpp │ │ │ │ │ ├── UniqBlocks.h │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ └── VirtThread.h │ │ │ │ ├── Compress │ │ │ │ │ ├── BZip2Const.h │ │ │ │ │ ├── BZip2Crc.cpp │ │ │ │ │ ├── BZip2Crc.h │ │ │ │ │ ├── BZip2Decoder.cpp │ │ │ │ │ ├── BZip2Decoder.h │ │ │ │ │ ├── BZip2Encoder.cpp │ │ │ │ │ ├── BZip2Encoder.h │ │ │ │ │ ├── BZip2Register.cpp │ │ │ │ │ ├── Bcj2Coder.cpp │ │ │ │ │ ├── Bcj2Coder.h │ │ │ │ │ ├── Bcj2Register.cpp │ │ │ │ │ ├── BcjCoder.cpp │ │ │ │ │ ├── BcjCoder.h │ │ │ │ │ ├── BcjRegister.cpp │ │ │ │ │ ├── BitlDecoder.cpp │ │ │ │ │ ├── BitlDecoder.h │ │ │ │ │ ├── BitlEncoder.h │ │ │ │ │ ├── BitmDecoder.h │ │ │ │ │ ├── BitmEncoder.h │ │ │ │ │ ├── BranchMisc.cpp │ │ │ │ │ ├── BranchMisc.h │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ ├── CodecExports.cpp │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ ├── Deflate64Register.cpp │ │ │ │ │ ├── DeflateConst.h │ │ │ │ │ ├── DeflateDecoder.cpp │ │ │ │ │ ├── DeflateDecoder.h │ │ │ │ │ ├── DeflateEncoder.cpp │ │ │ │ │ ├── DeflateEncoder.h │ │ │ │ │ ├── DeflateRegister.cpp │ │ │ │ │ ├── DeltaFilter.cpp │ │ │ │ │ ├── DllExports2Compress.cpp │ │ │ │ │ ├── DllExportsCompress.cpp │ │ │ │ │ ├── HuffmanDecoder.h │ │ │ │ │ ├── ImplodeDecoder.cpp │ │ │ │ │ ├── ImplodeDecoder.h │ │ │ │ │ ├── ImplodeHuffmanDecoder.cpp │ │ │ │ │ ├── ImplodeHuffmanDecoder.h │ │ │ │ │ ├── LzOutWindow.cpp │ │ │ │ │ ├── LzOutWindow.h │ │ │ │ │ ├── LzhDecoder.cpp │ │ │ │ │ ├── LzhDecoder.h │ │ │ │ │ ├── Lzham │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── LzhamRegister.cpp │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── lzham.h │ │ │ │ │ │ │ ├── lzham_dynamic_lib.h │ │ │ │ │ │ │ ├── lzham_exports.inc │ │ │ │ │ │ │ ├── lzham_static_lib.h │ │ │ │ │ │ │ └── zlib.h │ │ │ │ │ │ ├── lzhamcomp │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── lzham_comp.h │ │ │ │ │ │ │ ├── lzham_lzbase.cpp │ │ │ │ │ │ │ ├── lzham_lzbase.h │ │ │ │ │ │ │ ├── lzham_lzcomp.cpp │ │ │ │ │ │ │ ├── lzham_lzcomp_internal.cpp │ │ │ │ │ │ │ ├── lzham_lzcomp_internal.h │ │ │ │ │ │ │ ├── lzham_lzcomp_state.cpp │ │ │ │ │ │ │ ├── lzham_match_accel.cpp │ │ │ │ │ │ │ ├── lzham_match_accel.h │ │ │ │ │ │ │ ├── lzham_null_threading.h │ │ │ │ │ │ │ ├── lzham_pthreads_threading.cpp │ │ │ │ │ │ │ ├── lzham_pthreads_threading.h │ │ │ │ │ │ │ ├── lzham_threading.h │ │ │ │ │ │ │ ├── lzham_win32_threading.cpp │ │ │ │ │ │ │ ├── lzham_win32_threading.h │ │ │ │ │ │ │ └── lzhamcomp.vcxproj │ │ │ │ │ │ ├── lzhamdecomp │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ ├── lzham_assert.cpp │ │ │ │ │ │ │ ├── lzham_assert.h │ │ │ │ │ │ │ ├── lzham_checksum.cpp │ │ │ │ │ │ │ ├── lzham_checksum.h │ │ │ │ │ │ │ ├── lzham_config.h │ │ │ │ │ │ │ ├── lzham_core.h │ │ │ │ │ │ │ ├── lzham_decomp.h │ │ │ │ │ │ │ ├── lzham_helpers.h │ │ │ │ │ │ │ ├── lzham_huffman_codes.cpp │ │ │ │ │ │ │ ├── lzham_huffman_codes.h │ │ │ │ │ │ │ ├── lzham_lzdecomp.cpp │ │ │ │ │ │ │ ├── lzham_lzdecompbase.cpp │ │ │ │ │ │ │ ├── lzham_lzdecompbase.h │ │ │ │ │ │ │ ├── lzham_math.h │ │ │ │ │ │ │ ├── lzham_mem.cpp │ │ │ │ │ │ │ ├── lzham_mem.h │ │ │ │ │ │ │ ├── lzham_platform.cpp │ │ │ │ │ │ │ ├── lzham_platform.h │ │ │ │ │ │ │ ├── lzham_prefix_coding.cpp │ │ │ │ │ │ │ ├── lzham_prefix_coding.h │ │ │ │ │ │ │ ├── lzham_symbol_codec.cpp │ │ │ │ │ │ │ ├── lzham_symbol_codec.h │ │ │ │ │ │ │ ├── lzham_timer.cpp │ │ │ │ │ │ │ ├── lzham_timer.h │ │ │ │ │ │ │ ├── lzham_traits.h │ │ │ │ │ │ │ ├── lzham_types.h │ │ │ │ │ │ │ ├── lzham_utils.h │ │ │ │ │ │ │ ├── lzham_vector.cpp │ │ │ │ │ │ │ ├── lzham_vector.h │ │ │ │ │ │ │ └── lzhamdecomp.vcxproj │ │ │ │ │ │ ├── lzhamlib │ │ │ │ │ │ │ ├── lzham_lib.cpp │ │ │ │ │ │ │ └── lzhamlib.vcxproj │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile.list │ │ │ │ │ ├── Lzma2Decoder.cpp │ │ │ │ │ ├── Lzma2Decoder.h │ │ │ │ │ ├── Lzma2Encoder.cpp │ │ │ │ │ ├── Lzma2Encoder.h │ │ │ │ │ ├── Lzma2Register.cpp │ │ │ │ │ ├── LzmaDecoder.cpp │ │ │ │ │ ├── LzmaDecoder.h │ │ │ │ │ ├── LzmaEncoder.cpp │ │ │ │ │ ├── LzmaEncoder.h │ │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ │ ├── LzmsDecoder.cpp │ │ │ │ │ ├── LzmsDecoder.h │ │ │ │ │ ├── Lzx.h │ │ │ │ │ ├── LzxDecoder.cpp │ │ │ │ │ ├── LzxDecoder.h │ │ │ │ │ ├── Mtf8.h │ │ │ │ │ ├── PpmdDecoder.cpp │ │ │ │ │ ├── PpmdDecoder.h │ │ │ │ │ ├── PpmdEncoder.cpp │ │ │ │ │ ├── PpmdEncoder.h │ │ │ │ │ ├── PpmdRegister.cpp │ │ │ │ │ ├── PpmdZip.cpp │ │ │ │ │ ├── PpmdZip.h │ │ │ │ │ ├── QuantumDecoder.cpp │ │ │ │ │ ├── QuantumDecoder.h │ │ │ │ │ ├── Rar │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile.list │ │ │ │ │ ├── Rar1Decoder.cpp │ │ │ │ │ ├── Rar1Decoder.h │ │ │ │ │ ├── Rar2Decoder.cpp │ │ │ │ │ ├── Rar2Decoder.h │ │ │ │ │ ├── Rar3Decoder.cpp │ │ │ │ │ ├── Rar3Decoder.h │ │ │ │ │ ├── Rar3Vm.cpp │ │ │ │ │ ├── Rar3Vm.h │ │ │ │ │ ├── Rar5Decoder.cpp │ │ │ │ │ ├── Rar5Decoder.h │ │ │ │ │ ├── RarCodecsRegister.cpp │ │ │ │ │ ├── ShrinkDecoder.cpp │ │ │ │ │ ├── ShrinkDecoder.h │ │ │ │ │ ├── XpressDecoder.cpp │ │ │ │ │ ├── XpressDecoder.h │ │ │ │ │ ├── ZDecoder.cpp │ │ │ │ │ ├── ZDecoder.h │ │ │ │ │ ├── ZlibDecoder.cpp │ │ │ │ │ ├── ZlibDecoder.h │ │ │ │ │ ├── ZlibEncoder.cpp │ │ │ │ │ ├── ZlibEncoder.h │ │ │ │ │ ├── ZstdDecoder.cpp │ │ │ │ │ ├── ZstdDecoder.h │ │ │ │ │ ├── ZstdEncoder.cpp │ │ │ │ │ ├── ZstdEncoder.h │ │ │ │ │ └── ZstdRegister.cpp │ │ │ │ ├── Crypto │ │ │ │ │ ├── 7zAes.cpp │ │ │ │ │ ├── 7zAes.h │ │ │ │ │ ├── 7zAesRegister.cpp │ │ │ │ │ ├── HmacSha1.cpp │ │ │ │ │ ├── HmacSha1.h │ │ │ │ │ ├── HmacSha256.cpp │ │ │ │ │ ├── HmacSha256.h │ │ │ │ │ ├── MyAes.cpp │ │ │ │ │ ├── MyAes.h │ │ │ │ │ ├── MyAesReg.cpp │ │ │ │ │ ├── Pbkdf2HmacSha1.cpp │ │ │ │ │ ├── Pbkdf2HmacSha1.h │ │ │ │ │ ├── RandGen.cpp │ │ │ │ │ ├── RandGen.h │ │ │ │ │ ├── Rar20Crypto.cpp │ │ │ │ │ ├── Rar20Crypto.h │ │ │ │ │ ├── Rar5Aes.cpp │ │ │ │ │ ├── Rar5Aes.h │ │ │ │ │ ├── RarAes.cpp │ │ │ │ │ ├── RarAes.h │ │ │ │ │ ├── Sha1Cls.h │ │ │ │ │ ├── WzAes.cpp │ │ │ │ │ ├── WzAes.h │ │ │ │ │ ├── ZipCrypto.cpp │ │ │ │ │ ├── ZipCrypto.h │ │ │ │ │ ├── ZipStrong.cpp │ │ │ │ │ └── ZipStrong.h │ │ │ │ ├── Guid.txt │ │ │ │ ├── ICoder.h │ │ │ │ ├── IDecl.h │ │ │ │ ├── IPassword.h │ │ │ │ ├── IProgress.h │ │ │ │ ├── IStream.h │ │ │ │ ├── MyVersion.h │ │ │ │ ├── PREMAKE │ │ │ │ │ ├── generate.sh │ │ │ │ │ └── premake4.lua │ │ │ │ ├── PropID.h │ │ │ │ ├── Q7Zip │ │ │ │ │ ├── Q7Zip │ │ │ │ │ │ ├── Q7SortFilerProxyModel.cpp │ │ │ │ │ │ ├── Q7SortFilerProxyModel.h │ │ │ │ │ │ ├── Q7Zip.pro │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── q7filemanager.cpp │ │ │ │ │ │ └── q7filemanager.h │ │ │ │ │ ├── all.pro │ │ │ │ │ └── util7zip │ │ │ │ │ │ ├── util7zip.cpp │ │ │ │ │ │ └── util7zip.pro │ │ │ │ ├── QMAKE │ │ │ │ │ ├── 7z_ │ │ │ │ │ │ └── 7z_.pro │ │ │ │ │ ├── 7za │ │ │ │ │ │ └── 7za.pro │ │ │ │ │ ├── 7zr │ │ │ │ │ │ └── 7zr.pro │ │ │ │ │ ├── Format7zFree │ │ │ │ │ │ └── Format7zFree.pro │ │ │ │ │ ├── Lzham │ │ │ │ │ │ └── Lzham.pro │ │ │ │ │ ├── Rar │ │ │ │ │ │ └── Rar.pro │ │ │ │ │ ├── all.pro │ │ │ │ │ └── test_lib │ │ │ │ │ │ └── test_lib.pro │ │ │ │ ├── TEST │ │ │ │ │ └── TestUI │ │ │ │ │ │ ├── TestUI.cpp │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── makefile.depend │ │ │ │ │ │ └── makefile.list │ │ │ │ └── UI │ │ │ │ │ ├── Agent │ │ │ │ │ ├── Agent.cpp │ │ │ │ │ ├── Agent.h │ │ │ │ │ ├── AgentOut.cpp │ │ │ │ │ ├── AgentProxy.cpp │ │ │ │ │ ├── AgentProxy.h │ │ │ │ │ ├── ArchiveFolder.cpp │ │ │ │ │ ├── ArchiveFolderOpen.cpp │ │ │ │ │ ├── ArchiveFolderOut.cpp │ │ │ │ │ ├── IFolderArchive.h │ │ │ │ │ ├── UpdateCallbackAgent.cpp │ │ │ │ │ └── UpdateCallbackAgent.h │ │ │ │ │ ├── Client7z │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.depend │ │ │ │ │ └── makefile.list │ │ │ │ │ ├── ClientCodec │ │ │ │ │ ├── ClientCodec.cpp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.depend │ │ │ │ │ └── makefile.list │ │ │ │ │ ├── Common │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ ├── Bench.cpp │ │ │ │ │ ├── Bench.h │ │ │ │ │ ├── CompressCall.cpp │ │ │ │ │ ├── CompressCall.h │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ ├── DirItem.h │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ ├── Extract.h │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ ├── HashCalc.cpp │ │ │ │ │ ├── HashCalc.h │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ ├── Property.h │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ ├── Update.cpp │ │ │ │ │ ├── Update.h │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ ├── ZipRegistry.cpp │ │ │ │ │ └── ZipRegistry.h │ │ │ │ │ ├── Console │ │ │ │ │ ├── BenchCon.cpp │ │ │ │ │ ├── BenchCon.h │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ ├── HashCon.cpp │ │ │ │ │ ├── HashCon.h │ │ │ │ │ ├── List.cpp │ │ │ │ │ ├── List.h │ │ │ │ │ ├── Main.cpp │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.depend │ │ │ │ │ └── makefile.list │ │ │ │ │ ├── Explorer │ │ │ │ │ ├── ContextMenu.h │ │ │ │ │ ├── MyMessages.cpp │ │ │ │ │ └── MyMessages.h │ │ │ │ │ ├── FileManager │ │ │ │ │ ├── App.cpp │ │ │ │ │ ├── App.h │ │ │ │ │ ├── AppState.h │ │ │ │ │ ├── BrowseDialog.h │ │ │ │ │ ├── ClassDefs.cpp │ │ │ │ │ ├── ComboDialog.cpp │ │ │ │ │ ├── ComboDialog.h │ │ │ │ │ ├── ComboDialogRes.h │ │ │ │ │ ├── ComboDialog_rc.cpp │ │ │ │ │ ├── CopyDialog.cpp │ │ │ │ │ ├── CopyDialog.h │ │ │ │ │ ├── CopyDialogRes.h │ │ │ │ │ ├── CopyDialog_rc.cpp │ │ │ │ │ ├── DialogSize.h │ │ │ │ │ ├── ExtractCallback.cpp │ │ │ │ │ ├── ExtractCallback.h │ │ │ │ │ ├── FM.cpp │ │ │ │ │ ├── FM_rc.cpp │ │ │ │ │ ├── FSDrives.cpp │ │ │ │ │ ├── FSDrives.h │ │ │ │ │ ├── FSFolder.cpp │ │ │ │ │ ├── FSFolder.h │ │ │ │ │ ├── FSFolderCopy.cpp │ │ │ │ │ ├── FileFolderPluginOpen.cpp │ │ │ │ │ ├── FileFolderPluginOpen.h │ │ │ │ │ ├── FormatUtils.cpp │ │ │ │ │ ├── FormatUtils.h │ │ │ │ │ ├── HelpUtils.h │ │ │ │ │ ├── IFolder.h │ │ │ │ │ ├── LangUtils.cpp │ │ │ │ │ ├── LangUtils.h │ │ │ │ │ ├── ListViewDialog.cpp │ │ │ │ │ ├── ListViewDialog.h │ │ │ │ │ ├── ListViewDialogRes.h │ │ │ │ │ ├── ListViewDialog_rc.cpp │ │ │ │ │ ├── MessagesDialog.cpp │ │ │ │ │ ├── MessagesDialog.h │ │ │ │ │ ├── MessagesDialogRes.h │ │ │ │ │ ├── MessagesDialog_rc.cpp │ │ │ │ │ ├── MyLoadMenu.cpp │ │ │ │ │ ├── MyLoadMenu.h │ │ │ │ │ ├── MyWindowsNew.h │ │ │ │ │ ├── OpenCallback.cpp │ │ │ │ │ ├── OpenCallback.h │ │ │ │ │ ├── OverwriteDialog.cpp │ │ │ │ │ ├── OverwriteDialog.h │ │ │ │ │ ├── OverwriteDialogRes.h │ │ │ │ │ ├── OverwriteDialog_rc.cpp │ │ │ │ │ ├── Panel.cpp │ │ │ │ │ ├── Panel.h │ │ │ │ │ ├── PanelCopy.cpp │ │ │ │ │ ├── PanelCrc.cpp │ │ │ │ │ ├── PanelFolderChange.cpp │ │ │ │ │ ├── PanelItemOpen.cpp │ │ │ │ │ ├── PanelItems.cpp │ │ │ │ │ ├── PanelListNotify.cpp │ │ │ │ │ ├── PanelMenu.cpp │ │ │ │ │ ├── PanelOperations.cpp │ │ │ │ │ ├── PanelSelect.cpp │ │ │ │ │ ├── PanelSort.cpp │ │ │ │ │ ├── PanelSplitFile.cpp │ │ │ │ │ ├── PasswordDialog.cpp │ │ │ │ │ ├── PasswordDialog.h │ │ │ │ │ ├── PasswordDialogRes.h │ │ │ │ │ ├── PasswordDialog_rc.cpp │ │ │ │ │ ├── PluginInterface.h │ │ │ │ │ ├── PluginLoader.h │ │ │ │ │ ├── ProgramLocation.cpp │ │ │ │ │ ├── ProgramLocation.h │ │ │ │ │ ├── ProgressDialog2.cpp │ │ │ │ │ ├── ProgressDialog2.h │ │ │ │ │ ├── ProgressDialog2Res.h │ │ │ │ │ ├── ProgressDialog2_rc.cpp │ │ │ │ │ ├── ProgressDialogRes.h │ │ │ │ │ ├── PropertyName.cpp │ │ │ │ │ ├── PropertyName.h │ │ │ │ │ ├── PropertyNameRes.h │ │ │ │ │ ├── RegistryAssociations.cpp │ │ │ │ │ ├── RegistryAssociations.h │ │ │ │ │ ├── RegistryPlugins.h │ │ │ │ │ ├── RegistryUtils.cpp │ │ │ │ │ ├── RegistryUtils.h │ │ │ │ │ ├── RootFolder.cpp │ │ │ │ │ ├── RootFolder.h │ │ │ │ │ ├── SplitDialog.cpp │ │ │ │ │ ├── SplitDialog.h │ │ │ │ │ ├── SplitDialogRes.h │ │ │ │ │ ├── SplitDialog_rc.cpp │ │ │ │ │ ├── SplitUtils.cpp │ │ │ │ │ ├── SplitUtils.h │ │ │ │ │ ├── StringUtils.cpp │ │ │ │ │ ├── StringUtils.h │ │ │ │ │ ├── SysIconUtils.cpp │ │ │ │ │ ├── SysIconUtils.h │ │ │ │ │ ├── TextPairs.cpp │ │ │ │ │ ├── TextPairs.h │ │ │ │ │ ├── UpdateCallback100.cpp │ │ │ │ │ ├── UpdateCallback100.h │ │ │ │ │ ├── ViewSettings.cpp │ │ │ │ │ ├── ViewSettings.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.depend │ │ │ │ │ ├── makefile.list │ │ │ │ │ ├── res │ │ │ │ │ │ ├── Add2PNG.h │ │ │ │ │ │ ├── AddPNG.h │ │ │ │ │ │ ├── Copy2PNG.h │ │ │ │ │ │ ├── CopyPNG.h │ │ │ │ │ │ ├── Delete2PNG.h │ │ │ │ │ │ ├── DeletePNG.h │ │ │ │ │ │ ├── Extract2PNG.h │ │ │ │ │ │ ├── ExtractPNG.h │ │ │ │ │ │ ├── Info2PNG.h │ │ │ │ │ │ ├── InfoPNG.h │ │ │ │ │ │ ├── Move2PNG.h │ │ │ │ │ │ ├── MovePNG.h │ │ │ │ │ │ ├── ParentFolder.h │ │ │ │ │ │ ├── Test2PNG.h │ │ │ │ │ │ └── TestPNG.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── resourceGui.h │ │ │ │ │ └── wxFM.cpp │ │ │ │ │ ├── GUI │ │ │ │ │ ├── BenchmarkDialog.cpp │ │ │ │ │ ├── BenchmarkDialog.h │ │ │ │ │ ├── BenchmarkDialogRes.h │ │ │ │ │ ├── BenchmarkDialog_rc.cpp │ │ │ │ │ ├── CompressDialog.cpp │ │ │ │ │ ├── CompressDialog.h │ │ │ │ │ ├── CompressDialogRes.h │ │ │ │ │ ├── CompressDialog_rc.cpp │ │ │ │ │ ├── ExtractDialog.cpp │ │ │ │ │ ├── ExtractDialog.h │ │ │ │ │ ├── ExtractDialogRes.h │ │ │ │ │ ├── ExtractDialog_rc.cpp │ │ │ │ │ ├── ExtractGUI.cpp │ │ │ │ │ ├── ExtractGUI.h │ │ │ │ │ ├── ExtractRes.h │ │ │ │ │ ├── GUI.cpp │ │ │ │ │ ├── HashGUI.cpp │ │ │ │ │ ├── HashGUI.h │ │ │ │ │ ├── UpdateCallbackGUI.cpp │ │ │ │ │ ├── UpdateCallbackGUI.h │ │ │ │ │ ├── UpdateCallbackGUI2.cpp │ │ │ │ │ ├── UpdateCallbackGUI2.h │ │ │ │ │ ├── UpdateGUI.cpp │ │ │ │ │ ├── UpdateGUI.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.depend │ │ │ │ │ ├── makefile.list │ │ │ │ │ ├── resource2.h │ │ │ │ │ ├── resource3.h │ │ │ │ │ └── wxGUI.cpp │ │ │ │ │ └── P7ZIP │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.depend │ │ │ │ │ ├── makefile.list │ │ │ │ │ └── wxP7ZIP.cpp │ │ │ ├── ANDROID │ │ │ │ ├── 7z │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── makefile │ │ │ │ ├── 7za │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── makefile │ │ │ │ ├── 7zr │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── makefile │ │ │ │ ├── Format7zFree │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── makefile │ │ │ │ ├── Lzham │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ ├── makefile │ │ │ │ │ └── obj │ │ │ │ │ │ └── local │ │ │ │ │ │ └── armeabi │ │ │ │ │ │ └── objs │ │ │ │ │ │ └── Lzham │ │ │ │ │ │ └── __ │ │ │ │ │ │ └── __ │ │ │ │ │ │ └── __ │ │ │ │ │ │ └── __ │ │ │ │ │ │ └── CPP │ │ │ │ │ │ └── 7zip │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── StreamUtils.o │ │ │ │ │ │ └── StreamUtils.o.d │ │ │ │ │ │ └── Compress │ │ │ │ │ │ ├── CodecExports.o │ │ │ │ │ │ ├── CodecExports.o.d │ │ │ │ │ │ ├── DllExportsCompress.o │ │ │ │ │ │ └── DllExportsCompress.o.d │ │ │ │ ├── MemLat │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── makefile │ │ │ │ ├── PipeLen │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── makefile │ │ │ │ ├── makefile │ │ │ │ ├── makefile.inc │ │ │ │ ├── readme.txt │ │ │ │ └── test_lib │ │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Application.mk │ │ │ │ │ └── makefile │ │ │ ├── Common │ │ │ │ ├── AutoPtr.h │ │ │ │ ├── CRC.cpp │ │ │ │ ├── C_FileIO.cpp │ │ │ │ ├── C_FileIO.h │ │ │ │ ├── ComTry.h │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ ├── CommandLineParser.h │ │ │ │ ├── Common.h │ │ │ │ ├── CrcReg.cpp │ │ │ │ ├── Defs.h │ │ │ │ ├── DynLimBuf.cpp │ │ │ │ ├── DynLimBuf.h │ │ │ │ ├── DynamicBuffer.h │ │ │ │ ├── IntToString.cpp │ │ │ │ ├── IntToString.h │ │ │ │ ├── Lang.cpp │ │ │ │ ├── Lang.h │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ ├── ListFileUtils.h │ │ │ │ ├── MyBuffer.h │ │ │ │ ├── MyCom.h │ │ │ │ ├── MyException.h │ │ │ │ ├── MyGuidDef.h │ │ │ │ ├── MyInitGuid.h │ │ │ │ ├── MyLinux.h │ │ │ │ ├── MyMap.cpp │ │ │ │ ├── MyMap.h │ │ │ │ ├── MyString.cpp │ │ │ │ ├── MyString.h │ │ │ │ ├── MyTypes.h │ │ │ │ ├── MyUnknown.h │ │ │ │ ├── MyVector.cpp │ │ │ │ ├── MyVector.h │ │ │ │ ├── MyWindows.cpp │ │ │ │ ├── MyWindows.h │ │ │ │ ├── MyXml.cpp │ │ │ │ ├── MyXml.h │ │ │ │ ├── NewHandler.cpp │ │ │ │ ├── NewHandler.h │ │ │ │ ├── Random.h │ │ │ │ ├── Sha1Reg.cpp │ │ │ │ ├── Sha256Reg.cpp │ │ │ │ ├── StdInStream.cpp │ │ │ │ ├── StdInStream.h │ │ │ │ ├── StdOutStream.cpp │ │ │ │ ├── StdOutStream.h │ │ │ │ ├── StringConvert.cpp │ │ │ │ ├── StringConvert.h │ │ │ │ ├── StringToInt.cpp │ │ │ │ ├── StringToInt.h │ │ │ │ ├── TextConfig.cpp │ │ │ │ ├── TextConfig.h │ │ │ │ ├── UTFConvert.cpp │ │ │ │ ├── UTFConvert.h │ │ │ │ ├── Wildcard.cpp │ │ │ │ ├── Wildcard.h │ │ │ │ └── XzCrc64Reg.cpp │ │ │ ├── Windows │ │ │ │ ├── COM.cpp │ │ │ │ ├── COM.h │ │ │ │ ├── Clipboard.cpp │ │ │ │ ├── Clipboard.h │ │ │ │ ├── CommonDialog.h │ │ │ │ ├── Control │ │ │ │ │ ├── ComboBox.h │ │ │ │ │ ├── Controls.cpp │ │ │ │ │ ├── Dialog.cpp │ │ │ │ │ ├── Dialog.h │ │ │ │ │ ├── DialogImpl.h │ │ │ │ │ ├── Edit.h │ │ │ │ │ ├── ListView.h │ │ │ │ │ ├── ProgressBar.h │ │ │ │ │ ├── Static.h │ │ │ │ │ ├── StatusBar.h │ │ │ │ │ ├── Window2.cpp │ │ │ │ │ └── Window2.h │ │ │ │ ├── DLL.cpp │ │ │ │ ├── DLL.h │ │ │ │ ├── Defs.h │ │ │ │ ├── ErrorMsg.cpp │ │ │ │ ├── ErrorMsg.h │ │ │ │ ├── FileDir.cpp │ │ │ │ ├── FileDir.h │ │ │ │ ├── FileFind.cpp │ │ │ │ ├── FileFind.h │ │ │ │ ├── FileIO.cpp │ │ │ │ ├── FileIO.h │ │ │ │ ├── FileName.cpp │ │ │ │ ├── FileName.h │ │ │ │ ├── Menu.h │ │ │ │ ├── NtCheck.h │ │ │ │ ├── PropVariant.cpp │ │ │ │ ├── PropVariant.h │ │ │ │ ├── PropVariantConv.cpp │ │ │ │ ├── PropVariantConv.h │ │ │ │ ├── PropVariantUtils.cpp │ │ │ │ ├── PropVariantUtils.h │ │ │ │ ├── Registry.cpp │ │ │ │ ├── Registry.h │ │ │ │ ├── ResourceString.h │ │ │ │ ├── Shell.h │ │ │ │ ├── Synchronization.cpp │ │ │ │ ├── Synchronization.h │ │ │ │ ├── Synchronization2.h │ │ │ │ ├── System.cpp │ │ │ │ ├── System.cpp.back │ │ │ │ ├── System.h │ │ │ │ ├── Thread.h │ │ │ │ ├── TimeUtils.cpp │ │ │ │ ├── TimeUtils.h │ │ │ │ ├── Window.cpp │ │ │ │ └── Window.h │ │ │ ├── include_windows │ │ │ │ ├── basetyps.h │ │ │ │ ├── tchar.h │ │ │ │ └── windows.h │ │ │ └── myWindows │ │ │ │ ├── StdAfx.h │ │ │ │ ├── config.h │ │ │ │ ├── initguid.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.depend │ │ │ │ ├── makefile.list │ │ │ │ ├── myAddExeFlag.cpp │ │ │ │ ├── myPrivate.h │ │ │ │ ├── mySplitCommandLine.cpp │ │ │ │ ├── test_lib.cpp │ │ │ │ ├── wine_GetXXXDefaultLangID.cpp │ │ │ │ └── wine_date_and_time.cpp │ │ ├── ChangeLog │ │ ├── DOC │ │ │ ├── 7zC.txt │ │ │ ├── 7zFormat.txt │ │ │ ├── License.txt │ │ │ ├── MANUAL │ │ │ │ ├── cmdline │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── add.htm │ │ │ │ │ │ ├── bench.htm │ │ │ │ │ │ ├── delete.htm │ │ │ │ │ │ ├── extract.htm │ │ │ │ │ │ ├── extract_full.htm │ │ │ │ │ │ ├── hash.htm │ │ │ │ │ │ ├── index.htm │ │ │ │ │ │ ├── list.htm │ │ │ │ │ │ ├── rename.htm │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ ├── test.htm │ │ │ │ │ │ └── update.htm │ │ │ │ │ ├── exit_codes.htm │ │ │ │ │ ├── index.htm │ │ │ │ │ ├── style.css │ │ │ │ │ ├── switches │ │ │ │ │ │ ├── ar_exclude.htm │ │ │ │ │ │ ├── ar_include.htm │ │ │ │ │ │ ├── ar_no.htm │ │ │ │ │ │ ├── bb.htm │ │ │ │ │ │ ├── bs.htm │ │ │ │ │ │ ├── charset.htm │ │ │ │ │ │ ├── exclude.htm │ │ │ │ │ │ ├── include.htm │ │ │ │ │ │ ├── index.htm │ │ │ │ │ │ ├── large_pages.htm │ │ │ │ │ │ ├── list_tech.htm │ │ │ │ │ │ ├── method.htm │ │ │ │ │ │ ├── output_dir.htm │ │ │ │ │ │ ├── overwrite.htm │ │ │ │ │ │ ├── password.htm │ │ │ │ │ │ ├── recurse.htm │ │ │ │ │ │ ├── sa.htm │ │ │ │ │ │ ├── scc.htm │ │ │ │ │ │ ├── scrc.htm │ │ │ │ │ │ ├── sdel.htm │ │ │ │ │ │ ├── sfx.htm │ │ │ │ │ │ ├── shared.htm │ │ │ │ │ │ ├── sni.htm │ │ │ │ │ │ ├── sns.htm │ │ │ │ │ │ ├── spf.htm │ │ │ │ │ │ ├── ssc.htm │ │ │ │ │ │ ├── stdin.htm │ │ │ │ │ │ ├── stdout.htm │ │ │ │ │ │ ├── stl.htm │ │ │ │ │ │ ├── stop_switch.htm │ │ │ │ │ │ ├── stx.htm │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ ├── type.htm │ │ │ │ │ │ ├── update.htm │ │ │ │ │ │ ├── volume.htm │ │ │ │ │ │ ├── working_dir.htm │ │ │ │ │ │ └── yes.htm │ │ │ │ │ └── syntax.htm │ │ │ │ ├── fm │ │ │ │ │ ├── about.htm │ │ │ │ │ ├── benchmark.htm │ │ │ │ │ ├── index.htm │ │ │ │ │ ├── menu.htm │ │ │ │ │ ├── options.htm │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── 7-zip │ │ │ │ │ │ │ ├── add.htm │ │ │ │ │ │ │ ├── extract.htm │ │ │ │ │ │ │ ├── index.htm │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── index.htm │ │ │ │ │ │ └── style.css │ │ │ │ │ └── style.css │ │ │ │ ├── general │ │ │ │ │ ├── 7z.htm │ │ │ │ │ ├── faq.htm │ │ │ │ │ ├── formats.htm │ │ │ │ │ ├── index.htm │ │ │ │ │ ├── license.htm │ │ │ │ │ ├── performance.htm │ │ │ │ │ ├── style.css │ │ │ │ │ └── thanks.htm │ │ │ │ ├── start.htm │ │ │ │ └── style.css │ │ │ ├── Methods.txt │ │ │ ├── copying.txt │ │ │ ├── lzma.txt │ │ │ ├── readme.txt │ │ │ ├── src-history.txt │ │ │ └── unRarLicense.txt │ │ ├── GUI │ │ │ ├── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ │ └── p7zip.icns │ │ │ ├── Lang │ │ │ │ ├── af.txt │ │ │ │ ├── an.txt │ │ │ │ ├── ar.txt │ │ │ │ ├── ast.txt │ │ │ │ ├── az.txt │ │ │ │ ├── ba.txt │ │ │ │ ├── be.txt │ │ │ │ ├── bg.txt │ │ │ │ ├── bn.txt │ │ │ │ ├── br.txt │ │ │ │ ├── ca.txt │ │ │ │ ├── co.txt │ │ │ │ ├── cs.txt │ │ │ │ ├── cy.txt │ │ │ │ ├── da.txt │ │ │ │ ├── de.txt │ │ │ │ ├── el.txt │ │ │ │ ├── en.ttt │ │ │ │ ├── eo.txt │ │ │ │ ├── es.txt │ │ │ │ ├── et.txt │ │ │ │ ├── eu.txt │ │ │ │ ├── ext.txt │ │ │ │ ├── fa.txt │ │ │ │ ├── fi.txt │ │ │ │ ├── fr.txt │ │ │ │ ├── fur.txt │ │ │ │ ├── fy.txt │ │ │ │ ├── ga.txt │ │ │ │ ├── gl.txt │ │ │ │ ├── gu.txt │ │ │ │ ├── he.txt │ │ │ │ ├── hi.txt │ │ │ │ ├── hr.txt │ │ │ │ ├── hu.txt │ │ │ │ ├── hy.txt │ │ │ │ ├── id.txt │ │ │ │ ├── io.txt │ │ │ │ ├── is.txt │ │ │ │ ├── it.txt │ │ │ │ ├── ja.txt │ │ │ │ ├── ka.txt │ │ │ │ ├── kaa.txt │ │ │ │ ├── kk.txt │ │ │ │ ├── ko.txt │ │ │ │ ├── ku-ckb.txt │ │ │ │ ├── ku.txt │ │ │ │ ├── ky.txt │ │ │ │ ├── lij.txt │ │ │ │ ├── lt.txt │ │ │ │ ├── lv.txt │ │ │ │ ├── mk.txt │ │ │ │ ├── mn.txt │ │ │ │ ├── mng.txt │ │ │ │ ├── mng2.txt │ │ │ │ ├── mr.txt │ │ │ │ ├── ms.txt │ │ │ │ ├── nb.txt │ │ │ │ ├── ne.txt │ │ │ │ ├── nl.txt │ │ │ │ ├── nn.txt │ │ │ │ ├── pa-in.txt │ │ │ │ ├── pl.txt │ │ │ │ ├── ps.txt │ │ │ │ ├── pt-br.txt │ │ │ │ ├── pt.txt │ │ │ │ ├── ro.txt │ │ │ │ ├── ru.txt │ │ │ │ ├── sa.txt │ │ │ │ ├── si.txt │ │ │ │ ├── sk.txt │ │ │ │ ├── sl.txt │ │ │ │ ├── sq.txt │ │ │ │ ├── sr-spc.txt │ │ │ │ ├── sr-spl.txt │ │ │ │ ├── sv.txt │ │ │ │ ├── ta.txt │ │ │ │ ├── th.txt │ │ │ │ ├── tr.txt │ │ │ │ ├── tt.txt │ │ │ │ ├── ug.txt │ │ │ │ ├── uk.txt │ │ │ │ ├── uz.txt │ │ │ │ ├── va.txt │ │ │ │ ├── vi.txt │ │ │ │ ├── yo.txt │ │ │ │ ├── zh-cn.txt │ │ │ │ └── zh-tw.txt │ │ │ ├── kde3 │ │ │ │ ├── p7zip_compress.desktop │ │ │ │ ├── p7zip_compress2.desktop │ │ │ │ ├── p7zip_extract.desktop │ │ │ │ ├── p7zip_extract_subdir.desktop │ │ │ │ ├── p7zip_extract_to.desktop │ │ │ │ ├── p7zip_test.desktop │ │ │ │ └── readme.txt │ │ │ ├── kde4 │ │ │ │ ├── p7zip_compress.desktop │ │ │ │ ├── p7zip_compress2.desktop │ │ │ │ ├── p7zip_extract.desktop │ │ │ │ ├── p7zip_extract_subdir.desktop │ │ │ │ ├── p7zip_extract_to.desktop │ │ │ │ ├── p7zip_test.desktop │ │ │ │ └── readme.txt │ │ │ ├── p7zipForFilemanager │ │ │ ├── p7zip_16.icns │ │ │ ├── p7zip_16.png │ │ │ ├── p7zip_16_ok.png │ │ │ ├── p7zip_32.png │ │ │ └── p7zip_32.xpm │ │ ├── README │ │ ├── TODO │ │ ├── Utils │ │ │ ├── CPUTest │ │ │ │ ├── Benchmark.h │ │ │ │ ├── MemLat │ │ │ │ │ ├── MemLat.cpp │ │ │ │ │ ├── Walk.c │ │ │ │ │ ├── Walk.h │ │ │ │ │ ├── Walk32.asm │ │ │ │ │ ├── Walk64.asm │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.depend │ │ │ │ │ └── makefile.list │ │ │ │ ├── MyVersion.h │ │ │ │ └── PipeLen │ │ │ │ │ ├── MemLat │ │ │ │ │ ├── PipeLen.cpp │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.depend │ │ │ │ │ ├── makefile.list │ │ │ │ │ └── pl32.asm │ │ │ ├── bin_to_sources.py │ │ │ ├── file_7z.py │ │ │ ├── file_7zCon_sfx.py │ │ │ ├── file_7zFM.py │ │ │ ├── file_7zG.py │ │ │ ├── file_7z_so.py │ │ │ ├── file_7za.py │ │ │ ├── file_7zr.py │ │ │ ├── file_Client7z.py │ │ │ ├── file_Codecs_Lzham_so.py │ │ │ ├── file_Codecs_Rar_so.py │ │ │ ├── file_LzmaCon.py │ │ │ ├── file_P7ZIP.py │ │ │ ├── file_TestUI.py │ │ │ └── generate.py │ │ ├── check │ │ │ ├── check.sh │ │ │ ├── check_7zr.sh │ │ │ ├── check_Client7z.sh │ │ │ ├── check_install.sh │ │ │ ├── clean_all.sh │ │ │ └── test │ │ │ │ ├── 7za.exe.lzma │ │ │ │ ├── 7za.exe.lzma86 │ │ │ │ ├── 7za.exe.lzma_eos │ │ │ │ ├── 7za.exe.xz │ │ │ │ ├── 7za433_7zip_bzip2.7z │ │ │ │ ├── 7za433_7zip_lzma.7z │ │ │ │ ├── 7za433_7zip_lzma2.7z │ │ │ │ ├── 7za433_7zip_lzma2_bcj2.7z │ │ │ │ ├── 7za433_7zip_lzma2_crypto.7z │ │ │ │ ├── 7za433_7zip_lzma_bcj2.7z │ │ │ │ ├── 7za433_7zip_lzma_crypto.7z │ │ │ │ ├── 7za433_7zip_ppmd.7z │ │ │ │ ├── 7za433_7zip_ppmd_bcj2.7z │ │ │ │ └── 7za433_tar.tar │ │ ├── contrib │ │ │ ├── VirtualFileSystemForMidnightCommander │ │ │ │ ├── ChangeLog │ │ │ │ ├── readme │ │ │ │ ├── readme.u7z │ │ │ │ └── u7z │ │ │ ├── gzip-like_CLI_wrapper_for_7z │ │ │ │ ├── README │ │ │ │ ├── check │ │ │ │ │ ├── check.sh │ │ │ │ │ └── files.tar │ │ │ │ ├── man1 │ │ │ │ │ └── p7zip.1 │ │ │ │ └── p7zip │ │ │ └── qnx630sp3 │ │ │ │ ├── qnx630sp3-shared │ │ │ │ └── qnx630sp3-static │ │ ├── install.sh │ │ ├── install_local_context_menu.sh │ │ ├── last_error │ │ ├── makefile │ │ ├── makefile.afl │ │ ├── makefile.aix_gcc │ │ ├── makefile.android_arm │ │ ├── makefile.beos │ │ ├── makefile.common │ │ ├── makefile.crc32 │ │ ├── makefile.cygwin │ │ ├── makefile.cygwin64 │ │ ├── makefile.cygwin64_asm │ │ ├── makefile.cygwin_asm │ │ ├── makefile.cygwin_clang │ │ ├── makefile.cygwin_clang_asm │ │ ├── makefile.djgpp │ │ ├── makefile.djgpp_watt │ │ ├── makefile.freebsd5 │ │ ├── makefile.freebsd6+ │ │ ├── makefile.glb │ │ ├── makefile.gprof │ │ ├── makefile.haiku │ │ ├── makefile.hpux-acc │ │ ├── makefile.hpux-acc_64 │ │ ├── makefile.hpux-gcc │ │ ├── makefile.linux_amd64 │ │ ├── makefile.linux_amd64_asm │ │ ├── makefile.linux_amd64_asm_icc │ │ ├── makefile.linux_amd64_sanitizer │ │ ├── makefile.linux_any_cpu │ │ ├── makefile.linux_any_cpu_gcc_4.X │ │ ├── makefile.linux_clang_amd64_asm │ │ ├── makefile.linux_clang_amd64_asm_sanitize │ │ ├── makefile.linux_cross_aarch64 │ │ ├── makefile.linux_cross_arm │ │ ├── makefile.linux_cross_djgpp │ │ ├── makefile.linux_cross_m68k │ │ ├── makefile.linux_cross_mipsel │ │ ├── makefile.linux_cross_ppc │ │ ├── makefile.linux_cross_ppc64 │ │ ├── makefile.linux_cross_ppc64le │ │ ├── makefile.linux_cross_s390x │ │ ├── makefile.linux_cross_sparc64 │ │ ├── makefile.linux_gcc6_sanitize │ │ ├── makefile.linux_gcc_2.95_no_need_for_libstdc │ │ ├── makefile.linux_other │ │ ├── makefile.linux_s390x │ │ ├── makefile.linux_scan-build │ │ ├── makefile.linux_valgrind │ │ ├── makefile.linux_x32 │ │ ├── makefile.linux_x86_asm_gcc_4.X │ │ ├── makefile.linux_x86_asm_gcc_4.X_fltk │ │ ├── makefile.linux_x86_asm_gcc_mudflap_4.X │ │ ├── makefile.linux_x86_asm_icc │ │ ├── makefile.linux_x86_icc │ │ ├── makefile.machine │ │ ├── makefile.macosx_gcc_32bits │ │ ├── makefile.macosx_gcc_32bits_asm │ │ ├── makefile.macosx_gcc_32bits_ppc │ │ ├── makefile.macosx_gcc_64bits │ │ ├── makefile.macosx_llvm_64bits │ │ ├── makefile.netbsd │ │ ├── makefile.netware_asm_gcc_3.X │ │ ├── makefile.oldmake │ │ ├── makefile.openbsd │ │ ├── makefile.openbsd_no_port │ │ ├── makefile.qnx_shared.bin │ │ ├── makefile.qnx_shared.so │ │ ├── makefile.qnx_static │ │ ├── makefile.solaris_sparc_CC_32 │ │ ├── makefile.solaris_sparc_CC_64 │ │ ├── makefile.solaris_sparc_gcc │ │ ├── makefile.solaris_x86 │ │ ├── makefile.tru64 │ │ └── man1 │ │ │ ├── 7z.1 │ │ │ ├── 7za.1 │ │ │ └── 7zr.1 │ └── test │ │ ├── CTests │ │ ├── JBindingTest.cpp │ │ └── JniToolsTest.cpp │ │ └── JavaTests │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ └── org.eclipse.jdt.ui.prefs │ │ ├── bin │ │ └── net │ │ │ └── sf │ │ │ └── sevenzipjbinding │ │ │ └── junit │ │ │ ├── AllTestSuite.class │ │ │ ├── ArchiveFormatTest.class │ │ │ ├── CloseableRule.class │ │ │ ├── CloseableStatement.class │ │ │ ├── DebugModeOnly.class │ │ │ ├── DebugModeOnlyTestRule.class │ │ │ ├── DeclareThrowsSevenZipExceptionTest.class │ │ │ ├── ExtractFileAbstractTest.class │ │ │ ├── JUnitInitializationTest.class │ │ │ ├── JUnitNativeTestBase.class │ │ │ ├── JUnitTestBase.class │ │ │ ├── PTest.class │ │ │ ├── SevenZipExceptionStackTracePrinterRule.class │ │ │ ├── TestBase.class │ │ │ ├── TestConfiguration.class │ │ │ ├── TestTestSuite.class │ │ │ ├── badarchive │ │ │ └── GarbageArchiveFileTest.class │ │ │ ├── bug │ │ │ ├── OpenMultipartCabWithNonVolumedCallbackTest.class │ │ │ ├── RarPasswordToLongCrash.class │ │ │ └── WrongCRCGetterInSimpleInterface.class │ │ │ ├── compression │ │ │ ├── CompressAbstractTest.class │ │ │ ├── CompressExceptionGetConnectedArchiveTest.class │ │ │ ├── CompressExceptionGetItemInformationTest.class │ │ │ ├── CompressFeatureAbstractMultpleFiles.class │ │ │ ├── CompressFeatureAbstractSingleFile.class │ │ │ ├── CompressFeatureSetLevel.class │ │ │ ├── CompressFeatureSetSolid.class │ │ │ ├── CompressFeatureSetThreadCount.class │ │ │ ├── CompressGenericSingleFile7zTest.class │ │ │ ├── CompressGenericSingleFileAbstractTest.class │ │ │ ├── CompressGenericSingleFileBZip2Test.class │ │ │ ├── CompressGenericSingleFileGZipTest.class │ │ │ ├── CompressGenericSingleFileTarTest.class │ │ │ ├── CompressGenericSingleFileZipTest.class │ │ │ ├── CompressMultipleFile7zTest.class │ │ │ ├── CompressMultipleFileAbstractTest.class │ │ │ ├── CompressMultipleFileTarTest.class │ │ │ ├── CompressMultipleFileZipTest.class │ │ │ ├── CompressNonGenericSingleFile7zTest.class │ │ │ ├── CompressNonGenericSingleFileAbstractTest.class │ │ │ ├── CompressNonGenericSingleFileBZip2Test.class │ │ │ ├── CompressNonGenericSingleFileGZipTest.class │ │ │ ├── CompressNonGenericSingleFileTarTest.class │ │ │ ├── CompressNonGenericSingleFileZipTest.class │ │ │ ├── CompressSingleFileAbstractTest.class │ │ │ ├── StandaloneCompressBZip2Test.class │ │ │ ├── StandaloneCompressGZipTest.class │ │ │ ├── StandaloneCompressSevenZipTest.class │ │ │ ├── StandaloneCompressTarTest.class │ │ │ ├── StandaloneCompressZipTest.class │ │ │ ├── StandaloneUpdateArchiveAddTest.class │ │ │ ├── StandaloneUpdateArchiveRemoveTest.class │ │ │ ├── StandaloneUpdateArchiveUpdateContentTest.class │ │ │ ├── StandaloneUpdateArchiveUpdatePropertiesTest.class │ │ │ ├── StandaloneUpdateNonGeneric7zTest.class │ │ │ ├── StandaloneUpdateNonGenericBZip2Test.class │ │ │ ├── StandaloneUpdateNonGenericGZipTest.class │ │ │ ├── StandaloneUpdateNonGenericTarTest.class │ │ │ ├── StandaloneUpdateNonGenericZipTest.class │ │ │ ├── TraceCompressionTest.class │ │ │ ├── UpdateAbstractTest.class │ │ │ ├── UpdateMultipleFilesAbstractTest.class │ │ │ ├── UpdateMultipleFilesGeneric7zTest.class │ │ │ ├── UpdateMultipleFilesGenericAbstractTest.class │ │ │ ├── UpdateMultipleFilesGenericTarTest.class │ │ │ ├── UpdateMultipleFilesGenericZipTest.class │ │ │ ├── UpdateMultipleFilesNonGeneric7zTest.class │ │ │ ├── UpdateMultipleFilesNonGenericAbstractTest.class │ │ │ ├── UpdateMultipleFilesNonGenericTarTest.class │ │ │ ├── UpdateMultipleFilesNonGenericZipTest.class │ │ │ ├── UpdateSingleFileAbstractTest.class │ │ │ ├── UpdateSingleFileGeneric7zTest.class │ │ │ ├── UpdateSingleFileGenericAbstractTest.class │ │ │ ├── UpdateSingleFileGenericBZip2Test.class │ │ │ ├── UpdateSingleFileGenericGZipTest.class │ │ │ ├── UpdateSingleFileGenericTarTest.class │ │ │ ├── UpdateSingleFileGenericZipTest.class │ │ │ ├── UpdateSingleFileNonGeneric7zTest.class │ │ │ ├── UpdateSingleFileNonGenericAbstractTest.class │ │ │ ├── UpdateSingleFileNonGenericBZip2Test.class │ │ │ ├── UpdateSingleFileNonGenericGZipTest.class │ │ │ ├── UpdateSingleFileNonGenericTarTest.class │ │ │ └── UpdateSingleFileNonGenericZipTest.class │ │ │ ├── encoding │ │ │ └── UnicodeFilenamesInArchive.class │ │ │ ├── initialization │ │ │ ├── InitializationDoesNotVerifyArtifactsTest.class │ │ │ ├── StandardInitializationTest.class │ │ │ └── VersionTest.class │ │ │ ├── jbindingtools │ │ │ ├── Callback1.class │ │ │ ├── ExceptionHandlingTest.class │ │ │ ├── JBindingTest.class │ │ │ └── JBindingToolsTestBase.class │ │ │ ├── jnitools │ │ │ ├── Interface1.class │ │ │ ├── Interface1Impl1.class │ │ │ ├── Interface1Impl12.class │ │ │ ├── Interface1Impl2.class │ │ │ ├── Interface2.class │ │ │ ├── Interface2Impl1.class │ │ │ ├── JNIToolsTest.class │ │ │ ├── JTestAbstractClass.class │ │ │ ├── JTestFinalClass.class │ │ │ └── ParamSpecTest.class │ │ │ ├── junittools │ │ │ ├── FailAndStackDumpOnTimeout.class │ │ │ ├── Multithreaded.class │ │ │ ├── MultithreadedAndExpectException.class │ │ │ └── MyRunner.class │ │ │ ├── multiplefiles │ │ │ ├── ExtractMultipleFileAbstractHeaderPassTest.class │ │ │ ├── ExtractMultipleFileAbstractPassTest.class │ │ │ ├── ExtractMultipleFileAbstractTest.class │ │ │ ├── ExtractMultipleFileArjTest.class │ │ │ ├── ExtractMultipleFileCabTest.class │ │ │ ├── ExtractMultipleFileCabVolumeTest.class │ │ │ ├── ExtractMultipleFileCabVolumeWithoutVolumedTest.class │ │ │ ├── ExtractMultipleFileCpioTest.class │ │ │ ├── ExtractMultipleFileDebTest.class │ │ │ ├── ExtractMultipleFileIsoTest.class │ │ │ ├── ExtractMultipleFileLzhTest.class │ │ │ ├── ExtractMultipleFileRarHeaderPassTest.class │ │ │ ├── ExtractMultipleFileRarPassTest.class │ │ │ ├── ExtractMultipleFileRarTest.class │ │ │ ├── ExtractMultipleFileRarVolumeHeaderPassTest.class │ │ │ ├── ExtractMultipleFileRarVolumePassTest.class │ │ │ ├── ExtractMultipleFileRarVolumeTest.class │ │ │ ├── ExtractMultipleFileSevenZipHeaderPassTest.class │ │ │ ├── ExtractMultipleFileSevenZipPassTest.class │ │ │ ├── ExtractMultipleFileSevenZipTest.class │ │ │ ├── ExtractMultipleFileSevenZipVolumeHeaderPassTest.class │ │ │ ├── ExtractMultipleFileSevenZipVolumePassTest.class │ │ │ ├── ExtractMultipleFileSevenZipVolumeTest.class │ │ │ ├── ExtractMultipleFileTarTest.class │ │ │ ├── ExtractMultipleFileUdfTest.class │ │ │ ├── ExtractMultipleFileWimTest.class │ │ │ ├── ExtractMultipleFileXarTest.class │ │ │ ├── ExtractMultipleFileZipPassTest.class │ │ │ └── ExtractMultipleFileZipTest.class │ │ │ ├── singlefile │ │ │ ├── ExtractSingleFileAbstractHeaderPassTest.class │ │ │ ├── ExtractSingleFileAbstractPassTest.class │ │ │ ├── ExtractSingleFileAbstractTest.class │ │ │ ├── ExtractSingleFileArjTest.class │ │ │ ├── ExtractSingleFileBzip2Test.class │ │ │ ├── ExtractSingleFileCabTest.class │ │ │ ├── ExtractSingleFileCabVolumeTest.class │ │ │ ├── ExtractSingleFileChmTest.class │ │ │ ├── ExtractSingleFileCpioTest.class │ │ │ ├── ExtractSingleFileDebTest.class │ │ │ ├── ExtractSingleFileGzipTest.class │ │ │ ├── ExtractSingleFileIsoTest.class │ │ │ ├── ExtractSingleFileLzhTest.class │ │ │ ├── ExtractSingleFileLzmaTest.class │ │ │ ├── ExtractSingleFileNsisSolidTest.class │ │ │ ├── ExtractSingleFileNsisTest.class │ │ │ ├── ExtractSingleFileRarHeaderPassCallbackTest.class │ │ │ ├── ExtractSingleFileRarHeaderPassTest.class │ │ │ ├── ExtractSingleFileRarPassCallbackTest.class │ │ │ ├── ExtractSingleFileRarPassTest.class │ │ │ ├── ExtractSingleFileRarTest.class │ │ │ ├── ExtractSingleFileRarVolumeHeaderPassCallbackTest.class │ │ │ ├── ExtractSingleFileRarVolumePassCallbackTest.class │ │ │ ├── ExtractSingleFileRarVolumePassTest.class │ │ │ ├── ExtractSingleFileRarVolumeTest.class │ │ │ ├── ExtractSingleFileRpmTest.class │ │ │ ├── ExtractSingleFileSevenZipHeaderPassCallbackTest.class │ │ │ ├── ExtractSingleFileSevenZipHeaderPassTest.class │ │ │ ├── ExtractSingleFileSevenZipPassCallbackTest.class │ │ │ ├── ExtractSingleFileSevenZipPassTest.class │ │ │ ├── ExtractSingleFileSevenZipTest.class │ │ │ ├── ExtractSingleFileSevenZipVolumeHeaderPassCallbackTest.class │ │ │ ├── ExtractSingleFileSevenZipVolumeHeaderPassTest.class │ │ │ ├── ExtractSingleFileSevenZipVolumePassCallbackTest.class │ │ │ ├── ExtractSingleFileSevenZipVolumePassTest.class │ │ │ ├── ExtractSingleFileSevenZipVolumeTest.class │ │ │ ├── ExtractSingleFileTarTest.class │ │ │ ├── ExtractSingleFileUdfTest.class │ │ │ ├── ExtractSingleFileWimTest.class │ │ │ ├── ExtractSingleFileXarTest.class │ │ │ ├── ExtractSingleFileZTest.class │ │ │ ├── ExtractSingleFileZipPassCallbackTest.class │ │ │ ├── ExtractSingleFileZipPassTest.class │ │ │ └── ExtractSingleFileZipTest.class │ │ │ ├── snippets │ │ │ ├── CompressArchiveStructure.class │ │ │ ├── CompressGeneric.class │ │ │ ├── CompressGenericTest.class │ │ │ ├── CompressMessage.class │ │ │ ├── CompressMessageTest.class │ │ │ ├── CompressNonGeneric7z.class │ │ │ ├── CompressNonGeneric7zTest.class │ │ │ ├── CompressNonGenericBZip2.class │ │ │ ├── CompressNonGenericBZip2Test.class │ │ │ ├── CompressNonGenericGZip.class │ │ │ ├── CompressNonGenericGZipTest.class │ │ │ ├── CompressNonGenericTar.class │ │ │ ├── CompressNonGenericTarTest.class │ │ │ ├── CompressNonGenericZip.class │ │ │ ├── CompressNonGenericZipTest.class │ │ │ ├── CompressWithError.class │ │ │ ├── CompressWithErrorTest.class │ │ │ ├── ExtractItemsSimple.class │ │ │ ├── ExtractItemsStandard.class │ │ │ ├── ExtractItemsStandardCallback.class │ │ │ ├── ExtractItemsTest.class │ │ │ ├── FirstStepsSimpleSnippets.class │ │ │ ├── GetNumberOfItemInArchive.class │ │ │ ├── ListItemsSimple.class │ │ │ ├── ListItemsStandard.class │ │ │ ├── ListItemsTest.class │ │ │ ├── OpenMultipartArchive7z.class │ │ │ ├── OpenMultipartArchive7zTest.class │ │ │ ├── OpenMultipartArchiveRar.class │ │ │ ├── OpenMultipartArchiveRarTest.class │ │ │ ├── PrintCountOfItems.class │ │ │ ├── PrintCountOfItemsTest.class │ │ │ ├── SevenZipJBindingInitCheck.class │ │ │ ├── SevenZipJBindingInitCheckTest.class │ │ │ ├── SnippetTest.class │ │ │ ├── UpdateAddRemoveItems.class │ │ │ ├── UpdateAddRemoveItemsTest.class │ │ │ ├── UpdateAlterItems.class │ │ │ └── UpdateAlterItemsTest.class │ │ │ └── tools │ │ │ ├── AssertOutputStream.class │ │ │ ├── ByteArrayStreamTest.class │ │ │ ├── CallbackTester.class │ │ │ ├── RandomContext.class │ │ │ ├── SevenZipDebug.class │ │ │ ├── VirtualContent.class │ │ │ ├── VolumedArchiveInStreamTest.class │ │ │ ├── ZipContentComparator.class │ │ │ └── ZipInStream.class │ │ ├── lib │ │ ├── hamcrest-core-1.3-src.jar │ │ ├── hamcrest-core-1.3.jar │ │ ├── junit-4.11-src.jar │ │ └── junit-4.11.jar │ │ ├── src │ │ └── net │ │ │ └── sf │ │ │ └── sevenzipjbinding │ │ │ └── junit │ │ │ ├── AllTestSuite.java │ │ │ ├── ArchiveFormatTest.java │ │ │ ├── CloseableRule.java │ │ │ ├── CloseableStatement.java │ │ │ ├── DebugModeOnly.java │ │ │ ├── DebugModeOnlyTestRule.java │ │ │ ├── DeclareThrowsSevenZipExceptionTest.java │ │ │ ├── ExtractFileAbstractTest.java │ │ │ ├── JUnitInitializationTest.java │ │ │ ├── JUnitNativeTestBase.java │ │ │ ├── JUnitTestBase.java │ │ │ ├── PTest.java │ │ │ ├── SevenZipExceptionStackTracePrinterRule.java │ │ │ ├── TestBase.java │ │ │ ├── TestConfiguration.java │ │ │ ├── TestTestSuite.java │ │ │ ├── badarchive │ │ │ └── GarbageArchiveFileTest.java │ │ │ ├── bug │ │ │ ├── OpenMultipartCabWithNonVolumedCallbackTest.java │ │ │ ├── RarPasswordToLongCrash.java │ │ │ └── WrongCRCGetterInSimpleInterface.java │ │ │ ├── compression │ │ │ ├── CompressAbstractTest.java │ │ │ ├── CompressExceptionGetConnectedArchiveTest.java │ │ │ ├── CompressExceptionGetItemInformationTest.java │ │ │ ├── CompressFeatureAbstractMultpleFiles.java │ │ │ ├── CompressFeatureAbstractSingleFile.java │ │ │ ├── CompressFeatureSetLevel.java │ │ │ ├── CompressFeatureSetSolid.java │ │ │ ├── CompressFeatureSetThreadCount.java │ │ │ ├── CompressGenericSingleFile7zTest.java │ │ │ ├── CompressGenericSingleFileAbstractTest.java │ │ │ ├── CompressGenericSingleFileBZip2Test.java │ │ │ ├── CompressGenericSingleFileGZipTest.java │ │ │ ├── CompressGenericSingleFileTarTest.java │ │ │ ├── CompressGenericSingleFileZipTest.java │ │ │ ├── CompressMultipleFile7zTest.java │ │ │ ├── CompressMultipleFileAbstractTest.java │ │ │ ├── CompressMultipleFileTarTest.java │ │ │ ├── CompressMultipleFileZipTest.java │ │ │ ├── CompressNonGenericSingleFile7zTest.java │ │ │ ├── CompressNonGenericSingleFileAbstractTest.java │ │ │ ├── CompressNonGenericSingleFileBZip2Test.java │ │ │ ├── CompressNonGenericSingleFileGZipTest.java │ │ │ ├── CompressNonGenericSingleFileTarTest.java │ │ │ ├── CompressNonGenericSingleFileZipTest.java │ │ │ ├── CompressSingleFileAbstractTest.java │ │ │ ├── StandaloneCompressBZip2Test.java │ │ │ ├── StandaloneCompressGZipTest.java │ │ │ ├── StandaloneCompressSevenZipTest.java │ │ │ ├── StandaloneCompressTarTest.java │ │ │ ├── StandaloneCompressZipTest.java │ │ │ ├── StandaloneUpdateArchiveAddTest.java │ │ │ ├── StandaloneUpdateArchiveRemoveTest.java │ │ │ ├── StandaloneUpdateArchiveUpdateContentTest.java │ │ │ ├── StandaloneUpdateArchiveUpdatePropertiesTest.java │ │ │ ├── StandaloneUpdateNonGeneric7zTest.java │ │ │ ├── StandaloneUpdateNonGenericBZip2Test.java │ │ │ ├── StandaloneUpdateNonGenericGZipTest.java │ │ │ ├── StandaloneUpdateNonGenericTarTest.java │ │ │ ├── StandaloneUpdateNonGenericZipTest.java │ │ │ ├── TraceCompressionTest.java │ │ │ ├── UpdateAbstractTest.java │ │ │ ├── UpdateMultipleFilesAbstractTest.java │ │ │ ├── UpdateMultipleFilesGeneric7zTest.java │ │ │ ├── UpdateMultipleFilesGenericAbstractTest.java │ │ │ ├── UpdateMultipleFilesGenericTarTest.java │ │ │ ├── UpdateMultipleFilesGenericZipTest.java │ │ │ ├── UpdateMultipleFilesNonGeneric7zTest.java │ │ │ ├── UpdateMultipleFilesNonGenericAbstractTest.java │ │ │ ├── UpdateMultipleFilesNonGenericTarTest.java │ │ │ ├── UpdateMultipleFilesNonGenericZipTest.java │ │ │ ├── UpdateSingleFileAbstractTest.java │ │ │ ├── UpdateSingleFileGeneric7zTest.java │ │ │ ├── UpdateSingleFileGenericAbstractTest.java │ │ │ ├── UpdateSingleFileGenericBZip2Test.java │ │ │ ├── UpdateSingleFileGenericGZipTest.java │ │ │ ├── UpdateSingleFileGenericTarTest.java │ │ │ ├── UpdateSingleFileGenericZipTest.java │ │ │ ├── UpdateSingleFileNonGeneric7zTest.java │ │ │ ├── UpdateSingleFileNonGenericAbstractTest.java │ │ │ ├── UpdateSingleFileNonGenericBZip2Test.java │ │ │ ├── UpdateSingleFileNonGenericGZipTest.java │ │ │ ├── UpdateSingleFileNonGenericTarTest.java │ │ │ └── UpdateSingleFileNonGenericZipTest.java │ │ │ ├── encoding │ │ │ └── UnicodeFilenamesInArchive.java │ │ │ ├── initialization │ │ │ ├── InitializationDoesNotVerifyArtifactsTest.java │ │ │ ├── StandardInitializationTest.java │ │ │ └── VersionTest.java │ │ │ ├── jbindingtools │ │ │ ├── ExceptionHandlingTest.java │ │ │ ├── JBindingTest.java │ │ │ └── JBindingToolsTestBase.java │ │ │ ├── jnitools │ │ │ ├── Interface1.java │ │ │ ├── Interface1Impl1.java │ │ │ ├── Interface1Impl12.java │ │ │ ├── Interface1Impl2.java │ │ │ ├── Interface2.java │ │ │ ├── Interface2Impl1.java │ │ │ ├── JNIToolsTest.java │ │ │ ├── JTestAbstractClass.java │ │ │ ├── JTestFinalClass.java │ │ │ └── ParamSpecTest.java │ │ │ ├── junittools │ │ │ ├── FailAndStackDumpOnTimeout.java │ │ │ ├── Multithreaded.java │ │ │ ├── MultithreadedAndExpectException.java │ │ │ ├── MyRunner.java │ │ │ ├── MyRunnerSimpleTest.java │ │ │ └── MyRunnerTestBase.java │ │ │ ├── multiplefiles │ │ │ ├── ExtractMultipleFileAbstractHeaderPassTest.java │ │ │ ├── ExtractMultipleFileAbstractPassTest.java │ │ │ ├── ExtractMultipleFileAbstractTest.java │ │ │ ├── ExtractMultipleFileArjTest.java │ │ │ ├── ExtractMultipleFileCabTest.java │ │ │ ├── ExtractMultipleFileCabVolumeTest.java │ │ │ ├── ExtractMultipleFileCabVolumeWithoutVolumedTest.java │ │ │ ├── ExtractMultipleFileCpioTest.java │ │ │ ├── ExtractMultipleFileDebTest.java │ │ │ ├── ExtractMultipleFileIsoTest.java │ │ │ ├── ExtractMultipleFileLzhTest.java │ │ │ ├── ExtractMultipleFileRarHeaderPassTest.java │ │ │ ├── ExtractMultipleFileRarPassTest.java │ │ │ ├── ExtractMultipleFileRarTest.java │ │ │ ├── ExtractMultipleFileRarVolumeHeaderPassTest.java │ │ │ ├── ExtractMultipleFileRarVolumePassTest.java │ │ │ ├── ExtractMultipleFileRarVolumeTest.java │ │ │ ├── ExtractMultipleFileSevenZipHeaderPassTest.java │ │ │ ├── ExtractMultipleFileSevenZipPassTest.java │ │ │ ├── ExtractMultipleFileSevenZipTest.java │ │ │ ├── ExtractMultipleFileSevenZipVolumeHeaderPassTest.java │ │ │ ├── ExtractMultipleFileSevenZipVolumePassTest.java │ │ │ ├── ExtractMultipleFileSevenZipVolumeTest.java │ │ │ ├── ExtractMultipleFileTarTest.java │ │ │ ├── ExtractMultipleFileUdfTest.java │ │ │ ├── ExtractMultipleFileWimTest.java │ │ │ ├── ExtractMultipleFileXarTest.java │ │ │ ├── ExtractMultipleFileZipPassTest.java │ │ │ └── ExtractMultipleFileZipTest.java │ │ │ ├── singlefile │ │ │ ├── ExtractSingleFileAbstractHeaderPassTest.java │ │ │ ├── ExtractSingleFileAbstractPassTest.java │ │ │ ├── ExtractSingleFileAbstractTest.java │ │ │ ├── ExtractSingleFileArjTest.java │ │ │ ├── ExtractSingleFileBzip2Test.java │ │ │ ├── ExtractSingleFileCabTest.java │ │ │ ├── ExtractSingleFileCabVolumeTest.java │ │ │ ├── ExtractSingleFileChmTest.java │ │ │ ├── ExtractSingleFileCpioTest.java │ │ │ ├── ExtractSingleFileDebTest.java │ │ │ ├── ExtractSingleFileGzipTest.java │ │ │ ├── ExtractSingleFileIsoTest.java │ │ │ ├── ExtractSingleFileLzhTest.java │ │ │ ├── ExtractSingleFileLzmaTest.java │ │ │ ├── ExtractSingleFileNsisSolidTest.java │ │ │ ├── ExtractSingleFileNsisTest.java │ │ │ ├── ExtractSingleFileRarHeaderPassCallbackTest.java │ │ │ ├── ExtractSingleFileRarHeaderPassTest.java │ │ │ ├── ExtractSingleFileRarPassCallbackTest.java │ │ │ ├── ExtractSingleFileRarPassTest.java │ │ │ ├── ExtractSingleFileRarTest.java │ │ │ ├── ExtractSingleFileRarVolumeHeaderPassCallbackTest.java │ │ │ ├── ExtractSingleFileRarVolumePassCallbackTest.java │ │ │ ├── ExtractSingleFileRarVolumePassTest.java │ │ │ ├── ExtractSingleFileRarVolumeTest.java │ │ │ ├── ExtractSingleFileRpmTest.java │ │ │ ├── ExtractSingleFileSevenZipHeaderPassCallbackTest.java │ │ │ ├── ExtractSingleFileSevenZipHeaderPassTest.java │ │ │ ├── ExtractSingleFileSevenZipPassCallbackTest.java │ │ │ ├── ExtractSingleFileSevenZipPassTest.java │ │ │ ├── ExtractSingleFileSevenZipTest.java │ │ │ ├── ExtractSingleFileSevenZipVolumeHeaderPassCallbackTest.java │ │ │ ├── ExtractSingleFileSevenZipVolumeHeaderPassTest.java │ │ │ ├── ExtractSingleFileSevenZipVolumePassCallbackTest.java │ │ │ ├── ExtractSingleFileSevenZipVolumePassTest.java │ │ │ ├── ExtractSingleFileSevenZipVolumeTest.java │ │ │ ├── ExtractSingleFileTarTest.java │ │ │ ├── ExtractSingleFileUdfTest.java │ │ │ ├── ExtractSingleFileWimTest.java │ │ │ ├── ExtractSingleFileXarTest.java │ │ │ ├── ExtractSingleFileZTest.java │ │ │ ├── ExtractSingleFileZipPassCallbackTest.java │ │ │ ├── ExtractSingleFileZipPassTest.java │ │ │ └── ExtractSingleFileZipTest.java │ │ │ ├── snippets │ │ │ ├── CompressArchiveStructure.java │ │ │ ├── CompressGeneric.java │ │ │ ├── CompressGenericTest.java │ │ │ ├── CompressMessage.java │ │ │ ├── CompressMessageTest.java │ │ │ ├── CompressNonGeneric7z.java │ │ │ ├── CompressNonGeneric7zTest.java │ │ │ ├── CompressNonGenericBZip2.java │ │ │ ├── CompressNonGenericBZip2Test.java │ │ │ ├── CompressNonGenericGZip.java │ │ │ ├── CompressNonGenericGZipTest.java │ │ │ ├── CompressNonGenericTar.java │ │ │ ├── CompressNonGenericTarTest.java │ │ │ ├── CompressNonGenericZip.java │ │ │ ├── CompressNonGenericZipTest.java │ │ │ ├── CompressWithError.java │ │ │ ├── CompressWithErrorTest.java │ │ │ ├── ExtractItemsSimple.java │ │ │ ├── ExtractItemsStandard.java │ │ │ ├── ExtractItemsStandardCallback.java │ │ │ ├── ExtractItemsTest.java │ │ │ ├── FirstStepsSimpleSnippets.java │ │ │ ├── GetNumberOfItemInArchive.java │ │ │ ├── ListItemsSimple.java │ │ │ ├── ListItemsStandard.java │ │ │ ├── ListItemsTest.java │ │ │ ├── OpenMultipartArchive7z.java │ │ │ ├── OpenMultipartArchive7zTest.java │ │ │ ├── OpenMultipartArchiveRar.java │ │ │ ├── OpenMultipartArchiveRarTest.java │ │ │ ├── PrintCountOfItems.java │ │ │ ├── PrintCountOfItemsTest.java │ │ │ ├── SevenZipJBindingInitCheck.java │ │ │ ├── SevenZipJBindingInitCheckTest.java │ │ │ ├── SnippetTest.java │ │ │ ├── UpdateAddRemoveItems.java │ │ │ ├── UpdateAddRemoveItemsTest.java │ │ │ ├── UpdateAlterItems.java │ │ │ └── UpdateAlterItemsTest.java │ │ │ └── tools │ │ │ ├── AssertOutputStream.java │ │ │ ├── ByteArrayStreamTest.java │ │ │ ├── CallbackTester.java │ │ │ ├── RandomContext.java │ │ │ ├── SevenZipDebug.java │ │ │ ├── VirtualContent.java │ │ │ ├── VolumedArchiveInStreamTest.java │ │ │ ├── ZipContentComparator.java │ │ │ └── ZipInStream.java │ │ └── testdata │ │ ├── bug │ │ ├── RAR archive Crash (over 30 char password).rar │ │ └── wrong_crc_getter_in_simple_interface.7z │ │ ├── encoding │ │ ├── unicode_file_names.7z │ │ └── unicode_file_names.zip │ │ ├── multiple-files │ │ ├── 7z │ │ │ ├── archive1.zip.0.7z │ │ │ ├── archive1.zip.5.7z │ │ │ ├── archive1.zip.9.7z │ │ │ ├── archive2.zip.0.7z │ │ │ ├── archive2.zip.5.7z │ │ │ ├── archive2.zip.9.7z │ │ │ ├── archive3.zip.0.7z │ │ │ ├── archive3.zip.5.7z │ │ │ ├── archive3.zip.9.7z │ │ │ ├── pass-archive1.zip.0.7z │ │ │ ├── pass-archive1.zip.5.7z │ │ │ ├── pass-archive1.zip.9.7z │ │ │ ├── pass-archive2.zip.0.7z │ │ │ ├── pass-archive2.zip.5.7z │ │ │ ├── pass-archive2.zip.9.7z │ │ │ ├── pass-archive3.zip.0.7z │ │ │ ├── pass-archive3.zip.5.7z │ │ │ ├── pass-archive3.zip.9.7z │ │ │ ├── passh-archive1.zip.0.7z │ │ │ ├── passh-archive1.zip.5.7z │ │ │ ├── passh-archive1.zip.9.7z │ │ │ ├── passh-archive2.zip.0.7z │ │ │ ├── passh-archive2.zip.5.7z │ │ │ ├── passh-archive2.zip.9.7z │ │ │ ├── passh-archive3.zip.0.7z │ │ │ ├── passh-archive3.zip.5.7z │ │ │ ├── passh-archive3.zip.9.7z │ │ │ ├── vol-archive1.zip.0.7z.001 │ │ │ ├── vol-archive1.zip.5.7z.001 │ │ │ ├── vol-archive1.zip.9.7z.001 │ │ │ ├── vol-archive2.zip.0.7z.001 │ │ │ ├── vol-archive2.zip.5.7z.001 │ │ │ ├── vol-archive2.zip.9.7z.001 │ │ │ ├── vol-archive3.zip.0.7z.001 │ │ │ ├── vol-archive3.zip.5.7z.001 │ │ │ ├── vol-archive3.zip.9.7z.001 │ │ │ ├── vol-pass-archive1.zip.0.7z.001 │ │ │ ├── vol-pass-archive1.zip.5.7z.001 │ │ │ ├── vol-pass-archive1.zip.9.7z.001 │ │ │ ├── vol-pass-archive2.zip.0.7z.001 │ │ │ ├── vol-pass-archive2.zip.5.7z.001 │ │ │ ├── vol-pass-archive2.zip.9.7z.001 │ │ │ ├── vol-pass-archive3.zip.0.7z.001 │ │ │ ├── vol-pass-archive3.zip.5.7z.001 │ │ │ ├── vol-pass-archive3.zip.9.7z.001 │ │ │ ├── vol-passh-archive1.zip.0.7z.001 │ │ │ ├── vol-passh-archive1.zip.5.7z.001 │ │ │ ├── vol-passh-archive1.zip.9.7z.001 │ │ │ ├── vol-passh-archive2.zip.0.7z.001 │ │ │ ├── vol-passh-archive2.zip.5.7z.001 │ │ │ ├── vol-passh-archive2.zip.9.7z.001 │ │ │ ├── vol-passh-archive3.zip.0.7z.001 │ │ │ ├── vol-passh-archive3.zip.5.7z.001 │ │ │ └── vol-passh-archive3.zip.9.7z.001 │ │ ├── archive1.zip │ │ ├── archive2.zip │ │ ├── archive3.zip │ │ ├── arj │ │ │ ├── archive1.zip.0.arj │ │ │ ├── archive1.zip.2.arj │ │ │ ├── archive1.zip.4.arj │ │ │ ├── archive2.zip.0.arj │ │ │ ├── archive2.zip.2.arj │ │ │ ├── archive2.zip.4.arj │ │ │ ├── archive3.zip.0.arj │ │ │ ├── archive3.zip.2.arj │ │ │ ├── archive3.zip.4.arj │ │ │ ├── pass-archive1.zip.0.arj │ │ │ ├── pass-archive1.zip.2.arj │ │ │ ├── pass-archive1.zip.4.arj │ │ │ ├── pass-archive2.zip.0.arj │ │ │ ├── pass-archive2.zip.2.arj │ │ │ ├── pass-archive2.zip.4.arj │ │ │ ├── pass-archive3.zip.0.arj │ │ │ ├── pass-archive3.zip.2.arj │ │ │ └── pass-archive3.zip.4.arj │ │ ├── cab │ │ │ ├── archive1.zip.0.cab │ │ │ ├── archive1.zip.1.cab │ │ │ ├── archive1.zip.2.cab │ │ │ ├── archive2.zip.0.cab │ │ │ ├── archive2.zip.1.cab │ │ │ ├── archive2.zip.2.cab │ │ │ ├── archive3.zip.0.cab │ │ │ ├── archive3.zip.1.cab │ │ │ ├── archive3.zip.2.cab │ │ │ ├── readme.txt │ │ │ ├── vol-archive1.zip.0.disk1.cab │ │ │ ├── vol-archive1.zip.0.disk2.cab │ │ │ ├── vol-archive1.zip.0.disk3.cab │ │ │ ├── vol-archive1.zip.0.disk4.cab │ │ │ ├── vol-archive1.zip.0.disk5.cab │ │ │ ├── vol-archive1.zip.1.disk1.cab │ │ │ ├── vol-archive1.zip.1.disk2.cab │ │ │ ├── vol-archive1.zip.1.disk3.cab │ │ │ ├── vol-archive1.zip.1.disk4.cab │ │ │ ├── vol-archive1.zip.1.disk5.cab │ │ │ ├── vol-archive1.zip.2.disk1.cab │ │ │ ├── vol-archive1.zip.2.disk2.cab │ │ │ ├── vol-archive1.zip.2.disk3.cab │ │ │ ├── vol-archive1.zip.2.disk4.cab │ │ │ ├── vol-archive1.zip.2.disk5.cab │ │ │ ├── vol-archive2.zip.0.disk1.cab │ │ │ ├── vol-archive2.zip.0.disk2.cab │ │ │ ├── vol-archive2.zip.0.disk3.cab │ │ │ ├── vol-archive2.zip.1.disk1.cab │ │ │ ├── vol-archive2.zip.1.disk2.cab │ │ │ ├── vol-archive2.zip.1.disk3.cab │ │ │ ├── vol-archive2.zip.2.disk1.cab │ │ │ ├── vol-archive2.zip.2.disk2.cab │ │ │ ├── vol-archive2.zip.2.disk3.cab │ │ │ ├── vol-archive3.zip.0.disk1.cab │ │ │ ├── vol-archive3.zip.0.disk2.cab │ │ │ ├── vol-archive3.zip.0.disk3.cab │ │ │ ├── vol-archive3.zip.1.disk1.cab │ │ │ ├── vol-archive3.zip.1.disk2.cab │ │ │ ├── vol-archive3.zip.1.disk3.cab │ │ │ ├── vol-archive3.zip.2.disk1.cab │ │ │ ├── vol-archive3.zip.2.disk2.cab │ │ │ └── vol-archive3.zip.2.disk3.cab │ │ ├── compress.sh │ │ ├── cpio │ │ │ ├── archive1.zip.0.cpio │ │ │ ├── archive2.zip.0.cpio │ │ │ └── archive3.zip.0.cpio │ │ ├── deb │ │ │ ├── archive1.zip.1.deb │ │ │ ├── archive1.zip.2.deb │ │ │ ├── archive1.zip.3.deb │ │ │ ├── archive2.zip.1.deb │ │ │ ├── archive2.zip.2.deb │ │ │ ├── archive2.zip.3.deb │ │ │ ├── archive3.zip.1.deb │ │ │ ├── archive3.zip.2.deb │ │ │ └── archive3.zip.3.deb │ │ ├── iso │ │ │ ├── archive1.zip.0.iso.zip │ │ │ ├── archive1.zip.1.iso.zip │ │ │ ├── archive1.zip.2.iso.zip │ │ │ ├── archive2.zip.0.iso.zip │ │ │ ├── archive2.zip.1.iso.zip │ │ │ ├── archive2.zip.2.iso.zip │ │ │ ├── archive3.zip.0.iso.zip │ │ │ ├── archive3.zip.1.iso.zip │ │ │ └── archive3.zip.2.iso.zip │ │ ├── lzh │ │ │ ├── archive1.zip.5.lzh │ │ │ ├── archive1.zip.6.lzh │ │ │ ├── archive1.zip.7.lzh │ │ │ ├── archive2.zip.5.lzh │ │ │ ├── archive2.zip.6.lzh │ │ │ ├── archive2.zip.7.lzh │ │ │ ├── archive3.zip.5.lzh │ │ │ ├── archive3.zip.6.lzh │ │ │ ├── archive3.zip.7.lzh │ │ │ └── readme.txt │ │ ├── rar │ │ │ ├── archive1.zip.0.rar │ │ │ ├── archive1.zip.2.rar │ │ │ ├── archive1.zip.5.rar │ │ │ ├── archive2.zip.0.rar │ │ │ ├── archive2.zip.2.rar │ │ │ ├── archive2.zip.5.rar │ │ │ ├── archive3.zip.0.rar │ │ │ ├── archive3.zip.2.rar │ │ │ ├── archive3.zip.5.rar │ │ │ ├── pass-archive1.zip.0.rar │ │ │ ├── pass-archive1.zip.2.rar │ │ │ ├── pass-archive1.zip.5.rar │ │ │ ├── pass-archive2.zip.0.rar │ │ │ ├── pass-archive2.zip.2.rar │ │ │ ├── pass-archive2.zip.5.rar │ │ │ ├── pass-archive3.zip.0.rar │ │ │ ├── pass-archive3.zip.2.rar │ │ │ ├── pass-archive3.zip.5.rar │ │ │ ├── passh-archive1.zip.0.rar │ │ │ ├── passh-archive1.zip.2.rar │ │ │ ├── passh-archive1.zip.5.rar │ │ │ ├── passh-archive2.zip.0.rar │ │ │ ├── passh-archive2.zip.2.rar │ │ │ ├── passh-archive2.zip.5.rar │ │ │ ├── passh-archive3.zip.0.rar │ │ │ ├── passh-archive3.zip.2.rar │ │ │ ├── passh-archive3.zip.5.rar │ │ │ ├── vol-archive1.zip.0.part01.rar │ │ │ ├── vol-archive1.zip.0.part02.rar │ │ │ ├── vol-archive1.zip.0.part03.rar │ │ │ ├── vol-archive1.zip.0.part04.rar │ │ │ ├── vol-archive1.zip.0.part05.rar │ │ │ ├── vol-archive1.zip.0.part06.rar │ │ │ ├── vol-archive1.zip.0.part07.rar │ │ │ ├── vol-archive1.zip.0.part08.rar │ │ │ ├── vol-archive1.zip.0.part09.rar │ │ │ ├── vol-archive1.zip.0.part10.rar │ │ │ ├── vol-archive1.zip.0.part11.rar │ │ │ ├── vol-archive1.zip.0.part12.rar │ │ │ ├── vol-archive1.zip.0.part13.rar │ │ │ ├── vol-archive1.zip.0.part14.rar │ │ │ ├── vol-archive1.zip.0.part15.rar │ │ │ ├── vol-archive1.zip.0.part16.rar │ │ │ ├── vol-archive1.zip.0.part17.rar │ │ │ ├── vol-archive1.zip.0.part18.rar │ │ │ ├── vol-archive1.zip.2.part01.rar │ │ │ ├── vol-archive1.zip.2.part02.rar │ │ │ ├── vol-archive1.zip.2.part03.rar │ │ │ ├── vol-archive1.zip.2.part04.rar │ │ │ ├── vol-archive1.zip.2.part05.rar │ │ │ ├── vol-archive1.zip.2.part06.rar │ │ │ ├── vol-archive1.zip.2.part07.rar │ │ │ ├── vol-archive1.zip.2.part08.rar │ │ │ ├── vol-archive1.zip.2.part09.rar │ │ │ ├── vol-archive1.zip.2.part10.rar │ │ │ ├── vol-archive1.zip.2.part11.rar │ │ │ ├── vol-archive1.zip.2.part12.rar │ │ │ ├── vol-archive1.zip.2.part13.rar │ │ │ ├── vol-archive1.zip.2.part14.rar │ │ │ ├── vol-archive1.zip.2.part15.rar │ │ │ ├── vol-archive1.zip.2.part16.rar │ │ │ ├── vol-archive1.zip.2.part17.rar │ │ │ ├── vol-archive1.zip.2.part18.rar │ │ │ ├── vol-archive1.zip.2.part19.rar │ │ │ ├── vol-archive1.zip.2.part20.rar │ │ │ ├── vol-archive1.zip.5.part01.rar │ │ │ ├── vol-archive1.zip.5.part02.rar │ │ │ ├── vol-archive1.zip.5.part03.rar │ │ │ ├── vol-archive1.zip.5.part04.rar │ │ │ ├── vol-archive1.zip.5.part05.rar │ │ │ ├── vol-archive1.zip.5.part06.rar │ │ │ ├── vol-archive1.zip.5.part07.rar │ │ │ ├── vol-archive1.zip.5.part08.rar │ │ │ ├── vol-archive1.zip.5.part09.rar │ │ │ ├── vol-archive1.zip.5.part10.rar │ │ │ ├── vol-archive1.zip.5.part11.rar │ │ │ ├── vol-archive1.zip.5.part12.rar │ │ │ ├── vol-archive1.zip.5.part13.rar │ │ │ ├── vol-archive1.zip.5.part14.rar │ │ │ ├── vol-archive1.zip.5.part15.rar │ │ │ ├── vol-archive1.zip.5.part16.rar │ │ │ ├── vol-archive1.zip.5.part17.rar │ │ │ ├── vol-archive1.zip.5.part18.rar │ │ │ ├── vol-archive1.zip.5.part19.rar │ │ │ ├── vol-archive1.zip.5.part20.rar │ │ │ ├── vol-archive2.zip.0.rar │ │ │ ├── vol-archive2.zip.2.rar │ │ │ ├── vol-archive2.zip.5.rar │ │ │ ├── vol-archive3.zip.0.rar │ │ │ ├── vol-archive3.zip.2.rar │ │ │ ├── vol-archive3.zip.5.rar │ │ │ ├── vol-pass-archive1.zip.0.part01.rar │ │ │ ├── vol-pass-archive1.zip.0.part02.rar │ │ │ ├── vol-pass-archive1.zip.0.part03.rar │ │ │ ├── vol-pass-archive1.zip.0.part04.rar │ │ │ ├── vol-pass-archive1.zip.0.part05.rar │ │ │ ├── vol-pass-archive1.zip.0.part06.rar │ │ │ ├── vol-pass-archive1.zip.0.part07.rar │ │ │ ├── vol-pass-archive1.zip.0.part08.rar │ │ │ ├── vol-pass-archive1.zip.0.part09.rar │ │ │ ├── vol-pass-archive1.zip.0.part10.rar │ │ │ ├── vol-pass-archive1.zip.0.part11.rar │ │ │ ├── vol-pass-archive1.zip.0.part12.rar │ │ │ ├── vol-pass-archive1.zip.0.part13.rar │ │ │ ├── vol-pass-archive1.zip.0.part14.rar │ │ │ ├── vol-pass-archive1.zip.0.part15.rar │ │ │ ├── vol-pass-archive1.zip.0.part16.rar │ │ │ ├── vol-pass-archive1.zip.0.part17.rar │ │ │ ├── vol-pass-archive1.zip.0.part18.rar │ │ │ ├── vol-pass-archive1.zip.0.part19.rar │ │ │ ├── vol-pass-archive1.zip.2.part01.rar │ │ │ ├── vol-pass-archive1.zip.2.part02.rar │ │ │ ├── vol-pass-archive1.zip.2.part03.rar │ │ │ ├── vol-pass-archive1.zip.2.part04.rar │ │ │ ├── vol-pass-archive1.zip.2.part05.rar │ │ │ ├── vol-pass-archive1.zip.2.part06.rar │ │ │ ├── vol-pass-archive1.zip.2.part07.rar │ │ │ ├── vol-pass-archive1.zip.2.part08.rar │ │ │ ├── vol-pass-archive1.zip.2.part09.rar │ │ │ ├── vol-pass-archive1.zip.2.part10.rar │ │ │ ├── vol-pass-archive1.zip.2.part11.rar │ │ │ ├── vol-pass-archive1.zip.2.part12.rar │ │ │ ├── vol-pass-archive1.zip.2.part13.rar │ │ │ ├── vol-pass-archive1.zip.2.part14.rar │ │ │ ├── vol-pass-archive1.zip.2.part15.rar │ │ │ ├── vol-pass-archive1.zip.2.part16.rar │ │ │ ├── vol-pass-archive1.zip.2.part17.rar │ │ │ ├── vol-pass-archive1.zip.2.part18.rar │ │ │ ├── vol-pass-archive1.zip.2.part19.rar │ │ │ ├── vol-pass-archive1.zip.2.part20.rar │ │ │ ├── vol-pass-archive1.zip.2.part21.rar │ │ │ ├── vol-pass-archive1.zip.5.part01.rar │ │ │ ├── vol-pass-archive1.zip.5.part02.rar │ │ │ ├── vol-pass-archive1.zip.5.part03.rar │ │ │ ├── vol-pass-archive1.zip.5.part04.rar │ │ │ ├── vol-pass-archive1.zip.5.part05.rar │ │ │ ├── vol-pass-archive1.zip.5.part06.rar │ │ │ ├── vol-pass-archive1.zip.5.part07.rar │ │ │ ├── vol-pass-archive1.zip.5.part08.rar │ │ │ ├── vol-pass-archive1.zip.5.part09.rar │ │ │ ├── vol-pass-archive1.zip.5.part10.rar │ │ │ ├── vol-pass-archive1.zip.5.part11.rar │ │ │ ├── vol-pass-archive1.zip.5.part12.rar │ │ │ ├── vol-pass-archive1.zip.5.part13.rar │ │ │ ├── vol-pass-archive1.zip.5.part14.rar │ │ │ ├── vol-pass-archive1.zip.5.part15.rar │ │ │ ├── vol-pass-archive1.zip.5.part16.rar │ │ │ ├── vol-pass-archive1.zip.5.part17.rar │ │ │ ├── vol-pass-archive1.zip.5.part18.rar │ │ │ ├── vol-pass-archive1.zip.5.part19.rar │ │ │ ├── vol-pass-archive1.zip.5.part20.rar │ │ │ ├── vol-pass-archive1.zip.5.part21.rar │ │ │ ├── vol-pass-archive2.zip.0.rar │ │ │ ├── vol-pass-archive2.zip.2.rar │ │ │ ├── vol-pass-archive2.zip.5.rar │ │ │ ├── vol-pass-archive3.zip.0.rar │ │ │ ├── vol-pass-archive3.zip.2.rar │ │ │ ├── vol-pass-archive3.zip.5.rar │ │ │ ├── vol-passh-archive1.zip.0.part01.rar │ │ │ ├── vol-passh-archive1.zip.0.part02.rar │ │ │ ├── vol-passh-archive1.zip.0.part03.rar │ │ │ ├── vol-passh-archive1.zip.0.part04.rar │ │ │ ├── vol-passh-archive1.zip.0.part05.rar │ │ │ ├── vol-passh-archive1.zip.0.part06.rar │ │ │ ├── vol-passh-archive1.zip.0.part07.rar │ │ │ ├── vol-passh-archive1.zip.0.part08.rar │ │ │ ├── vol-passh-archive1.zip.0.part09.rar │ │ │ ├── vol-passh-archive1.zip.0.part10.rar │ │ │ ├── vol-passh-archive1.zip.0.part11.rar │ │ │ ├── vol-passh-archive1.zip.0.part12.rar │ │ │ ├── vol-passh-archive1.zip.0.part13.rar │ │ │ ├── vol-passh-archive1.zip.0.part14.rar │ │ │ ├── vol-passh-archive1.zip.0.part15.rar │ │ │ ├── vol-passh-archive1.zip.0.part16.rar │ │ │ ├── vol-passh-archive1.zip.0.part17.rar │ │ │ ├── vol-passh-archive1.zip.0.part18.rar │ │ │ ├── vol-passh-archive1.zip.0.part19.rar │ │ │ ├── vol-passh-archive1.zip.0.part20.rar │ │ │ ├── vol-passh-archive1.zip.0.part21.rar │ │ │ ├── vol-passh-archive1.zip.0.part22.rar │ │ │ ├── vol-passh-archive1.zip.2.part01.rar │ │ │ ├── vol-passh-archive1.zip.2.part02.rar │ │ │ ├── vol-passh-archive1.zip.2.part03.rar │ │ │ ├── vol-passh-archive1.zip.2.part04.rar │ │ │ ├── vol-passh-archive1.zip.2.part05.rar │ │ │ ├── vol-passh-archive1.zip.2.part06.rar │ │ │ ├── vol-passh-archive1.zip.2.part07.rar │ │ │ ├── vol-passh-archive1.zip.2.part08.rar │ │ │ ├── vol-passh-archive1.zip.2.part09.rar │ │ │ ├── vol-passh-archive1.zip.2.part10.rar │ │ │ ├── vol-passh-archive1.zip.2.part11.rar │ │ │ ├── vol-passh-archive1.zip.2.part12.rar │ │ │ ├── vol-passh-archive1.zip.2.part13.rar │ │ │ ├── vol-passh-archive1.zip.2.part14.rar │ │ │ ├── vol-passh-archive1.zip.2.part15.rar │ │ │ ├── vol-passh-archive1.zip.2.part16.rar │ │ │ ├── vol-passh-archive1.zip.2.part17.rar │ │ │ ├── vol-passh-archive1.zip.2.part18.rar │ │ │ ├── vol-passh-archive1.zip.2.part19.rar │ │ │ ├── vol-passh-archive1.zip.2.part20.rar │ │ │ ├── vol-passh-archive1.zip.2.part21.rar │ │ │ ├── vol-passh-archive1.zip.2.part22.rar │ │ │ ├── vol-passh-archive1.zip.2.part23.rar │ │ │ ├── vol-passh-archive1.zip.5.part01.rar │ │ │ ├── vol-passh-archive1.zip.5.part02.rar │ │ │ ├── vol-passh-archive1.zip.5.part03.rar │ │ │ ├── vol-passh-archive1.zip.5.part04.rar │ │ │ ├── vol-passh-archive1.zip.5.part05.rar │ │ │ ├── vol-passh-archive1.zip.5.part06.rar │ │ │ ├── vol-passh-archive1.zip.5.part07.rar │ │ │ ├── vol-passh-archive1.zip.5.part08.rar │ │ │ ├── vol-passh-archive1.zip.5.part09.rar │ │ │ ├── vol-passh-archive1.zip.5.part10.rar │ │ │ ├── vol-passh-archive1.zip.5.part11.rar │ │ │ ├── vol-passh-archive1.zip.5.part12.rar │ │ │ ├── vol-passh-archive1.zip.5.part13.rar │ │ │ ├── vol-passh-archive1.zip.5.part14.rar │ │ │ ├── vol-passh-archive1.zip.5.part15.rar │ │ │ ├── vol-passh-archive1.zip.5.part16.rar │ │ │ ├── vol-passh-archive1.zip.5.part17.rar │ │ │ ├── vol-passh-archive1.zip.5.part18.rar │ │ │ ├── vol-passh-archive1.zip.5.part19.rar │ │ │ ├── vol-passh-archive1.zip.5.part20.rar │ │ │ ├── vol-passh-archive1.zip.5.part21.rar │ │ │ ├── vol-passh-archive1.zip.5.part22.rar │ │ │ ├── vol-passh-archive1.zip.5.part23.rar │ │ │ ├── vol-passh-archive2.zip.0.rar │ │ │ ├── vol-passh-archive2.zip.2.part1.rar │ │ │ ├── vol-passh-archive2.zip.2.part2.rar │ │ │ ├── vol-passh-archive2.zip.5.part1.rar │ │ │ ├── vol-passh-archive2.zip.5.part2.rar │ │ │ ├── vol-passh-archive3.zip.0.rar │ │ │ ├── vol-passh-archive3.zip.2.rar │ │ │ └── vol-passh-archive3.zip.5.rar │ │ ├── tar │ │ │ ├── archive1.zip.0.tar │ │ │ ├── archive2.zip.0.tar │ │ │ └── archive3.zip.0.tar │ │ ├── udf │ │ │ ├── archive1.zip.102.udf.zip │ │ │ ├── archive1.zip.150.udf.zip │ │ │ ├── archive2.zip.102.udf.zip │ │ │ ├── archive2.zip.150.udf.zip │ │ │ ├── archive3.zip.102.udf.zip │ │ │ └── archive3.zip.150.udf.zip │ │ ├── wim │ │ │ ├── archive1.zip.0.wim │ │ │ ├── archive1.zip.1.wim │ │ │ ├── archive1.zip.2.wim │ │ │ ├── archive2.zip.0.wim │ │ │ ├── archive2.zip.1.wim │ │ │ ├── archive2.zip.2.wim │ │ │ ├── archive3.zip.0.wim │ │ │ ├── archive3.zip.1.wim │ │ │ └── archive3.zip.2.wim │ │ ├── xar │ │ │ ├── archive1.zip.1.xar │ │ │ ├── archive1.zip.2.xar │ │ │ ├── archive1.zip.3.xar │ │ │ ├── archive2.zip.1.xar │ │ │ ├── archive2.zip.2.xar │ │ │ ├── archive2.zip.3.xar │ │ │ ├── archive3.zip.1.xar │ │ │ ├── archive3.zip.2.xar │ │ │ └── archive3.zip.3.xar │ │ └── zip │ │ │ ├── archive1.zip.0.zip │ │ │ ├── archive1.zip.5.zip │ │ │ ├── archive1.zip.9.zip │ │ │ ├── archive2.zip.0.zip │ │ │ ├── archive2.zip.5.zip │ │ │ ├── archive2.zip.9.zip │ │ │ ├── archive3.zip.0.zip │ │ │ ├── archive3.zip.5.zip │ │ │ ├── archive3.zip.9.zip │ │ │ ├── pass-archive1.zip.0.zip │ │ │ ├── pass-archive1.zip.5.zip │ │ │ ├── pass-archive1.zip.9.zip │ │ │ ├── pass-archive2.zip.0.zip │ │ │ ├── pass-archive2.zip.5.zip │ │ │ ├── pass-archive2.zip.9.zip │ │ │ ├── pass-archive3.zip.0.zip │ │ │ ├── pass-archive3.zip.5.zip │ │ │ └── pass-archive3.zip.9.zip │ │ ├── simple │ │ ├── 7z │ │ │ ├── pass-simple1.dat.0.7z │ │ │ ├── pass-simple1.dat.5.7z │ │ │ ├── pass-simple1.dat.9.7z │ │ │ ├── pass-simple2.dat.0.7z │ │ │ ├── pass-simple2.dat.5.7z │ │ │ ├── pass-simple2.dat.9.7z │ │ │ ├── pass-simple3.dat.0.7z │ │ │ ├── pass-simple3.dat.5.7z │ │ │ ├── pass-simple3.dat.9.7z │ │ │ ├── pass-simple4.dat.0.7z │ │ │ ├── pass-simple4.dat.5.7z │ │ │ ├── pass-simple4.dat.9.7z │ │ │ ├── pass-simple5.dat.0.7z │ │ │ ├── pass-simple5.dat.5.7z │ │ │ ├── pass-simple5.dat.9.7z │ │ │ ├── passh-simple1.dat.0.7z │ │ │ ├── passh-simple1.dat.5.7z │ │ │ ├── passh-simple1.dat.9.7z │ │ │ ├── passh-simple2.dat.0.7z │ │ │ ├── passh-simple2.dat.5.7z │ │ │ ├── passh-simple2.dat.9.7z │ │ │ ├── passh-simple3.dat.0.7z │ │ │ ├── passh-simple3.dat.5.7z │ │ │ ├── passh-simple3.dat.9.7z │ │ │ ├── passh-simple4.dat.0.7z │ │ │ ├── passh-simple4.dat.5.7z │ │ │ ├── passh-simple4.dat.9.7z │ │ │ ├── passh-simple5.dat.0.7z │ │ │ ├── passh-simple5.dat.5.7z │ │ │ ├── passh-simple5.dat.9.7z │ │ │ ├── simple1.dat.0.7z │ │ │ ├── simple1.dat.5.7z │ │ │ ├── simple1.dat.9.7z │ │ │ ├── simple2.dat.0.7z │ │ │ ├── simple2.dat.5.7z │ │ │ ├── simple2.dat.9.7z │ │ │ ├── simple3.dat.0.7z │ │ │ ├── simple3.dat.5.7z │ │ │ ├── simple3.dat.9.7z │ │ │ ├── simple4.dat.0.7z │ │ │ ├── simple4.dat.5.7z │ │ │ ├── simple4.dat.9.7z │ │ │ ├── simple5.dat.0.7z │ │ │ ├── simple5.dat.5.7z │ │ │ ├── simple5.dat.9.7z │ │ │ ├── vol-pass-simple1.dat.0.7z.001 │ │ │ ├── vol-pass-simple1.dat.0.7z.002 │ │ │ ├── vol-pass-simple1.dat.0.7z.003 │ │ │ ├── vol-pass-simple1.dat.0.7z.004 │ │ │ ├── vol-pass-simple1.dat.0.7z.005 │ │ │ ├── vol-pass-simple1.dat.5.7z.001 │ │ │ ├── vol-pass-simple1.dat.5.7z.002 │ │ │ ├── vol-pass-simple1.dat.5.7z.003 │ │ │ ├── vol-pass-simple1.dat.5.7z.004 │ │ │ ├── vol-pass-simple1.dat.5.7z.005 │ │ │ ├── vol-pass-simple1.dat.9.7z.001 │ │ │ ├── vol-pass-simple1.dat.9.7z.002 │ │ │ ├── vol-pass-simple1.dat.9.7z.003 │ │ │ ├── vol-pass-simple1.dat.9.7z.004 │ │ │ ├── vol-pass-simple1.dat.9.7z.005 │ │ │ ├── vol-pass-simple2.dat.0.7z.001 │ │ │ ├── vol-pass-simple2.dat.5.7z.001 │ │ │ ├── vol-pass-simple2.dat.9.7z.001 │ │ │ ├── vol-pass-simple3.dat.0.7z.001 │ │ │ ├── vol-pass-simple3.dat.5.7z.001 │ │ │ ├── vol-pass-simple3.dat.9.7z.001 │ │ │ ├── vol-pass-simple4.dat.0.7z.001 │ │ │ ├── vol-pass-simple4.dat.5.7z.001 │ │ │ ├── vol-pass-simple4.dat.9.7z.001 │ │ │ ├── vol-pass-simple5.dat.0.7z.001 │ │ │ ├── vol-pass-simple5.dat.5.7z.001 │ │ │ ├── vol-pass-simple5.dat.9.7z.001 │ │ │ ├── vol-passh-simple1.dat.0.7z.001 │ │ │ ├── vol-passh-simple1.dat.0.7z.002 │ │ │ ├── vol-passh-simple1.dat.0.7z.003 │ │ │ ├── vol-passh-simple1.dat.0.7z.004 │ │ │ ├── vol-passh-simple1.dat.0.7z.005 │ │ │ ├── vol-passh-simple1.dat.5.7z.001 │ │ │ ├── vol-passh-simple1.dat.5.7z.002 │ │ │ ├── vol-passh-simple1.dat.5.7z.003 │ │ │ ├── vol-passh-simple1.dat.5.7z.004 │ │ │ ├── vol-passh-simple1.dat.5.7z.005 │ │ │ ├── vol-passh-simple1.dat.9.7z.001 │ │ │ ├── vol-passh-simple1.dat.9.7z.002 │ │ │ ├── vol-passh-simple1.dat.9.7z.003 │ │ │ ├── vol-passh-simple1.dat.9.7z.004 │ │ │ ├── vol-passh-simple1.dat.9.7z.005 │ │ │ ├── vol-passh-simple2.dat.0.7z.001 │ │ │ ├── vol-passh-simple2.dat.5.7z.001 │ │ │ ├── vol-passh-simple2.dat.9.7z.001 │ │ │ ├── vol-passh-simple3.dat.0.7z.001 │ │ │ ├── vol-passh-simple3.dat.5.7z.001 │ │ │ ├── vol-passh-simple3.dat.9.7z.001 │ │ │ ├── vol-passh-simple4.dat.0.7z.001 │ │ │ ├── vol-passh-simple4.dat.5.7z.001 │ │ │ ├── vol-passh-simple4.dat.9.7z.001 │ │ │ ├── vol-passh-simple5.dat.0.7z.001 │ │ │ ├── vol-passh-simple5.dat.5.7z.001 │ │ │ ├── vol-passh-simple5.dat.9.7z.001 │ │ │ ├── vol-simple1.dat.0.7z.001 │ │ │ ├── vol-simple1.dat.0.7z.002 │ │ │ ├── vol-simple1.dat.0.7z.003 │ │ │ ├── vol-simple1.dat.0.7z.004 │ │ │ ├── vol-simple1.dat.0.7z.005 │ │ │ ├── vol-simple1.dat.5.7z.001 │ │ │ ├── vol-simple1.dat.5.7z.002 │ │ │ ├── vol-simple1.dat.5.7z.003 │ │ │ ├── vol-simple1.dat.5.7z.004 │ │ │ ├── vol-simple1.dat.5.7z.005 │ │ │ ├── vol-simple1.dat.9.7z.001 │ │ │ ├── vol-simple1.dat.9.7z.002 │ │ │ ├── vol-simple1.dat.9.7z.003 │ │ │ ├── vol-simple1.dat.9.7z.004 │ │ │ ├── vol-simple1.dat.9.7z.005 │ │ │ ├── vol-simple2.dat.0.7z.001 │ │ │ ├── vol-simple2.dat.5.7z.001 │ │ │ ├── vol-simple2.dat.9.7z.001 │ │ │ ├── vol-simple3.dat.0.7z.001 │ │ │ ├── vol-simple3.dat.5.7z.001 │ │ │ ├── vol-simple3.dat.9.7z.001 │ │ │ ├── vol-simple4.dat.0.7z.001 │ │ │ ├── vol-simple4.dat.5.7z.001 │ │ │ ├── vol-simple4.dat.9.7z.001 │ │ │ ├── vol-simple5.dat.0.7z.001 │ │ │ ├── vol-simple5.dat.5.7z.001 │ │ │ └── vol-simple5.dat.9.7z.001 │ │ ├── arj │ │ │ ├── pass-simple1.dat.0.arj │ │ │ ├── pass-simple1.dat.2.arj │ │ │ ├── pass-simple1.dat.4.arj │ │ │ ├── pass-simple2.dat.0.arj │ │ │ ├── pass-simple2.dat.2.arj │ │ │ ├── pass-simple2.dat.4.arj │ │ │ ├── pass-simple3.dat.0.arj │ │ │ ├── pass-simple3.dat.2.arj │ │ │ ├── pass-simple3.dat.4.arj │ │ │ ├── pass-simple4.dat.0.arj │ │ │ ├── pass-simple4.dat.2.arj │ │ │ ├── pass-simple4.dat.4.arj │ │ │ ├── pass-simple5.dat.0.arj │ │ │ ├── pass-simple5.dat.2.arj │ │ │ ├── pass-simple5.dat.4.arj │ │ │ ├── simple1.dat.0.arj │ │ │ ├── simple1.dat.2.arj │ │ │ ├── simple1.dat.4.arj │ │ │ ├── simple2.dat.0.arj │ │ │ ├── simple2.dat.2.arj │ │ │ ├── simple2.dat.4.arj │ │ │ ├── simple3.dat.0.arj │ │ │ ├── simple3.dat.2.arj │ │ │ ├── simple3.dat.4.arj │ │ │ ├── simple4.dat.0.arj │ │ │ ├── simple4.dat.2.arj │ │ │ ├── simple4.dat.4.arj │ │ │ ├── simple5.dat.0.arj │ │ │ ├── simple5.dat.2.arj │ │ │ └── simple5.dat.4.arj │ │ ├── bzip2 │ │ │ ├── simple1.dat.1.bz2 │ │ │ ├── simple1.dat.5.bz2 │ │ │ ├── simple1.dat.9.bz2 │ │ │ ├── simple2.dat.1.bz2 │ │ │ ├── simple2.dat.5.bz2 │ │ │ ├── simple2.dat.9.bz2 │ │ │ ├── simple3.dat.1.bz2 │ │ │ ├── simple3.dat.5.bz2 │ │ │ ├── simple3.dat.9.bz2 │ │ │ ├── simple4.dat.1.bz2 │ │ │ ├── simple4.dat.5.bz2 │ │ │ ├── simple4.dat.9.bz2 │ │ │ ├── simple5.dat.1.bz2 │ │ │ ├── simple5.dat.5.bz2 │ │ │ └── simple5.dat.9.bz2 │ │ ├── cab │ │ │ ├── readme.txt │ │ │ ├── simple1.dat.0.cab │ │ │ ├── simple1.dat.1.cab │ │ │ ├── simple1.dat.2.cab │ │ │ ├── simple2.dat.0.cab │ │ │ ├── simple2.dat.1.cab │ │ │ ├── simple2.dat.2.cab │ │ │ ├── simple3.dat.0.cab │ │ │ ├── simple3.dat.1.cab │ │ │ ├── simple3.dat.2.cab │ │ │ ├── simple4.dat.0.cab │ │ │ ├── simple4.dat.1.cab │ │ │ ├── simple4.dat.2.cab │ │ │ ├── simple5.dat.0.cab │ │ │ ├── simple5.dat.1.cab │ │ │ ├── simple5.dat.2.cab │ │ │ ├── vol-simple1.dat.0.disk1.cab │ │ │ ├── vol-simple1.dat.0.disk2.cab │ │ │ ├── vol-simple1.dat.0.disk3.cab │ │ │ ├── vol-simple1.dat.0.disk4.cab │ │ │ ├── vol-simple1.dat.0.disk5.cab │ │ │ ├── vol-simple1.dat.1.disk1.cab │ │ │ ├── vol-simple1.dat.1.disk2.cab │ │ │ ├── vol-simple1.dat.1.disk3.cab │ │ │ ├── vol-simple1.dat.1.disk4.cab │ │ │ ├── vol-simple1.dat.1.disk5.cab │ │ │ ├── vol-simple1.dat.2.disk1.cab │ │ │ ├── vol-simple1.dat.2.disk2.cab │ │ │ ├── vol-simple1.dat.2.disk3.cab │ │ │ ├── vol-simple1.dat.2.disk4.cab │ │ │ ├── vol-simple1.dat.2.disk5.cab │ │ │ ├── vol-simple2.dat.0.disk1.cab │ │ │ ├── vol-simple2.dat.0.disk2.cab │ │ │ ├── vol-simple2.dat.0.disk3.cab │ │ │ ├── vol-simple2.dat.1.disk1.cab │ │ │ ├── vol-simple2.dat.1.disk2.cab │ │ │ ├── vol-simple2.dat.1.disk3.cab │ │ │ ├── vol-simple2.dat.1.disk4.cab │ │ │ ├── vol-simple2.dat.1.disk5.cab │ │ │ ├── vol-simple2.dat.1.disk6.cab │ │ │ ├── vol-simple2.dat.2.disk1.cab │ │ │ ├── vol-simple2.dat.2.disk2.cab │ │ │ ├── vol-simple2.dat.2.disk3.cab │ │ │ ├── vol-simple2.dat.2.disk4.cab │ │ │ ├── vol-simple2.dat.2.disk5.cab │ │ │ ├── vol-simple2.dat.2.disk6.cab │ │ │ ├── vol-simple2.dat.2.disk7.cab │ │ │ ├── vol-simple3.dat.0.disk1.cab │ │ │ ├── vol-simple3.dat.1.disk1.cab │ │ │ ├── vol-simple3.dat.2.disk1.cab │ │ │ ├── vol-simple4.dat.0.disk1.cab │ │ │ ├── vol-simple4.dat.1.disk1.cab │ │ │ ├── vol-simple4.dat.2.disk1.cab │ │ │ ├── vol-simple5.dat.0.disk1.cab │ │ │ ├── vol-simple5.dat.1.disk1.cab │ │ │ └── vol-simple5.dat.2.disk1.cab │ │ ├── chm │ │ │ ├── simple1.dat.0.chm │ │ │ ├── simple2.dat.0.chm │ │ │ ├── simple3.dat.0.chm │ │ │ ├── simple4.dat.0.chm │ │ │ └── simple5.dat.0.chm │ │ ├── compress.sh │ │ ├── cpio │ │ │ ├── simple1.dat.0.cpio │ │ │ ├── simple2.dat.0.cpio │ │ │ ├── simple3.dat.0.cpio │ │ │ ├── simple4.dat.0.cpio │ │ │ └── simple5.dat.0.cpio │ │ ├── deb │ │ │ ├── simple1.dat.1.deb │ │ │ ├── simple1.dat.2.deb │ │ │ ├── simple1.dat.3.deb │ │ │ ├── simple2.dat.1.deb │ │ │ ├── simple2.dat.2.deb │ │ │ ├── simple2.dat.3.deb │ │ │ ├── simple3.dat.1.deb │ │ │ ├── simple3.dat.2.deb │ │ │ ├── simple3.dat.3.deb │ │ │ ├── simple4.dat.1.deb │ │ │ ├── simple4.dat.2.deb │ │ │ ├── simple4.dat.3.deb │ │ │ ├── simple5.dat.1.deb │ │ │ ├── simple5.dat.2.deb │ │ │ └── simple5.dat.3.deb │ │ ├── gzip │ │ │ ├── simple1.dat.1.gz │ │ │ ├── simple1.dat.5.gz │ │ │ ├── simple1.dat.9.gz │ │ │ ├── simple2.dat.1.gz │ │ │ ├── simple2.dat.5.gz │ │ │ ├── simple2.dat.9.gz │ │ │ ├── simple3.dat.1.gz │ │ │ ├── simple3.dat.5.gz │ │ │ ├── simple3.dat.9.gz │ │ │ ├── simple4.dat.1.gz │ │ │ ├── simple4.dat.5.gz │ │ │ ├── simple4.dat.9.gz │ │ │ ├── simple5.dat.1.gz │ │ │ ├── simple5.dat.5.gz │ │ │ └── simple5.dat.9.gz │ │ ├── iso │ │ │ ├── simple1.dat.0.iso.zip │ │ │ ├── simple2.dat.0.iso.zip │ │ │ ├── simple3.dat.0.iso.zip │ │ │ ├── simple4.dat.0.iso.zip │ │ │ └── simple5.dat.0.iso.zip │ │ ├── lzh │ │ │ ├── readme.txt │ │ │ ├── simple1.dat.5.lzh │ │ │ ├── simple1.dat.6.lzh │ │ │ ├── simple1.dat.7.lzh │ │ │ ├── simple2.dat.5.lzh │ │ │ ├── simple2.dat.6.lzh │ │ │ ├── simple2.dat.7.lzh │ │ │ ├── simple3.dat.5.lzh │ │ │ ├── simple3.dat.6.lzh │ │ │ ├── simple3.dat.7.lzh │ │ │ ├── simple4.dat.5.lzh │ │ │ ├── simple4.dat.6.lzh │ │ │ ├── simple4.dat.7.lzh │ │ │ ├── simple5.dat.5.lzh │ │ │ ├── simple5.dat.6.lzh │ │ │ └── simple5.dat.7.lzh │ │ ├── lzma │ │ │ ├── simple1.dat.1.lzma │ │ │ ├── simple1.dat.5.lzma │ │ │ ├── simple1.dat.9.lzma │ │ │ ├── simple2.dat.1.lzma │ │ │ ├── simple2.dat.5.lzma │ │ │ ├── simple2.dat.9.lzma │ │ │ ├── simple3.dat.1.lzma │ │ │ ├── simple3.dat.5.lzma │ │ │ ├── simple3.dat.9.lzma │ │ │ ├── simple4.dat.1.lzma │ │ │ ├── simple4.dat.5.lzma │ │ │ ├── simple4.dat.9.lzma │ │ │ ├── simple5.dat.1.lzma │ │ │ ├── simple5.dat.5.lzma │ │ │ └── simple5.dat.9.lzma │ │ ├── nsis-solid │ │ │ ├── simple1.dat.1.exe │ │ │ ├── simple1.dat.2.exe │ │ │ ├── simple1.dat.3.exe │ │ │ ├── simple2.dat.1.exe │ │ │ ├── simple2.dat.2.exe │ │ │ ├── simple2.dat.3.exe │ │ │ ├── simple3.dat.1.exe │ │ │ ├── simple3.dat.2.exe │ │ │ ├── simple3.dat.3.exe │ │ │ ├── simple4.dat.1.exe │ │ │ ├── simple4.dat.2.exe │ │ │ ├── simple4.dat.3.exe │ │ │ ├── simple5.dat.1.exe │ │ │ ├── simple5.dat.2.exe │ │ │ └── simple5.dat.3.exe │ │ ├── nsis │ │ │ ├── scripts │ │ │ │ ├── archive1.nsi │ │ │ │ ├── archive2.nsi │ │ │ │ └── archive3.nsi │ │ │ ├── simple1.dat.1.exe │ │ │ ├── simple1.dat.2.exe │ │ │ ├── simple1.dat.3.exe │ │ │ ├── simple2.dat.1.exe │ │ │ ├── simple2.dat.2.exe │ │ │ ├── simple2.dat.3.exe │ │ │ ├── simple3.dat.1.exe │ │ │ ├── simple3.dat.2.exe │ │ │ ├── simple3.dat.3.exe │ │ │ ├── simple4.dat.1.exe │ │ │ ├── simple4.dat.2.exe │ │ │ ├── simple4.dat.3.exe │ │ │ ├── simple5.dat.1.exe │ │ │ ├── simple5.dat.2.exe │ │ │ └── simple5.dat.3.exe │ │ ├── rar │ │ │ ├── pass-simple1.dat.0.rar │ │ │ ├── pass-simple1.dat.2.rar │ │ │ ├── pass-simple1.dat.5.rar │ │ │ ├── pass-simple2.dat.0.rar │ │ │ ├── pass-simple2.dat.2.rar │ │ │ ├── pass-simple2.dat.5.rar │ │ │ ├── pass-simple3.dat.0.rar │ │ │ ├── pass-simple3.dat.2.rar │ │ │ ├── pass-simple3.dat.5.rar │ │ │ ├── pass-simple4.dat.0.rar │ │ │ ├── pass-simple4.dat.2.rar │ │ │ ├── pass-simple4.dat.5.rar │ │ │ ├── pass-simple5.dat.0.rar │ │ │ ├── pass-simple5.dat.2.rar │ │ │ ├── pass-simple5.dat.5.rar │ │ │ ├── passh-simple1.dat.0.rar │ │ │ ├── passh-simple1.dat.2.rar │ │ │ ├── passh-simple1.dat.5.rar │ │ │ ├── passh-simple2.dat.0.rar │ │ │ ├── passh-simple2.dat.2.rar │ │ │ ├── passh-simple2.dat.5.rar │ │ │ ├── passh-simple3.dat.0.rar │ │ │ ├── passh-simple3.dat.2.rar │ │ │ ├── passh-simple3.dat.5.rar │ │ │ ├── passh-simple4.dat.0.rar │ │ │ ├── passh-simple4.dat.2.rar │ │ │ ├── passh-simple4.dat.5.rar │ │ │ ├── passh-simple5.dat.0.rar │ │ │ ├── passh-simple5.dat.2.rar │ │ │ ├── passh-simple5.dat.5.rar │ │ │ ├── simple1.dat.0.rar │ │ │ ├── simple1.dat.2.rar │ │ │ ├── simple1.dat.5.rar │ │ │ ├── simple2.dat.0.rar │ │ │ ├── simple2.dat.2.rar │ │ │ ├── simple2.dat.5.rar │ │ │ ├── simple3.dat.0.rar │ │ │ ├── simple3.dat.2.rar │ │ │ ├── simple3.dat.5.rar │ │ │ ├── simple4.dat.0.rar │ │ │ ├── simple4.dat.2.rar │ │ │ ├── simple4.dat.5.rar │ │ │ ├── simple5.dat.0.rar │ │ │ ├── simple5.dat.2.rar │ │ │ ├── simple5.dat.5.rar │ │ │ ├── vol-pass-simple1.dat.0.part1.rar │ │ │ ├── vol-pass-simple1.dat.0.part2.rar │ │ │ ├── vol-pass-simple1.dat.0.part3.rar │ │ │ ├── vol-pass-simple1.dat.0.part4.rar │ │ │ ├── vol-pass-simple1.dat.0.part5.rar │ │ │ ├── vol-pass-simple1.dat.2.part1.rar │ │ │ ├── vol-pass-simple1.dat.2.part2.rar │ │ │ ├── vol-pass-simple1.dat.2.part3.rar │ │ │ ├── vol-pass-simple1.dat.2.part4.rar │ │ │ ├── vol-pass-simple1.dat.2.part5.rar │ │ │ ├── vol-pass-simple1.dat.5.part1.rar │ │ │ ├── vol-pass-simple1.dat.5.part2.rar │ │ │ ├── vol-pass-simple1.dat.5.part3.rar │ │ │ ├── vol-pass-simple1.dat.5.part4.rar │ │ │ ├── vol-pass-simple1.dat.5.part5.rar │ │ │ ├── vol-pass-simple2.dat.0.part1.rar │ │ │ ├── vol-pass-simple2.dat.0.part2.rar │ │ │ ├── vol-pass-simple2.dat.0.part3.rar │ │ │ ├── vol-pass-simple2.dat.0.part4.rar │ │ │ ├── vol-pass-simple2.dat.0.part5.rar │ │ │ ├── vol-pass-simple2.dat.2.rar │ │ │ ├── vol-pass-simple2.dat.5.rar │ │ │ ├── vol-pass-simple3.dat.0.rar │ │ │ ├── vol-pass-simple3.dat.2.rar │ │ │ ├── vol-pass-simple3.dat.5.rar │ │ │ ├── vol-pass-simple4.dat.0.rar │ │ │ ├── vol-pass-simple4.dat.2.rar │ │ │ ├── vol-pass-simple4.dat.5.rar │ │ │ ├── vol-pass-simple5.dat.0.rar │ │ │ ├── vol-pass-simple5.dat.2.rar │ │ │ ├── vol-pass-simple5.dat.5.rar │ │ │ ├── vol-passh-simple1.dat.0.part1.rar │ │ │ ├── vol-passh-simple1.dat.0.part2.rar │ │ │ ├── vol-passh-simple1.dat.0.part3.rar │ │ │ ├── vol-passh-simple1.dat.0.part4.rar │ │ │ ├── vol-passh-simple1.dat.0.part5.rar │ │ │ ├── vol-passh-simple1.dat.2.part1.rar │ │ │ ├── vol-passh-simple1.dat.2.part2.rar │ │ │ ├── vol-passh-simple1.dat.2.part3.rar │ │ │ ├── vol-passh-simple1.dat.2.part4.rar │ │ │ ├── vol-passh-simple1.dat.2.part5.rar │ │ │ ├── vol-passh-simple1.dat.5.part1.rar │ │ │ ├── vol-passh-simple1.dat.5.part2.rar │ │ │ ├── vol-passh-simple1.dat.5.part3.rar │ │ │ ├── vol-passh-simple1.dat.5.part4.rar │ │ │ ├── vol-passh-simple1.dat.5.part5.rar │ │ │ ├── vol-passh-simple2.dat.0.part1.rar │ │ │ ├── vol-passh-simple2.dat.0.part2.rar │ │ │ ├── vol-passh-simple2.dat.0.part3.rar │ │ │ ├── vol-passh-simple2.dat.0.part4.rar │ │ │ ├── vol-passh-simple2.dat.0.part5.rar │ │ │ ├── vol-passh-simple2.dat.2.rar │ │ │ ├── vol-passh-simple2.dat.5.rar │ │ │ ├── vol-passh-simple3.dat.0.rar │ │ │ ├── vol-passh-simple3.dat.2.rar │ │ │ ├── vol-passh-simple3.dat.5.rar │ │ │ ├── vol-passh-simple4.dat.0.rar │ │ │ ├── vol-passh-simple4.dat.2.rar │ │ │ ├── vol-passh-simple4.dat.5.rar │ │ │ ├── vol-passh-simple5.dat.0.rar │ │ │ ├── vol-passh-simple5.dat.2.rar │ │ │ ├── vol-passh-simple5.dat.5.rar │ │ │ ├── vol-simple1.dat.0.part1.rar │ │ │ ├── vol-simple1.dat.0.part2.rar │ │ │ ├── vol-simple1.dat.0.part3.rar │ │ │ ├── vol-simple1.dat.0.part4.rar │ │ │ ├── vol-simple1.dat.0.part5.rar │ │ │ ├── vol-simple1.dat.2.part1.rar │ │ │ ├── vol-simple1.dat.2.part2.rar │ │ │ ├── vol-simple1.dat.2.part3.rar │ │ │ ├── vol-simple1.dat.2.part4.rar │ │ │ ├── vol-simple1.dat.2.part5.rar │ │ │ ├── vol-simple1.dat.5.part1.rar │ │ │ ├── vol-simple1.dat.5.part2.rar │ │ │ ├── vol-simple1.dat.5.part3.rar │ │ │ ├── vol-simple1.dat.5.part4.rar │ │ │ ├── vol-simple1.dat.5.part5.rar │ │ │ ├── vol-simple2.dat.0.part1.rar │ │ │ ├── vol-simple2.dat.0.part2.rar │ │ │ ├── vol-simple2.dat.0.part3.rar │ │ │ ├── vol-simple2.dat.0.part4.rar │ │ │ ├── vol-simple2.dat.0.part5.rar │ │ │ ├── vol-simple2.dat.2.rar │ │ │ ├── vol-simple2.dat.5.rar │ │ │ ├── vol-simple3.dat.0.rar │ │ │ ├── vol-simple3.dat.2.rar │ │ │ ├── vol-simple3.dat.5.rar │ │ │ ├── vol-simple4.dat.0.rar │ │ │ ├── vol-simple4.dat.2.rar │ │ │ ├── vol-simple4.dat.5.rar │ │ │ ├── vol-simple5.dat.0.rar │ │ │ ├── vol-simple5.dat.2.rar │ │ │ └── vol-simple5.dat.5.rar │ │ ├── rpm-simple1.cpio.gz │ │ ├── rpm-simple2.cpio.gz │ │ ├── rpm-simple3.cpio.gz │ │ ├── rpm-simple4.cpio.gz │ │ ├── rpm-simple5.cpio.gz │ │ ├── rpm │ │ │ ├── simple1.dat.0.rpm │ │ │ ├── simple2.dat.0.rpm │ │ │ ├── simple3.dat.0.rpm │ │ │ ├── simple4.dat.0.rpm │ │ │ └── simple5.dat.0.rpm │ │ ├── simple1.dat │ │ ├── simple2.dat │ │ ├── simple3.dat │ │ ├── simple4.dat │ │ ├── simple5.dat │ │ ├── tar │ │ │ ├── simple1.dat.0.tar │ │ │ ├── simple2.dat.0.tar │ │ │ ├── simple3.dat.0.tar │ │ │ ├── simple4.dat.0.tar │ │ │ └── simple5.dat.0.tar │ │ ├── udf │ │ │ ├── simple1.dat.102.udf.zip │ │ │ ├── simple1.dat.150.udf.zip │ │ │ ├── simple2.dat.102.udf.zip │ │ │ ├── simple2.dat.150.udf.zip │ │ │ ├── simple3.dat.102.udf.zip │ │ │ ├── simple3.dat.150.udf.zip │ │ │ ├── simple4.dat.102.udf.zip │ │ │ ├── simple4.dat.150.udf.zip │ │ │ ├── simple5.dat.102.udf.zip │ │ │ └── simple5.dat.150.udf.zip │ │ ├── wim │ │ │ ├── simple1.dat.0.wim │ │ │ ├── simple1.dat.1.wim │ │ │ ├── simple1.dat.2.wim │ │ │ ├── simple2.dat.0.wim │ │ │ ├── simple2.dat.1.wim │ │ │ ├── simple2.dat.2.wim │ │ │ ├── simple3.dat.0.wim │ │ │ ├── simple3.dat.1.wim │ │ │ ├── simple3.dat.2.wim │ │ │ ├── simple4.dat.0.wim │ │ │ ├── simple4.dat.1.wim │ │ │ ├── simple4.dat.2.wim │ │ │ ├── simple5.dat.0.wim │ │ │ ├── simple5.dat.1.wim │ │ │ └── simple5.dat.2.wim │ │ ├── xar │ │ │ ├── simple1.dat.1.xar │ │ │ ├── simple1.dat.2.xar │ │ │ ├── simple1.dat.3.xar │ │ │ ├── simple2.dat.1.xar │ │ │ ├── simple2.dat.2.xar │ │ │ ├── simple2.dat.3.xar │ │ │ ├── simple3.dat.1.xar │ │ │ ├── simple3.dat.2.xar │ │ │ ├── simple3.dat.3.xar │ │ │ ├── simple4.dat.1.xar │ │ │ ├── simple4.dat.2.xar │ │ │ ├── simple4.dat.3.xar │ │ │ ├── simple5.dat.1.xar │ │ │ ├── simple5.dat.2.xar │ │ │ └── simple5.dat.3.xar │ │ ├── z │ │ │ ├── simple1.dat.0.Z │ │ │ ├── simple2.dat.0.Z │ │ │ ├── simple3.dat.0.Z │ │ │ ├── simple4.dat.0.Z │ │ │ └── simple5.dat.0.Z │ │ └── zip │ │ │ ├── pass-simple1.dat.0.zip │ │ │ ├── pass-simple1.dat.5.zip │ │ │ ├── pass-simple1.dat.9.zip │ │ │ ├── pass-simple2.dat.0.zip │ │ │ ├── pass-simple2.dat.5.zip │ │ │ ├── pass-simple2.dat.9.zip │ │ │ ├── pass-simple3.dat.0.zip │ │ │ ├── pass-simple3.dat.5.zip │ │ │ ├── pass-simple3.dat.9.zip │ │ │ ├── pass-simple4.dat.0.zip │ │ │ ├── pass-simple4.dat.5.zip │ │ │ ├── pass-simple4.dat.9.zip │ │ │ ├── pass-simple5.dat.0.zip │ │ │ ├── pass-simple5.dat.5.zip │ │ │ ├── pass-simple5.dat.9.zip │ │ │ ├── simple1.dat.0.zip │ │ │ ├── simple1.dat.5.zip │ │ │ ├── simple1.dat.9.zip │ │ │ ├── simple2.dat.0.zip │ │ │ ├── simple2.dat.5.zip │ │ │ ├── simple2.dat.9.zip │ │ │ ├── simple3.dat.0.zip │ │ │ ├── simple3.dat.5.zip │ │ │ ├── simple3.dat.9.zip │ │ │ ├── simple4.dat.0.zip │ │ │ ├── simple4.dat.5.zip │ │ │ ├── simple4.dat.9.zip │ │ │ ├── simple5.dat.0.zip │ │ │ ├── simple5.dat.5.zip │ │ │ └── simple5.dat.9.zip │ │ └── snippets │ │ ├── multipart-7z.7z.001 │ │ ├── multipart-7z.7z.002 │ │ ├── multipart-7z.7z.003 │ │ ├── multipart-7z.7z.004 │ │ ├── multipart-rar.part1.rar │ │ ├── multipart-rar.part2.rar │ │ ├── multipart-rar.part3.rar │ │ ├── multipart-rar.part4.rar │ │ ├── multipart-rar.part5.rar │ │ ├── simple.zip │ │ └── to-update.7z │ ├── java │ └── net │ │ └── sf │ │ └── sevenzipjbinding │ │ ├── ArchiveFormat.java │ │ ├── ExtractAskMode.java │ │ ├── ExtractOperationResult.java │ │ ├── IArchiveExtractCallback.java │ │ ├── IArchiveOpenCallback.java │ │ ├── IArchiveOpenVolumeCallback.java │ │ ├── ICryptoGetTextPassword.java │ │ ├── ICryptoGetTextPassword2.java │ │ ├── IInArchive.java │ │ ├── IInStream.java │ │ ├── IOutArchive.java │ │ ├── IOutArchiveBase.java │ │ ├── IOutCreateArchive.java │ │ ├── IOutCreateArchive7z.java │ │ ├── IOutCreateArchiveBZip2.java │ │ ├── IOutCreateArchiveGZip.java │ │ ├── IOutCreateArchiveTar.java │ │ ├── IOutCreateArchiveXz.java │ │ ├── IOutCreateArchiveZip.java │ │ ├── IOutCreateArchiveZstd.java │ │ ├── IOutCreateCallback.java │ │ ├── IOutFeatureSetEncryptionMethod.java │ │ ├── IOutFeatureSetLevel.java │ │ ├── IOutFeatureSetMultithreading.java │ │ ├── IOutFeatureSetSolid.java │ │ ├── IOutItem7z.java │ │ ├── IOutItemAllFormats.java │ │ ├── IOutItemBZip2.java │ │ ├── IOutItemBase.java │ │ ├── IOutItemGZip.java │ │ ├── IOutItemTar.java │ │ ├── IOutItemXz.java │ │ ├── IOutItemZip.java │ │ ├── IOutItemZstd.java │ │ ├── IOutStream.java │ │ ├── IOutUpdateArchive.java │ │ ├── IOutUpdateArchive7z.java │ │ ├── IOutUpdateArchiveBZip2.java │ │ ├── IOutUpdateArchiveGZip.java │ │ ├── IOutUpdateArchiveTar.java │ │ ├── IOutUpdateArchiveXz.java │ │ ├── IOutUpdateArchiveZip.java │ │ ├── IOutUpdateArchiveZstd.java │ │ ├── IProgress.java │ │ ├── ISeekableStream.java │ │ ├── ISequentialInStream.java │ │ ├── ISequentialOutStream.java │ │ ├── NCoderPropID.java │ │ ├── NFileTimeType.java │ │ ├── PropID.java │ │ ├── PropertyInfo.java │ │ ├── RandomAccessChannel.java │ │ ├── SevenZip.java │ │ ├── SevenZipException.java │ │ ├── SevenZipNativeInitializationException.java │ │ ├── impl │ │ ├── InArchiveImpl.java │ │ ├── InputStreamSequentialInStream.java │ │ ├── OutArchive7zImpl.java │ │ ├── OutArchiveBZip2Impl.java │ │ ├── OutArchiveGZipImpl.java │ │ ├── OutArchiveImpl.java │ │ ├── OutArchiveTarImpl.java │ │ ├── OutArchiveXzImpl.java │ │ ├── OutArchiveZipImpl.java │ │ ├── OutArchiveZstdImpl.java │ │ ├── OutItem.java │ │ ├── OutItemFactory.java │ │ ├── ProxyFileChannel.java │ │ ├── RandomAccessChannelInStream.java │ │ ├── RandomAccessChannelOutStream.java │ │ ├── RandomAccessFileInStream.java │ │ ├── RandomAccessFileOutStream.java │ │ ├── VolumedArchiveInStream.java │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── simple │ │ ├── ISimpleInArchive.java │ │ ├── ISimpleInArchiveItem.java │ │ ├── impl │ │ │ ├── SimpleInArchiveImpl.java │ │ │ ├── SimpleInArchiveItemImpl.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ └── util │ │ └── ByteArrayStream.java │ └── res │ └── values │ └── strings.xml ├── settings.gradle └── sevenzipjbinding.LGPL /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | My Application -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /7-zip.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/7-zip.license -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/nmmedit/p7zip/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/java/com/nmmedit/p7zip/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/nmmedit/p7zip/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/app/src/test/java/com/nmmedit/p7zip/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/gradlew.bat -------------------------------------------------------------------------------- /p7zip-android/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /.externalNativeBuild 3 | *.iml 4 | .cxx/ 5 | -------------------------------------------------------------------------------- /p7zip-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/build.gradle -------------------------------------------------------------------------------- /p7zip-android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/proguard-rules.pro -------------------------------------------------------------------------------- /p7zip-android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/RegisterNative.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/RegisterNative.cxx -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/BaseSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/BaseSystem.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/CMakeLists.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/Client7z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/Client7z.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/CodecTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/CodecTools.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/CodecTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/CodecTools.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/Debug.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/Debug.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/JBindingTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/JBindingTools.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/JBindingTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/JBindingTools.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/JNISession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/JNISession.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/JNITools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/JNITools.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/JNITools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/JNITools.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/JObjectList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/JObjectList.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/JavaStaticInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/JavaStaticInfo.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/JavaStaticInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/JavaStaticInfo.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/PlatformMinGW/MyUser32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/PlatformMinGW/MyUser32.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/PlatformMinGW/MyWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/PlatformMinGW/MyWindows.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/PlatformMinGW/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/PlatformMinGW/StdAfx.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/PlatformUnix/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/PlatformUnix/StdAfx.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/ScopedLocalRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/ScopedLocalRef.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/SevenZipJBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/SevenZipJBinding.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/SevenZipJBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/SevenZipJBinding.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/UnicodeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/UnicodeHelper.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/UserTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/UserTrace.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/jbinding-cpp/UserTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/jbinding-cpp/UserTrace.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Asm/x86/7zAsm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Asm/x86/7zAsm.asm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Asm/x86/7zCrcOpt_asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Asm/x86/7zCrcOpt_asm.asm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Asm/x86/AesOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Asm/x86/AesOpt.asm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/7zBuf.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/7zBuf2.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/7zCrc.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/7zCrc.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/7zCrcOpt.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/7zStream.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/7zTypes.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/7zVersion.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Aes.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Aes.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/AesOpt.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Alloc.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Alloc.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Bcj2.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Bcj2.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Bcj2Enc.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Blake2.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Blake2s.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Bra.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Bra.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Bra86.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/BraIA64.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/BwtSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/BwtSort.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/BwtSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/BwtSort.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Compiler.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/CpuArch.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/CpuArch.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Delta.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Delta.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/HuffEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/HuffEnc.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/HuffEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/HuffEnc.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/LzFind.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/LzFind.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/LzFindMt.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/LzFindMt.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/LzHash.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma2Dec.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma2Dec.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma2Enc.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma2Enc.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma86.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma86Dec.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Lzma86Enc.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/LzmaDec.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/LzmaDec.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/LzmaEnc.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/LzmaEnc.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/MtCoder.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/MtCoder.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd7.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd7.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd7Dec.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd7Enc.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd8.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd8.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd8Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd8Dec.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd8Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Ppmd8Enc.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Precomp.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/RotateDefs.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Sha1.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Sha1.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Sha256.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Sha256.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Sort.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Sort.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Threads.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Threads.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Xz.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/Xz.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/XzCrc64.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/XzCrc64.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/XzCrc64Opt.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/XzDec.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/XzEnc.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/XzEnc.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/XzIn.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/COPYING -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/LICENSE -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/README.md -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/bitstream.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/compiler.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/cpu.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/debug.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/debug.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/entropy_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/entropy_common.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/error_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/error_private.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/error_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/error_private.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/error_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/error_public.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/fse.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/fse_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/fse_compress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/fse_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/fse_decompress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/hist.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/hist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/hist.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/huf.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/huf_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/huf_compress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/huf_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/huf_decompress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/mem.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/pool.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/pool.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/threading.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/threading.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/xxhash.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/xxhash.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_common.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_compress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_ddict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_ddict.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_ddict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_ddict.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_decompress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_double_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_double_fast.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_double_fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_double_fast.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_errors.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_fast.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_fast.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_internal.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_lazy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_lazy.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_lazy.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_ldm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_ldm.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_ldm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_ldm.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_legacy.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_opt.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_opt.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v01.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v01.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v02.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v02.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v03.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v03.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v04.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v04.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v05.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v05.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v05.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v06.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v06.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v07.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v07.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstd_v07.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstdmt_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstdmt_common.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstdmt_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstdmt_compress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstdmt_compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstdmt_compress.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstdmt_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstd/zstdmt_decompress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/README.md -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/list.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz4mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz4mt.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz4mt_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz4mt_common.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz4mt_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz4mt_compress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz4mt_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz4mt_decompress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz5mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz5mt.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz5mt_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz5mt_common.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz5mt_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz5mt_compress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz5mt_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/lz5mt_decompress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/mem.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/threading.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/threading.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/zstdmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/zstdmt.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/zstdmt_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/zstdmt_common.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/zstdmt_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/zstdmt_compress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/zstdmt_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/C/zstdmt/zstdmt_decompress.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CMakeLists.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/7z/7zIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/7z/7zIn.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/7z/7zIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/7z/7zIn.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/7z/7zItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/7z/7zItem.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/7z/7zOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/7z/7zOut.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/7z/7zOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/7z/7zOut.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Cab/CabIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Cab/CabIn.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Chm/ChmIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Chm/ChmIn.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Common/ParseProperties.cpp: -------------------------------------------------------------------------------- 1 | // ParseProperties.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/DeflateProps.cpp: -------------------------------------------------------------------------------- 1 | // DeflateProps.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/IArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/IArchive.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Iso/IsoIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Iso/IsoIn.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Rar/RarVol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Rar/RarVol.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Tar/TarIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Tar/TarIn.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Tar/TarOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Tar/TarOut.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Udf/UdfIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Udf/UdfIn.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Wim/WimIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Wim/WimIn.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/XzHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/XzHandler.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/ZHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/ZHandler.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Zip/ZipIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Zip/ZipIn.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Zip/ZipOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Archive/Zip/ZipOut.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Bundles/Alone/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Bundles/Alone7z/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Bundles/Format7zFree/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Bundles/LzmaCon/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Bundles/SFXCon/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/CMAKE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/CMAKE/CMakeLists.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/CMAKE/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/CMAKE/generate.sh -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/CWrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/CWrappers.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/CWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/CWrappers.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/CreateCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/CreateCoder.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/FileStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/FileStreams.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/FilterCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/FilterCoder.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/InBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/InBuffer.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/InBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/InBuffer.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/MemBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/MemBlocks.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/MemBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/MemBlocks.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/MethodId.cpp: -------------------------------------------------------------------------------- 1 | // MethodId.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/MethodId.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/MethodProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/MethodProps.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/OutBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/OutBuffer.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/OutBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/OutBuffer.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/ProgressMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/ProgressMt.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/PropId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/PropId.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/RegisterArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/RegisterArc.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/StreamUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/StreamUtils.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/UniqBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/UniqBlocks.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/VirtThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Common/VirtThread.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/BZip2Crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/BZip2Crc.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Bcj2Coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Bcj2Coder.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/BcjCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/BcjCoder.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/CopyCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/CopyCoder.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Lzham/include/zlib.h: -------------------------------------------------------------------------------- 1 | #define LZHAM_DEFINE_ZLIB_API 2 | #include "lzham.h" -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Lzham/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Lzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Lzx.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Mtf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Mtf8.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/PpmdZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/PpmdZip.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/PpmdZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/PpmdZip.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Rar/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Rar3Vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Rar3Vm.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Rar3Vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/Rar3Vm.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/ZDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Compress/ZDecoder.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/7zAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/7zAes.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/7zAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/7zAes.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/HmacSha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/HmacSha1.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/HmacSha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/HmacSha1.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/HmacSha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/HmacSha256.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/MyAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/MyAes.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/MyAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/MyAes.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/MyAesReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/MyAesReg.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/RandGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/RandGen.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/RandGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/RandGen.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/Rar20Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/Rar20Crypto.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/Rar5Aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/Rar5Aes.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/Rar5Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/Rar5Aes.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/RarAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/RarAes.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/RarAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/RarAes.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/Sha1Cls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/Sha1Cls.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/WzAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/WzAes.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/WzAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/WzAes.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/ZipCrypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/ZipCrypto.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/ZipCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/ZipCrypto.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/ZipStrong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/ZipStrong.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/ZipStrong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Crypto/ZipStrong.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Guid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Guid.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/ICoder.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/IDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/IDecl.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/IPassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/IPassword.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/IProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/IProgress.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/IStream.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/MyVersion.h: -------------------------------------------------------------------------------- 1 | #define USE_COPYRIGHT_CR 2 | #include "../../C/7zVersion.h" 3 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/PREMAKE/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/PREMAKE/generate.sh -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/PREMAKE/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/PREMAKE/premake4.lua -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/PropID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/PropID.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Q7Zip/Q7Zip/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Q7Zip/Q7Zip/main.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Q7Zip/all.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/Q7Zip/all.pro -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/QMAKE/7z_/7z_.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/QMAKE/7z_/7z_.pro -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/QMAKE/7za/7za.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/QMAKE/7za/7za.pro -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/QMAKE/7zr/7zr.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/QMAKE/7zr/7zr.pro -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/QMAKE/Rar/Rar.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/QMAKE/Rar/Rar.pro -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/QMAKE/all.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/QMAKE/all.pro -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/TEST/TestUI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/TEST/TestUI/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/TEST/TestUI/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Agent/Agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Agent/Agent.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Agent/Agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Agent/Agent.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Client7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Client7z/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Client7z/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/ClientCodec/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Bench.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Bench.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/DirItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/DirItem.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/ExitCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/ExitCode.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Extract.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/HashCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/HashCalc.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Property.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Update.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/Update.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Common/WorkDir.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Console/HashCon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Console/HashCon.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Console/List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Console/List.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Console/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Console/List.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Console/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Console/Main.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Console/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Console/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Console/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/Explorer/ContextMenu.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* TODO */ 4 | 5 | 6 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/FileManager/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/FileManager/App.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/FileManager/ProgramLocation.cpp: -------------------------------------------------------------------------------- 1 | // ProgramLocation.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/FileManager/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/ExtractGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/ExtractGUI.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/ExtractRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/ExtractRes.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/GUI.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/HashGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/HashGUI.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/HashGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/HashGUI.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/UpdateGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/UpdateGUI.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/UpdateGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/UpdateGUI.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/makefile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/makefile.list -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/resource2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/resource2.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/resource3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/resource3.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/wxGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/GUI/wxGUI.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/P7ZIP/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/P7ZIP/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/P7ZIP/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/P7ZIP/wxP7ZIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/7zip/UI/P7ZIP/wxP7ZIP.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/7z/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/7z/jni/Android.mk -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/7z/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/7za/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/7za/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/7zr/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/7zr/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/Lzham/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET=lzham 3 | 4 | all: build 5 | 6 | include ../makefile.inc 7 | 8 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/MemLat/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/MemLat/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/PipeLen/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/PipeLen/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/makefile.inc -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/readme.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/test_lib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/ANDROID/test_lib/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/AutoPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/AutoPtr.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/CRC.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/C_FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/C_FileIO.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/C_FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/C_FileIO.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/ComTry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/ComTry.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Common.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/CrcReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/CrcReg.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Defs.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/DynLimBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/DynLimBuf.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/DynLimBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/DynLimBuf.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/DynamicBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/DynamicBuffer.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/IntToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/IntToString.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/IntToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/IntToString.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Lang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Lang.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Lang.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/ListFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/ListFileUtils.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/ListFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/ListFileUtils.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyBuffer.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyCom.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyException.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyGuidDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyGuidDef.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyInitGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyInitGuid.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyLinux.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyMap.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyMap.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyString.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyString.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyTypes.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyUnknown.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyVector.cpp: -------------------------------------------------------------------------------- 1 | // Common/MyVector.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyVector.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyWindows.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyWindows.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyXml.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/MyXml.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/NewHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/NewHandler.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/NewHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/NewHandler.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Random.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Sha1Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Sha1Reg.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Sha256Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Sha256Reg.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StdInStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StdInStream.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StdInStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StdInStream.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StdOutStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StdOutStream.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StdOutStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StdOutStream.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StringConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StringConvert.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StringConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StringConvert.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StringToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StringToInt.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StringToInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/StringToInt.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/TextConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/TextConfig.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/TextConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/TextConfig.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/UTFConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/UTFConvert.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/UTFConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/UTFConvert.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Wildcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Wildcard.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/Wildcard.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/XzCrc64Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Common/XzCrc64Reg.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/COM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/COM.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/COM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/COM.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Clipboard.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Clipboard.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/CommonDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/CommonDialog.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Control/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Control/Dialog.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Control/Edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Control/Edit.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Control/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Control/Static.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Control/Window2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Control/Window2.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/DLL.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/DLL.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Defs.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/ErrorMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/ErrorMsg.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/ErrorMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/ErrorMsg.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileDir.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileDir.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileFind.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileFind.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileIO.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileIO.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileName.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/FileName.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Menu.h: -------------------------------------------------------------------------------- 1 | 2 | /* TODO */ 3 | 4 | 5 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/NtCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/NtCheck.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/PropVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/PropVariant.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/PropVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/PropVariant.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/PropVariantConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/PropVariantConv.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Registry.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Registry.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/ResourceString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/ResourceString.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Shell.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Synchronization.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/System.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/System.cpp.back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/System.cpp.back -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/System.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Thread.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/TimeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/TimeUtils.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/TimeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/TimeUtils.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Window.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/Windows/Window.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/include_windows/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/include_windows/tchar.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/include_windows/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/include_windows/windows.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/StdAfx.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/config.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/initguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/initguid.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/makefile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/makefile.list -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/myPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/myPrivate.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/test_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/CPP/myWindows/test_lib.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/ChangeLog -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/7zC.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/7zFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/7zFormat.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/License.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/cmdline/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/cmdline/index.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/cmdline/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/cmdline/style.css -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/cmdline/syntax.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/cmdline/syntax.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/about.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/about.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/benchmark.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/benchmark.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/index.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/menu.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/menu.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/options.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/options.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/fm/style.css -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/general/7z.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/general/7z.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/general/faq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/general/faq.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/general/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/general/index.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/general/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/general/style.css -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/general/thanks.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/general/thanks.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/start.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/start.htm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/MANUAL/style.css -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/Methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/Methods.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/copying.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/lzma.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/readme.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/src-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/src-history.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/DOC/unRarLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/DOC/unRarLicense.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Contents/Info.plist -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaONe -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/af.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/af.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/an.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/an.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ar.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ast.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/az.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/az.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ba.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/be.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/bg.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/bn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/bn.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/br.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ca.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/co.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/co.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/cs.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/cy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/cy.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/da.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/de.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/el.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/en.ttt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/en.ttt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/eo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/eo.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/es.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/et.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/eu.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ext.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/fa.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/fi.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/fr.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/fur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/fur.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/fy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/fy.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ga.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/gl.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/gu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/gu.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/he.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/he.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/hi.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/hr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/hr.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/hu.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/hy.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/id.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/io.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/io.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/is.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/is.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/it.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ja.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ka.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ka.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/kaa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/kaa.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/kk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/kk.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ko.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ku-ckb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ku-ckb.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ku.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ku.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ky.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ky.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/lij.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/lij.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/lt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/lt.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/lv.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/mk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/mk.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/mn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/mn.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/mng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/mng.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/mng2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/mng2.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/mr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/mr.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ms.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/nb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/nb.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ne.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ne.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/nl.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/nn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/nn.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/pa-in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/pa-in.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/pl.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ps.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/pt-br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/pt-br.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/pt.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ro.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ru.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sa.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/si.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/si.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sk.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sl.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sq.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sr-spc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sr-spc.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sr-spl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sr-spl.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/sv.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ta.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/th.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/tr.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/tt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/tt.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/ug.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/uk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/uk.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/uz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/uz.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/va.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/va.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/vi.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/yo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/yo.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/zh-cn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/zh-cn.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/zh-tw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/Lang/zh-tw.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/kde3/p7zip_test.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/kde3/p7zip_test.desktop -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/kde3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/kde3/readme.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/kde4/p7zip_test.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/kde4/p7zip_test.desktop -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/kde4/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/kde4/readme.txt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zipForFilemanager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zipForFilemanager -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zip_16.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zip_16.icns -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zip_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zip_16.png -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zip_16_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zip_16_ok.png -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zip_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zip_32.png -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zip_32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/GUI/p7zip_32.xpm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/README -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/TODO -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/Benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/Benchmark.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/MemLat/Walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/MemLat/Walk.c -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/MemLat/Walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/MemLat/Walk.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/MemLat/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/MemLat/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/MemLat/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/MyVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/MyVersion.h -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/PipeLen/MemLat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/PipeLen/MemLat -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/CPUTest/PipeLen/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/bin_to_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/bin_to_sources.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7z.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7zCon_sfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7zCon_sfx.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7zFM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7zFM.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7zG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7zG.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7z_so.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7z_so.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7za.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7za.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7zr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_7zr.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_Client7z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_Client7z.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_Codecs_Lzham_so.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_Codecs_Lzham_so.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_Codecs_Rar_so.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_Codecs_Rar_so.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_LzmaCon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_LzmaCon.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_P7ZIP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_P7ZIP.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_TestUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/file_TestUI.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/Utils/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/Utils/generate.py -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/check/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/check/check.sh -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/check/check_7zr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/check/check_7zr.sh -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/check/check_Client7z.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/check/check_Client7z.sh -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/check/check_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/check/check_install.sh -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/check/clean_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/check/clean_all.sh -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/check/test/7za.exe.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/check/test/7za.exe.lzma -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/check/test/7za.exe.lzma86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/check/test/7za.exe.lzma86 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/check/test/7za.exe.lzma_eos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/check/test/7za.exe.lzma_eos -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/check/test/7za.exe.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/check/test/7za.exe.xz -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/check/test/7za433_tar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/check/test/7za433_tar.tar -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/install.sh -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/install_local_context_menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/install_local_context_menu.sh -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/last_error: -------------------------------------------------------------------------------- 1 | ERROR during : make all_test 2 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.afl -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.aix_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.aix_gcc -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.android_arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.android_arm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.beos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.beos -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.common -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.crc32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.crc32 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin64 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin64_asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin64_asm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin_asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin_asm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin_clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin_clang -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin_clang_asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.cygwin_clang_asm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.djgpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.djgpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.djgpp_watt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.djgpp_watt -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.freebsd5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.freebsd5 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.freebsd6+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.freebsd6+ -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.glb -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.gprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.gprof -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.haiku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.haiku -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.hpux-acc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.hpux-acc -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.hpux-acc_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.hpux-acc_64 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.hpux-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.hpux-gcc -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_amd64 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_amd64_asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_amd64_asm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_amd64_asm_icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_amd64_asm_icc -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_any_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_any_cpu -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_arm -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_djgpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_djgpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_m68k -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_mipsel -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_ppc -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_ppc64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_ppc64 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_cross_s390x -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_other -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_s390x -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_scan-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_scan-build -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_valgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_valgrind -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_x32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_x32 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_x86_asm_icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_x86_asm_icc -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_x86_icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.linux_x86_icc -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.machine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.machine -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.macosx_gcc_32bits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.macosx_gcc_32bits -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.macosx_gcc_64bits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.macosx_gcc_64bits -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.macosx_llvm_64bits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.macosx_llvm_64bits -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.netbsd -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.oldmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.oldmake -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.openbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.openbsd -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.openbsd_no_port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.openbsd_no_port -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.qnx_shared.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.qnx_shared.bin -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.qnx_shared.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.qnx_shared.so -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.qnx_static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.qnx_static -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.solaris_sparc_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.solaris_sparc_gcc -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.solaris_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.solaris_x86 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/makefile.tru64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/makefile.tru64 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/man1/7z.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/man1/7z.1 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/man1/7za.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/man1/7za.1 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/p7zip_16.02/man1/7zr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/p7zip_16.02/man1/7zr.1 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/CTests/JBindingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/test/CTests/JBindingTest.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/CTests/JniToolsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/test/CTests/JniToolsTest.cpp -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/JavaTests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/test/JavaTests/.classpath -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/JavaTests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/test/JavaTests/.project -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/JavaTests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/JavaTests/lib/junit-4.11-src.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/test/JavaTests/lib/junit-4.11-src.jar -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/JavaTests/lib/junit-4.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/cpp/test/JavaTests/lib/junit-4.11.jar -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/JavaTests/testdata/multiple-files/deb/archive2.zip.1.deb: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/JavaTests/testdata/multiple-files/deb/archive2.zip.2.deb: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/JavaTests/testdata/multiple-files/deb/archive2.zip.3.deb: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/JavaTests/testdata/simple/simple3.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/JavaTests/testdata/simple/simple4.dat: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /p7zip-android/src/main/cpp/test/JavaTests/testdata/simple/simple5.dat: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /p7zip-android/src/main/java/net/sf/sevenzipjbinding/IInStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/java/net/sf/sevenzipjbinding/IInStream.java -------------------------------------------------------------------------------- /p7zip-android/src/main/java/net/sf/sevenzipjbinding/IProgress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/java/net/sf/sevenzipjbinding/IProgress.java -------------------------------------------------------------------------------- /p7zip-android/src/main/java/net/sf/sevenzipjbinding/PropID.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/java/net/sf/sevenzipjbinding/PropID.java -------------------------------------------------------------------------------- /p7zip-android/src/main/java/net/sf/sevenzipjbinding/SevenZip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/java/net/sf/sevenzipjbinding/SevenZip.java -------------------------------------------------------------------------------- /p7zip-android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/p7zip-android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/settings.gradle -------------------------------------------------------------------------------- /sevenzipjbinding.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoabc/android-p7zip/HEAD/sevenzipjbinding.LGPL --------------------------------------------------------------------------------