mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-03-13 05:51:19 +00:00
14 lines
229 B
C
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
|