mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 09:14:58 -06:00
11 lines
198 B
C++
Executable File
11 lines
198 B
C++
Executable File
#ifndef _RAR_CRC_
|
|
#define _RAR_CRC_
|
|
|
|
extern uint CRCTab[256];
|
|
|
|
void InitCRC();
|
|
uint CRC(uint StartCRC,const void *Addr,uint Size);
|
|
ushort OldCRC(ushort StartCRC,const void *Addr,uint Size);
|
|
|
|
#endif
|