bzlib.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:8k
源码类别:

生物技术

开发平台:

C/C++

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