Add rayman2 source files

This commit is contained in:
2024-09-18 02:33:44 +08:00
parent bcc093f8ed
commit fb036c54fd
14339 changed files with 2596224 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#if !defined(__CMP_Pub_h__)
#define __CMP_Pub_h__
#include "CPA_Expt.h"
/**** Existing compressor ****/
#define D_CMP_LZSS 1
#define D_CMP_DIFF 2
extern CPA_EXPORT void CMP_fn_vFirstInit(void);
extern CPA_EXPORT void CMP_fn_vCompressFile(char *_szFileName,unsigned char _ucCompressMethod);
extern CPA_EXPORT void CMP_fn_vCompressFileIn(char *_szInputFileName,char *_szOutputFileName,unsigned char _ucCompressMethod);
extern CPA_EXPORT unsigned char CMP_fn_bExpandFile(char *_szFileName,unsigned char _ucCompressMethod);
extern CPA_EXPORT unsigned char CMP_fn_bExpandFileIn(char *_szInputFileName,char *_szOutputFileName,unsigned char _ucCompressMethod);
#endif /* __CMP_Pub_h__ */