Mesen-SX/Utilities/CRC32.h

12 lines
264 B
C
Raw Normal View History

2019-02-13 14:10:36 -05:00
#pragma once
#include "stdafx.h"
class CRC32
{
private:
static uint32_t crc32_16bytes(const void* data, size_t length, uint32_t previousCrc32);
2019-02-13 14:10:36 -05:00
public:
static uint32_t GetCRC(uint8_t* buffer, std::streamoff length);
2019-02-13 14:10:36 -05:00
static uint32_t GetCRC(string filename);
};