Refactor project structure
This commit is contained in:
10
core/anslicensing/crc32.h
Normal file
10
core/anslicensing/crc32.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#pragma once
|
||||
|
||||
class Crc32
|
||||
{
|
||||
public:
|
||||
static unsigned int Compute(const unsigned char * buffer, int count);
|
||||
|
||||
private:
|
||||
static const unsigned int crcTable[256];
|
||||
};
|
||||
Reference in New Issue
Block a user