mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2025-01-13 12:29:09 +01:00
02da650191
- added snes_gx 4.3.4
11 lines
202 B
C++
11 lines
202 B
C++
#ifndef _RAR_CRC_
|
|
#define _RAR_CRC_
|
|
|
|
extern uint CRCTab[256];
|
|
|
|
void InitCRC();
|
|
uint CRC(uint StartCRC,const void *Addr,size_t Size);
|
|
ushort OldCRC(ushort StartCRC,const void *Addr,size_t Size);
|
|
|
|
#endif
|