├── .gitignore ├── 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 ├── 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 ├── 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 │ ├── 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 │ │ ├── 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 │ ├── 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 │ ├── 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 ├── 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 ├── LICENSE ├── README.md ├── Unused ├── ChangeLog ├── LICENSE ├── README.old ├── TODO ├── 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 ├── Utils ├── CPUTest │ ├── Benchmark.h │ ├── MemLat │ │ ├── MemLat.cpp │ │ ├── Walk.c │ │ ├── Walk.h │ │ ├── Walk32.asm │ │ ├── Walk64.asm │ │ ├── makefile │ │ ├── makefile.depend │ │ └── makefile.list │ ├── MyVersion.h │ └── PipeLen │ │ ├── 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 ├── debian ├── .gitignore ├── NEWS ├── README.Debian ├── README.source ├── changelog ├── control ├── copyright ├── p7zip-full.doc-base ├── p7zip-full.docs ├── p7zip-full.install ├── p7zip-full.links ├── p7zip-full.maintscript ├── p7zip-full.manpages ├── p7zip.1 ├── p7zip.install ├── p7zip.manpages ├── patches │ ├── 01-makefile.patch │ ├── 02-man.patch │ ├── 03-include-linux-makefile.patch │ ├── 05-hardening-flags.patch │ ├── 09-man-update.patch │ ├── 10-drop-fm-doc.patch │ ├── 11-README-no-instructions.patch │ ├── 12-CVE-2016-9296.patch │ ├── 13-CVE-2017-17969.patch │ ├── 14-Fix-g++-warning.patch │ ├── 15-Fix-FTBFS-gcc10.patch │ └── series ├── rules ├── scripts │ ├── 7z │ ├── 7za │ ├── 7zr │ └── p7zip ├── source │ ├── format │ ├── local-options │ └── options └── watch ├── man1 ├── 7z.1 ├── 7za.1 └── 7zr.1 └── wasm-port ├── CMakeLists.txt ├── icon.png ├── index.html ├── wasm.cpp └── worker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/.gitignore -------------------------------------------------------------------------------- /Asm/x86/7zAsm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Asm/x86/7zAsm.asm -------------------------------------------------------------------------------- /Asm/x86/7zCrcOpt_asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Asm/x86/7zCrcOpt_asm.asm -------------------------------------------------------------------------------- /Asm/x86/AesOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Asm/x86/AesOpt.asm -------------------------------------------------------------------------------- /C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/7zBuf.h -------------------------------------------------------------------------------- /C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/7zBuf2.c -------------------------------------------------------------------------------- /C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/7zCrc.c -------------------------------------------------------------------------------- /C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/7zCrc.h -------------------------------------------------------------------------------- /C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/7zCrcOpt.c -------------------------------------------------------------------------------- /C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/7zStream.c -------------------------------------------------------------------------------- /C/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/7zTypes.h -------------------------------------------------------------------------------- /C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/7zVersion.h -------------------------------------------------------------------------------- /C/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Aes.c -------------------------------------------------------------------------------- /C/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Aes.h -------------------------------------------------------------------------------- /C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Alloc.c -------------------------------------------------------------------------------- /C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Alloc.h -------------------------------------------------------------------------------- /C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Bcj2.c -------------------------------------------------------------------------------- /C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Bcj2.h -------------------------------------------------------------------------------- /C/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Bcj2Enc.c -------------------------------------------------------------------------------- /C/Blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Blake2.h -------------------------------------------------------------------------------- /C/Blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Blake2s.c -------------------------------------------------------------------------------- /C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Bra.c -------------------------------------------------------------------------------- /C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Bra.h -------------------------------------------------------------------------------- /C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Bra86.c -------------------------------------------------------------------------------- /C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/BraIA64.c -------------------------------------------------------------------------------- /C/BwtSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/BwtSort.c -------------------------------------------------------------------------------- /C/BwtSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/BwtSort.h -------------------------------------------------------------------------------- /C/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Compiler.h -------------------------------------------------------------------------------- /C/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/CpuArch.c -------------------------------------------------------------------------------- /C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/CpuArch.h -------------------------------------------------------------------------------- /C/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Delta.c -------------------------------------------------------------------------------- /C/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Delta.h -------------------------------------------------------------------------------- /C/HuffEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/HuffEnc.c -------------------------------------------------------------------------------- /C/HuffEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/HuffEnc.h -------------------------------------------------------------------------------- /C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/LzFind.c -------------------------------------------------------------------------------- /C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/LzFind.h -------------------------------------------------------------------------------- /C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/LzFindMt.c -------------------------------------------------------------------------------- /C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/LzFindMt.h -------------------------------------------------------------------------------- /C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/LzHash.h -------------------------------------------------------------------------------- /C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Lzma2Dec.c -------------------------------------------------------------------------------- /C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Lzma2Dec.h -------------------------------------------------------------------------------- /C/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Lzma2Enc.c -------------------------------------------------------------------------------- /C/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Lzma2Enc.h -------------------------------------------------------------------------------- /C/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Lzma86.h -------------------------------------------------------------------------------- /C/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Lzma86Dec.c -------------------------------------------------------------------------------- /C/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Lzma86Enc.c -------------------------------------------------------------------------------- /C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/LzmaDec.c -------------------------------------------------------------------------------- /C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/LzmaDec.h -------------------------------------------------------------------------------- /C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/LzmaEnc.c -------------------------------------------------------------------------------- /C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/LzmaEnc.h -------------------------------------------------------------------------------- /C/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/MtCoder.c -------------------------------------------------------------------------------- /C/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/MtCoder.h -------------------------------------------------------------------------------- /C/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Ppmd.h -------------------------------------------------------------------------------- /C/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Ppmd7.c -------------------------------------------------------------------------------- /C/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Ppmd7.h -------------------------------------------------------------------------------- /C/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Ppmd7Dec.c -------------------------------------------------------------------------------- /C/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Ppmd7Enc.c -------------------------------------------------------------------------------- /C/Ppmd8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Ppmd8.c -------------------------------------------------------------------------------- /C/Ppmd8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Ppmd8.h -------------------------------------------------------------------------------- /C/Ppmd8Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Ppmd8Dec.c -------------------------------------------------------------------------------- /C/Ppmd8Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Ppmd8Enc.c -------------------------------------------------------------------------------- /C/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Precomp.h -------------------------------------------------------------------------------- /C/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/RotateDefs.h -------------------------------------------------------------------------------- /C/Sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Sha1.c -------------------------------------------------------------------------------- /C/Sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Sha1.h -------------------------------------------------------------------------------- /C/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Sha256.c -------------------------------------------------------------------------------- /C/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Sha256.h -------------------------------------------------------------------------------- /C/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Sort.c -------------------------------------------------------------------------------- /C/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Sort.h -------------------------------------------------------------------------------- /C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Threads.c -------------------------------------------------------------------------------- /C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Threads.h -------------------------------------------------------------------------------- /C/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Xz.c -------------------------------------------------------------------------------- /C/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/Xz.h -------------------------------------------------------------------------------- /C/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/XzCrc64.c -------------------------------------------------------------------------------- /C/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/XzCrc64.h -------------------------------------------------------------------------------- /C/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/XzCrc64Opt.c -------------------------------------------------------------------------------- /C/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/XzDec.c -------------------------------------------------------------------------------- /C/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/XzEnc.c -------------------------------------------------------------------------------- /C/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/XzEnc.h -------------------------------------------------------------------------------- /C/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/C/XzIn.c -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zDecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zDecode.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zDecode.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zEncode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zEncode.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zEncode.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zExtract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zExtract.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zHeader.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zOut.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zOut.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zProperties.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zRegister.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zSpecStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zSpecStream.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zUpdate.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/7z/7zUpdate.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/ApmHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/ApmHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/ArHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/ArHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/ArchiveExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/ArchiveExports.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/ArjHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/ArjHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Bz2Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Bz2Handler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Cab/CabHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Cab/CabHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Cab/CabHeader.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Cab/CabHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Cab/CabIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Cab/CabIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Cab/CabItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Chm/ChmHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Chm/ChmHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Chm/ChmHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Chm/ChmHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Chm/ChmIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Chm/ChmIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Chm/ChmIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Chm/ChmIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/ComHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/ComHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Common/ParseProperties.cpp: -------------------------------------------------------------------------------- 1 | // ParseProperties.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Archive/CpioHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/CpioHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/CramfsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/CramfsHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/DeflateProps.cpp: -------------------------------------------------------------------------------- 1 | // DeflateProps.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Archive/DeflateProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/DeflateProps.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/DllExports2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/DllExports2.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/DmgHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/DmgHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/ElfHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/ElfHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/ExtHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/ExtHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/FatHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/FatHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/FlvHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/FlvHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/GptHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/GptHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/GzHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/GzHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/HandlerCont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/HandlerCont.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/HandlerCont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/HandlerCont.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/HfsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/HfsHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/IArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/IArchive.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/IhexHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/IhexHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Iso/IsoHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Iso/IsoHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Iso/IsoHeader.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Iso/IsoHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Iso/IsoIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Iso/IsoIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Iso/IsoItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/LzhHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/LzhHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/LzmaHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/LzmaHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/MachoHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/MachoHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/MbrHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/MbrHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/MslzHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/MslzHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/MubHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/MubHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Nsis/NsisDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Nsis/NsisDecode.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Nsis/NsisHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Nsis/NsisHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Nsis/NsisIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Nsis/NsisIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Nsis/NsisIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Nsis/NsisIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/NtfsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/NtfsHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/PeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/PeHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/PpmdHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/PpmdHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/QcowHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/QcowHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/Rar5Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Rar/Rar5Handler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/RarHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Rar/RarHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/RarHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Rar/RarHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/RarHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Rar/RarHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/RarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Rar/RarItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/RarVol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Rar/RarVol.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/RpmHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/RpmHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/SplitHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/SplitHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/SwfHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/SwfHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Tar/TarHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Tar/TarHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Tar/TarHeader.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Tar/TarHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Tar/TarIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Tar/TarIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Tar/TarItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Tar/TarOut.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Tar/TarOut.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Tar/TarUpdate.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Tar/TarUpdate.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Udf/UdfHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Udf/UdfHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Udf/UdfHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Udf/UdfHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Udf/UdfIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Udf/UdfIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Udf/UdfIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Udf/UdfIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/UefiHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/UefiHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/VdiHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/VdiHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/VhdHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/VhdHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/VmdkHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/VmdkHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Wim/WimHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Wim/WimHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Wim/WimHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Wim/WimHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Wim/WimIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Wim/WimIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Wim/WimIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Wim/WimIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/XarHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/XarHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/XzHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/XzHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/XzHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/XzHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/ZHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/ZHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipAddCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipAddCommon.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipItem.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipOut.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipOut.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipUpdate.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Archive/Zip/ZipUpdate.h -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Bundles/Alone/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Bundles/Alone7z/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone7z/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/Bundles/AloneGCOV/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Bundles/AloneGCOV/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Format7zFree/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/Bundles/LzmaCon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Bundles/LzmaCon/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/LzmaCon/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/Bundles/SFXCon/SfxCon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Bundles/SFXCon/SfxCon.cpp -------------------------------------------------------------------------------- /CPP/7zip/Bundles/SFXCon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Bundles/SFXCon/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/SFXCon/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/CMAKE/7zFM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/CMAKE/7zFM/CMakeLists.txt -------------------------------------------------------------------------------- /CPP/7zip/CMAKE/7zG/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/CMAKE/7zG/CMakeLists.txt -------------------------------------------------------------------------------- /CPP/7zip/CMAKE/7z_/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/CMAKE/7z_/CMakeLists.txt -------------------------------------------------------------------------------- /CPP/7zip/CMAKE/7za/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/CMAKE/7za/CMakeLists.txt -------------------------------------------------------------------------------- /CPP/7zip/CMAKE/7zr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/CMAKE/7zr/CMakeLists.txt -------------------------------------------------------------------------------- /CPP/7zip/CMAKE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/CMAKE/CMakeLists.txt -------------------------------------------------------------------------------- /CPP/7zip/CMAKE/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/CMAKE/generate.sh -------------------------------------------------------------------------------- /CPP/7zip/CMAKE/generate_xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/CMAKE/generate_xcode.sh -------------------------------------------------------------------------------- /CPP/7zip/Common/CWrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/CWrappers.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/CWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/CWrappers.h -------------------------------------------------------------------------------- /CPP/7zip/Common/CreateCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/CreateCoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/CreateCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/CreateCoder.h -------------------------------------------------------------------------------- /CPP/7zip/Common/FileStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/FileStreams.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/FileStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/FileStreams.h -------------------------------------------------------------------------------- /CPP/7zip/Common/FilterCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/FilterCoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/FilterCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/FilterCoder.h -------------------------------------------------------------------------------- /CPP/7zip/Common/InBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/InBuffer.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/InBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/InBuffer.h -------------------------------------------------------------------------------- /CPP/7zip/Common/InOutTempBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/InOutTempBuffer.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/InOutTempBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/InOutTempBuffer.h -------------------------------------------------------------------------------- /CPP/7zip/Common/LimitedStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/LimitedStreams.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/LimitedStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/LimitedStreams.h -------------------------------------------------------------------------------- /CPP/7zip/Common/MemBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/MemBlocks.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/MemBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/MemBlocks.h -------------------------------------------------------------------------------- /CPP/7zip/Common/MethodId.cpp: -------------------------------------------------------------------------------- 1 | // MethodId.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/MethodId.h -------------------------------------------------------------------------------- /CPP/7zip/Common/MethodProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/MethodProps.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/MethodProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/MethodProps.h -------------------------------------------------------------------------------- /CPP/7zip/Common/OffsetStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/OffsetStream.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/OffsetStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/OffsetStream.h -------------------------------------------------------------------------------- /CPP/7zip/Common/OutBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/OutBuffer.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/OutBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/OutBuffer.h -------------------------------------------------------------------------------- /CPP/7zip/Common/OutMemStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/OutMemStream.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/OutMemStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/OutMemStream.h -------------------------------------------------------------------------------- /CPP/7zip/Common/ProgressMt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/ProgressMt.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/ProgressMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/ProgressMt.h -------------------------------------------------------------------------------- /CPP/7zip/Common/ProgressUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/ProgressUtils.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/ProgressUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/ProgressUtils.h -------------------------------------------------------------------------------- /CPP/7zip/Common/PropId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/PropId.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/RegisterArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/RegisterArc.h -------------------------------------------------------------------------------- /CPP/7zip/Common/RegisterCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/RegisterCodec.h -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamBinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/StreamBinder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/StreamBinder.h -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/StreamObjects.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/StreamObjects.h -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/StreamUtils.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/StreamUtils.h -------------------------------------------------------------------------------- /CPP/7zip/Common/UniqBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/UniqBlocks.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/UniqBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/UniqBlocks.h -------------------------------------------------------------------------------- /CPP/7zip/Common/VirtThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/VirtThread.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/VirtThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Common/VirtThread.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BZip2Const.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BZip2Crc.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BZip2Crc.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BZip2Decoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BZip2Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BZip2Encoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BZip2Encoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BZip2Register.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Bcj2Coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Bcj2Coder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Bcj2Coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Bcj2Coder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Bcj2Register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Bcj2Register.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BcjCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BcjCoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BcjCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BcjCoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BcjRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BcjRegister.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BitlDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BitlDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BitlDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BitlDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BitlEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BitlEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BitmDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BitmDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BitmEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BitmEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BranchMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BranchMisc.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BranchMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/BranchMisc.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ByteSwap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/ByteSwap.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/CodecExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/CodecExports.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/CopyCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/CopyCoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/CopyCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/CopyCoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/CopyRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/CopyRegister.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/DeflateConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/DeflateConst.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/DeflateDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/DeflateDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/DeflateEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/DeflateEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/DeltaFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/DeltaFilter.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/HuffmanDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/HuffmanDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ImplodeDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/ImplodeDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzOutWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzOutWindow.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzOutWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzOutWindow.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzhDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzhDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzhDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzhDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzham/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Lzham/LICENSE -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzham/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Lzham/README.md -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzham/include/zlib.h: -------------------------------------------------------------------------------- 1 | #define LZHAM_DEFINE_ZLIB_API 2 | #include "lzham.h" -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzham/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Lzham/makefile -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzham/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzma2Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Lzma2Decoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzma2Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Lzma2Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzma2Encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Lzma2Encoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzma2Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Lzma2Encoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzma2Register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Lzma2Register.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmaDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzmaDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmaDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzmaDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmaEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzmaEncoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmaEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzmaEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmaRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzmaRegister.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmsDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzmsDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmsDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzmsDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Lzx.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzxDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzxDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzxDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/LzxDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Mtf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Mtf8.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/PpmdDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/PpmdDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/PpmdEncoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/PpmdEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/PpmdRegister.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/PpmdZip.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/PpmdZip.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/QuantumDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/QuantumDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar1Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Rar1Decoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar1Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Rar1Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar2Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Rar2Decoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar2Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Rar2Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar3Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Rar3Decoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar3Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Rar3Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar3Vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Rar3Vm.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar3Vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Rar3Vm.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar5Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Rar5Decoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar5Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/Rar5Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ShrinkDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/ShrinkDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/ShrinkDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/ShrinkDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/XpressDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/XpressDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/XpressDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/XpressDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/ZDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/ZDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZlibDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/ZlibDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZlibDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/ZlibDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZlibEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/ZlibEncoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZlibEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Compress/ZlibEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/7zAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/7zAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/7zAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/7zAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/7zAesRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/7zAesRegister.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/HmacSha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/HmacSha1.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/HmacSha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/HmacSha1.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/HmacSha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/HmacSha256.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/HmacSha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/HmacSha256.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/MyAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/MyAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/MyAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/MyAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/MyAesReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/MyAesReg.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Pbkdf2HmacSha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/Pbkdf2HmacSha1.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Pbkdf2HmacSha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/Pbkdf2HmacSha1.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RandGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/RandGen.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RandGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/RandGen.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Rar20Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/Rar20Crypto.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Rar20Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/Rar20Crypto.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Rar5Aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/Rar5Aes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Rar5Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/Rar5Aes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RarAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/RarAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RarAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/RarAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Sha1Cls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/Sha1Cls.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/WzAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/WzAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/WzAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/WzAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/ZipCrypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/ZipCrypto.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/ZipCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/ZipCrypto.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/ZipStrong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/ZipStrong.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/ZipStrong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Crypto/ZipStrong.h -------------------------------------------------------------------------------- /CPP/7zip/Guid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Guid.txt -------------------------------------------------------------------------------- /CPP/7zip/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/ICoder.h -------------------------------------------------------------------------------- /CPP/7zip/IDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/IDecl.h -------------------------------------------------------------------------------- /CPP/7zip/IPassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/IPassword.h -------------------------------------------------------------------------------- /CPP/7zip/IProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/IProgress.h -------------------------------------------------------------------------------- /CPP/7zip/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/IStream.h -------------------------------------------------------------------------------- /CPP/7zip/MyVersion.h: -------------------------------------------------------------------------------- 1 | #define USE_COPYRIGHT_CR 2 | #include "../../C/7zVersion.h" 3 | -------------------------------------------------------------------------------- /CPP/7zip/PREMAKE/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/PREMAKE/generate.sh -------------------------------------------------------------------------------- /CPP/7zip/PREMAKE/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/PREMAKE/premake4.lua -------------------------------------------------------------------------------- /CPP/7zip/PropID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/PropID.h -------------------------------------------------------------------------------- /CPP/7zip/Q7Zip/Q7Zip/Q7Zip.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Q7Zip/Q7Zip/Q7Zip.pro -------------------------------------------------------------------------------- /CPP/7zip/Q7Zip/Q7Zip/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Q7Zip/Q7Zip/main.cpp -------------------------------------------------------------------------------- /CPP/7zip/Q7Zip/all.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/Q7Zip/all.pro -------------------------------------------------------------------------------- /CPP/7zip/QMAKE/7z_/7z_.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/QMAKE/7z_/7z_.pro -------------------------------------------------------------------------------- /CPP/7zip/QMAKE/7za/7za.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/QMAKE/7za/7za.pro -------------------------------------------------------------------------------- /CPP/7zip/QMAKE/7zr/7zr.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/QMAKE/7zr/7zr.pro -------------------------------------------------------------------------------- /CPP/7zip/QMAKE/Lzham/Lzham.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/QMAKE/Lzham/Lzham.pro -------------------------------------------------------------------------------- /CPP/7zip/QMAKE/Rar/Rar.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/QMAKE/Rar/Rar.pro -------------------------------------------------------------------------------- /CPP/7zip/QMAKE/all.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/QMAKE/all.pro -------------------------------------------------------------------------------- /CPP/7zip/TEST/TestUI/TestUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/TEST/TestUI/TestUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/TEST/TestUI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/TEST/TestUI/makefile -------------------------------------------------------------------------------- /CPP/7zip/TEST/TestUI/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/TEST/TestUI/makefile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/TEST/TestUI/makefile.list -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/Agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Agent/Agent.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/Agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Agent/Agent.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/AgentOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Agent/AgentOut.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/AgentProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Agent/AgentProxy.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/AgentProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Agent/AgentProxy.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/ArchiveFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Agent/ArchiveFolder.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/IFolderArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Agent/IFolderArchive.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Client7z/Client7z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Client7z/Client7z.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Client7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Client7z/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/Client7z/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/UI/Client7z/makefile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Client7z/makefile.list -------------------------------------------------------------------------------- /CPP/7zip/UI/ClientCodec/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/ClientCodec/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/ClientCodec/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/ArchiveName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/ArchiveName.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/ArchiveName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/ArchiveName.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/Bench.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/Bench.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/CompressCall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/CompressCall.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/CompressCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/CompressCall.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/DefaultName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/DefaultName.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/DefaultName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/DefaultName.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/DirItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/DirItem.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/EnumDirItems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/EnumDirItems.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/EnumDirItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/EnumDirItems.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/ExitCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/ExitCode.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/Extract.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/Extract.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/ExtractMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/ExtractMode.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/HashCalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/HashCalc.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/HashCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/HashCalc.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/LoadCodecs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/LoadCodecs.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/LoadCodecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/LoadCodecs.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/OpenArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/OpenArchive.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/OpenArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/OpenArchive.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/PropIDUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/PropIDUtils.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/PropIDUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/PropIDUtils.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/Property.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/SetProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/SetProperties.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/SortUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/SortUtils.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/SortUtils.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/TempFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/TempFiles.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/TempFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/TempFiles.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/Update.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/Update.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/UpdateAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/UpdateAction.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/UpdatePair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/UpdatePair.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/UpdatePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/UpdatePair.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/WorkDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/WorkDir.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/WorkDir.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/ZipRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Common/ZipRegistry.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/BenchCon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Console/BenchCon.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/BenchCon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Console/BenchCon.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/HashCon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Console/HashCon.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/HashCon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Console/HashCon.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Console/List.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Console/List.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Console/Main.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/MainAr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Console/MainAr.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Console/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/makefile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Console/makefile.list -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/ContextMenu.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* TODO */ 4 | 5 | 6 | -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/MyMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/Explorer/MyMessages.h -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/FileManager/App.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/FileManager/App.h -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/FM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/FileManager/FM.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/FM_rc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/FileManager/FM_rc.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/IFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/FileManager/IFolder.h -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/FileManager/Panel.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/FileManager/Panel.h -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/ProgramLocation.cpp: -------------------------------------------------------------------------------- 1 | // ProgramLocation.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/FileManager/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/wxFM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/FileManager/wxFM.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/BenchmarkDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/BenchmarkDialog.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/CompressDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/CompressDialog.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/ExtractDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/ExtractDialog.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/ExtractDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/ExtractDialog.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/ExtractGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/ExtractGUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/ExtractGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/ExtractGUI.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/ExtractRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/ExtractRes.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/GUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/HashGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/HashGUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/HashGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/HashGUI.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/UpdateGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/UpdateGUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/UpdateGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/UpdateGUI.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/makefile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/makefile.list -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/resource2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/resource2.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/resource3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/resource3.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/wxGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/GUI/wxGUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/P7ZIP/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/P7ZIP/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/P7ZIP/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/7zip/UI/P7ZIP/makefile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/P7ZIP/makefile.list -------------------------------------------------------------------------------- /CPP/7zip/UI/P7ZIP/wxP7ZIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/7zip/UI/P7ZIP/wxP7ZIP.cpp -------------------------------------------------------------------------------- /CPP/ANDROID/7z/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/7z/jni/Android.mk -------------------------------------------------------------------------------- /CPP/ANDROID/7z/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/7z/jni/Application.mk -------------------------------------------------------------------------------- /CPP/ANDROID/7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/7z/makefile -------------------------------------------------------------------------------- /CPP/ANDROID/7za/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/7za/jni/Android.mk -------------------------------------------------------------------------------- /CPP/ANDROID/7za/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/7za/makefile -------------------------------------------------------------------------------- /CPP/ANDROID/7zr/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/7zr/jni/Android.mk -------------------------------------------------------------------------------- /CPP/ANDROID/7zr/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/7zr/makefile -------------------------------------------------------------------------------- /CPP/ANDROID/Format7zFree/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/Format7zFree/makefile -------------------------------------------------------------------------------- /CPP/ANDROID/Lzham/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/Lzham/jni/Android.mk -------------------------------------------------------------------------------- /CPP/ANDROID/Lzham/makefile: -------------------------------------------------------------------------------- 1 | 2 | TARGET=lzham 3 | 4 | all: build 5 | 6 | include ../makefile.inc 7 | 8 | -------------------------------------------------------------------------------- /CPP/ANDROID/MemLat/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/MemLat/jni/Android.mk -------------------------------------------------------------------------------- /CPP/ANDROID/MemLat/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/MemLat/makefile -------------------------------------------------------------------------------- /CPP/ANDROID/PipeLen/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/PipeLen/makefile -------------------------------------------------------------------------------- /CPP/ANDROID/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/makefile -------------------------------------------------------------------------------- /CPP/ANDROID/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/makefile.inc -------------------------------------------------------------------------------- /CPP/ANDROID/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/readme.txt -------------------------------------------------------------------------------- /CPP/ANDROID/test_lib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/ANDROID/test_lib/makefile -------------------------------------------------------------------------------- /CPP/Common/AutoPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/AutoPtr.h -------------------------------------------------------------------------------- /CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/CRC.cpp -------------------------------------------------------------------------------- /CPP/Common/C_FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/C_FileIO.cpp -------------------------------------------------------------------------------- /CPP/Common/C_FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/C_FileIO.h -------------------------------------------------------------------------------- /CPP/Common/ComTry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/ComTry.h -------------------------------------------------------------------------------- /CPP/Common/CommandLineParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/CommandLineParser.cpp -------------------------------------------------------------------------------- /CPP/Common/CommandLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/CommandLineParser.h -------------------------------------------------------------------------------- /CPP/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/Common.h -------------------------------------------------------------------------------- /CPP/Common/CrcReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/CrcReg.cpp -------------------------------------------------------------------------------- /CPP/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/Defs.h -------------------------------------------------------------------------------- /CPP/Common/DynLimBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/DynLimBuf.cpp -------------------------------------------------------------------------------- /CPP/Common/DynLimBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/DynLimBuf.h -------------------------------------------------------------------------------- /CPP/Common/DynamicBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/DynamicBuffer.h -------------------------------------------------------------------------------- /CPP/Common/IntToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/IntToString.cpp -------------------------------------------------------------------------------- /CPP/Common/IntToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/IntToString.h -------------------------------------------------------------------------------- /CPP/Common/Lang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/Lang.cpp -------------------------------------------------------------------------------- /CPP/Common/Lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/Lang.h -------------------------------------------------------------------------------- /CPP/Common/ListFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/ListFileUtils.cpp -------------------------------------------------------------------------------- /CPP/Common/ListFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/ListFileUtils.h -------------------------------------------------------------------------------- /CPP/Common/MyBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyBuffer.h -------------------------------------------------------------------------------- /CPP/Common/MyCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyCom.h -------------------------------------------------------------------------------- /CPP/Common/MyException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyException.h -------------------------------------------------------------------------------- /CPP/Common/MyGuidDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyGuidDef.h -------------------------------------------------------------------------------- /CPP/Common/MyInitGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyInitGuid.h -------------------------------------------------------------------------------- /CPP/Common/MyLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyLinux.h -------------------------------------------------------------------------------- /CPP/Common/MyMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyMap.cpp -------------------------------------------------------------------------------- /CPP/Common/MyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyMap.h -------------------------------------------------------------------------------- /CPP/Common/MyString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyString.cpp -------------------------------------------------------------------------------- /CPP/Common/MyString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyString.h -------------------------------------------------------------------------------- /CPP/Common/MyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyTypes.h -------------------------------------------------------------------------------- /CPP/Common/MyUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyUnknown.h -------------------------------------------------------------------------------- /CPP/Common/MyVector.cpp: -------------------------------------------------------------------------------- 1 | // Common/MyVector.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/Common/MyVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyVector.h -------------------------------------------------------------------------------- /CPP/Common/MyWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyWindows.cpp -------------------------------------------------------------------------------- /CPP/Common/MyWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyWindows.h -------------------------------------------------------------------------------- /CPP/Common/MyXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyXml.cpp -------------------------------------------------------------------------------- /CPP/Common/MyXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/MyXml.h -------------------------------------------------------------------------------- /CPP/Common/NewHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/NewHandler.cpp -------------------------------------------------------------------------------- /CPP/Common/NewHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/NewHandler.h -------------------------------------------------------------------------------- /CPP/Common/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/Random.h -------------------------------------------------------------------------------- /CPP/Common/Sha1Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/Sha1Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/Sha256Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/Sha256Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/StdInStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/StdInStream.cpp -------------------------------------------------------------------------------- /CPP/Common/StdInStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/StdInStream.h -------------------------------------------------------------------------------- /CPP/Common/StdOutStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/StdOutStream.cpp -------------------------------------------------------------------------------- /CPP/Common/StdOutStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/StdOutStream.h -------------------------------------------------------------------------------- /CPP/Common/StringConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/StringConvert.cpp -------------------------------------------------------------------------------- /CPP/Common/StringConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/StringConvert.h -------------------------------------------------------------------------------- /CPP/Common/StringToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/StringToInt.cpp -------------------------------------------------------------------------------- /CPP/Common/StringToInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/StringToInt.h -------------------------------------------------------------------------------- /CPP/Common/TextConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/TextConfig.cpp -------------------------------------------------------------------------------- /CPP/Common/TextConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/TextConfig.h -------------------------------------------------------------------------------- /CPP/Common/UTFConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/UTFConvert.cpp -------------------------------------------------------------------------------- /CPP/Common/UTFConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/UTFConvert.h -------------------------------------------------------------------------------- /CPP/Common/Wildcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/Wildcard.cpp -------------------------------------------------------------------------------- /CPP/Common/Wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/Wildcard.h -------------------------------------------------------------------------------- /CPP/Common/XzCrc64Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Common/XzCrc64Reg.cpp -------------------------------------------------------------------------------- /CPP/Windows/COM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/COM.cpp -------------------------------------------------------------------------------- /CPP/Windows/COM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/COM.h -------------------------------------------------------------------------------- /CPP/Windows/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Clipboard.cpp -------------------------------------------------------------------------------- /CPP/Windows/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Clipboard.h -------------------------------------------------------------------------------- /CPP/Windows/CommonDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/CommonDialog.h -------------------------------------------------------------------------------- /CPP/Windows/Control/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/ComboBox.h -------------------------------------------------------------------------------- /CPP/Windows/Control/Controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/Controls.cpp -------------------------------------------------------------------------------- /CPP/Windows/Control/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/Dialog.cpp -------------------------------------------------------------------------------- /CPP/Windows/Control/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/Dialog.h -------------------------------------------------------------------------------- /CPP/Windows/Control/DialogImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/DialogImpl.h -------------------------------------------------------------------------------- /CPP/Windows/Control/Edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/Edit.h -------------------------------------------------------------------------------- /CPP/Windows/Control/ListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/ListView.h -------------------------------------------------------------------------------- /CPP/Windows/Control/ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/ProgressBar.h -------------------------------------------------------------------------------- /CPP/Windows/Control/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/Static.h -------------------------------------------------------------------------------- /CPP/Windows/Control/StatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/StatusBar.h -------------------------------------------------------------------------------- /CPP/Windows/Control/Window2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/Window2.cpp -------------------------------------------------------------------------------- /CPP/Windows/Control/Window2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Control/Window2.h -------------------------------------------------------------------------------- /CPP/Windows/DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/DLL.cpp -------------------------------------------------------------------------------- /CPP/Windows/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/DLL.h -------------------------------------------------------------------------------- /CPP/Windows/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Defs.h -------------------------------------------------------------------------------- /CPP/Windows/ErrorMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/ErrorMsg.cpp -------------------------------------------------------------------------------- /CPP/Windows/ErrorMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/ErrorMsg.h -------------------------------------------------------------------------------- /CPP/Windows/FileDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/FileDir.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/FileDir.h -------------------------------------------------------------------------------- /CPP/Windows/FileFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/FileFind.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/FileFind.h -------------------------------------------------------------------------------- /CPP/Windows/FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/FileIO.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/FileIO.h -------------------------------------------------------------------------------- /CPP/Windows/FileName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/FileName.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/FileName.h -------------------------------------------------------------------------------- /CPP/Windows/Menu.h: -------------------------------------------------------------------------------- 1 | 2 | /* TODO */ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CPP/Windows/NtCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/NtCheck.h -------------------------------------------------------------------------------- /CPP/Windows/PropVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/PropVariant.cpp -------------------------------------------------------------------------------- /CPP/Windows/PropVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/PropVariant.h -------------------------------------------------------------------------------- /CPP/Windows/PropVariantConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/PropVariantConv.cpp -------------------------------------------------------------------------------- /CPP/Windows/PropVariantConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/PropVariantConv.h -------------------------------------------------------------------------------- /CPP/Windows/PropVariantUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/PropVariantUtils.cpp -------------------------------------------------------------------------------- /CPP/Windows/PropVariantUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/PropVariantUtils.h -------------------------------------------------------------------------------- /CPP/Windows/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Registry.cpp -------------------------------------------------------------------------------- /CPP/Windows/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Registry.h -------------------------------------------------------------------------------- /CPP/Windows/ResourceString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/ResourceString.h -------------------------------------------------------------------------------- /CPP/Windows/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Shell.h -------------------------------------------------------------------------------- /CPP/Windows/Synchronization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Synchronization.cpp -------------------------------------------------------------------------------- /CPP/Windows/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Synchronization.h -------------------------------------------------------------------------------- /CPP/Windows/Synchronization2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Synchronization2.h -------------------------------------------------------------------------------- /CPP/Windows/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/System.cpp -------------------------------------------------------------------------------- /CPP/Windows/System.cpp.back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/System.cpp.back -------------------------------------------------------------------------------- /CPP/Windows/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/System.h -------------------------------------------------------------------------------- /CPP/Windows/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Thread.h -------------------------------------------------------------------------------- /CPP/Windows/TimeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/TimeUtils.cpp -------------------------------------------------------------------------------- /CPP/Windows/TimeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/TimeUtils.h -------------------------------------------------------------------------------- /CPP/Windows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Window.cpp -------------------------------------------------------------------------------- /CPP/Windows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/Windows/Window.h -------------------------------------------------------------------------------- /CPP/include_windows/basetyps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/include_windows/basetyps.h -------------------------------------------------------------------------------- /CPP/include_windows/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/include_windows/tchar.h -------------------------------------------------------------------------------- /CPP/include_windows/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/include_windows/windows.h -------------------------------------------------------------------------------- /CPP/myWindows/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/myWindows/StdAfx.h -------------------------------------------------------------------------------- /CPP/myWindows/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/myWindows/config.h -------------------------------------------------------------------------------- /CPP/myWindows/initguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/myWindows/initguid.h -------------------------------------------------------------------------------- /CPP/myWindows/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/myWindows/makefile -------------------------------------------------------------------------------- /CPP/myWindows/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CPP/myWindows/makefile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/myWindows/makefile.list -------------------------------------------------------------------------------- /CPP/myWindows/myAddExeFlag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/myWindows/myAddExeFlag.cpp -------------------------------------------------------------------------------- /CPP/myWindows/myPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/myWindows/myPrivate.h -------------------------------------------------------------------------------- /CPP/myWindows/test_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/CPP/myWindows/test_lib.cpp -------------------------------------------------------------------------------- /DOC/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/7zC.txt -------------------------------------------------------------------------------- /DOC/7zFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/7zFormat.txt -------------------------------------------------------------------------------- /DOC/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/License.txt -------------------------------------------------------------------------------- /DOC/MANUAL/cmdline/exit_codes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/cmdline/exit_codes.htm -------------------------------------------------------------------------------- /DOC/MANUAL/cmdline/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/cmdline/index.htm -------------------------------------------------------------------------------- /DOC/MANUAL/cmdline/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/cmdline/style.css -------------------------------------------------------------------------------- /DOC/MANUAL/cmdline/syntax.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/cmdline/syntax.htm -------------------------------------------------------------------------------- /DOC/MANUAL/fm/about.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/fm/about.htm -------------------------------------------------------------------------------- /DOC/MANUAL/fm/benchmark.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/fm/benchmark.htm -------------------------------------------------------------------------------- /DOC/MANUAL/fm/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/fm/index.htm -------------------------------------------------------------------------------- /DOC/MANUAL/fm/menu.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/fm/menu.htm -------------------------------------------------------------------------------- /DOC/MANUAL/fm/options.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/fm/options.htm -------------------------------------------------------------------------------- /DOC/MANUAL/fm/plugins/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/fm/plugins/index.htm -------------------------------------------------------------------------------- /DOC/MANUAL/fm/plugins/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/fm/plugins/style.css -------------------------------------------------------------------------------- /DOC/MANUAL/fm/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/fm/style.css -------------------------------------------------------------------------------- /DOC/MANUAL/general/7z.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/general/7z.htm -------------------------------------------------------------------------------- /DOC/MANUAL/general/faq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/general/faq.htm -------------------------------------------------------------------------------- /DOC/MANUAL/general/formats.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/general/formats.htm -------------------------------------------------------------------------------- /DOC/MANUAL/general/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/general/index.htm -------------------------------------------------------------------------------- /DOC/MANUAL/general/license.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/general/license.htm -------------------------------------------------------------------------------- /DOC/MANUAL/general/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/general/style.css -------------------------------------------------------------------------------- /DOC/MANUAL/general/thanks.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/general/thanks.htm -------------------------------------------------------------------------------- /DOC/MANUAL/start.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/start.htm -------------------------------------------------------------------------------- /DOC/MANUAL/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/MANUAL/style.css -------------------------------------------------------------------------------- /DOC/Methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/Methods.txt -------------------------------------------------------------------------------- /DOC/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/copying.txt -------------------------------------------------------------------------------- /DOC/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/lzma.txt -------------------------------------------------------------------------------- /DOC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/readme.txt -------------------------------------------------------------------------------- /DOC/src-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/src-history.txt -------------------------------------------------------------------------------- /DOC/unRarLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/DOC/unRarLicense.txt -------------------------------------------------------------------------------- /GUI/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Contents/Info.plist -------------------------------------------------------------------------------- /GUI/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaONe -------------------------------------------------------------------------------- /GUI/Contents/Resources/p7zip.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Contents/Resources/p7zip.icns -------------------------------------------------------------------------------- /GUI/Lang/af.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/af.txt -------------------------------------------------------------------------------- /GUI/Lang/an.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/an.txt -------------------------------------------------------------------------------- /GUI/Lang/ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ar.txt -------------------------------------------------------------------------------- /GUI/Lang/ast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ast.txt -------------------------------------------------------------------------------- /GUI/Lang/az.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/az.txt -------------------------------------------------------------------------------- /GUI/Lang/ba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ba.txt -------------------------------------------------------------------------------- /GUI/Lang/be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/be.txt -------------------------------------------------------------------------------- /GUI/Lang/bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/bg.txt -------------------------------------------------------------------------------- /GUI/Lang/bn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/bn.txt -------------------------------------------------------------------------------- /GUI/Lang/br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/br.txt -------------------------------------------------------------------------------- /GUI/Lang/ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ca.txt -------------------------------------------------------------------------------- /GUI/Lang/co.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/co.txt -------------------------------------------------------------------------------- /GUI/Lang/cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/cs.txt -------------------------------------------------------------------------------- /GUI/Lang/cy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/cy.txt -------------------------------------------------------------------------------- /GUI/Lang/da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/da.txt -------------------------------------------------------------------------------- /GUI/Lang/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/de.txt -------------------------------------------------------------------------------- /GUI/Lang/el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/el.txt -------------------------------------------------------------------------------- /GUI/Lang/en.ttt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/en.ttt -------------------------------------------------------------------------------- /GUI/Lang/eo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/eo.txt -------------------------------------------------------------------------------- /GUI/Lang/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/es.txt -------------------------------------------------------------------------------- /GUI/Lang/et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/et.txt -------------------------------------------------------------------------------- /GUI/Lang/eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/eu.txt -------------------------------------------------------------------------------- /GUI/Lang/ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ext.txt -------------------------------------------------------------------------------- /GUI/Lang/fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/fa.txt -------------------------------------------------------------------------------- /GUI/Lang/fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/fi.txt -------------------------------------------------------------------------------- /GUI/Lang/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/fr.txt -------------------------------------------------------------------------------- /GUI/Lang/fur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/fur.txt -------------------------------------------------------------------------------- /GUI/Lang/fy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/fy.txt -------------------------------------------------------------------------------- /GUI/Lang/ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ga.txt -------------------------------------------------------------------------------- /GUI/Lang/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/gl.txt -------------------------------------------------------------------------------- /GUI/Lang/gu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/gu.txt -------------------------------------------------------------------------------- /GUI/Lang/he.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/he.txt -------------------------------------------------------------------------------- /GUI/Lang/hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/hi.txt -------------------------------------------------------------------------------- /GUI/Lang/hr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/hr.txt -------------------------------------------------------------------------------- /GUI/Lang/hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/hu.txt -------------------------------------------------------------------------------- /GUI/Lang/hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/hy.txt -------------------------------------------------------------------------------- /GUI/Lang/id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/id.txt -------------------------------------------------------------------------------- /GUI/Lang/io.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/io.txt -------------------------------------------------------------------------------- /GUI/Lang/is.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/is.txt -------------------------------------------------------------------------------- /GUI/Lang/it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/it.txt -------------------------------------------------------------------------------- /GUI/Lang/ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ja.txt -------------------------------------------------------------------------------- /GUI/Lang/ka.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ka.txt -------------------------------------------------------------------------------- /GUI/Lang/kaa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/kaa.txt -------------------------------------------------------------------------------- /GUI/Lang/kk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/kk.txt -------------------------------------------------------------------------------- /GUI/Lang/ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ko.txt -------------------------------------------------------------------------------- /GUI/Lang/ku-ckb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ku-ckb.txt -------------------------------------------------------------------------------- /GUI/Lang/ku.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ku.txt -------------------------------------------------------------------------------- /GUI/Lang/ky.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ky.txt -------------------------------------------------------------------------------- /GUI/Lang/lij.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/lij.txt -------------------------------------------------------------------------------- /GUI/Lang/lt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/lt.txt -------------------------------------------------------------------------------- /GUI/Lang/lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/lv.txt -------------------------------------------------------------------------------- /GUI/Lang/mk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/mk.txt -------------------------------------------------------------------------------- /GUI/Lang/mn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/mn.txt -------------------------------------------------------------------------------- /GUI/Lang/mng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/mng.txt -------------------------------------------------------------------------------- /GUI/Lang/mng2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/mng2.txt -------------------------------------------------------------------------------- /GUI/Lang/mr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/mr.txt -------------------------------------------------------------------------------- /GUI/Lang/ms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ms.txt -------------------------------------------------------------------------------- /GUI/Lang/nb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/nb.txt -------------------------------------------------------------------------------- /GUI/Lang/ne.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ne.txt -------------------------------------------------------------------------------- /GUI/Lang/nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/nl.txt -------------------------------------------------------------------------------- /GUI/Lang/nn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/nn.txt -------------------------------------------------------------------------------- /GUI/Lang/pa-in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/pa-in.txt -------------------------------------------------------------------------------- /GUI/Lang/pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/pl.txt -------------------------------------------------------------------------------- /GUI/Lang/ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ps.txt -------------------------------------------------------------------------------- /GUI/Lang/pt-br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/pt-br.txt -------------------------------------------------------------------------------- /GUI/Lang/pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/pt.txt -------------------------------------------------------------------------------- /GUI/Lang/ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ro.txt -------------------------------------------------------------------------------- /GUI/Lang/ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ru.txt -------------------------------------------------------------------------------- /GUI/Lang/sa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/sa.txt -------------------------------------------------------------------------------- /GUI/Lang/si.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/si.txt -------------------------------------------------------------------------------- /GUI/Lang/sk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/sk.txt -------------------------------------------------------------------------------- /GUI/Lang/sl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/sl.txt -------------------------------------------------------------------------------- /GUI/Lang/sq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/sq.txt -------------------------------------------------------------------------------- /GUI/Lang/sr-spc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/sr-spc.txt -------------------------------------------------------------------------------- /GUI/Lang/sr-spl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/sr-spl.txt -------------------------------------------------------------------------------- /GUI/Lang/sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/sv.txt -------------------------------------------------------------------------------- /GUI/Lang/ta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ta.txt -------------------------------------------------------------------------------- /GUI/Lang/th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/th.txt -------------------------------------------------------------------------------- /GUI/Lang/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/tr.txt -------------------------------------------------------------------------------- /GUI/Lang/tt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/tt.txt -------------------------------------------------------------------------------- /GUI/Lang/ug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/ug.txt -------------------------------------------------------------------------------- /GUI/Lang/uk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/uk.txt -------------------------------------------------------------------------------- /GUI/Lang/uz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/uz.txt -------------------------------------------------------------------------------- /GUI/Lang/va.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/va.txt -------------------------------------------------------------------------------- /GUI/Lang/vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/vi.txt -------------------------------------------------------------------------------- /GUI/Lang/yo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/yo.txt -------------------------------------------------------------------------------- /GUI/Lang/zh-cn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/zh-cn.txt -------------------------------------------------------------------------------- /GUI/Lang/zh-tw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/Lang/zh-tw.txt -------------------------------------------------------------------------------- /GUI/kde3/p7zip_compress.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde3/p7zip_compress.desktop -------------------------------------------------------------------------------- /GUI/kde3/p7zip_compress2.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde3/p7zip_compress2.desktop -------------------------------------------------------------------------------- /GUI/kde3/p7zip_extract.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde3/p7zip_extract.desktop -------------------------------------------------------------------------------- /GUI/kde3/p7zip_extract_to.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde3/p7zip_extract_to.desktop -------------------------------------------------------------------------------- /GUI/kde3/p7zip_test.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde3/p7zip_test.desktop -------------------------------------------------------------------------------- /GUI/kde3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde3/readme.txt -------------------------------------------------------------------------------- /GUI/kde4/p7zip_compress.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde4/p7zip_compress.desktop -------------------------------------------------------------------------------- /GUI/kde4/p7zip_compress2.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde4/p7zip_compress2.desktop -------------------------------------------------------------------------------- /GUI/kde4/p7zip_extract.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde4/p7zip_extract.desktop -------------------------------------------------------------------------------- /GUI/kde4/p7zip_extract_to.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde4/p7zip_extract_to.desktop -------------------------------------------------------------------------------- /GUI/kde4/p7zip_test.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde4/p7zip_test.desktop -------------------------------------------------------------------------------- /GUI/kde4/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/kde4/readme.txt -------------------------------------------------------------------------------- /GUI/p7zipForFilemanager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/p7zipForFilemanager -------------------------------------------------------------------------------- /GUI/p7zip_16.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/p7zip_16.icns -------------------------------------------------------------------------------- /GUI/p7zip_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/p7zip_16.png -------------------------------------------------------------------------------- /GUI/p7zip_16_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/p7zip_16_ok.png -------------------------------------------------------------------------------- /GUI/p7zip_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/p7zip_32.png -------------------------------------------------------------------------------- /GUI/p7zip_32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/GUI/p7zip_32.xpm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/README.md -------------------------------------------------------------------------------- /Unused/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/ChangeLog -------------------------------------------------------------------------------- /Unused/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/LICENSE -------------------------------------------------------------------------------- /Unused/README.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/README.old -------------------------------------------------------------------------------- /Unused/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/TODO -------------------------------------------------------------------------------- /Unused/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/install.sh -------------------------------------------------------------------------------- /Unused/last_error: -------------------------------------------------------------------------------- 1 | ERROR during : make all_test 2 | -------------------------------------------------------------------------------- /Unused/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile -------------------------------------------------------------------------------- /Unused/makefile.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.afl -------------------------------------------------------------------------------- /Unused/makefile.aix_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.aix_gcc -------------------------------------------------------------------------------- /Unused/makefile.android_arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.android_arm -------------------------------------------------------------------------------- /Unused/makefile.beos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.beos -------------------------------------------------------------------------------- /Unused/makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.common -------------------------------------------------------------------------------- /Unused/makefile.crc32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.crc32 -------------------------------------------------------------------------------- /Unused/makefile.cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.cygwin -------------------------------------------------------------------------------- /Unused/makefile.cygwin64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.cygwin64 -------------------------------------------------------------------------------- /Unused/makefile.cygwin64_asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.cygwin64_asm -------------------------------------------------------------------------------- /Unused/makefile.cygwin_asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.cygwin_asm -------------------------------------------------------------------------------- /Unused/makefile.cygwin_clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.cygwin_clang -------------------------------------------------------------------------------- /Unused/makefile.cygwin_clang_asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.cygwin_clang_asm -------------------------------------------------------------------------------- /Unused/makefile.djgpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.djgpp -------------------------------------------------------------------------------- /Unused/makefile.djgpp_watt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.djgpp_watt -------------------------------------------------------------------------------- /Unused/makefile.freebsd5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.freebsd5 -------------------------------------------------------------------------------- /Unused/makefile.freebsd6+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.freebsd6+ -------------------------------------------------------------------------------- /Unused/makefile.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.glb -------------------------------------------------------------------------------- /Unused/makefile.gprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.gprof -------------------------------------------------------------------------------- /Unused/makefile.haiku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.haiku -------------------------------------------------------------------------------- /Unused/makefile.hpux-acc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.hpux-acc -------------------------------------------------------------------------------- /Unused/makefile.hpux-acc_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.hpux-acc_64 -------------------------------------------------------------------------------- /Unused/makefile.hpux-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.hpux-gcc -------------------------------------------------------------------------------- /Unused/makefile.linux_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_amd64 -------------------------------------------------------------------------------- /Unused/makefile.linux_amd64_asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_amd64_asm -------------------------------------------------------------------------------- /Unused/makefile.linux_any_cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_any_cpu -------------------------------------------------------------------------------- /Unused/makefile.linux_cross_arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_cross_arm -------------------------------------------------------------------------------- /Unused/makefile.linux_cross_djgpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_cross_djgpp -------------------------------------------------------------------------------- /Unused/makefile.linux_cross_m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_cross_m68k -------------------------------------------------------------------------------- /Unused/makefile.linux_cross_ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_cross_ppc -------------------------------------------------------------------------------- /Unused/makefile.linux_cross_ppc64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_cross_ppc64 -------------------------------------------------------------------------------- /Unused/makefile.linux_cross_s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_cross_s390x -------------------------------------------------------------------------------- /Unused/makefile.linux_other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_other -------------------------------------------------------------------------------- /Unused/makefile.linux_s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_s390x -------------------------------------------------------------------------------- /Unused/makefile.linux_scan-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_scan-build -------------------------------------------------------------------------------- /Unused/makefile.linux_valgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_valgrind -------------------------------------------------------------------------------- /Unused/makefile.linux_x32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_x32 -------------------------------------------------------------------------------- /Unused/makefile.linux_x86_asm_icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_x86_asm_icc -------------------------------------------------------------------------------- /Unused/makefile.linux_x86_icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.linux_x86_icc -------------------------------------------------------------------------------- /Unused/makefile.machine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.machine -------------------------------------------------------------------------------- /Unused/makefile.macosx_gcc_32bits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.macosx_gcc_32bits -------------------------------------------------------------------------------- /Unused/makefile.macosx_gcc_64bits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.macosx_gcc_64bits -------------------------------------------------------------------------------- /Unused/makefile.netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.netbsd -------------------------------------------------------------------------------- /Unused/makefile.oldmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.oldmake -------------------------------------------------------------------------------- /Unused/makefile.openbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.openbsd -------------------------------------------------------------------------------- /Unused/makefile.openbsd_no_port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.openbsd_no_port -------------------------------------------------------------------------------- /Unused/makefile.qnx_shared.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.qnx_shared.bin -------------------------------------------------------------------------------- /Unused/makefile.qnx_shared.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.qnx_shared.so -------------------------------------------------------------------------------- /Unused/makefile.qnx_static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.qnx_static -------------------------------------------------------------------------------- /Unused/makefile.solaris_sparc_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.solaris_sparc_gcc -------------------------------------------------------------------------------- /Unused/makefile.solaris_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.solaris_x86 -------------------------------------------------------------------------------- /Unused/makefile.tru64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Unused/makefile.tru64 -------------------------------------------------------------------------------- /Utils/CPUTest/Benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/CPUTest/Benchmark.h -------------------------------------------------------------------------------- /Utils/CPUTest/MemLat/MemLat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/CPUTest/MemLat/MemLat.cpp -------------------------------------------------------------------------------- /Utils/CPUTest/MemLat/Walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/CPUTest/MemLat/Walk.c -------------------------------------------------------------------------------- /Utils/CPUTest/MemLat/Walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/CPUTest/MemLat/Walk.h -------------------------------------------------------------------------------- /Utils/CPUTest/MemLat/Walk32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/CPUTest/MemLat/Walk32.asm -------------------------------------------------------------------------------- /Utils/CPUTest/MemLat/Walk64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/CPUTest/MemLat/Walk64.asm -------------------------------------------------------------------------------- /Utils/CPUTest/MemLat/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/CPUTest/MemLat/makefile -------------------------------------------------------------------------------- /Utils/CPUTest/MemLat/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Utils/CPUTest/MyVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/CPUTest/MyVersion.h -------------------------------------------------------------------------------- /Utils/CPUTest/PipeLen/PipeLen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/CPUTest/PipeLen/PipeLen.cpp -------------------------------------------------------------------------------- /Utils/CPUTest/PipeLen/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/CPUTest/PipeLen/makefile -------------------------------------------------------------------------------- /Utils/CPUTest/PipeLen/makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Utils/CPUTest/PipeLen/pl32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/CPUTest/PipeLen/pl32.asm -------------------------------------------------------------------------------- /Utils/bin_to_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/bin_to_sources.py -------------------------------------------------------------------------------- /Utils/file_7z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_7z.py -------------------------------------------------------------------------------- /Utils/file_7zCon_sfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_7zCon_sfx.py -------------------------------------------------------------------------------- /Utils/file_7zFM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_7zFM.py -------------------------------------------------------------------------------- /Utils/file_7zG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_7zG.py -------------------------------------------------------------------------------- /Utils/file_7z_so.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_7z_so.py -------------------------------------------------------------------------------- /Utils/file_7za.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_7za.py -------------------------------------------------------------------------------- /Utils/file_7zr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_7zr.py -------------------------------------------------------------------------------- /Utils/file_Client7z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_Client7z.py -------------------------------------------------------------------------------- /Utils/file_Codecs_Lzham_so.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_Codecs_Lzham_so.py -------------------------------------------------------------------------------- /Utils/file_Codecs_Rar_so.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_Codecs_Rar_so.py -------------------------------------------------------------------------------- /Utils/file_LzmaCon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_LzmaCon.py -------------------------------------------------------------------------------- /Utils/file_P7ZIP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_P7ZIP.py -------------------------------------------------------------------------------- /Utils/file_TestUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/file_TestUI.py -------------------------------------------------------------------------------- /Utils/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/Utils/generate.py -------------------------------------------------------------------------------- /check/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/check.sh -------------------------------------------------------------------------------- /check/check_7zr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/check_7zr.sh -------------------------------------------------------------------------------- /check/check_Client7z.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/check_Client7z.sh -------------------------------------------------------------------------------- /check/check_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/check_install.sh -------------------------------------------------------------------------------- /check/clean_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/clean_all.sh -------------------------------------------------------------------------------- /check/test/7za.exe.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/test/7za.exe.lzma -------------------------------------------------------------------------------- /check/test/7za.exe.lzma86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/test/7za.exe.lzma86 -------------------------------------------------------------------------------- /check/test/7za.exe.lzma_eos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/test/7za.exe.lzma_eos -------------------------------------------------------------------------------- /check/test/7za.exe.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/test/7za.exe.xz -------------------------------------------------------------------------------- /check/test/7za433_7zip_bzip2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/test/7za433_7zip_bzip2.7z -------------------------------------------------------------------------------- /check/test/7za433_7zip_lzma.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/test/7za433_7zip_lzma.7z -------------------------------------------------------------------------------- /check/test/7za433_7zip_lzma2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/test/7za433_7zip_lzma2.7z -------------------------------------------------------------------------------- /check/test/7za433_7zip_ppmd.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/test/7za433_7zip_ppmd.7z -------------------------------------------------------------------------------- /check/test/7za433_tar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/check/test/7za433_tar.tar -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/NEWS -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/p7zip-full.doc-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/p7zip-full.doc-base -------------------------------------------------------------------------------- /debian/p7zip-full.docs: -------------------------------------------------------------------------------- 1 | DOC/ 2 | README 3 | TODO 4 | -------------------------------------------------------------------------------- /debian/p7zip-full.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/p7zip-full.install -------------------------------------------------------------------------------- /debian/p7zip-full.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/p7zip-full.links -------------------------------------------------------------------------------- /debian/p7zip-full.maintscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/p7zip-full.maintscript -------------------------------------------------------------------------------- /debian/p7zip-full.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/p7zip-full.manpages -------------------------------------------------------------------------------- /debian/p7zip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/p7zip.1 -------------------------------------------------------------------------------- /debian/p7zip.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/p7zip.install -------------------------------------------------------------------------------- /debian/p7zip.manpages: -------------------------------------------------------------------------------- 1 | debian/p7zip.1 2 | man1/7zr.1 3 | -------------------------------------------------------------------------------- /debian/patches/01-makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/patches/01-makefile.patch -------------------------------------------------------------------------------- /debian/patches/02-man.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/patches/02-man.patch -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/patches/series -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/scripts/7z: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | exec /usr/lib/p7zip/7z "$@" 3 | -------------------------------------------------------------------------------- /debian/scripts/7za: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | exec /usr/lib/p7zip/7za "$@" 3 | -------------------------------------------------------------------------------- /debian/scripts/7zr: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | exec /usr/lib/p7zip/7zr "$@" 3 | -------------------------------------------------------------------------------- /debian/scripts/p7zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/scripts/p7zip -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/source/local-options: -------------------------------------------------------------------------------- 1 | abort-on-upstream-changes 2 | no-unapply-patches 3 | -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/source/options -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/debian/watch -------------------------------------------------------------------------------- /man1/7z.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/man1/7z.1 -------------------------------------------------------------------------------- /man1/7za.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/man1/7za.1 -------------------------------------------------------------------------------- /man1/7zr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/man1/7zr.1 -------------------------------------------------------------------------------- /wasm-port/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/wasm-port/CMakeLists.txt -------------------------------------------------------------------------------- /wasm-port/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/wasm-port/icon.png -------------------------------------------------------------------------------- /wasm-port/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/wasm-port/index.html -------------------------------------------------------------------------------- /wasm-port/wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/wasm-port/wasm.cpp -------------------------------------------------------------------------------- /wasm-port/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/44670/p7zip-wasm/HEAD/wasm-port/worker.js --------------------------------------------------------------------------------