X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=16%2Fcawat%2FLZHUFF.H;fp=16%2Fcawat%2FLZHUFF.H;h=1e4395e9ad91b7d0d3873c00c690caefc647a285;hb=2029bb3324ea380cfb686594ffaa9b038fdb820f;hp=0000000000000000000000000000000000000000;hpb=24c0b941ba2acf9e44115a3b41c511ecd5a9d22d;p=16.git diff --git a/16/cawat/LZHUFF.H b/16/cawat/LZHUFF.H new file mode 100644 index 00000000..1e4395e9 --- /dev/null +++ b/16/cawat/LZHUFF.H @@ -0,0 +1,35 @@ +/* Catacomb Armageddon Source Code + * Copyright (C) 1993-2014 Flat Rock Software + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +extern void (*LZH_CompressDisplayVector)(); +extern void (*LZH_DecompressDisplayVector)(); + + + +//=========================================================================== +// +// PROTOTYPES +// +//=========================================================================== + + +long lzhCompress(void far *infile, void far *outfile,unsigned long DataLength,unsigned PtrTypes); +long lzhDecompress(void far *infile, void far *outfile, unsigned long OrginalLength, unsigned long CompressLength, unsigned PtrTypes); + + +