mirror of
https://github.com/DrBeef/Doom3Quest.git
synced 2024-12-03 01:02:29 +00:00
b2b8f43c9d
Builds, runs, no stereo or much else is working, menus work ok though
15 lines
379 B
C
15 lines
379 B
C
#ifndef __MD4_H__
|
|
#define __MD4_H__
|
|
|
|
/*
|
|
===============================================================================
|
|
|
|
Calculates a checksum for a block of data
|
|
using the MD4 message-digest algorithm.
|
|
|
|
===============================================================================
|
|
*/
|
|
|
|
unsigned int MD4_BlockChecksum( const void *data, int length );
|
|
|
|
#endif /* !__MD4_H__ */
|