├── .github ├── FUNDING.yml └── workflows │ └── build_win.yml ├── .gitignore ├── Asm ├── arm │ └── 7zCrcOpt.asm ├── arm64 │ ├── 7zAsm.S │ └── LzmaDecOpt.S └── x86 │ ├── 7zAsm.asm │ ├── 7zCrcOpt.asm │ ├── AesOpt.asm │ ├── LzFindOpt.asm │ ├── LzmaDecOpt.asm │ ├── Sha1Opt.asm │ ├── Sha256Opt.asm │ ├── Sort.asm │ └── XzCrc64Opt.asm ├── C ├── 7z.h ├── 7zAlloc.c ├── 7zAlloc.h ├── 7zArcIn.c ├── 7zBuf.c ├── 7zBuf.h ├── 7zBuf2.c ├── 7zCrc.c ├── 7zCrc.h ├── 7zCrcOpt.c ├── 7zDec.c ├── 7zFile.c ├── 7zFile.h ├── 7zStream.c ├── 7zTypes.h ├── 7zVersion.h ├── 7zVersion.rc ├── 7zWindows.h ├── 7zip_gcc_c.mak ├── Aes.c ├── Aes.h ├── AesOpt.c ├── Alloc.c ├── Alloc.h ├── Asm_c.mak ├── 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 ├── DllSecur.c ├── DllSecur.h ├── HuffEnc.c ├── HuffEnc.h ├── LzFind.c ├── LzFind.h ├── LzFindMt.c ├── LzFindMt.h ├── LzFindOpt.c ├── LzHash.h ├── Lzma2Dec.c ├── Lzma2Dec.h ├── Lzma2DecMt.c ├── Lzma2DecMt.h ├── Lzma2Enc.c ├── Lzma2Enc.h ├── Lzma86.h ├── Lzma86Dec.c ├── Lzma86Enc.c ├── LzmaDec.c ├── LzmaDec.h ├── LzmaEnc.c ├── LzmaEnc.h ├── LzmaLib.c ├── LzmaLib.h ├── Md5.c ├── Md5.h ├── MtCoder.c ├── MtCoder.h ├── MtDec.c ├── MtDec.h ├── Ppmd.h ├── Ppmd7.c ├── Ppmd7.h ├── Ppmd7Dec.c ├── Ppmd7Enc.c ├── Ppmd7aDec.c ├── Ppmd8.c ├── Ppmd8.h ├── Ppmd8Dec.c ├── Ppmd8Enc.c ├── Precomp.h ├── RotateDefs.h ├── Sha1.c ├── Sha1.h ├── Sha1Opt.c ├── Sha256.c ├── Sha256.h ├── Sha256Opt.c ├── Sha3.c ├── Sha3.h ├── Sha512.c ├── Sha512.h ├── Sha512Opt.c ├── Sort.c ├── Sort.h ├── SwapBytes.c ├── SwapBytes.h ├── Threads.c ├── Threads.h ├── Util │ ├── 7z │ │ ├── 7z.dsp │ │ ├── 7z.dsw │ │ ├── 7zMain.c │ │ ├── Precomp.c │ │ ├── Precomp.h │ │ ├── makefile │ │ └── makefile.gcc │ ├── 7zipInstall │ │ ├── 7zip.ico │ │ ├── 7zipInstall.c │ │ ├── 7zipInstall.dsp │ │ ├── 7zipInstall.dsw │ │ ├── 7zipInstall.manifest │ │ ├── Precomp.c │ │ ├── Precomp.h │ │ ├── makefile │ │ ├── resource.h │ │ └── resource.rc │ ├── 7zipUninstall │ │ ├── 7zipUninstall.c │ │ ├── 7zipUninstall.dsp │ │ ├── 7zipUninstall.dsw │ │ ├── 7zipUninstall.ico │ │ ├── 7zipUninstall.manifest │ │ ├── Precomp.c │ │ ├── Precomp.h │ │ ├── makefile │ │ ├── resource.h │ │ └── resource.rc │ ├── Lzma │ │ ├── LzmaUtil.c │ │ ├── LzmaUtil.dsp │ │ ├── LzmaUtil.dsw │ │ ├── Precomp.h │ │ ├── makefile │ │ └── makefile.gcc │ ├── LzmaLib │ │ ├── LzmaLib.def │ │ ├── LzmaLib.dsp │ │ ├── LzmaLib.dsw │ │ ├── LzmaLibExports.c │ │ ├── Precomp.c │ │ ├── Precomp.h │ │ ├── makefile │ │ └── resource.rc │ └── SfxSetup │ │ ├── Precomp.c │ │ ├── Precomp.h │ │ ├── SfxSetup.c │ │ ├── SfxSetup.dsp │ │ ├── SfxSetup.dsw │ │ ├── makefile │ │ ├── makefile_con │ │ ├── resource.rc │ │ └── setup.ico ├── Xxh64.c ├── Xxh64.h ├── Xz.c ├── Xz.h ├── XzCrc64.c ├── XzCrc64.h ├── XzCrc64Opt.c ├── XzDec.c ├── XzEnc.c ├── XzEnc.h ├── XzIn.c ├── ZstdDec.c ├── ZstdDec.h ├── var_clang.mak ├── var_clang_arm64.mak ├── var_clang_x64.mak ├── var_clang_x86.mak ├── var_gcc.mak ├── var_gcc_arm64.mak ├── var_gcc_x64.mak ├── var_gcc_x86.mak ├── var_mac_arm64.mak ├── var_mac_x64.mak ├── warn_clang.mak ├── warn_clang_mac.mak └── warn_gcc.mak ├── CPP ├── 7zip │ ├── 7zip.mak │ ├── 7zip_gcc.mak │ ├── Aes.mak │ ├── Archive │ │ ├── 7z │ │ │ ├── 7z.dsp │ │ │ ├── 7z.dsw │ │ │ ├── 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 │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── ApfsHandler.cpp │ │ ├── ApmHandler.cpp │ │ ├── ArHandler.cpp │ │ ├── Archive.def │ │ ├── Archive2.def │ │ ├── ArchiveExports.cpp │ │ ├── ArjHandler.cpp │ │ ├── AvbHandler.cpp │ │ ├── Base64Handler.cpp │ │ ├── Bz2Handler.cpp │ │ ├── Cab │ │ │ ├── CabBlockInStream.cpp │ │ │ ├── CabBlockInStream.h │ │ │ ├── CabHandler.cpp │ │ │ ├── CabHandler.h │ │ │ ├── CabHeader.cpp │ │ │ ├── CabHeader.h │ │ │ ├── CabIn.cpp │ │ │ ├── CabIn.h │ │ │ ├── CabItem.h │ │ │ ├── CabRegister.cpp │ │ │ └── StdAfx.h │ │ ├── Chm │ │ │ ├── ChmHandler.cpp │ │ │ ├── ChmHandler.h │ │ │ ├── ChmIn.cpp │ │ │ ├── ChmIn.h │ │ │ └── StdAfx.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 │ │ │ └── StdAfx.h │ │ ├── CpioHandler.cpp │ │ ├── CramfsHandler.cpp │ │ ├── DeflateProps.cpp │ │ ├── DeflateProps.h │ │ ├── DllExports.cpp │ │ ├── DllExports2.cpp │ │ ├── DmgHandler.cpp │ │ ├── ElfHandler.cpp │ │ ├── ExtHandler.cpp │ │ ├── FatHandler.cpp │ │ ├── FlvHandler.cpp │ │ ├── GptHandler.cpp │ │ ├── GzHandler.cpp │ │ ├── HandlerCont.cpp │ │ ├── HandlerCont.h │ │ ├── HfsHandler.cpp │ │ ├── HfsHandler.h │ │ ├── IArchive.h │ │ ├── Icons │ │ │ ├── 7z.ico │ │ │ ├── apfs.ico │ │ │ ├── arj.ico │ │ │ ├── bz2.ico │ │ │ ├── cab.ico │ │ │ ├── cpio.ico │ │ │ ├── deb.ico │ │ │ ├── dmg.ico │ │ │ ├── fat.ico │ │ │ ├── gz.ico │ │ │ ├── hfs.ico │ │ │ ├── iso.ico │ │ │ ├── lzh.ico │ │ │ ├── lzma.ico │ │ │ ├── ntfs.ico │ │ │ ├── rar.ico │ │ │ ├── rpm.ico │ │ │ ├── split.ico │ │ │ ├── squashfs.ico │ │ │ ├── tar.ico │ │ │ ├── vhd.ico │ │ │ ├── wim.ico │ │ │ ├── xar.ico │ │ │ ├── xz.ico │ │ │ ├── z.ico │ │ │ ├── zip.ico │ │ │ └── zst.ico │ │ ├── IhexHandler.cpp │ │ ├── Iso │ │ │ ├── IsoHandler.cpp │ │ │ ├── IsoHandler.h │ │ │ ├── IsoHeader.cpp │ │ │ ├── IsoHeader.h │ │ │ ├── IsoIn.cpp │ │ │ ├── IsoIn.h │ │ │ ├── IsoItem.h │ │ │ ├── IsoRegister.cpp │ │ │ └── StdAfx.h │ │ ├── LpHandler.cpp │ │ ├── LvmHandler.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 │ │ │ └── StdAfx.h │ │ ├── NtfsHandler.cpp │ │ ├── PeHandler.cpp │ │ ├── PpmdHandler.cpp │ │ ├── QcowHandler.cpp │ │ ├── Rar │ │ │ ├── Rar5Handler.cpp │ │ │ ├── Rar5Handler.h │ │ │ ├── RarHandler.cpp │ │ │ ├── RarHandler.h │ │ │ ├── RarHeader.h │ │ │ ├── RarItem.h │ │ │ ├── RarVol.h │ │ │ ├── StdAfx.cpp │ │ │ └── StdAfx.h │ │ ├── RpmHandler.cpp │ │ ├── SparseHandler.cpp │ │ ├── SplitHandler.cpp │ │ ├── SquashfsHandler.cpp │ │ ├── StdAfx.h │ │ ├── SwfHandler.cpp │ │ ├── Tar │ │ │ ├── StdAfx.h │ │ │ ├── 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 │ │ │ ├── StdAfx.h │ │ │ ├── UdfHandler.cpp │ │ │ ├── UdfHandler.h │ │ │ ├── UdfIn.cpp │ │ │ └── UdfIn.h │ │ ├── UefiHandler.cpp │ │ ├── VdiHandler.cpp │ │ ├── VhdHandler.cpp │ │ ├── VhdxHandler.cpp │ │ ├── VmdkHandler.cpp │ │ ├── Wim │ │ │ ├── StdAfx.h │ │ │ ├── WimHandler.cpp │ │ │ ├── WimHandler.h │ │ │ ├── WimHandlerOut.cpp │ │ │ ├── WimIn.cpp │ │ │ ├── WimIn.h │ │ │ └── WimRegister.cpp │ │ ├── XarHandler.cpp │ │ ├── XzHandler.cpp │ │ ├── XzHandler.h │ │ ├── ZHandler.cpp │ │ ├── Zip │ │ │ ├── StdAfx.h │ │ │ ├── ZipAddCommon.cpp │ │ │ ├── ZipAddCommon.h │ │ │ ├── ZipCompressionMode.h │ │ │ ├── ZipHandler.cpp │ │ │ ├── ZipHandler.h │ │ │ ├── ZipHandlerOut.cpp │ │ │ ├── ZipHeader.h │ │ │ ├── ZipIn.cpp │ │ │ ├── ZipIn.h │ │ │ ├── ZipItem.cpp │ │ │ ├── ZipItem.h │ │ │ ├── ZipOut.cpp │ │ │ ├── ZipOut.h │ │ │ ├── ZipRegister.cpp │ │ │ ├── ZipUpdate.cpp │ │ │ └── ZipUpdate.h │ │ ├── ZstdHandler.cpp │ │ └── makefile │ ├── Asm.mak │ ├── Bundles │ │ ├── Alone │ │ │ ├── Alone.dsp │ │ │ ├── Alone.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── Alone2 │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── Alone7z │ │ │ ├── Alone.dsp │ │ │ ├── Alone.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── Fm │ │ │ ├── FM.dsp │ │ │ ├── FM.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── Format7z │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── Format7zExtract │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── Format7zExtractR │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── Format7zF │ │ │ ├── Arc.mak │ │ │ ├── Arc_gcc.mak │ │ │ ├── Format7z.dsp │ │ │ ├── Format7z.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── Format7zR │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── LzmaCon │ │ │ ├── LzmaAlone.cpp │ │ │ ├── LzmaCon.dsp │ │ │ ├── LzmaCon.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── SFXCon │ │ │ ├── 7z.ico │ │ │ ├── SFXCon.dsp │ │ │ ├── SFXCon.dsw │ │ │ ├── SfxCon.cpp │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── SFXSetup │ │ │ ├── ExtractCallbackSfx.cpp │ │ │ ├── ExtractCallbackSfx.h │ │ │ ├── ExtractEngine.cpp │ │ │ ├── ExtractEngine.h │ │ │ ├── SFXSetup.dsp │ │ │ ├── SFXSetup.dsw │ │ │ ├── SfxSetup.cpp │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ ├── resource.rc │ │ │ └── setup.ico │ │ ├── SFXWin │ │ │ ├── 7z.ico │ │ │ ├── SFXWin.dsp │ │ │ ├── SFXWin.dsw │ │ │ ├── SfxWin.cpp │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ └── resource.rc │ │ └── makefile │ ├── 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 │ │ ├── LockedStream.cpp │ │ ├── LockedStream.h │ │ ├── MemBlocks.cpp │ │ ├── MemBlocks.h │ │ ├── MethodId.cpp │ │ ├── MethodId.h │ │ ├── MethodProps.cpp │ │ ├── MethodProps.h │ │ ├── MultiOutStream.cpp │ │ ├── MultiOutStream.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 │ │ ├── StdAfx.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 │ │ ├── Codec.def │ │ ├── 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 │ │ ├── LzfseDecoder.cpp │ │ ├── LzfseDecoder.h │ │ ├── LzhDecoder.cpp │ │ ├── LzhDecoder.h │ │ ├── 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 │ │ ├── StdAfx.h │ │ ├── XpressDecoder.cpp │ │ ├── XpressDecoder.h │ │ ├── XzDecoder.cpp │ │ ├── XzDecoder.h │ │ ├── XzEncoder.cpp │ │ ├── XzEncoder.h │ │ ├── ZDecoder.cpp │ │ ├── ZDecoder.h │ │ ├── ZlibDecoder.cpp │ │ ├── ZlibDecoder.h │ │ ├── ZlibEncoder.cpp │ │ ├── ZlibEncoder.h │ │ ├── ZstdDecoder.cpp │ │ ├── ZstdDecoder.h │ │ └── makefile │ ├── Crc.mak │ ├── Crc64.mak │ ├── Crypto │ │ ├── 7zAes.cpp │ │ ├── 7zAes.h │ │ ├── 7zAesRegister.cpp │ │ ├── Codec.def │ │ ├── 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 │ │ ├── StdAfx.h │ │ ├── WzAes.cpp │ │ ├── WzAes.h │ │ ├── ZipCrypto.cpp │ │ ├── ZipCrypto.h │ │ ├── ZipStrong.cpp │ │ └── ZipStrong.h │ ├── GuiCommon.rc │ ├── Guid.txt │ ├── ICoder.h │ ├── IDecl.h │ ├── IPassword.h │ ├── IProgress.h │ ├── IStream.h │ ├── LzFindOpt.mak │ ├── LzmaDec.mak │ ├── LzmaDec_gcc.mak │ ├── MyVersion.h │ ├── MyVersionInfo.rc │ ├── PropID.h │ ├── Sha1.mak │ ├── Sha256.mak │ ├── Sort.mak │ ├── SubBuild.mak │ ├── UI │ │ ├── Agent │ │ │ ├── Agent.cpp │ │ │ ├── Agent.h │ │ │ ├── AgentOut.cpp │ │ │ ├── AgentProxy.cpp │ │ │ ├── AgentProxy.h │ │ │ ├── ArchiveFolder.cpp │ │ │ ├── ArchiveFolderOpen.cpp │ │ │ ├── ArchiveFolderOut.cpp │ │ │ ├── IFolderArchive.h │ │ │ ├── StdAfx.h │ │ │ ├── UpdateCallbackAgent.cpp │ │ │ └── UpdateCallbackAgent.h │ │ ├── Client7z │ │ │ ├── Client7z.cpp │ │ │ ├── Client7z.dsp │ │ │ ├── Client7z.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── 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 │ │ │ ├── CompressCall2.cpp │ │ │ ├── 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 │ │ │ ├── StdAfx.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 │ │ │ ├── Console.dsp │ │ │ ├── Console.dsw │ │ │ ├── Console.mak │ │ │ ├── Console.manifest │ │ │ ├── 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 │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ ├── UpdateCallbackConsole.h │ │ │ ├── UserInputUtils.cpp │ │ │ ├── UserInputUtils.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── Explorer │ │ │ ├── 7-zip.dll.manifest │ │ │ ├── ContextMenu.cpp │ │ │ ├── ContextMenu.h │ │ │ ├── ContextMenuFlags.h │ │ │ ├── DllExportsExplorer.cpp │ │ │ ├── Explorer.def │ │ │ ├── Explorer.dsp │ │ │ ├── Explorer.dsw │ │ │ ├── MenuLogo.bmp │ │ │ ├── MyExplorerCommand.h │ │ │ ├── MyMessages.cpp │ │ │ ├── MyMessages.h │ │ │ ├── RegistryContextMenu.cpp │ │ │ ├── RegistryContextMenu.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ ├── resource.rc │ │ │ └── resource2.rc │ │ ├── Far │ │ │ ├── ExtractEngine.cpp │ │ │ ├── ExtractEngine.h │ │ │ ├── Far.cpp │ │ │ ├── Far.def │ │ │ ├── Far.dsp │ │ │ ├── Far.dsw │ │ │ ├── FarPlugin.h │ │ │ ├── FarUtils.cpp │ │ │ ├── FarUtils.h │ │ │ ├── Messages.h │ │ │ ├── OverwriteDialogFar.cpp │ │ │ ├── OverwriteDialogFar.h │ │ │ ├── Plugin.cpp │ │ │ ├── Plugin.h │ │ │ ├── PluginCommon.cpp │ │ │ ├── PluginDelete.cpp │ │ │ ├── PluginRead.cpp │ │ │ ├── PluginWrite.cpp │ │ │ ├── ProgressBox.cpp │ │ │ ├── ProgressBox.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UpdateCallbackFar.cpp │ │ │ ├── UpdateCallbackFar.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── FileManager │ │ │ ├── 7zFM.exe.manifest │ │ │ ├── 7zipLogo.ico │ │ │ ├── AboutDialog.cpp │ │ │ ├── AboutDialog.h │ │ │ ├── AboutDialog.rc │ │ │ ├── AboutDialogRes.h │ │ │ ├── Add.bmp │ │ │ ├── Add2.bmp │ │ │ ├── AltStreamsFolder.cpp │ │ │ ├── AltStreamsFolder.h │ │ │ ├── App.cpp │ │ │ ├── App.h │ │ │ ├── AppState.h │ │ │ ├── BrowseDialog.cpp │ │ │ ├── BrowseDialog.h │ │ │ ├── BrowseDialog.rc │ │ │ ├── BrowseDialog2.cpp │ │ │ ├── BrowseDialog2.h │ │ │ ├── BrowseDialog2.rc │ │ │ ├── BrowseDialog2Res.h │ │ │ ├── BrowseDialogRes.h │ │ │ ├── ClassDefs.cpp │ │ │ ├── ComboDialog.cpp │ │ │ ├── ComboDialog.h │ │ │ ├── ComboDialog.rc │ │ │ ├── ComboDialogRes.h │ │ │ ├── Copy.bmp │ │ │ ├── Copy2.bmp │ │ │ ├── CopyDialog.cpp │ │ │ ├── CopyDialog.h │ │ │ ├── CopyDialog.rc │ │ │ ├── CopyDialogRes.h │ │ │ ├── Delete.bmp │ │ │ ├── Delete2.bmp │ │ │ ├── DialogSize.h │ │ │ ├── EditDialog.cpp │ │ │ ├── EditDialog.h │ │ │ ├── EditDialog.rc │ │ │ ├── EditDialogRes.h │ │ │ ├── EditPage.cpp │ │ │ ├── EditPage.h │ │ │ ├── EditPage.rc │ │ │ ├── EditPage2.rc │ │ │ ├── EditPageRes.h │ │ │ ├── EnumFormatEtc.cpp │ │ │ ├── EnumFormatEtc.h │ │ │ ├── Extract.bmp │ │ │ ├── Extract2.bmp │ │ │ ├── ExtractCallback.cpp │ │ │ ├── ExtractCallback.h │ │ │ ├── FM.cpp │ │ │ ├── FM.dsp │ │ │ ├── FM.dsw │ │ │ ├── FM.ico │ │ │ ├── FM.mak │ │ │ ├── FSDrives.cpp │ │ │ ├── FSDrives.h │ │ │ ├── FSFolder.cpp │ │ │ ├── FSFolder.h │ │ │ ├── FSFolderCopy.cpp │ │ │ ├── FileFolderPluginOpen.cpp │ │ │ ├── FileFolderPluginOpen.h │ │ │ ├── FilePlugins.cpp │ │ │ ├── FilePlugins.h │ │ │ ├── FoldersPage.cpp │ │ │ ├── FoldersPage.h │ │ │ ├── FoldersPage.rc │ │ │ ├── FoldersPage2.rc │ │ │ ├── FoldersPageRes.h │ │ │ ├── FormatUtils.cpp │ │ │ ├── FormatUtils.h │ │ │ ├── HelpUtils.cpp │ │ │ ├── HelpUtils.h │ │ │ ├── IFolder.h │ │ │ ├── Info.bmp │ │ │ ├── Info2.bmp │ │ │ ├── LangPage.cpp │ │ │ ├── LangPage.h │ │ │ ├── LangPage.rc │ │ │ ├── LangPageRes.h │ │ │ ├── LangUtils.cpp │ │ │ ├── LangUtils.h │ │ │ ├── LinkDialog.cpp │ │ │ ├── LinkDialog.h │ │ │ ├── LinkDialog.rc │ │ │ ├── LinkDialogRes.h │ │ │ ├── ListViewDialog.cpp │ │ │ ├── ListViewDialog.h │ │ │ ├── ListViewDialog.rc │ │ │ ├── ListViewDialogRes.h │ │ │ ├── MemDialog.cpp │ │ │ ├── MemDialog.h │ │ │ ├── MemDialog.rc │ │ │ ├── MemDialogRes.h │ │ │ ├── MenuPage.cpp │ │ │ ├── MenuPage.h │ │ │ ├── MenuPage.rc │ │ │ ├── MenuPage2.rc │ │ │ ├── MenuPageRes.h │ │ │ ├── MessagesDialog.cpp │ │ │ ├── MessagesDialog.h │ │ │ ├── MessagesDialog.rc │ │ │ ├── MessagesDialogRes.h │ │ │ ├── Move.bmp │ │ │ ├── Move2.bmp │ │ │ ├── MyCom2.h │ │ │ ├── MyLoadMenu.cpp │ │ │ ├── MyLoadMenu.h │ │ │ ├── MyWindowsNew.h │ │ │ ├── NetFolder.cpp │ │ │ ├── NetFolder.h │ │ │ ├── OpenCallback.cpp │ │ │ ├── OpenCallback.h │ │ │ ├── OptionsDialog.cpp │ │ │ ├── OverwriteDialog.cpp │ │ │ ├── OverwriteDialog.h │ │ │ ├── OverwriteDialog.rc │ │ │ ├── OverwriteDialogRes.h │ │ │ ├── Panel.cpp │ │ │ ├── Panel.h │ │ │ ├── PanelCopy.cpp │ │ │ ├── PanelCrc.cpp │ │ │ ├── PanelDrag.cpp │ │ │ ├── PanelFolderChange.cpp │ │ │ ├── PanelItemOpen.cpp │ │ │ ├── PanelItems.cpp │ │ │ ├── PanelKey.cpp │ │ │ ├── PanelListNotify.cpp │ │ │ ├── PanelMenu.cpp │ │ │ ├── PanelOperations.cpp │ │ │ ├── PanelSelect.cpp │ │ │ ├── PanelSort.cpp │ │ │ ├── PanelSplitFile.cpp │ │ │ ├── PasswordDialog.cpp │ │ │ ├── PasswordDialog.h │ │ │ ├── PasswordDialog.rc │ │ │ ├── PasswordDialogRes.h │ │ │ ├── PluginInterface.h │ │ │ ├── PluginLoader.h │ │ │ ├── ProgramLocation.cpp │ │ │ ├── ProgramLocation.h │ │ │ ├── ProgressDialog.cpp │ │ │ ├── ProgressDialog.h │ │ │ ├── ProgressDialog.rc │ │ │ ├── ProgressDialog2.cpp │ │ │ ├── ProgressDialog2.h │ │ │ ├── ProgressDialog2.rc │ │ │ ├── ProgressDialog2Res.h │ │ │ ├── ProgressDialog2a.rc │ │ │ ├── ProgressDialogRes.h │ │ │ ├── PropertyName.cpp │ │ │ ├── PropertyName.h │ │ │ ├── PropertyName.rc │ │ │ ├── PropertyNameRes.h │ │ │ ├── RegistryAssociations.cpp │ │ │ ├── RegistryAssociations.h │ │ │ ├── RegistryPlugins.cpp │ │ │ ├── RegistryPlugins.h │ │ │ ├── RegistryUtils.cpp │ │ │ ├── RegistryUtils.h │ │ │ ├── RootFolder.cpp │ │ │ ├── RootFolder.h │ │ │ ├── SettingsPage.cpp │ │ │ ├── SettingsPage.h │ │ │ ├── SettingsPage.rc │ │ │ ├── SettingsPage2.rc │ │ │ ├── SettingsPageRes.h │ │ │ ├── SplitDialog.cpp │ │ │ ├── SplitDialog.h │ │ │ ├── SplitDialog.rc │ │ │ ├── SplitDialogRes.h │ │ │ ├── SplitUtils.cpp │ │ │ ├── SplitUtils.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── StringUtils.cpp │ │ │ ├── StringUtils.h │ │ │ ├── SysIconUtils.cpp │ │ │ ├── SysIconUtils.h │ │ │ ├── SystemPage.cpp │ │ │ ├── SystemPage.h │ │ │ ├── SystemPage.rc │ │ │ ├── SystemPageRes.h │ │ │ ├── Test.bmp │ │ │ ├── Test2.bmp │ │ │ ├── TextPairs.cpp │ │ │ ├── TextPairs.h │ │ │ ├── UpdateCallback100.cpp │ │ │ ├── UpdateCallback100.h │ │ │ ├── VerCtrl.cpp │ │ │ ├── ViewSettings.cpp │ │ │ ├── ViewSettings.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ ├── resource.rc │ │ │ ├── resourceGui.h │ │ │ └── resourceGui.rc │ │ ├── GUI │ │ │ ├── 7zG.exe.manifest │ │ │ ├── BenchmarkDialog.cpp │ │ │ ├── BenchmarkDialog.h │ │ │ ├── BenchmarkDialog.rc │ │ │ ├── BenchmarkDialogRes.h │ │ │ ├── CompressDialog.cpp │ │ │ ├── CompressDialog.h │ │ │ ├── CompressDialog.rc │ │ │ ├── CompressDialogRes.h │ │ │ ├── CompressOptionsDialog.rc │ │ │ ├── Extract.rc │ │ │ ├── ExtractDialog.cpp │ │ │ ├── ExtractDialog.h │ │ │ ├── ExtractDialog.rc │ │ │ ├── ExtractDialogRes.h │ │ │ ├── ExtractGUI.cpp │ │ │ ├── ExtractGUI.h │ │ │ ├── ExtractRes.h │ │ │ ├── FM.ico │ │ │ ├── GUI.cpp │ │ │ ├── GUI.dsp │ │ │ ├── GUI.dsw │ │ │ ├── HashGUI.cpp │ │ │ ├── HashGUI.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UpdateCallbackGUI.cpp │ │ │ ├── UpdateCallbackGUI.h │ │ │ ├── UpdateCallbackGUI2.cpp │ │ │ ├── UpdateCallbackGUI2.h │ │ │ ├── UpdateGUI.cpp │ │ │ ├── UpdateGUI.h │ │ │ ├── makefile │ │ │ ├── resource.rc │ │ │ ├── resource2.h │ │ │ ├── resource2.rc │ │ │ ├── resource3.h │ │ │ └── resource3.rc │ │ └── makefile │ ├── cmpl_clang.mak │ ├── cmpl_clang_arm64.mak │ ├── cmpl_clang_x64.mak │ ├── cmpl_clang_x86.mak │ ├── cmpl_gcc.mak │ ├── cmpl_gcc_arm.mak │ ├── cmpl_gcc_arm64.mak │ ├── cmpl_gcc_x64.mak │ ├── cmpl_gcc_x86.mak │ ├── cmpl_mac_arm64.mak │ ├── cmpl_mac_x64.mak │ ├── makefile │ ├── var_clang.mak │ ├── var_clang_arm64.mak │ ├── var_clang_x64.mak │ ├── var_clang_x86.mak │ ├── var_gcc.mak │ ├── var_gcc_arm.mak │ ├── var_gcc_arm64.mak │ ├── var_gcc_x64.mak │ ├── var_gcc_x86.mak │ ├── var_mac_arm64.mak │ ├── var_mac_x64.mak │ ├── warn_clang.mak │ ├── warn_clang_mac.mak │ └── warn_gcc.mak ├── Build.mak ├── Common │ ├── AutoPtr.h │ ├── CRC.cpp │ ├── C_FileIO.cpp │ ├── C_FileIO.h │ ├── CksumReg.cpp │ ├── ComTry.h │ ├── CommandLineParser.cpp │ ├── CommandLineParser.h │ ├── Common.h │ ├── Common0.h │ ├── CrcReg.cpp │ ├── Defs.h │ ├── DynLimBuf.cpp │ ├── DynLimBuf.h │ ├── DynamicBuffer.h │ ├── IntToString.cpp │ ├── IntToString.h │ ├── Lang.cpp │ ├── Lang.h │ ├── ListFileUtils.cpp │ ├── ListFileUtils.h │ ├── LzFindPrepare.cpp │ ├── Md5Reg.cpp │ ├── MyBuffer.h │ ├── MyBuffer2.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.cpp │ ├── Random.h │ ├── Sha1Prepare.cpp │ ├── Sha1Reg.cpp │ ├── Sha256Prepare.cpp │ ├── Sha256Reg.cpp │ ├── Sha3Reg.cpp │ ├── Sha512Prepare.cpp │ ├── Sha512Reg.cpp │ ├── StdAfx.h │ ├── 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 │ ├── Xxh64Reg.cpp │ ├── XzCrc64Init.cpp │ └── XzCrc64Reg.cpp └── Windows │ ├── COM.cpp │ ├── COM.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── CommonDialog.cpp │ ├── CommonDialog.h │ ├── Console.cpp │ ├── Console.h │ ├── Control │ ├── ComboBox.cpp │ ├── ComboBox.h │ ├── CommandBar.h │ ├── Dialog.cpp │ ├── Dialog.h │ ├── Edit.h │ ├── ImageList.cpp │ ├── ImageList.h │ ├── ListView.cpp │ ├── ListView.h │ ├── ProgressBar.h │ ├── PropertyPage.cpp │ ├── PropertyPage.h │ ├── ReBar.h │ ├── Static.h │ ├── StatusBar.h │ ├── StdAfx.h │ ├── ToolBar.h │ ├── Trackbar.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 │ ├── FileLink.cpp │ ├── FileMapping.cpp │ ├── FileMapping.h │ ├── FileName.cpp │ ├── FileName.h │ ├── FileSystem.cpp │ ├── FileSystem.h │ ├── Handle.h │ ├── MemoryGlobal.cpp │ ├── MemoryGlobal.h │ ├── MemoryLock.cpp │ ├── MemoryLock.h │ ├── Menu.cpp │ ├── Menu.h │ ├── NationalTime.cpp │ ├── NationalTime.h │ ├── Net.cpp │ ├── Net.h │ ├── NtCheck.h │ ├── ProcessMessages.cpp │ ├── ProcessMessages.h │ ├── ProcessUtils.cpp │ ├── ProcessUtils.h │ ├── PropVariant.cpp │ ├── PropVariant.h │ ├── PropVariantConv.cpp │ ├── PropVariantConv.h │ ├── PropVariantUtils.cpp │ ├── PropVariantUtils.h │ ├── Registry.cpp │ ├── Registry.h │ ├── ResourceString.cpp │ ├── ResourceString.h │ ├── SecurityUtils.cpp │ ├── SecurityUtils.h │ ├── Shell.cpp │ ├── Shell.h │ ├── StdAfx.h │ ├── Synchronization.cpp │ ├── Synchronization.h │ ├── System.cpp │ ├── System.h │ ├── SystemInfo.cpp │ ├── SystemInfo.h │ ├── Thread.h │ ├── TimeUtils.cpp │ ├── TimeUtils.h │ ├── Window.cpp │ └── Window.h ├── DOC ├── 7zC.txt ├── 7zFormat.txt ├── 7zip.hhp ├── 7zip.wxs ├── License.txt ├── Methods.txt ├── copying.txt ├── lzma.txt ├── readme.txt ├── src-history.txt └── unRarLicense.txt ├── DarkMode ├── 7zRes │ ├── 7zDark.ini │ ├── 7zDark.mak │ ├── 7zDarkObj.mak │ ├── 7zFM-fluentIcons.res │ └── icons │ │ ├── Add.bmp │ │ ├── Add2.bmp │ │ ├── Copy.bmp │ │ ├── Copy2.bmp │ │ ├── Delete.bmp │ │ ├── Delete2.bmp │ │ ├── Extract.bmp │ │ ├── Extract2.bmp │ │ ├── Info.bmp │ │ ├── Info2.bmp │ │ ├── Move.bmp │ │ ├── Move2.bmp │ │ ├── Test.bmp │ │ └── Test2.bmp ├── LICENSE-MIT.md ├── LICENSE.md ├── docs │ ├── Dark.ini │ ├── LICENSE-PolyHook_2_0.md │ ├── LICENSE-UAHMenuBar.md │ └── LICENSE-win32-darkmode.md └── src │ ├── DarkModeSubclass.cpp │ ├── DarkModeSubclass.h │ ├── DmlibColor.cpp │ ├── DmlibColor.h │ ├── DmlibDpi.cpp │ ├── DmlibDpi.h │ ├── DmlibGlyph.h │ ├── DmlibHook.cpp │ ├── DmlibHook.h │ ├── DmlibIni.cpp │ ├── DmlibIni.h │ ├── DmlibPaintHelper.cpp │ ├── DmlibPaintHelper.h │ ├── DmlibSubclass.cpp │ ├── DmlibSubclass.h │ ├── DmlibSubclassControl.cpp │ ├── DmlibSubclassControl.h │ ├── DmlibSubclassWindow.cpp │ ├── DmlibSubclassWindow.h │ ├── DmlibWinApi.cpp │ ├── DmlibWinApi.h │ ├── IatHook.h │ ├── ModuleHelper.h │ ├── StdAfx.h │ ├── UAHMenuBar.h │ └── Version.h ├── LICENSE.md └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build_win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/.github/workflows/build_win.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/.gitignore -------------------------------------------------------------------------------- /Asm/arm/7zCrcOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/arm/7zCrcOpt.asm -------------------------------------------------------------------------------- /Asm/arm64/7zAsm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/arm64/7zAsm.S -------------------------------------------------------------------------------- /Asm/arm64/LzmaDecOpt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/arm64/LzmaDecOpt.S -------------------------------------------------------------------------------- /Asm/x86/7zAsm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/x86/7zAsm.asm -------------------------------------------------------------------------------- /Asm/x86/7zCrcOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/x86/7zCrcOpt.asm -------------------------------------------------------------------------------- /Asm/x86/AesOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/x86/AesOpt.asm -------------------------------------------------------------------------------- /Asm/x86/LzFindOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/x86/LzFindOpt.asm -------------------------------------------------------------------------------- /Asm/x86/LzmaDecOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/x86/LzmaDecOpt.asm -------------------------------------------------------------------------------- /Asm/x86/Sha1Opt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/x86/Sha1Opt.asm -------------------------------------------------------------------------------- /Asm/x86/Sha256Opt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/x86/Sha256Opt.asm -------------------------------------------------------------------------------- /Asm/x86/Sort.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/x86/Sort.asm -------------------------------------------------------------------------------- /Asm/x86/XzCrc64Opt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/Asm/x86/XzCrc64Opt.asm -------------------------------------------------------------------------------- /C/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7z.h -------------------------------------------------------------------------------- /C/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zAlloc.c -------------------------------------------------------------------------------- /C/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zAlloc.h -------------------------------------------------------------------------------- /C/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zArcIn.c -------------------------------------------------------------------------------- /C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zBuf.c -------------------------------------------------------------------------------- /C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zBuf.h -------------------------------------------------------------------------------- /C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zBuf2.c -------------------------------------------------------------------------------- /C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zCrc.c -------------------------------------------------------------------------------- /C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zCrc.h -------------------------------------------------------------------------------- /C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zCrcOpt.c -------------------------------------------------------------------------------- /C/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zDec.c -------------------------------------------------------------------------------- /C/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zFile.c -------------------------------------------------------------------------------- /C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zFile.h -------------------------------------------------------------------------------- /C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zStream.c -------------------------------------------------------------------------------- /C/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zTypes.h -------------------------------------------------------------------------------- /C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zVersion.h -------------------------------------------------------------------------------- /C/7zVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zVersion.rc -------------------------------------------------------------------------------- /C/7zWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zWindows.h -------------------------------------------------------------------------------- /C/7zip_gcc_c.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/7zip_gcc_c.mak -------------------------------------------------------------------------------- /C/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Aes.c -------------------------------------------------------------------------------- /C/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Aes.h -------------------------------------------------------------------------------- /C/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/AesOpt.c -------------------------------------------------------------------------------- /C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Alloc.c -------------------------------------------------------------------------------- /C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Alloc.h -------------------------------------------------------------------------------- /C/Asm_c.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Asm_c.mak -------------------------------------------------------------------------------- /C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Bcj2.c -------------------------------------------------------------------------------- /C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Bcj2.h -------------------------------------------------------------------------------- /C/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Bcj2Enc.c -------------------------------------------------------------------------------- /C/Blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Blake2.h -------------------------------------------------------------------------------- /C/Blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Blake2s.c -------------------------------------------------------------------------------- /C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Bra.c -------------------------------------------------------------------------------- /C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Bra.h -------------------------------------------------------------------------------- /C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Bra86.c -------------------------------------------------------------------------------- /C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/BraIA64.c -------------------------------------------------------------------------------- /C/BwtSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/BwtSort.c -------------------------------------------------------------------------------- /C/BwtSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/BwtSort.h -------------------------------------------------------------------------------- /C/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Compiler.h -------------------------------------------------------------------------------- /C/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/CpuArch.c -------------------------------------------------------------------------------- /C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/CpuArch.h -------------------------------------------------------------------------------- /C/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Delta.c -------------------------------------------------------------------------------- /C/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Delta.h -------------------------------------------------------------------------------- /C/DllSecur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/DllSecur.c -------------------------------------------------------------------------------- /C/DllSecur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/DllSecur.h -------------------------------------------------------------------------------- /C/HuffEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/HuffEnc.c -------------------------------------------------------------------------------- /C/HuffEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/HuffEnc.h -------------------------------------------------------------------------------- /C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzFind.c -------------------------------------------------------------------------------- /C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzFind.h -------------------------------------------------------------------------------- /C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzFindMt.c -------------------------------------------------------------------------------- /C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzFindMt.h -------------------------------------------------------------------------------- /C/LzFindOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzFindOpt.c -------------------------------------------------------------------------------- /C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzHash.h -------------------------------------------------------------------------------- /C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Lzma2Dec.c -------------------------------------------------------------------------------- /C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Lzma2Dec.h -------------------------------------------------------------------------------- /C/Lzma2DecMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Lzma2DecMt.c -------------------------------------------------------------------------------- /C/Lzma2DecMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Lzma2DecMt.h -------------------------------------------------------------------------------- /C/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Lzma2Enc.c -------------------------------------------------------------------------------- /C/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Lzma2Enc.h -------------------------------------------------------------------------------- /C/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Lzma86.h -------------------------------------------------------------------------------- /C/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Lzma86Dec.c -------------------------------------------------------------------------------- /C/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Lzma86Enc.c -------------------------------------------------------------------------------- /C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzmaDec.c -------------------------------------------------------------------------------- /C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzmaDec.h -------------------------------------------------------------------------------- /C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzmaEnc.c -------------------------------------------------------------------------------- /C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzmaEnc.h -------------------------------------------------------------------------------- /C/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzmaLib.c -------------------------------------------------------------------------------- /C/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/LzmaLib.h -------------------------------------------------------------------------------- /C/Md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Md5.c -------------------------------------------------------------------------------- /C/Md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Md5.h -------------------------------------------------------------------------------- /C/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/MtCoder.c -------------------------------------------------------------------------------- /C/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/MtCoder.h -------------------------------------------------------------------------------- /C/MtDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/MtDec.c -------------------------------------------------------------------------------- /C/MtDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/MtDec.h -------------------------------------------------------------------------------- /C/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Ppmd.h -------------------------------------------------------------------------------- /C/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Ppmd7.c -------------------------------------------------------------------------------- /C/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Ppmd7.h -------------------------------------------------------------------------------- /C/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Ppmd7Dec.c -------------------------------------------------------------------------------- /C/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Ppmd7Enc.c -------------------------------------------------------------------------------- /C/Ppmd7aDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Ppmd7aDec.c -------------------------------------------------------------------------------- /C/Ppmd8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Ppmd8.c -------------------------------------------------------------------------------- /C/Ppmd8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Ppmd8.h -------------------------------------------------------------------------------- /C/Ppmd8Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Ppmd8Dec.c -------------------------------------------------------------------------------- /C/Ppmd8Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Ppmd8Enc.c -------------------------------------------------------------------------------- /C/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Precomp.h -------------------------------------------------------------------------------- /C/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/RotateDefs.h -------------------------------------------------------------------------------- /C/Sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sha1.c -------------------------------------------------------------------------------- /C/Sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sha1.h -------------------------------------------------------------------------------- /C/Sha1Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sha1Opt.c -------------------------------------------------------------------------------- /C/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sha256.c -------------------------------------------------------------------------------- /C/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sha256.h -------------------------------------------------------------------------------- /C/Sha256Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sha256Opt.c -------------------------------------------------------------------------------- /C/Sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sha3.c -------------------------------------------------------------------------------- /C/Sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sha3.h -------------------------------------------------------------------------------- /C/Sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sha512.c -------------------------------------------------------------------------------- /C/Sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sha512.h -------------------------------------------------------------------------------- /C/Sha512Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sha512Opt.c -------------------------------------------------------------------------------- /C/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sort.c -------------------------------------------------------------------------------- /C/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Sort.h -------------------------------------------------------------------------------- /C/SwapBytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/SwapBytes.c -------------------------------------------------------------------------------- /C/SwapBytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/SwapBytes.h -------------------------------------------------------------------------------- /C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Threads.c -------------------------------------------------------------------------------- /C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Threads.h -------------------------------------------------------------------------------- /C/Util/7z/7z.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7z/7z.dsp -------------------------------------------------------------------------------- /C/Util/7z/7z.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7z/7z.dsw -------------------------------------------------------------------------------- /C/Util/7z/7zMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7z/7zMain.c -------------------------------------------------------------------------------- /C/Util/7z/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7z/Precomp.c -------------------------------------------------------------------------------- /C/Util/7z/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7z/Precomp.h -------------------------------------------------------------------------------- /C/Util/7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7z/makefile -------------------------------------------------------------------------------- /C/Util/7z/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7z/makefile.gcc -------------------------------------------------------------------------------- /C/Util/7zipInstall/7zip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipInstall/7zip.ico -------------------------------------------------------------------------------- /C/Util/7zipInstall/7zipInstall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipInstall/7zipInstall.c -------------------------------------------------------------------------------- /C/Util/7zipInstall/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipInstall/Precomp.c -------------------------------------------------------------------------------- /C/Util/7zipInstall/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipInstall/Precomp.h -------------------------------------------------------------------------------- /C/Util/7zipInstall/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipInstall/makefile -------------------------------------------------------------------------------- /C/Util/7zipInstall/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipInstall/resource.h -------------------------------------------------------------------------------- /C/Util/7zipInstall/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipInstall/resource.rc -------------------------------------------------------------------------------- /C/Util/7zipUninstall/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipUninstall/Precomp.c -------------------------------------------------------------------------------- /C/Util/7zipUninstall/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipUninstall/Precomp.h -------------------------------------------------------------------------------- /C/Util/7zipUninstall/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipUninstall/makefile -------------------------------------------------------------------------------- /C/Util/7zipUninstall/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipUninstall/resource.h -------------------------------------------------------------------------------- /C/Util/7zipUninstall/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/7zipUninstall/resource.rc -------------------------------------------------------------------------------- /C/Util/Lzma/LzmaUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/Lzma/LzmaUtil.c -------------------------------------------------------------------------------- /C/Util/Lzma/LzmaUtil.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/Lzma/LzmaUtil.dsp -------------------------------------------------------------------------------- /C/Util/Lzma/LzmaUtil.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/Lzma/LzmaUtil.dsw -------------------------------------------------------------------------------- /C/Util/Lzma/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/Lzma/Precomp.h -------------------------------------------------------------------------------- /C/Util/Lzma/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/Lzma/makefile -------------------------------------------------------------------------------- /C/Util/Lzma/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/Lzma/makefile.gcc -------------------------------------------------------------------------------- /C/Util/LzmaLib/LzmaLib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/LzmaLib/LzmaLib.def -------------------------------------------------------------------------------- /C/Util/LzmaLib/LzmaLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/LzmaLib/LzmaLib.dsp -------------------------------------------------------------------------------- /C/Util/LzmaLib/LzmaLib.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/LzmaLib/LzmaLib.dsw -------------------------------------------------------------------------------- /C/Util/LzmaLib/LzmaLibExports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/LzmaLib/LzmaLibExports.c -------------------------------------------------------------------------------- /C/Util/LzmaLib/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/LzmaLib/Precomp.c -------------------------------------------------------------------------------- /C/Util/LzmaLib/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/LzmaLib/Precomp.h -------------------------------------------------------------------------------- /C/Util/LzmaLib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/LzmaLib/makefile -------------------------------------------------------------------------------- /C/Util/LzmaLib/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/LzmaLib/resource.rc -------------------------------------------------------------------------------- /C/Util/SfxSetup/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/SfxSetup/Precomp.c -------------------------------------------------------------------------------- /C/Util/SfxSetup/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/SfxSetup/Precomp.h -------------------------------------------------------------------------------- /C/Util/SfxSetup/SfxSetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/SfxSetup/SfxSetup.c -------------------------------------------------------------------------------- /C/Util/SfxSetup/SfxSetup.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/SfxSetup/SfxSetup.dsp -------------------------------------------------------------------------------- /C/Util/SfxSetup/SfxSetup.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/SfxSetup/SfxSetup.dsw -------------------------------------------------------------------------------- /C/Util/SfxSetup/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/SfxSetup/makefile -------------------------------------------------------------------------------- /C/Util/SfxSetup/makefile_con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/SfxSetup/makefile_con -------------------------------------------------------------------------------- /C/Util/SfxSetup/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/SfxSetup/resource.rc -------------------------------------------------------------------------------- /C/Util/SfxSetup/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Util/SfxSetup/setup.ico -------------------------------------------------------------------------------- /C/Xxh64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Xxh64.c -------------------------------------------------------------------------------- /C/Xxh64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Xxh64.h -------------------------------------------------------------------------------- /C/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Xz.c -------------------------------------------------------------------------------- /C/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/Xz.h -------------------------------------------------------------------------------- /C/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/XzCrc64.c -------------------------------------------------------------------------------- /C/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/XzCrc64.h -------------------------------------------------------------------------------- /C/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/XzCrc64Opt.c -------------------------------------------------------------------------------- /C/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/XzDec.c -------------------------------------------------------------------------------- /C/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/XzEnc.c -------------------------------------------------------------------------------- /C/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/XzEnc.h -------------------------------------------------------------------------------- /C/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/XzIn.c -------------------------------------------------------------------------------- /C/ZstdDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/ZstdDec.c -------------------------------------------------------------------------------- /C/ZstdDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/ZstdDec.h -------------------------------------------------------------------------------- /C/var_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/var_clang.mak -------------------------------------------------------------------------------- /C/var_clang_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/var_clang_arm64.mak -------------------------------------------------------------------------------- /C/var_clang_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/var_clang_x64.mak -------------------------------------------------------------------------------- /C/var_clang_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/var_clang_x86.mak -------------------------------------------------------------------------------- /C/var_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/var_gcc.mak -------------------------------------------------------------------------------- /C/var_gcc_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/var_gcc_arm64.mak -------------------------------------------------------------------------------- /C/var_gcc_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/var_gcc_x64.mak -------------------------------------------------------------------------------- /C/var_gcc_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/var_gcc_x86.mak -------------------------------------------------------------------------------- /C/var_mac_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/var_mac_arm64.mak -------------------------------------------------------------------------------- /C/var_mac_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/var_mac_x64.mak -------------------------------------------------------------------------------- /C/warn_clang.mak: -------------------------------------------------------------------------------- 1 | CFLAGS_WARN = -Weverything -Wfatal-errors 2 | -------------------------------------------------------------------------------- /C/warn_clang_mac.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/warn_clang_mac.mak -------------------------------------------------------------------------------- /C/warn_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/C/warn_gcc.mak -------------------------------------------------------------------------------- /CPP/7zip/7zip.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/7zip.mak -------------------------------------------------------------------------------- /CPP/7zip/7zip_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/7zip_gcc.mak -------------------------------------------------------------------------------- /CPP/7zip/Aes.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Aes.mak -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7z.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7z.dsp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7z.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7z.dsw -------------------------------------------------------------------------------- /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/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zDecode.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zDecode.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zEncode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zEncode.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zEncode.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zExtract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zExtract.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zHeader.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zOut.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zOut.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zUpdate.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/7zUpdate.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/StdAfx.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/makefile -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/7z/resource.rc -------------------------------------------------------------------------------- /CPP/7zip/Archive/ApfsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/ApfsHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/ApmHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/ApmHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/ArHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/ArHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Archive.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Archive.def -------------------------------------------------------------------------------- /CPP/7zip/Archive/Archive2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Archive2.def -------------------------------------------------------------------------------- /CPP/7zip/Archive/ArjHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/ArjHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/AvbHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/AvbHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Bz2Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Bz2Handler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Cab/CabHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Cab/CabHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Cab/CabIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Cab/CabIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/CabItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Cab/CabItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Cab/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Cab/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Chm/ChmHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Chm/ChmHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Chm/ChmIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Chm/ChmIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Chm/ChmIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Chm/ChmIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Chm/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Chm/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/ComHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/ComHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Common/ParseProperties.cpp: -------------------------------------------------------------------------------- 1 | // ParseProperties.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Archive/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Common/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/CpioHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/CpioHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/DeflateProps.cpp: -------------------------------------------------------------------------------- 1 | // DeflateProps.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Archive/DeflateProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/DeflateProps.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/DllExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/DllExports.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/DllExports2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/DllExports2.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/DmgHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/DmgHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/ElfHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/ElfHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/ExtHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/ExtHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/FatHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/FatHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/FlvHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/FlvHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/GptHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/GptHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/GzHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/GzHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/HandlerCont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/HandlerCont.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/HandlerCont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/HandlerCont.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/HfsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/HfsHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/HfsHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/HfsHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/IArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/IArchive.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/7z.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/apfs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/apfs.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/arj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/arj.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/bz2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/bz2.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/cab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/cab.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/cpio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/cpio.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/deb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/deb.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/dmg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/dmg.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/fat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/fat.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/gz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/gz.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/hfs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/hfs.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/iso.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/iso.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/lzh.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/lzh.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/lzma.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/lzma.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/ntfs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/ntfs.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/rar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/rar.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/rpm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/rpm.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/split.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/split.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/tar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/tar.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/vhd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/vhd.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/wim.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/wim.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/xar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/xar.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/xz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/xz.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/z.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/zip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/zip.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/Icons/zst.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Icons/zst.ico -------------------------------------------------------------------------------- /CPP/7zip/Archive/IhexHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/IhexHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Iso/IsoHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Iso/IsoHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Iso/IsoIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Iso/IsoIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/IsoItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Iso/IsoItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Iso/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Iso/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/LpHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/LpHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/LvmHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/LvmHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/LzhHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/LzhHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/LzmaHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/LzmaHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/MachoHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/MachoHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/MbrHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/MbrHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/MslzHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/MslzHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/MubHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/MubHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Nsis/NsisIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Nsis/NsisIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Nsis/NsisIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Nsis/NsisIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Nsis/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Nsis/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/NtfsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/NtfsHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/PeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/PeHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/PpmdHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/PpmdHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/QcowHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/QcowHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/RarHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Rar/RarHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/RarHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Rar/RarHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/RarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Rar/RarItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/RarVol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Rar/RarVol.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Rar/StdAfx.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Rar/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Rar/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/RpmHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/RpmHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/SplitHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/SplitHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/SwfHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/SwfHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Tar/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Tar/TarHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Tar/TarHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Tar/TarIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Tar/TarIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Tar/TarItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Tar/TarOut.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Tar/TarOut.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Tar/TarUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Tar/TarUpdate.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Udf/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Udf/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Udf/UdfHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Udf/UdfHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Udf/UdfIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Udf/UdfIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Udf/UdfIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Udf/UdfIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/UefiHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/UefiHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/VdiHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/VdiHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/VhdHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/VhdHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/VhdxHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/VhdxHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/VmdkHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/VmdkHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Wim/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Wim/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Wim/WimHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Wim/WimHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Wim/WimIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Wim/WimIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Wim/WimIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Wim/WimIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/XarHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/XarHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/XzHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/XzHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/XzHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/XzHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/ZHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/ZHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Zip/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Zip/ZipHandler.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Zip/ZipHeader.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Zip/ZipIn.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Zip/ZipIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Zip/ZipItem.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Zip/ZipItem.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Zip/ZipOut.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Zip/ZipOut.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Zip/ZipUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/Zip/ZipUpdate.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/ZstdHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/ZstdHandler.cpp -------------------------------------------------------------------------------- /CPP/7zip/Archive/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Archive/makefile -------------------------------------------------------------------------------- /CPP/7zip/Asm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Asm.mak -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone/Alone.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Alone/Alone.dsp -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone/Alone.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Alone/Alone.dsw -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Alone/StdAfx.cpp -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Alone/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Alone/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone2/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Alone2/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Alone2/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone7z/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Alone7z/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Alone7z/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Fm/FM.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Fm/FM.dsp -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Fm/FM.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Fm/FM.dsw -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Fm/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Fm/StdAfx.cpp -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Fm/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Fm/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Fm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Fm/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Fm/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/Fm/resource.rc -------------------------------------------------------------------------------- /CPP/7zip/Bundles/LzmaCon/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/LzmaCon/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Bundles/LzmaCon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/LzmaCon/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/LzmaCon/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("LZMA", "lzma") 4 | -------------------------------------------------------------------------------- /CPP/7zip/Bundles/SFXCon/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/SFXCon/7z.ico -------------------------------------------------------------------------------- /CPP/7zip/Bundles/SFXCon/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/SFXCon/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Bundles/SFXCon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/SFXCon/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/SFXWin/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/SFXWin/7z.ico -------------------------------------------------------------------------------- /CPP/7zip/Bundles/SFXWin/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/SFXWin/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Bundles/SFXWin/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/SFXWin/makefile -------------------------------------------------------------------------------- /CPP/7zip/Bundles/SFXWin/resource.h: -------------------------------------------------------------------------------- 1 | #define IDI_ICON 1 2 | -------------------------------------------------------------------------------- /CPP/7zip/Bundles/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Bundles/makefile -------------------------------------------------------------------------------- /CPP/7zip/Common/CWrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/CWrappers.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/CWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/CWrappers.h -------------------------------------------------------------------------------- /CPP/7zip/Common/CreateCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/CreateCoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/CreateCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/CreateCoder.h -------------------------------------------------------------------------------- /CPP/7zip/Common/FileStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/FileStreams.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/FileStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/FileStreams.h -------------------------------------------------------------------------------- /CPP/7zip/Common/FilterCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/FilterCoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/FilterCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/FilterCoder.h -------------------------------------------------------------------------------- /CPP/7zip/Common/InBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/InBuffer.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/InBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/InBuffer.h -------------------------------------------------------------------------------- /CPP/7zip/Common/InOutTempBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/InOutTempBuffer.h -------------------------------------------------------------------------------- /CPP/7zip/Common/LimitedStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/LimitedStreams.h -------------------------------------------------------------------------------- /CPP/7zip/Common/LockedStream.cpp: -------------------------------------------------------------------------------- 1 | // LockedStream.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Common/LockedStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/LockedStream.h -------------------------------------------------------------------------------- /CPP/7zip/Common/MemBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/MemBlocks.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/MemBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/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/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/MethodId.h -------------------------------------------------------------------------------- /CPP/7zip/Common/MethodProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/MethodProps.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/MethodProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/MethodProps.h -------------------------------------------------------------------------------- /CPP/7zip/Common/MultiOutStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/MultiOutStream.h -------------------------------------------------------------------------------- /CPP/7zip/Common/OffsetStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/OffsetStream.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/OffsetStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/OffsetStream.h -------------------------------------------------------------------------------- /CPP/7zip/Common/OutBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/OutBuffer.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/OutBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/OutBuffer.h -------------------------------------------------------------------------------- /CPP/7zip/Common/OutMemStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/OutMemStream.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/OutMemStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/OutMemStream.h -------------------------------------------------------------------------------- /CPP/7zip/Common/ProgressMt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/ProgressMt.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/ProgressMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/ProgressMt.h -------------------------------------------------------------------------------- /CPP/7zip/Common/ProgressUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/ProgressUtils.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/ProgressUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/ProgressUtils.h -------------------------------------------------------------------------------- /CPP/7zip/Common/PropId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/PropId.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/RegisterArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/RegisterArc.h -------------------------------------------------------------------------------- /CPP/7zip/Common/RegisterCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/RegisterCodec.h -------------------------------------------------------------------------------- /CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamBinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/StreamBinder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/StreamBinder.h -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/StreamObjects.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/StreamObjects.h -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/StreamUtils.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/StreamUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/StreamUtils.h -------------------------------------------------------------------------------- /CPP/7zip/Common/UniqBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/UniqBlocks.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/UniqBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/UniqBlocks.h -------------------------------------------------------------------------------- /CPP/7zip/Common/VirtThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/VirtThread.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/VirtThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Common/VirtThread.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BZip2Const.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BZip2Crc.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BZip2Crc.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BZip2Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BZip2Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BZip2Encoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Bcj2Coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Bcj2Coder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Bcj2Coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Bcj2Coder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BcjCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BcjCoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BcjCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BcjCoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BcjRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BcjRegister.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BitlDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BitlDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BitlDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BitlDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BitlEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BitlEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BitmDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BitmDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BitmEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BitmEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/BranchMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BranchMisc.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/BranchMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/BranchMisc.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ByteSwap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/ByteSwap.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Codec.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Codec.def -------------------------------------------------------------------------------- /CPP/7zip/Compress/CopyCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/CopyCoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/CopyCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/CopyCoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/DeflateConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/DeflateConst.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/DeltaFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/DeltaFilter.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/ImplodeHuffmanDecoder.cpp: -------------------------------------------------------------------------------- 1 | // ImplodeHuffmanDecoder.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzOutWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzOutWindow.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzOutWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzOutWindow.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzfseDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzfseDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzhDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzhDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzhDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzhDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzma2Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Lzma2Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzma2Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Lzma2Encoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmaDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzmaDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmaDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzmaDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmaEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzmaEncoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmaEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzmaEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmsDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzmsDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzmsDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzmsDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Lzx.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzxDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzxDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/LzxDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/LzxDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Mtf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Mtf8.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/PpmdDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/PpmdDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/PpmdEncoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/PpmdEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/PpmdZip.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/PpmdZip.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar1Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Rar1Decoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar1Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Rar1Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar2Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Rar2Decoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar2Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Rar2Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar3Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Rar3Decoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar3Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Rar3Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar3Vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Rar3Vm.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar3Vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Rar3Vm.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar5Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Rar5Decoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar5Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/Rar5Decoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ShrinkDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/ShrinkDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/XpressDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/XpressDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/XzDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/XzDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/XzDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/XzDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/XzEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/XzEncoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/XzEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/XzEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/ZDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/ZDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZlibDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/ZlibDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZlibDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/ZlibDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZlibEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/ZlibEncoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZlibEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/ZlibEncoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZstdDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/ZstdDecoder.cpp -------------------------------------------------------------------------------- /CPP/7zip/Compress/ZstdDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/ZstdDecoder.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Compress/makefile -------------------------------------------------------------------------------- /CPP/7zip/Crc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crc.mak -------------------------------------------------------------------------------- /CPP/7zip/Crc64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crc64.mak -------------------------------------------------------------------------------- /CPP/7zip/Crypto/7zAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/7zAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/7zAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/7zAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/7zAesRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/7zAesRegister.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Codec.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/Codec.def -------------------------------------------------------------------------------- /CPP/7zip/Crypto/HmacSha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/HmacSha1.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/HmacSha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/HmacSha1.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/HmacSha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/HmacSha256.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/HmacSha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/HmacSha256.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/MyAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/MyAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/MyAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/MyAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/MyAesReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/MyAesReg.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Pbkdf2HmacSha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/Pbkdf2HmacSha1.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RandGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/RandGen.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RandGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/RandGen.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Rar20Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/Rar20Crypto.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Rar20Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/Rar20Crypto.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Rar5Aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/Rar5Aes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Rar5Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/Rar5Aes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RarAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/RarAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RarAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/RarAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Sha1Cls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/Sha1Cls.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/WzAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/WzAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/WzAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/WzAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/ZipCrypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/ZipCrypto.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/ZipCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/ZipCrypto.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/ZipStrong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/ZipStrong.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/ZipStrong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Crypto/ZipStrong.h -------------------------------------------------------------------------------- /CPP/7zip/GuiCommon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/GuiCommon.rc -------------------------------------------------------------------------------- /CPP/7zip/Guid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Guid.txt -------------------------------------------------------------------------------- /CPP/7zip/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/ICoder.h -------------------------------------------------------------------------------- /CPP/7zip/IDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/IDecl.h -------------------------------------------------------------------------------- /CPP/7zip/IPassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/IPassword.h -------------------------------------------------------------------------------- /CPP/7zip/IProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/IProgress.h -------------------------------------------------------------------------------- /CPP/7zip/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/IStream.h -------------------------------------------------------------------------------- /CPP/7zip/LzFindOpt.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/LzFindOpt.mak -------------------------------------------------------------------------------- /CPP/7zip/LzmaDec.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/LzmaDec.mak -------------------------------------------------------------------------------- /CPP/7zip/LzmaDec_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/LzmaDec_gcc.mak -------------------------------------------------------------------------------- /CPP/7zip/MyVersion.h: -------------------------------------------------------------------------------- 1 | #define USE_COPYRIGHT_CR 2 | #include "../../C/7zVersion.h" 3 | -------------------------------------------------------------------------------- /CPP/7zip/MyVersionInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/MyVersionInfo.rc -------------------------------------------------------------------------------- /CPP/7zip/PropID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/PropID.h -------------------------------------------------------------------------------- /CPP/7zip/Sha1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Sha1.mak -------------------------------------------------------------------------------- /CPP/7zip/Sha256.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Sha256.mak -------------------------------------------------------------------------------- /CPP/7zip/Sort.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/Sort.mak -------------------------------------------------------------------------------- /CPP/7zip/SubBuild.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/SubBuild.mak -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/Agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Agent/Agent.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/Agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Agent/Agent.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/AgentOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Agent/AgentOut.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/AgentProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Agent/AgentProxy.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/AgentProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Agent/AgentProxy.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Agent/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Client7z/Client7z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Client7z/Client7z.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Client7z/Client7z.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Client7z/Client7z.dsp -------------------------------------------------------------------------------- /CPP/7zip/UI/Client7z/Client7z.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Client7z/Client7z.dsw -------------------------------------------------------------------------------- /CPP/7zip/UI/Client7z/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Client7z/StdAfx.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Client7z/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Client7z/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Client7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Client7z/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/Client7z/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Client7z/makefile.gcc -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/ArchiveName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/ArchiveName.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/Bench.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/Bench.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/CompressCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/CompressCall.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/DefaultName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/DefaultName.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/DirItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/DirItem.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/EnumDirItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/EnumDirItems.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/ExitCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/ExitCode.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/Extract.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/Extract.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/ExtractMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/ExtractMode.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/HashCalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/HashCalc.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/HashCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/HashCalc.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/LoadCodecs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/LoadCodecs.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/LoadCodecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/LoadCodecs.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/OpenArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/OpenArchive.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/PropIDUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/PropIDUtils.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/Property.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/SortUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/SortUtils.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/SortUtils.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/TempFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/TempFiles.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/TempFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/TempFiles.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/Update.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/Update.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/UpdateAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/UpdateAction.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/UpdatePair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/UpdatePair.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/UpdatePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/UpdatePair.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/WorkDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/WorkDir.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/WorkDir.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/ZipRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Common/ZipRegistry.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/BenchCon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/BenchCon.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/BenchCon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/BenchCon.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/Console.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/Console.dsp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/Console.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/Console.dsw -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/Console.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/Console.mak -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/HashCon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/HashCon.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/HashCon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/HashCon.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/List.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/List.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/Main.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/MainAr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/MainAr.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/StdAfx.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/makefile.gcc -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Console/resource.rc -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/Explorer.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Explorer/Explorer.def -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/Explorer.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Explorer/Explorer.dsp -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/Explorer.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Explorer/Explorer.dsw -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/MenuLogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Explorer/MenuLogo.bmp -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/MyMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Explorer/MyMessages.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Explorer/StdAfx.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Explorer/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Explorer/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Explorer/resource.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Explorer/resource.rc -------------------------------------------------------------------------------- /CPP/7zip/UI/Explorer/resource2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Explorer/resource2.rc -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/ExtractEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/ExtractEngine.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/ExtractEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/ExtractEngine.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Far.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/Far.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Far.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/Far.def -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Far.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/Far.dsp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Far.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/Far.dsw -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/FarPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/FarPlugin.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/FarUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/FarUtils.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/FarUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/FarUtils.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/Messages.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/Plugin.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/Plugin.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/PluginCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/PluginCommon.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/PluginDelete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/PluginDelete.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/PluginRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/PluginRead.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/PluginWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/PluginWrite.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/ProgressBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/ProgressBox.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/ProgressBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/ProgressBox.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/StdAfx.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/Far/resource.rc -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Add.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/Add.bmp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Add2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/Add2.bmp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/App.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/App.h -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/Copy.bmp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Copy2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/Copy2.bmp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/FM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/FM.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/FM.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/FM.dsp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/FM.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/FM.dsw -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/FM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/FM.ico -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/FM.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/FM.mak -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/IFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/IFolder.h -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Info.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/Info.bmp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Info2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/Info2.bmp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Move.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/Move.bmp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Move2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/Move2.bmp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/MyCom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/MyCom2.h -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/Panel.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/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/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/Test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/FileManager/Test.bmp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/Extract.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/Extract.rc -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/ExtractGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/ExtractGUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/ExtractGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/ExtractGUI.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/ExtractRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/ExtractRes.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/FM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/FM.ico -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/GUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/GUI.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/GUI.dsp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/GUI.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/GUI.dsw -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/HashGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/HashGUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/HashGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/HashGUI.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/StdAfx.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/UpdateGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/UpdateGUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/UpdateGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/UpdateGUI.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/resource.rc -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/resource2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/resource2.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/resource2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/resource2.rc -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/resource3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/resource3.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/resource3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/GUI/resource3.rc -------------------------------------------------------------------------------- /CPP/7zip/UI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/UI/makefile -------------------------------------------------------------------------------- /CPP/7zip/cmpl_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/cmpl_clang.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_clang_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/cmpl_clang_arm64.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_clang_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/cmpl_clang_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_clang_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/cmpl_clang_x86.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/cmpl_gcc.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_gcc_arm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/cmpl_gcc_arm.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_gcc_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/cmpl_gcc_arm64.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_gcc_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/cmpl_gcc_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_gcc_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/cmpl_gcc_x86.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_mac_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/cmpl_mac_arm64.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_mac_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/cmpl_mac_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/makefile -------------------------------------------------------------------------------- /CPP/7zip/var_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/var_clang.mak -------------------------------------------------------------------------------- /CPP/7zip/var_clang_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/var_clang_arm64.mak -------------------------------------------------------------------------------- /CPP/7zip/var_clang_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/var_clang_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/var_clang_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/var_clang_x86.mak -------------------------------------------------------------------------------- /CPP/7zip/var_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/var_gcc.mak -------------------------------------------------------------------------------- /CPP/7zip/var_gcc_arm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/var_gcc_arm.mak -------------------------------------------------------------------------------- /CPP/7zip/var_gcc_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/var_gcc_arm64.mak -------------------------------------------------------------------------------- /CPP/7zip/var_gcc_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/var_gcc_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/var_gcc_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/var_gcc_x86.mak -------------------------------------------------------------------------------- /CPP/7zip/var_mac_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/var_mac_arm64.mak -------------------------------------------------------------------------------- /CPP/7zip/var_mac_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/var_mac_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/warn_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/warn_clang.mak -------------------------------------------------------------------------------- /CPP/7zip/warn_clang_mac.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/warn_clang_mac.mak -------------------------------------------------------------------------------- /CPP/7zip/warn_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/7zip/warn_gcc.mak -------------------------------------------------------------------------------- /CPP/Build.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Build.mak -------------------------------------------------------------------------------- /CPP/Common/AutoPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/AutoPtr.h -------------------------------------------------------------------------------- /CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/CRC.cpp -------------------------------------------------------------------------------- /CPP/Common/C_FileIO.cpp: -------------------------------------------------------------------------------- 1 | // Common/C_FileIO.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/Common/C_FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/C_FileIO.h -------------------------------------------------------------------------------- /CPP/Common/CksumReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/CksumReg.cpp -------------------------------------------------------------------------------- /CPP/Common/ComTry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/ComTry.h -------------------------------------------------------------------------------- /CPP/Common/CommandLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/CommandLineParser.h -------------------------------------------------------------------------------- /CPP/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Common.h -------------------------------------------------------------------------------- /CPP/Common/Common0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Common0.h -------------------------------------------------------------------------------- /CPP/Common/CrcReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/CrcReg.cpp -------------------------------------------------------------------------------- /CPP/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Defs.h -------------------------------------------------------------------------------- /CPP/Common/DynLimBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/DynLimBuf.cpp -------------------------------------------------------------------------------- /CPP/Common/DynLimBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/DynLimBuf.h -------------------------------------------------------------------------------- /CPP/Common/DynamicBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/DynamicBuffer.h -------------------------------------------------------------------------------- /CPP/Common/IntToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/IntToString.cpp -------------------------------------------------------------------------------- /CPP/Common/IntToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/IntToString.h -------------------------------------------------------------------------------- /CPP/Common/Lang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Lang.cpp -------------------------------------------------------------------------------- /CPP/Common/Lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Lang.h -------------------------------------------------------------------------------- /CPP/Common/ListFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/ListFileUtils.cpp -------------------------------------------------------------------------------- /CPP/Common/ListFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/ListFileUtils.h -------------------------------------------------------------------------------- /CPP/Common/LzFindPrepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/LzFindPrepare.cpp -------------------------------------------------------------------------------- /CPP/Common/Md5Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Md5Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/MyBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyBuffer.h -------------------------------------------------------------------------------- /CPP/Common/MyBuffer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyBuffer2.h -------------------------------------------------------------------------------- /CPP/Common/MyCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyCom.h -------------------------------------------------------------------------------- /CPP/Common/MyException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyException.h -------------------------------------------------------------------------------- /CPP/Common/MyGuidDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyGuidDef.h -------------------------------------------------------------------------------- /CPP/Common/MyInitGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyInitGuid.h -------------------------------------------------------------------------------- /CPP/Common/MyLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyLinux.h -------------------------------------------------------------------------------- /CPP/Common/MyMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyMap.cpp -------------------------------------------------------------------------------- /CPP/Common/MyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyMap.h -------------------------------------------------------------------------------- /CPP/Common/MyString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyString.cpp -------------------------------------------------------------------------------- /CPP/Common/MyString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyString.h -------------------------------------------------------------------------------- /CPP/Common/MyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyTypes.h -------------------------------------------------------------------------------- /CPP/Common/MyUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/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/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyVector.h -------------------------------------------------------------------------------- /CPP/Common/MyWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyWindows.cpp -------------------------------------------------------------------------------- /CPP/Common/MyWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyWindows.h -------------------------------------------------------------------------------- /CPP/Common/MyXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyXml.cpp -------------------------------------------------------------------------------- /CPP/Common/MyXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/MyXml.h -------------------------------------------------------------------------------- /CPP/Common/NewHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/NewHandler.cpp -------------------------------------------------------------------------------- /CPP/Common/NewHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/NewHandler.h -------------------------------------------------------------------------------- /CPP/Common/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Random.cpp -------------------------------------------------------------------------------- /CPP/Common/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Random.h -------------------------------------------------------------------------------- /CPP/Common/Sha1Prepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Sha1Prepare.cpp -------------------------------------------------------------------------------- /CPP/Common/Sha1Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Sha1Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/Sha256Prepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Sha256Prepare.cpp -------------------------------------------------------------------------------- /CPP/Common/Sha256Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Sha256Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/Sha3Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Sha3Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/Sha512Prepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Sha512Prepare.cpp -------------------------------------------------------------------------------- /CPP/Common/Sha512Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Sha512Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/StdAfx.h -------------------------------------------------------------------------------- /CPP/Common/StdInStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/StdInStream.cpp -------------------------------------------------------------------------------- /CPP/Common/StdInStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/StdInStream.h -------------------------------------------------------------------------------- /CPP/Common/StdOutStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/StdOutStream.cpp -------------------------------------------------------------------------------- /CPP/Common/StdOutStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/StdOutStream.h -------------------------------------------------------------------------------- /CPP/Common/StringConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/StringConvert.cpp -------------------------------------------------------------------------------- /CPP/Common/StringConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/StringConvert.h -------------------------------------------------------------------------------- /CPP/Common/StringToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/StringToInt.cpp -------------------------------------------------------------------------------- /CPP/Common/StringToInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/StringToInt.h -------------------------------------------------------------------------------- /CPP/Common/TextConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/TextConfig.cpp -------------------------------------------------------------------------------- /CPP/Common/TextConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/TextConfig.h -------------------------------------------------------------------------------- /CPP/Common/UTFConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/UTFConvert.cpp -------------------------------------------------------------------------------- /CPP/Common/UTFConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/UTFConvert.h -------------------------------------------------------------------------------- /CPP/Common/Wildcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Wildcard.cpp -------------------------------------------------------------------------------- /CPP/Common/Wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Wildcard.h -------------------------------------------------------------------------------- /CPP/Common/Xxh64Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/Xxh64Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/XzCrc64Init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/XzCrc64Init.cpp -------------------------------------------------------------------------------- /CPP/Common/XzCrc64Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Common/XzCrc64Reg.cpp -------------------------------------------------------------------------------- /CPP/Windows/COM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/COM.cpp -------------------------------------------------------------------------------- /CPP/Windows/COM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/COM.h -------------------------------------------------------------------------------- /CPP/Windows/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Clipboard.cpp -------------------------------------------------------------------------------- /CPP/Windows/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Clipboard.h -------------------------------------------------------------------------------- /CPP/Windows/CommonDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/CommonDialog.cpp -------------------------------------------------------------------------------- /CPP/Windows/CommonDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/CommonDialog.h -------------------------------------------------------------------------------- /CPP/Windows/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Console.cpp -------------------------------------------------------------------------------- /CPP/Windows/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Console.h -------------------------------------------------------------------------------- /CPP/Windows/Control/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Control/ComboBox.h -------------------------------------------------------------------------------- /CPP/Windows/Control/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Control/Dialog.cpp -------------------------------------------------------------------------------- /CPP/Windows/Control/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Control/Dialog.h -------------------------------------------------------------------------------- /CPP/Windows/Control/Edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Control/Edit.h -------------------------------------------------------------------------------- /CPP/Windows/Control/ListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Control/ListView.h -------------------------------------------------------------------------------- /CPP/Windows/Control/ReBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Control/ReBar.h -------------------------------------------------------------------------------- /CPP/Windows/Control/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Control/Static.h -------------------------------------------------------------------------------- /CPP/Windows/Control/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Control/StdAfx.h -------------------------------------------------------------------------------- /CPP/Windows/Control/ToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Control/ToolBar.h -------------------------------------------------------------------------------- /CPP/Windows/Control/Trackbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Control/Trackbar.h -------------------------------------------------------------------------------- /CPP/Windows/Control/Window2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Control/Window2.h -------------------------------------------------------------------------------- /CPP/Windows/DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/DLL.cpp -------------------------------------------------------------------------------- /CPP/Windows/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/DLL.h -------------------------------------------------------------------------------- /CPP/Windows/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Defs.h -------------------------------------------------------------------------------- /CPP/Windows/ErrorMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/ErrorMsg.cpp -------------------------------------------------------------------------------- /CPP/Windows/ErrorMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/ErrorMsg.h -------------------------------------------------------------------------------- /CPP/Windows/FileDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileDir.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileDir.h -------------------------------------------------------------------------------- /CPP/Windows/FileFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileFind.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileFind.h -------------------------------------------------------------------------------- /CPP/Windows/FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileIO.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileIO.h -------------------------------------------------------------------------------- /CPP/Windows/FileLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileLink.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileMapping.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileMapping.h -------------------------------------------------------------------------------- /CPP/Windows/FileName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileName.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileName.h -------------------------------------------------------------------------------- /CPP/Windows/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileSystem.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/FileSystem.h -------------------------------------------------------------------------------- /CPP/Windows/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Handle.h -------------------------------------------------------------------------------- /CPP/Windows/MemoryGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/MemoryGlobal.cpp -------------------------------------------------------------------------------- /CPP/Windows/MemoryGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/MemoryGlobal.h -------------------------------------------------------------------------------- /CPP/Windows/MemoryLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/MemoryLock.cpp -------------------------------------------------------------------------------- /CPP/Windows/MemoryLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/MemoryLock.h -------------------------------------------------------------------------------- /CPP/Windows/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Menu.cpp -------------------------------------------------------------------------------- /CPP/Windows/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Menu.h -------------------------------------------------------------------------------- /CPP/Windows/NationalTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/NationalTime.cpp -------------------------------------------------------------------------------- /CPP/Windows/NationalTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/NationalTime.h -------------------------------------------------------------------------------- /CPP/Windows/Net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Net.cpp -------------------------------------------------------------------------------- /CPP/Windows/Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Net.h -------------------------------------------------------------------------------- /CPP/Windows/NtCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/NtCheck.h -------------------------------------------------------------------------------- /CPP/Windows/ProcessMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/ProcessMessages.h -------------------------------------------------------------------------------- /CPP/Windows/ProcessUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/ProcessUtils.cpp -------------------------------------------------------------------------------- /CPP/Windows/ProcessUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/ProcessUtils.h -------------------------------------------------------------------------------- /CPP/Windows/PropVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/PropVariant.cpp -------------------------------------------------------------------------------- /CPP/Windows/PropVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/PropVariant.h -------------------------------------------------------------------------------- /CPP/Windows/PropVariantConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/PropVariantConv.h -------------------------------------------------------------------------------- /CPP/Windows/PropVariantUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/PropVariantUtils.h -------------------------------------------------------------------------------- /CPP/Windows/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Registry.cpp -------------------------------------------------------------------------------- /CPP/Windows/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Registry.h -------------------------------------------------------------------------------- /CPP/Windows/ResourceString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/ResourceString.cpp -------------------------------------------------------------------------------- /CPP/Windows/ResourceString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/ResourceString.h -------------------------------------------------------------------------------- /CPP/Windows/SecurityUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/SecurityUtils.cpp -------------------------------------------------------------------------------- /CPP/Windows/SecurityUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/SecurityUtils.h -------------------------------------------------------------------------------- /CPP/Windows/Shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Shell.cpp -------------------------------------------------------------------------------- /CPP/Windows/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Shell.h -------------------------------------------------------------------------------- /CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/StdAfx.h -------------------------------------------------------------------------------- /CPP/Windows/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Synchronization.h -------------------------------------------------------------------------------- /CPP/Windows/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/System.cpp -------------------------------------------------------------------------------- /CPP/Windows/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/System.h -------------------------------------------------------------------------------- /CPP/Windows/SystemInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/SystemInfo.cpp -------------------------------------------------------------------------------- /CPP/Windows/SystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/SystemInfo.h -------------------------------------------------------------------------------- /CPP/Windows/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Thread.h -------------------------------------------------------------------------------- /CPP/Windows/TimeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/TimeUtils.cpp -------------------------------------------------------------------------------- /CPP/Windows/TimeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/TimeUtils.h -------------------------------------------------------------------------------- /CPP/Windows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Window.cpp -------------------------------------------------------------------------------- /CPP/Windows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/CPP/Windows/Window.h -------------------------------------------------------------------------------- /DOC/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DOC/7zC.txt -------------------------------------------------------------------------------- /DOC/7zFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DOC/7zFormat.txt -------------------------------------------------------------------------------- /DOC/7zip.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DOC/7zip.hhp -------------------------------------------------------------------------------- /DOC/7zip.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DOC/7zip.wxs -------------------------------------------------------------------------------- /DOC/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DOC/License.txt -------------------------------------------------------------------------------- /DOC/Methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DOC/Methods.txt -------------------------------------------------------------------------------- /DOC/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DOC/copying.txt -------------------------------------------------------------------------------- /DOC/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DOC/lzma.txt -------------------------------------------------------------------------------- /DOC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DOC/readme.txt -------------------------------------------------------------------------------- /DOC/src-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DOC/src-history.txt -------------------------------------------------------------------------------- /DOC/unRarLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DOC/unRarLicense.txt -------------------------------------------------------------------------------- /DarkMode/7zRes/7zDark.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/7zDark.ini -------------------------------------------------------------------------------- /DarkMode/7zRes/7zDark.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/7zDark.mak -------------------------------------------------------------------------------- /DarkMode/7zRes/7zDarkObj.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/7zDarkObj.mak -------------------------------------------------------------------------------- /DarkMode/7zRes/icons/Add.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/icons/Add.bmp -------------------------------------------------------------------------------- /DarkMode/7zRes/icons/Add2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/icons/Add2.bmp -------------------------------------------------------------------------------- /DarkMode/7zRes/icons/Copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/icons/Copy.bmp -------------------------------------------------------------------------------- /DarkMode/7zRes/icons/Copy2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/icons/Copy2.bmp -------------------------------------------------------------------------------- /DarkMode/7zRes/icons/Info.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/icons/Info.bmp -------------------------------------------------------------------------------- /DarkMode/7zRes/icons/Info2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/icons/Info2.bmp -------------------------------------------------------------------------------- /DarkMode/7zRes/icons/Move.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/icons/Move.bmp -------------------------------------------------------------------------------- /DarkMode/7zRes/icons/Move2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/icons/Move2.bmp -------------------------------------------------------------------------------- /DarkMode/7zRes/icons/Test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/icons/Test.bmp -------------------------------------------------------------------------------- /DarkMode/7zRes/icons/Test2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/7zRes/icons/Test2.bmp -------------------------------------------------------------------------------- /DarkMode/LICENSE-MIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/LICENSE-MIT.md -------------------------------------------------------------------------------- /DarkMode/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/LICENSE.md -------------------------------------------------------------------------------- /DarkMode/docs/Dark.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/docs/Dark.ini -------------------------------------------------------------------------------- /DarkMode/src/DmlibColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibColor.cpp -------------------------------------------------------------------------------- /DarkMode/src/DmlibColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibColor.h -------------------------------------------------------------------------------- /DarkMode/src/DmlibDpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibDpi.cpp -------------------------------------------------------------------------------- /DarkMode/src/DmlibDpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibDpi.h -------------------------------------------------------------------------------- /DarkMode/src/DmlibGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibGlyph.h -------------------------------------------------------------------------------- /DarkMode/src/DmlibHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibHook.cpp -------------------------------------------------------------------------------- /DarkMode/src/DmlibHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibHook.h -------------------------------------------------------------------------------- /DarkMode/src/DmlibIni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibIni.cpp -------------------------------------------------------------------------------- /DarkMode/src/DmlibIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibIni.h -------------------------------------------------------------------------------- /DarkMode/src/DmlibSubclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibSubclass.cpp -------------------------------------------------------------------------------- /DarkMode/src/DmlibSubclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibSubclass.h -------------------------------------------------------------------------------- /DarkMode/src/DmlibWinApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibWinApi.cpp -------------------------------------------------------------------------------- /DarkMode/src/DmlibWinApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/DmlibWinApi.h -------------------------------------------------------------------------------- /DarkMode/src/IatHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/IatHook.h -------------------------------------------------------------------------------- /DarkMode/src/ModuleHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/ModuleHelper.h -------------------------------------------------------------------------------- /DarkMode/src/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/StdAfx.h -------------------------------------------------------------------------------- /DarkMode/src/UAHMenuBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/UAHMenuBar.h -------------------------------------------------------------------------------- /DarkMode/src/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/DarkMode/src/Version.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozone10/7zip-Dark7zip/HEAD/README.md --------------------------------------------------------------------------------