mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 12:07:03 -06:00
major Lizard fixes
- changed to real Lizard code v1.0 (I used LZ5 v2.0) - add Lizard file handling, so '.liz' files can be used in windows - changed CompressDialog (Lizard has 4 entries in the methods now) - added Lizard icon
This commit is contained in:
@@ -3,8 +3,9 @@
|
||||
#define LIZARD_STATIC_LINKING_ONLY
|
||||
#include "../../../C/Alloc.h"
|
||||
#include "../../../C/Threads.h"
|
||||
#include "../../../C/lizard/liz_compress.h"
|
||||
#include "../../../C/lizard/lizframe.h"
|
||||
#include "../../../C/lizard/lizard_compress.h"
|
||||
#include "../../../C/lizard/lizard_decompress.h"
|
||||
#include "../../../C/lizard/lizard_frame.h"
|
||||
#include "../../../C/zstdmt/lizard-mt.h"
|
||||
|
||||
#include "../../Windows/System.h"
|
||||
@@ -37,8 +38,8 @@ struct DProps
|
||||
void clear ()
|
||||
{
|
||||
memset(this, 0, sizeof (*this));
|
||||
_ver_major = LIZ_VERSION_MAJOR;
|
||||
_ver_minor = LIZ_VERSION_MINOR;
|
||||
_ver_major = LIZARD_VERSION_MAJOR;
|
||||
_ver_minor = LIZARD_VERSION_MINOR;
|
||||
_level = 1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user