1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-14 22:03:27 +01:00
cnc-ddraw/inc/crc32.h

12 lines
246 B
C
Raw Permalink Normal View History

2022-09-07 02:51:42 +02:00
#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);
unsigned long Crc32_FromFile(unsigned long crc32, char* filename);
2022-09-07 02:51:42 +02:00
#endif