2022-07-30 12:33:31 +00:00
|
|
|
#ifndef __CCRC32_HPP__
|
|
|
|
#define __CCRC32_HPP__
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
class CCRC32 {
|
|
|
|
public:
|
2022-09-05 04:01:13 +00:00
|
|
|
static uint Calculate(const void* data, uint length);
|
2022-07-30 12:33:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __CCRC32_HPP__
|