Very early SevenZip WIP version

This commit is contained in:
gjefferyes
2015-03-18 08:48:48 -05:00
parent 7830068257
commit 5d9d63fb08
55 changed files with 9683 additions and 3477 deletions

View File

@@ -18,7 +18,7 @@ using ROMVault2.SupportedFiles.Zip.ZLib;
namespace ROMVault2.SupportedFiles.Zip
{
public class ZipFile
public class ZipFile : ICompress
{
const int Buffersize = 4096 * 128;
private static byte[] _buffer;
@@ -807,7 +807,7 @@ namespace ROMVault2.SupportedFiles.Zip
private ZipStatus _pZipStatus;
private bool _zip64;
public ZipOpenType ZipOpen;
public ZipOpenType ZipOpen { get; private set; }
public ZipStatus ZipStatus { get { return _pZipStatus; } }
@@ -823,7 +823,7 @@ namespace ROMVault2.SupportedFiles.Zip
public byte[] CRC32(int i) { return _localFiles[i].CRC; }
public byte[] MD5(int i) { return _localFiles[i].md5; }
public byte[] SHA1(int i) { return _localFiles[i].sha1; }
~ZipFile()
{