14 lines
229 B
C
Raw Normal View History

//++ 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