Mesen/Utilities/CRC32.h
Sour 8047fe44bb Added Study Box tape support (.studybox files)
-Added audio support
-Improved emulation logic
-Games are loaded via .studybox files
2019-12-31 20:24:06 -05:00

12 lines
264 B
C++

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