Blame src/lzo1b_cc.h

Packit 679830
/* lzo1b_cc.h -- definitions for the the LZO1B compression driver
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
/* WARNING: this file should *not* be used by applications. It is
Packit 679830
   part of the implementation of the library and is subject
Packit 679830
   to change.
Packit 679830
 */
Packit 679830
Packit 679830
Packit 679830
#ifndef __LZO1B_CC_H
Packit 679830
#define __LZO1B_CC_H 1
Packit 679830
Packit 679830
Packit 679830
/***********************************************************************
Packit 679830
//
Packit 679830
************************************************************************/
Packit 679830
Packit 679830
extern const lzo_compress_t _lzo1b_1_compress_func;
Packit 679830
extern const lzo_compress_t _lzo1b_2_compress_func;
Packit 679830
extern const lzo_compress_t _lzo1b_3_compress_func;
Packit 679830
extern const lzo_compress_t _lzo1b_4_compress_func;
Packit 679830
extern const lzo_compress_t _lzo1b_5_compress_func;
Packit 679830
extern const lzo_compress_t _lzo1b_6_compress_func;
Packit 679830
extern const lzo_compress_t _lzo1b_7_compress_func;
Packit 679830
extern const lzo_compress_t _lzo1b_8_compress_func;
Packit 679830
extern const lzo_compress_t _lzo1b_9_compress_func;
Packit 679830
Packit 679830
extern const lzo_compress_t _lzo1b_99_compress_func;
Packit 679830
Packit 679830
Packit 679830
/***********************************************************************
Packit 679830
//
Packit 679830
************************************************************************/
Packit 679830
Packit 679830
LZO_EXTERN(lzo_bytep )
Packit 679830
_lzo1b_store_run ( lzo_bytep const oo, const lzo_bytep const ii,
Packit 679830
                   lzo_uint r_len);
Packit 679830
Packit 679830
#define STORE_RUN   _lzo1b_store_run
Packit 679830
Packit 679830
Packit 679830
lzo_compress_t _lzo1b_get_compress_func(int clevel);
Packit 679830
Packit 679830
int _lzo1b_do_compress   ( const lzo_bytep in,  lzo_uint  in_len,
Packit 679830
                                 lzo_bytep out, lzo_uintp out_len,
Packit 679830
                                 lzo_voidp wrkmem,
Packit 679830
                                 lzo_compress_t func );
Packit 679830
Packit 679830
Packit 679830
#endif /* already included */
Packit 679830
Packit 679830
/*
Packit 679830
vi:ts=4:et
Packit 679830
*/
Packit 679830
Packit 679830