This commit is contained in:
Igor Pavlov
2005-05-30 00:00:00 +00:00
committed by Kornel Lesiński
parent 8c1b5c7b7e
commit 3c510ba80b
926 changed files with 40559 additions and 23519 deletions

View File

@@ -9,10 +9,12 @@ namespace NZip {
namespace NSignature
{
UINT32 kLocalFileHeader = 0x04034B50 + 1;
UINT32 kDataDescriptor = 0x08074B50 + 1;
UINT32 kCentralFileHeader = 0x02014B50 + 1;
UINT32 kEndOfCentralDir = 0x06054B50 + 1;
UInt32 kLocalFileHeader = 0x04034B50 + 1;
UInt32 kDataDescriptor = 0x08074B50 + 1;
UInt32 kCentralFileHeader = 0x02014B50 + 1;
UInt32 kEndOfCentralDir = 0x06054B50 + 1;
UInt32 kZip64EndOfCentralDir = 0x06064B50 + 1;
UInt32 kZip64EndOfCentralDirLocator = 0x07064B50 + 1;
class CMarkersInitializer
{
@@ -23,6 +25,8 @@ namespace NSignature
kDataDescriptor--;
kCentralFileHeader--;
kEndOfCentralDir--;
kZip64EndOfCentralDir--;
kZip64EndOfCentralDirLocator--;
}
};
static CMarkersInitializer g_MarkerInitializer;