parts/doctreeview/chm/decompress.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
#ifndef __decompress_h__
00018
#define __decompress_h__
00019
00020
#ifdef __cplusplus__
00021
extern "C" {
00022
#endif
00023
00024 typedef unsigned char UBYTE;
00025 typedef unsigned short UWORD;
00026 typedef unsigned int ULONG;
00027 typedef signed int LONG;
00028
00029 typedef struct lzx_bits
00030 {
00031 ULONG bb;
00032 int bl;
00033 UBYTE *
ip;
00034 }
lzx_bits;
00035
00036
int LZXinit(
int window );
00037
int LZXdecompress( UBYTE *inpos,
int inlen, UBYTE *outpos,
int outlen );
00038
00039
#ifdef __cplusplus__
00040
}
00041
#endif
00042
00043
#endif // __decompress_h__
This file is part of the documentation for KDevelop Version 3.0.4.