Initial community commit
This commit is contained in:
15
Src/external_dependencies/openmpt-trunk/include/unrar/crc.hpp
vendored
Normal file
15
Src/external_dependencies/openmpt-trunk/include/unrar/crc.hpp
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef _RAR_CRC_
|
||||
#define _RAR_CRC_
|
||||
|
||||
// This function is only to intialize external CRC tables. We do not need to
|
||||
// call it before calculating CRC32.
|
||||
void InitCRC32(uint *CRCTab);
|
||||
|
||||
uint CRC32(uint StartCRC,const void *Addr,size_t Size);
|
||||
|
||||
#ifndef SFX_MODULE
|
||||
ushort Checksum14(ushort StartCRC,const void *Addr,size_t Size);
|
||||
#endif
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user