* Basic System::Call support when compiling with 64-bit MinGW/GCC toolchain

* Win64 fixes


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6607 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2015-09-17 14:30:07 +00:00
parent 757d16f937
commit 286edd20c4
41 changed files with 335 additions and 232 deletions

View file

@ -16,16 +16,17 @@
* Reviewed for Unicode support by Jim Park -- 08/24/2007
*/
#include "Platform.h"
#ifndef ___CRC32__H___
#define ___CRC32__H___
#include "Platform.h"
#include <stddef.h> // size_t
typedef UINT32 crc32_t;
#ifdef __cplusplus
extern "C"
#endif
crc32_t NSISCALL CRC32(crc32_t crc, const unsigned char *buf, unsigned int len);
crc32_t NSISCALL CRC32(crc32_t crc, const unsigned char *buf, size_t len);
#endif//!___CRC32__H___