minilzo.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* minilzo.h -- mini subset of the LZO real-time data compression library
  2. This file is part of the LZO real-time data compression library.
  3. Copyright (C) 2005 Markus Franz Xaver Johannes Oberhumer
  4. Copyright (C) 2004 Markus Franz Xaver Johannes Oberhumer
  5. Copyright (C) 2003 Markus Franz Xaver Johannes Oberhumer
  6. Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer
  7. Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer
  8. Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer
  9. Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer
  10. Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer
  11. Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer
  12. Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer
  13. All Rights Reserved.
  14. The LZO library is free software; you can redistribute it and/or
  15. modify it under the terms of the GNU General Public License,
  16. version 2, as published by the Free Software Foundation.
  17. The LZO library is distributed in the hope that it will be useful,
  18. but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. GNU General Public License for more details.
  21. You should have received a copy of the GNU General Public License
  22. along with the LZO library; see the file COPYING.
  23. If not, write to the Free Software Foundation, Inc.,
  24. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  25. Markus F.X.J. Oberhumer
  26. <markus@oberhumer.com>
  27. http://www.oberhumer.com/opensource/lzo/
  28. */
  29. /*
  30. * NOTE:
  31. * the full LZO package can be found at
  32. * http://www.oberhumer.com/opensource/lzo/
  33. */
  34. #ifndef __MINILZO_H
  35. #define __MINILZO_H
  36. #define MINILZO_VERSION 0x2020
  37. #ifdef __LZOCONF_H
  38. # error "you cannot use both LZO and miniLZO"
  39. #endif
  40. #undef LZO_HAVE_CONFIG_H
  41. #include "lzoconf.h"
  42. #if !defined(LZO_VERSION) || (LZO_VERSION != MINILZO_VERSION)
  43. # error "version mismatch in header files"
  44. #endif
  45. #ifdef __cplusplus
  46. extern "C" {
  47. #endif
  48. /***********************************************************************
  49. //
  50. ************************************************************************/
  51. /* Memory required for the wrkmem parameter.
  52. * When the required size is 0, you can also pass a NULL pointer.
  53. */
  54. #define LZO1X_MEM_COMPRESS LZO1X_1_MEM_COMPRESS
  55. #define LZO1X_1_MEM_COMPRESS ((lzo_uint32) (16384L * lzo_sizeof_dict_t))
  56. #define LZO1X_MEM_DECOMPRESS (0)
  57. /* compression */
  58. LZO_EXTERN(int)
  59. lzo1x_1_compress ( const lzo_bytep src, lzo_uint src_len,
  60. lzo_bytep dst, lzo_uintp dst_len,
  61. lzo_voidp wrkmem );
  62. /* decompression */
  63. LZO_EXTERN(int)
  64. lzo1x_decompress ( const lzo_bytep src, lzo_uint src_len,
  65. lzo_bytep dst, lzo_uintp dst_len,
  66. lzo_voidp wrkmem /* NOT USED */ );
  67. /* safe decompression with overrun testing */
  68. LZO_EXTERN(int)
  69. lzo1x_decompress_safe ( const lzo_bytep src, lzo_uint src_len,
  70. lzo_bytep dst, lzo_uintp dst_len,
  71. lzo_voidp wrkmem /* NOT USED */ );
  72. #ifdef __cplusplus
  73. } /* extern "C" */
  74. #endif
  75. #endif /* already included */