mirror of
https://github.com/love2d/megasource.git
synced 2026-08-17 19:24:09 +02:00
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;
|