bzlib.h
上传用户:zswatin
上传日期:2007-01-06
资源大小:440k
文件大小:7k
源码类别:

压缩解压

开发平台:

C/C++

  1. /*-------------------------------------------------------------*/
  2. /*--- Public header file for the library.                   ---*/
  3. /*---                                               bzlib.h ---*/
  4. /*-------------------------------------------------------------*/
  5. /*--
  6.   This file is a part of bzip2 and/or libbzip2, a program and
  7.   library for lossless, block-sorting data compression.
  8.   Copyright (C) 1996-1998 Julian R Seward.  All rights reserved.
  9.   Redistribution and use in source and binary forms, with or without
  10.   modification, are permitted provided that the following conditions
  11.   are met:
  12.   1. Redistributions of source code must retain the above copyright
  13.      notice, this list of conditions and the following disclaimer.
  14.   2. The origin of this software must not be misrepresented; you must 
  15.      not claim that you wrote the original software.  If you use this 
  16.      software in a product, an acknowledgment in the product 
  17.      documentation would be appreciated but is not required.
  18.   3. Altered source versions must be plainly marked as such, and must
  19.      not be misrepresented as being the original software.
  20.   4. The name of the author may not be used to endorse or promote 
  21.      products derived from this software without specific prior written 
  22.      permission.
  23.   THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  24.   OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  25.   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26.   ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  27.   DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28.   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  29.   GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  30.   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  31.   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  32.   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  33.   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  34.   Julian Seward, Guildford, Surrey, UK.
  35.   jseward@acm.org
  36.   bzip2/libbzip2 version 0.9.0c of 18 October 1998
  37.   This program is based on (at least) the work of:
  38.      Mike Burrows
  39.      David Wheeler
  40.      Peter Fenwick
  41.      Alistair Moffat
  42.      Radford Neal
  43.      Ian H. Witten
  44.      Robert Sedgewick
  45.      Jon L. Bentley
  46.   For more information on these sources, see the manual.
  47. --*/
  48. #ifndef _BZLIB_H
  49. #define _BZLIB_H
  50. #define BZ_RUN               0
  51. #define BZ_FLUSH             1
  52. #define BZ_FINISH            2
  53. #define BZ_OK                0
  54. #define BZ_RUN_OK            1
  55. #define BZ_FLUSH_OK          2
  56. #define BZ_FINISH_OK         3
  57. #define BZ_STREAM_END        4
  58. #define BZ_SEQUENCE_ERROR    (-1)
  59. #define BZ_PARAM_ERROR       (-2)
  60. #define BZ_MEM_ERROR         (-3)
  61. #define BZ_DATA_ERROR        (-4)
  62. #define BZ_DATA_ERROR_MAGIC  (-5)
  63. #define BZ_IO_ERROR          (-6)
  64. #define BZ_UNEXPECTED_EOF    (-7)
  65. #define BZ_OUTBUFF_FULL      (-8)
  66. typedef 
  67.    struct {
  68.       char *next_in;
  69.       unsigned int avail_in;
  70.       unsigned int total_in;
  71.       char *next_out;
  72.       unsigned int avail_out;
  73.       unsigned int total_out;
  74.       void *state;
  75.       void *(*bzalloc)(void *,int,int);
  76.       void (*bzfree)(void *,void *);
  77.       void *opaque;
  78.    } 
  79.    bz_stream;
  80. #ifndef BZ_IMPORT
  81. #define BZ_EXPORT
  82. #endif
  83. #ifdef _WIN32
  84. #   include <stdio.h>
  85. #   include <windows.h>
  86. #   ifdef small
  87.       /* windows.h define small to char */
  88. #      undef small
  89. #   endif
  90. #   ifdef BZ_EXPORT
  91. #   define BZ_API(func) WINAPI func
  92. #   define BZ_EXTERN extern
  93. #   else
  94.    /* import windows dll dynamically */
  95. #   define BZ_API(func) (WINAPI * func)
  96. #   define BZ_EXTERN
  97. #   endif
  98. #else
  99. #   define BZ_API(func) func
  100. #   define BZ_EXTERN extern
  101. #endif
  102. /*-- Core (low-level) library functions --*/
  103. BZ_EXTERN int BZ_API(bzCompressInit) ( 
  104.       bz_stream* strm, 
  105.       int        blockSize100k, 
  106.       int        verbosity, 
  107.       int        workFactor 
  108.    );
  109. BZ_EXTERN int BZ_API(bzCompress) ( 
  110.       bz_stream* strm, 
  111.       int action 
  112.    );
  113. BZ_EXTERN int BZ_API(bzCompressEnd) ( 
  114.       bz_stream* strm 
  115.    );
  116. BZ_EXTERN int BZ_API(bzDecompressInit) ( 
  117.       bz_stream *strm, 
  118.       int       verbosity, 
  119.       int       small
  120.    );
  121. BZ_EXTERN int BZ_API(bzDecompress) ( 
  122.       bz_stream* strm 
  123.    );
  124. BZ_EXTERN int BZ_API(bzDecompressEnd) ( 
  125.       bz_stream *strm 
  126.    );
  127. /*-- High(er) level library functions --*/
  128. #ifndef BZ_NO_STDIO
  129. #define BZ_MAX_UNUSED 5000
  130. typedef void BZFILE;
  131. BZ_EXTERN BZFILE* BZ_API(bzReadOpen) ( 
  132.       int*  bzerror,   
  133.       FILE* f, 
  134.       int   verbosity, 
  135.       int   small,
  136.       void* unused,    
  137.       int   nUnused 
  138.    );
  139. BZ_EXTERN void BZ_API(bzReadClose) ( 
  140.       int*    bzerror, 
  141.       BZFILE* b 
  142.    );
  143. BZ_EXTERN void BZ_API(bzReadGetUnused) ( 
  144.       int*    bzerror, 
  145.       BZFILE* b, 
  146.       void**  unused,  
  147.       int*    nUnused 
  148.    );
  149. BZ_EXTERN int BZ_API(bzRead) ( 
  150.       int*    bzerror, 
  151.       BZFILE* b, 
  152.       void*   buf, 
  153.       int     len 
  154.    );
  155. BZ_EXTERN BZFILE* BZ_API(bzWriteOpen) ( 
  156.       int*  bzerror,      
  157.       FILE* f, 
  158.       int   blockSize100k, 
  159.       int   verbosity, 
  160.       int   workFactor 
  161.    );
  162. BZ_EXTERN void BZ_API(bzWrite) ( 
  163.       int*    bzerror, 
  164.       BZFILE* b, 
  165.       void*   buf, 
  166.       int     len 
  167.    );
  168. BZ_EXTERN void BZ_API(bzWriteClose) ( 
  169.       int*          bzerror, 
  170.       BZFILE*       b, 
  171.       int           abandon, 
  172.       unsigned int* nbytes_in, 
  173.       unsigned int* nbytes_out 
  174.    );
  175. #endif
  176. /*-- Utility functions --*/
  177. BZ_EXTERN int BZ_API(bzBuffToBuffCompress) ( 
  178.       char*         dest, 
  179.       unsigned int* destLen,
  180.       char*         source, 
  181.       unsigned int  sourceLen,
  182.       int           blockSize100k, 
  183.       int           verbosity, 
  184.       int           workFactor 
  185.    );
  186. BZ_EXTERN int BZ_API(bzBuffToBuffDecompress) ( 
  187.       char*         dest, 
  188.       unsigned int* destLen,
  189.       char*         source, 
  190.       unsigned int  sourceLen,
  191.       int           small, 
  192.       int           verbosity 
  193.    );
  194. /*--
  195.    Code contributed by Yoshioka Tsuneo
  196.    (QWF00133@niftyserve.or.jp/tsuneo-y@is.aist-nara.ac.jp),
  197.    to support better zlib compatibility.
  198.    This code is not _officially_ part of libbzip2 (yet);
  199.    I haven't tested it, documented it, or considered the
  200.    threading-safeness of it.
  201.    If this code breaks, please contact both Yoshioka and me.
  202. --*/
  203. BZ_EXTERN const char * BZ_API(bzlibVersion) (
  204.       void
  205.    );
  206. #ifndef BZ_NO_STDIO
  207. BZ_EXTERN BZFILE * BZ_API(bzopen) (
  208.       const char *path,
  209.       const char *mode
  210.    );
  211. BZ_EXTERN BZFILE * BZ_API(bzdopen) (
  212.       int        fd,
  213.       const char *mode
  214.    );
  215.          
  216. BZ_EXTERN int BZ_API(bzread) (
  217.       BZFILE* b, 
  218.       void* buf, 
  219.       int len 
  220.    );
  221. BZ_EXTERN int BZ_API(bzwrite) (
  222.       BZFILE* b, 
  223.       void*   buf, 
  224.       int     len 
  225.    );
  226. BZ_EXTERN int BZ_API(bzflush) (
  227.       BZFILE* b
  228.    );
  229. BZ_EXTERN void BZ_API(bzclose) (
  230.       BZFILE* b
  231.    );
  232. BZ_EXTERN const char * BZ_API(bzerror) (
  233.       BZFILE *b, 
  234.       int    *errnum
  235.    );
  236. #endif
  237. #endif
  238. /*-------------------------------------------------------------*/
  239. /*--- end                                           bzlib.h ---*/
  240. /*-------------------------------------------------------------*/