saveload.c
changeset 781 4c9177888196
parent 762 ef014856bd88
child 817 238bbdaa228b
equal deleted inserted replaced
780:690a9a22dacd 781:4c9177888196
   724 //*******************************************
   724 //*******************************************
   725 //********** START OF LZO CODE **************
   725 //********** START OF LZO CODE **************
   726 //*******************************************
   726 //*******************************************
   727 #define LZO_SIZE 8192
   727 #define LZO_SIZE 8192
   728 
   728 
   729 int CDECL lzo1x_1_compress( const byte *src, uint src_len,byte *dst, uint *dst_len,void *wrkmem );
   729 #include "minilzo.h"
   730 uint32 CDECL lzo_adler32(uint32 adler, const byte *buf, uint len);
       
   731 int CDECL lzo1x_decompress( const byte *src, uint  src_len,byte *dst, uint *dst_len,void *wrkmem /* NOT USED */ );
       
   732 
   730 
   733 static uint ReadLZO()
   731 static uint ReadLZO()
   734 {
   732 {
   735 	byte out[LZO_SIZE + LZO_SIZE / 64 + 16 + 3 + 8];
   733 	byte out[LZO_SIZE + LZO_SIZE / 64 + 16 + 3 + 8];
   736 	uint32 tmp[2];
   734 	uint32 tmp[2];