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

CRC.cpp « Common « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b768128c2e30eecc045f24e0e0bf3668313ee465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Common/CRC.cpp

#include "StdAfx.h"

extern "C" 
{ 
#include "../../C/7zCrc.h"
}

class CCRCTableInit
{
public:
  CCRCTableInit() { CrcGenerateTable(); }
} g_CRCTableInit;