Blame minilzo/minilzo.h

Packit 679830
/* minilzo.h -- mini subset of the LZO real-time data compression library
Packit 679830
Packit 679830
   This file is part of the LZO real-time data compression library.
Packit 679830
Packit 679830
   Copyright (C) 1996-2014 Markus Franz Xaver Johannes Oberhumer
Packit 679830
   All Rights Reserved.
Packit 679830
Packit 679830
   The LZO library is free software; you can redistribute it and/or
Packit 679830
   modify it under the terms of the GNU General Public License as
Packit 679830
   published by the Free Software Foundation; either version 2 of
Packit 679830
   the License, or (at your option) any later version.
Packit 679830
Packit 679830
   The LZO library is distributed in the hope that it will be useful,
Packit 679830
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 679830
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 679830
   GNU General Public License for more details.
Packit 679830
Packit 679830
   You should have received a copy of the GNU General Public License
Packit 679830
   along with the LZO library; see the file COPYING.
Packit 679830
   If not, write to the Free Software Foundation, Inc.,
Packit 679830
   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit 679830
Packit 679830
   Markus F.X.J. Oberhumer
Packit 679830
   <markus@oberhumer.com>
Packit 679830
   http://www.oberhumer.com/opensource/lzo/
Packit 679830
 */
Packit 679830
Packit 679830
/*
Packit 679830
 * NOTE:
Packit 679830
 *   the full LZO package can be found at
Packit 679830
 *   http://www.oberhumer.com/opensource/lzo/
Packit 679830
 */
Packit 679830
Packit 679830
Packit 679830
#ifndef __MINILZO_H
Packit 679830
#define __MINILZO_H 1
Packit 679830
Packit 679830
#define MINILZO_VERSION         0x2080
Packit 679830
Packit 679830
#ifdef __LZOCONF_H
Packit 679830
#  error "you cannot use both LZO and miniLZO"
Packit 679830
#endif
Packit 679830
Packit 679830
#undef LZO_HAVE_CONFIG_H
Packit 679830
#include "lzoconf.h"
Packit 679830
Packit 679830
#if !defined(LZO_VERSION) || (LZO_VERSION != MINILZO_VERSION)
Packit 679830
#  error "version mismatch in header files"
Packit 679830
#endif
Packit 679830
Packit 679830
Packit 679830
#ifdef __cplusplus
Packit 679830
extern "C" {
Packit 679830
#endif
Packit 679830
Packit 679830
Packit 679830
/***********************************************************************
Packit 679830
//
Packit 679830
************************************************************************/
Packit 679830
Packit 679830
/* Memory required for the wrkmem parameter.
Packit 679830
 * When the required size is 0, you can also pass a NULL pointer.
Packit 679830
 */
Packit 679830
Packit 679830
#define LZO1X_MEM_COMPRESS      LZO1X_1_MEM_COMPRESS
Packit 679830
#define LZO1X_1_MEM_COMPRESS    ((lzo_uint32_t) (16384L * lzo_sizeof_dict_t))
Packit 679830
#define LZO1X_MEM_DECOMPRESS    (0)
Packit 679830
Packit 679830
Packit 679830
/* compression */
Packit 679830
LZO_EXTERN(int)
Packit 679830
lzo1x_1_compress        ( const lzo_bytep src, lzo_uint  src_len,
Packit 679830
                                lzo_bytep dst, lzo_uintp dst_len,
Packit 679830
                                lzo_voidp wrkmem );
Packit 679830
Packit 679830
/* decompression */
Packit 679830
LZO_EXTERN(int)
Packit 679830
lzo1x_decompress        ( const lzo_bytep src, lzo_uint  src_len,
Packit 679830
                                lzo_bytep dst, lzo_uintp dst_len,
Packit 679830
                                lzo_voidp wrkmem /* NOT USED */ );
Packit 679830
Packit 679830
/* safe decompression with overrun testing */
Packit 679830
LZO_EXTERN(int)
Packit 679830
lzo1x_decompress_safe   ( const lzo_bytep src, lzo_uint  src_len,
Packit 679830
                                lzo_bytep dst, lzo_uintp dst_len,
Packit 679830
                                lzo_voidp wrkmem /* NOT USED */ );
Packit 679830
Packit 679830
Packit 679830
#ifdef __cplusplus
Packit 679830
} /* extern "C" */
Packit 679830
#endif
Packit 679830
Packit 679830
#endif /* already included */
Packit 679830