- Add file documentation to about 1/4 of the files in Source - Copy over a lot of the documentation from the sanctuary/notes repo - Standardise all the existing documentation - Create a configuration for Doxygen - Add more documentation (engine.cpp is now fully documented)
14 lines
400 B
C
14 lines
400 B
C
/**
|
|
* @file codec.h
|
|
*
|
|
* Interface of save game encryption algorithm.
|
|
*/
|
|
#ifndef __CODEC_H__
|
|
#define __CODEC_H__
|
|
|
|
int codec_decode(BYTE *pbSrcDst, DWORD size, char *pszPassword);
|
|
void codec_init_key(int unused, char *pszPassword);
|
|
DWORD codec_get_encoded_len(DWORD dwSrcBytes);
|
|
void codec_encode(BYTE *pbSrcDst, DWORD size, int size_64, char *pszPassword);
|
|
|
|
#endif /* __CODEC_H__ */
|