add crc32 for testing

This commit is contained in:
FunkyFr3sh 2022-09-07 02:51:42 +02:00
parent 58cb1e0a04
commit 15221b3120
4 changed files with 100 additions and 0 deletions

10
inc/crc32.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef CRC32_H
#define CRC32_H
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
unsigned long Crc32_ComputeBuf(unsigned long inCrc32, const void* buf, size_t bufLen);
#endif