NSIS/Source/crc32.h

14 lines
238 B
C
Raw Normal View History

#include "Platform.h"
#ifndef ___CRC32__H___
#define ___CRC32__H___
typedef UINT32 crc32_t;
#ifdef __cplusplus
extern "C"
#endif
crc32_t NSISCALL CRC32(crc32_t crc, const unsigned char *buf, unsigned int len);
#endif//!___CRC32__H___