Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChmHeader.cpp « Chm « Archive « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d485b6c389424eee0deed8ae699c6758c3ee4a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Archive/Chm/Header.h

#include "StdAfx.h"

#include "ChmHeader.h"

namespace NArchive{
namespace NChm{
namespace NHeader{

UInt32 kItsfSignature = 0x46535449 + 1;
UInt32 kItolSignature = 0x4C4F5449 + 1;
static class CSignatureInitializer
{ 
public:  
  CSignatureInitializer()
  { 
    kItsfSignature--; 
    kItolSignature--;
  }
}g_SignatureInitializer;


}}}