1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00
cnc-ddraw/inc/crc32.h
2022-09-07 02:51:42 +02:00

11 lines
179 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);
#endif