uncompr.c
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /* uncompr.c -- decompress a memory buffer
  2.  * Copyright (C) 1995-2003 Jean-loup Gailly.
  3.  * For conditions of distribution and use, see copyright notice in zlib.h
  4.  */
  5. /* @(#) $Id: uncompr.c 3308 2006-06-23 15:19:29Z oleg $ */
  6. #define ZLIB_INTERNAL
  7. #include "zlib.h"
  8. #pragma warning (disable : 4702)
  9. /* ===========================================================================
  10.      Decompresses the source buffer into the destination buffer.  sourceLen is
  11.    the byte length of the source buffer. Upon entry, destLen is the total
  12.    size of the destination buffer, which must be large enough to hold the
  13.    entire uncompressed data. (The size of the uncompressed data must have
  14.    been saved previously by the compressor and transmitted to the decompressor
  15.    by some mechanism outside the scope of this compression library.)
  16.    Upon exit, destLen is the actual size of the compressed buffer.
  17.      This function can be used to decompress a whole file at once if the
  18.    input file is mmap'ed.
  19.      uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
  20.    enough memory, Z_BUF_ERROR if there was not enough room in the output
  21.    buffer, or Z_DATA_ERROR if the input data was corrupted.
  22. */
  23. int ZEXPORT uncompress (dest, destLen, source, sourceLen)
  24.     Bytef *dest;
  25.     uLongf *destLen;
  26.     const Bytef *source;
  27.     uLong sourceLen;
  28. {
  29.     z_stream stream;
  30.     int err;
  31.     stream.next_in = (Bytef*)source;
  32.     stream.avail_in = (uInt)sourceLen;
  33.     /* Check for source > 64K on 16-bit machine: */
  34.     if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
  35.     stream.next_out = dest;
  36.     stream.avail_out = (uInt)*destLen;
  37.     if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
  38.     stream.zalloc = (alloc_func)0;
  39.     stream.zfree = (free_func)0;
  40.     err = inflateInit(&stream);
  41.     if (err != Z_OK) return err;
  42.     err = inflate(&stream, Z_FINISH);
  43.     if (err != Z_STREAM_END) {
  44.         inflateEnd(&stream);
  45.         if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0))
  46.             return Z_DATA_ERROR;
  47.         return err;
  48.     }
  49.     *destLen = stream.total_out;
  50.     err = inflateEnd(&stream);
  51.     return err;
  52. }