thug/Code/Core/compress.h

13 lines
285 B
C
Raw Permalink Normal View History

2016-02-13 21:39:12 +00:00
#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