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