mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
15 lines
175 B
C++
Executable File
15 lines
175 B
C++
Executable File
// Common/CRC.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
extern "C"
|
|
{
|
|
#include "../../C/7zCrc.h"
|
|
}
|
|
|
|
class CCRCTableInit
|
|
{
|
|
public:
|
|
CCRCTableInit() { CrcGenerateTable(); }
|
|
} g_CRCTableInit;
|