-
-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make NanaZip Self Extracting Executable stubs use 7-Zip mainline Zsta…
…ndard decoder instead of Zstandard official's for reducing the size for binaries.
- Loading branch information
1 parent
4d21f72
commit f235dc8
Showing
8 changed files
with
47 additions
and
248 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* PROJECT: NanaZip | ||
* FILE: NanaZip.Core.Sfx.ZstandardRegister.cpp | ||
* PURPOSE: Implementation for Zstandard decoder register | ||
* | ||
* LICENSE: The MIT License | ||
* | ||
* MAINTAINER: MouriNaruto ([email protected]) | ||
*/ | ||
|
||
#include "SevenZip/CPP/7zip/Common/RegisterCodec.h" | ||
#include "SevenZip/CPP/7zip/Compress/ZstdDecoder.h" | ||
|
||
REGISTER_CODEC_E( | ||
Zstd, | ||
NCompress::NZstd::CDecoder(), | ||
nullptr, | ||
0x4F71101, | ||
"Zstd") |
Oops, something went wrong.