mirror of
https://github.com/thug1src/thug.git
synced 2025-01-21 21:33:46 +00:00
13 lines
285 B
C
13 lines
285 B
C
#ifndef __CORE_COMPRESS_H
|
|
#define __CORE_COMPRESS_H
|
|
|
|
#ifndef __CORE_DEFINES_H
|
|
#include <core/defines.h>
|
|
#endif
|
|
|
|
int Encode(char *pIn, char *pOut, int bytes_to_read, bool print_progress);
|
|
unsigned char *DecodeLZSS(unsigned char *pIn, unsigned char *pOut, int Len);
|
|
|
|
#endif
|
|
|