mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-14 22:03:27 +01:00
12 lines
246 B
C
12 lines
246 B
C
#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);
|
|
|
|
#endif
|