15 lines
175 B
C++
15 lines
175 B
C++
|
// Common/CRC.cpp
|
||
|
|
||
|
#include "StdAfx.h"
|
||
|
|
||
|
extern "C"
|
||
|
{
|
||
|
#include "../../C/7zCrc.h"
|
||
|
}
|
||
|
|
||
|
class CCRCTableInit
|
||
|
{
|
||
|
public:
|
||
|
CCRCTableInit() { CrcGenerateTable(); }
|
||
|
} g_CRCTableInit;
|