mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 05:15:01 -06:00
21 lines
270 B
C++
Executable File
21 lines
270 B
C++
Executable File
// Archive/GZip/Header.h
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "GZipHeader.h"
|
|
|
|
namespace NArchive {
|
|
namespace NGZip {
|
|
|
|
extern UInt16 kSignature = 0x8B1F + 1;
|
|
|
|
static class CMarkersInitializer
|
|
{
|
|
public:
|
|
CMarkersInitializer()
|
|
{ kSignature--; }
|
|
} g_MarkerInitializer;
|
|
|
|
}}
|
|
|