mirror of
https://github.com/extremscorner/not64.git
synced 2025-04-02 10:52:37 -04:00
24 lines
640 B
C
24 lines
640 B
C
/**
|
|
* glN64_GX - CRC.h
|
|
* Copyright (C) 2003 Orkin
|
|
* Copyright (C) 2008, 2009 sepp256 (Port to Wii/Gamecube/PS3)
|
|
*
|
|
* glN64 homepage: http://gln64.emulation64.com
|
|
* Wii64 homepage: http://www.emulatemii.com
|
|
* email address: sepp256@gmail.com
|
|
*
|
|
**/
|
|
|
|
#ifndef __LINUX__
|
|
# include <windows.h>
|
|
#else
|
|
# include "../main/winlnxdefs.h"
|
|
#endif // __LINUX__
|
|
|
|
void CRC_BuildTable();
|
|
|
|
DWORD CRC_Calculate( DWORD crc, void *buffer, DWORD count );
|
|
DWORD CRC_CalculatePalette( DWORD crc, void *buffer, DWORD count );
|
|
|
|
u32 Hash_Calculate(u32 hash, void *buffer, u32 count);
|
|
u32 Hash_CalculatePalette(u32 hash, void *buffer, u32 count);
|