2018-09-22 04:17:07 +05:00

14 lines
229 B
C

//++ BulliT
#ifndef __AG_CRC32_H__
#define __AG_CRC32_H__
typedef unsigned char WORD8;
typedef unsigned int WORD32;
WORD32 AgCRC32(const void* pData, WORD32 lNumOfBytes);
#endif //__AG_CRC_H__
//-- Martin Webrant