mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
20 lines
305 B
C++
Executable File
20 lines
305 B
C++
Executable File
// Archive/Cab/Header.h
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "CabHeader.h"
|
|
|
|
namespace NArchive{
|
|
namespace NCab{
|
|
namespace NHeader{
|
|
|
|
namespace NArchive {
|
|
|
|
UInt32 kSignature = 0x4643534d + 1;
|
|
static class CSignatureInitializer
|
|
{ public: CSignatureInitializer() { kSignature--; }} g_SignatureInitializer;
|
|
|
|
}
|
|
|
|
}}}
|