123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- #ifndef __LZO1B_H_INCLUDED
- #define __LZO1B_H_INCLUDED 1
- #ifndef __LZOCONF_H_INCLUDED
- #include <lzo/lzoconf.h>
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define LZO1B_MEM_COMPRESS ((lzo_uint32_t) (16384L * lzo_sizeof_dict_t))
- #define LZO1B_MEM_DECOMPRESS (0)
- #define LZO1B_BEST_SPEED 1
- #define LZO1B_BEST_COMPRESSION 9
- #define LZO1B_DEFAULT_COMPRESSION (-1)
- LZO_EXTERN(int)
- lzo1b_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem,
- int compression_level );
- LZO_EXTERN(int)
- lzo1b_decompress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- LZO_EXTERN(int)
- lzo1b_decompress_safe ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- LZO_EXTERN(int)
- lzo1b_1_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- LZO_EXTERN(int)
- lzo1b_2_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- LZO_EXTERN(int)
- lzo1b_3_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- LZO_EXTERN(int)
- lzo1b_4_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- LZO_EXTERN(int)
- lzo1b_5_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- LZO_EXTERN(int)
- lzo1b_6_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- LZO_EXTERN(int)
- lzo1b_7_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- LZO_EXTERN(int)
- lzo1b_8_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- LZO_EXTERN(int)
- lzo1b_9_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- #define LZO1B_99_MEM_COMPRESS ((lzo_uint32_t) (65536L * lzo_sizeof_dict_t))
- LZO_EXTERN(int)
- lzo1b_99_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- #define LZO1B_999_MEM_COMPRESS ((lzo_uint32_t) (3 * 65536L * sizeof(lzo_xint)))
- LZO_EXTERN(int)
- lzo1b_999_compress ( const lzo_bytep src, lzo_uint src_len,
- lzo_bytep dst, lzo_uintp dst_len,
- lzo_voidp wrkmem );
- #ifdef __cplusplus
- }
- #endif
- #endif
|