NetPlay: some code cleanup, added a stop button (sometimes works), host can now chang...
[dolphin.git] / Externals / LZO / minilzo.h
blob0aff50e4ac458033df5b17b715e4fddf601997da
1 /* minilzo.h -- mini subset of the LZO real-time data compression library
3 This file is part of the LZO real-time data compression library.
5 Copyright (C) 2008 Markus Franz Xaver Johannes Oberhumer
6 Copyright (C) 2007 Markus Franz Xaver Johannes Oberhumer
7 Copyright (C) 2006 Markus Franz Xaver Johannes Oberhumer
8 Copyright (C) 2005 Markus Franz Xaver Johannes Oberhumer
9 Copyright (C) 2004 Markus Franz Xaver Johannes Oberhumer
10 Copyright (C) 2003 Markus Franz Xaver Johannes Oberhumer
11 Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer
12 Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer
13 Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer
14 Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer
15 Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer
16 Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer
17 Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer
18 All Rights Reserved.
20 The LZO library is free software; you can redistribute it and/or
21 modify it under the terms of the GNU General Public License as
22 published by the Free Software Foundation; either version 2 of
23 the License, or (at your option) any later version.
25 The LZO library is distributed in the hope that it will be useful,
26 but WITHOUT ANY WARRANTY; without even the implied warranty of
27 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 GNU General Public License for more details.
30 You should have received a copy of the GNU General Public License
31 along with the LZO library; see the file COPYING.
32 If not, write to the Free Software Foundation, Inc.,
33 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
35 Markus F.X.J. Oberhumer
36 <markus@oberhumer.com>
37 http://www.oberhumer.com/opensource/lzo/
41 * NOTE:
42 * the full LZO package can be found at
43 * http://www.oberhumer.com/opensource/lzo/
47 #ifndef __MINILZO_H
48 #define __MINILZO_H
50 #define MINILZO_VERSION 0x2030
52 #ifdef __LZOCONF_H
53 # error "you cannot use both LZO and miniLZO"
54 #endif
56 #undef LZO_HAVE_CONFIG_H
57 #include "lzoconf.h"
59 #if !defined(LZO_VERSION) || (LZO_VERSION != MINILZO_VERSION)
60 # error "version mismatch in header files"
61 #endif
64 #ifdef __cplusplus
65 extern "C" {
66 #endif
69 /***********************************************************************
71 ************************************************************************/
73 /* Memory required for the wrkmem parameter.
74 * When the required size is 0, you can also pass a NULL pointer.
77 #define LZO1X_MEM_COMPRESS LZO1X_1_MEM_COMPRESS
78 #define LZO1X_1_MEM_COMPRESS ((lzo_uint32) (16384L * lzo_sizeof_dict_t))
79 #define LZO1X_MEM_DECOMPRESS (0)
82 /* compression */
83 LZO_EXTERN(int)
84 lzo1x_1_compress ( const lzo_bytep src, lzo_uint src_len,
85 lzo_bytep dst, lzo_uintp dst_len,
86 lzo_voidp wrkmem );
88 /* decompression */
89 LZO_EXTERN(int)
90 lzo1x_decompress ( const lzo_bytep src, lzo_uint src_len,
91 lzo_bytep dst, lzo_uintp dst_len,
92 lzo_voidp wrkmem /* NOT USED */ );
94 /* safe decompression with overrun testing */
95 LZO_EXTERN(int)
96 lzo1x_decompress_safe ( const lzo_bytep src, lzo_uint src_len,
97 lzo_bytep dst, lzo_uintp dst_len,
98 lzo_voidp wrkmem /* NOT USED */ );
101 #ifdef __cplusplus
102 } /* extern "C" */
103 #endif
105 #endif /* already included */