
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4697 212acab6-be3b-0410-9dea-997c60f758d6
13 lines
238 B
C
13 lines
238 B
C
#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___
|