亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? bszlib.pas

?? BusinessSkinForm Ver3.95 full source_漢化版_最新
?? PAS
?? 第 1 頁 / 共 5 頁
字號:
   deflateInit2 does not perform any compression: this will be done by
   deflate(). }


{EXPORT}
function deflateSetDictionary (var strm : z_stream;
                               dictionary : pBytef; {const bytes}
			       dictLength : uint) : int;

{    Initializes the compression dictionary (history buffer) from the given
   byte sequence without producing any compressed output. This function must
   be called immediately after deflateInit or deflateInit2, before any call
   of deflate. The compressor and decompressor must use exactly the same
   dictionary (see inflateSetDictionary).
     The dictionary should consist of strings (byte sequences) that are likely
   to be encountered later in the data to be compressed, with the most commonly
   used strings preferably put towards the end of the dictionary. Using a
   dictionary is most useful when the data to be compressed is short and
   can be predicted with good accuracy; the data can then be compressed better
   than with the default empty dictionary. In this version of the library,
   only the last 32K bytes of the dictionary are used.
     Upon return of this function, strm->adler is set to the Adler32 value
   of the dictionary; the decompressor may later use this value to determine
   which dictionary has been used by the compressor. (The Adler32 value
   applies to the whole dictionary even if only a subset of the dictionary is
   actually used by the compressor.)

     deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a
   parameter is invalid (such as NULL dictionary) or the stream state
   is inconsistent (for example if deflate has already been called for this
   stream). deflateSetDictionary does not perform any compression: this will
   be done by deflate(). }

{EXPORT}
function deflateCopy (dest : z_streamp;
                      source : z_streamp) : int;

{  Sets the destination stream as a complete copy of the source stream.  If
   the source stream is using an application-supplied history buffer, a new
   buffer is allocated for the destination stream.  The compressed output
   buffer is always application-supplied. It's the responsibility of the
   application to provide the correct values of next_out and avail_out for the
   next call of deflate.

     This function can be useful when several compression strategies will be
   tried, for example when there are several ways of pre-processing the input
   data with a filter. The streams that will be discarded should then be freed
   by calling deflateEnd.  Note that deflateCopy duplicates the internal
   compression state which can be quite large, so this strategy is slow and
   can consume lots of memory.

     deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
   enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
   (such as zalloc being NULL). msg is left unchanged in both source and
   destination. }

{EXPORT}
function deflateReset (var strm : z_stream) : int;

{   This function is equivalent to deflateEnd followed by deflateInit,
   but does not free and reallocate all the internal compression state.
   The stream will keep the same compression level and any other attributes
   that may have been set by deflateInit2.

      deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
   stream state was inconsistent (such as zalloc or state being NIL). }


{EXPORT}
function deflateParams (var strm : z_stream; level : int; strategy : int) : int;

{    Dynamically update the compression level and compression strategy.
   This can be used to switch between compression and straight copy of
   the input data, or to switch to a different kind of input data requiring
   a different strategy. If the compression level is changed, the input
   available so far is compressed with the old level (and may be flushed);
   the new level will take effect only at the next call of deflate().

     Before the call of deflateParams, the stream state must be set as for
   a call of deflate(), since the currently available input may have to
   be compressed and flushed. In particular, strm->avail_out must be non-zero.

     deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source
   stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR
   if strm->avail_out was zero. }


const
   deflate_copyright : string = ' deflate 1.1.2 Copyright 1995-1998 Jean-loup Gailly ';

{ If you use the zlib library in a product, an acknowledgment is welcome
  in the documentation of your product. If for some reason you cannot
  include such an acknowledgment, I would appreciate that you keep this
  copyright string in the executable of your product. }


function inflate_blocks_new(var z : z_stream;
                            c : check_func;  { check function }
                            w : uInt     { window size }
                            ) : pInflate_blocks_state;

function inflate_blocks (var s : inflate_blocks_state;
                         var z : z_stream;
                         r : int             { initial return code }
                         ) : int;

procedure inflate_blocks_reset (var s : inflate_blocks_state;
                                var z : z_stream;
                                c : puLong); { check value on output }


function inflate_blocks_free(s : pInflate_blocks_state;
                             var z : z_stream) : int;

procedure inflate_set_dictionary(var s : inflate_blocks_state;
                                 const d : array of byte;  { dictionary }
                                 n : uInt);         { dictionary length }

function inflate_blocks_sync_point(var s : inflate_blocks_state) : int;


function inflate_codes_new (bl : uInt;
                            bd : uInt;
                            tl : pInflate_huft;
                            td : pInflate_huft;
                            var z : z_stream): pInflate_codes_state;

function inflate_codes(var s : inflate_blocks_state;
                       var z : z_stream;
                       r : int) : int;

procedure inflate_codes_free(c : pInflate_codes_state;
                             var z : z_stream);


function inflate_fast( bl : uInt;
                       bd : uInt;
                       tl : pInflate_huft;
                       td : pInflate_huft;
                      var s : inflate_blocks_state;
                      var z : z_stream) : int;

function inflateInit(var z : z_stream) : int;

{    Initializes the internal stream state for decompression. The fields
   zalloc, zfree and opaque must be initialized before by the caller.  If
   zalloc and zfree are set to Z_NULL, inflateInit updates them to use default
   allocation functions.

     inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
   enough memory, Z_VERSION_ERROR if the zlib library version is incompatible
   with the version assumed by the caller.  msg is set to null if there is no
   error message. inflateInit does not perform any decompression: this will be
   done by inflate(). }



function inflateInit_(z : z_streamp;
                      const version : string;
                      stream_size : int) : int;


function inflateInit2_(var z: z_stream;
                       w : int;
                       const version : string;
                       stream_size : int) : int;
{
     This is another version of inflateInit with an extra parameter. The
   fields next_in, avail_in, zalloc, zfree and opaque must be initialized
   before by the caller.

     The windowBits parameter is the base two logarithm of the maximum window
   size (the size of the history buffer).  It should be in the range 8..15 for
   this version of the library. The default value is 15 if inflateInit is used
   instead. If a compressed stream with a larger window size is given as
   input, inflate() will return with the error code Z_DATA_ERROR instead of
   trying to allocate a larger window.

      inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
   memory, Z_STREAM_ERROR if a parameter is invalid (such as a negative
   memLevel). msg is set to null if there is no error message.  inflateInit2
   does not perform any decompression apart from reading the zlib header if
   present: this will be done by inflate(). (So next_in and avail_in may be
   modified, but next_out and avail_out are unchanged.)
}



function inflateEnd(var z : z_stream) : int;

{
   All dynamically allocated data structures for this stream are freed.
   This function discards any unprocessed input and does not flush any
   pending output.

     inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state
   was inconsistent. In the error case, msg may be set but then points to a
   static string (which must not be deallocated).
}

function inflateReset(var z : z_stream) : int;

{
   This function is equivalent to inflateEnd followed by inflateInit,
   but does not free and reallocate all the internal decompression state.
   The stream will keep attributes that may have been set by inflateInit2.

      inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
   stream state was inconsistent (such as zalloc or state being NULL).
}


function inflate(var z : z_stream;
                 f : int) : int;
{
  inflate decompresses as much data as possible, and stops when the input
  buffer becomes empty or the output buffer becomes full. It may introduce
  some output latency (reading input without producing any output)
  except when forced to flush.

  The detailed semantics are as follows. inflate performs one or both of the
  following actions:

  - Decompress more input starting at next_in and update next_in and avail_in
    accordingly. If not all input can be processed (because there is not
    enough room in the output buffer), next_in is updated and processing
    will resume at this point for the next call of inflate().

  - Provide more output starting at next_out and update next_out and avail_out
    accordingly.  inflate() provides as much output as possible, until there
    is no more input data or no more space in the output buffer (see below
    about the flush parameter).

  Before the call of inflate(), the application should ensure that at least
  one of the actions is possible, by providing more input and/or consuming
  more output, and updating the next_* and avail_* values accordingly.
  The application can consume the uncompressed output when it wants, for
  example when the output buffer is full (avail_out == 0), or after each
  call of inflate(). If inflate returns Z_OK and with zero avail_out, it
  must be called again after making room in the output buffer because there
  might be more output pending.

    If the parameter flush is set to Z_SYNC_FLUSH, inflate flushes as much
  output as possible to the output buffer. The flushing behavior of inflate is
  not specified for values of the flush parameter other than Z_SYNC_FLUSH
  and Z_FINISH, but the current implementation actually flushes as much output
  as possible anyway.

    inflate() should normally be called until it returns Z_STREAM_END or an
  error. However if all decompression is to be performed in a single step
  (a single call of inflate), the parameter flush should be set to
  Z_FINISH. In this case all pending input is processed and all pending
  output is flushed; avail_out must be large enough to hold all the
  uncompressed data. (The size of the uncompressed data may have been saved
  by the compressor for this purpose.) The next operation on this stream must
  be inflateEnd to deallocate the decompression state. The use of Z_FINISH
  is never required, but can be used to inform inflate that a faster routine
  may be used for the single inflate() call.

     If a preset dictionary is needed at this point (see inflateSetDictionary
  below), inflate sets strm-adler to the adler32 checksum of the
  dictionary chosen by the compressor and returns Z_NEED_DICT; otherwise 
  it sets strm->adler to the adler32 checksum of all output produced
  so far (that is, total_out bytes) and returns Z_OK, Z_STREAM_END or
  an error code as described below. At the end of the stream, inflate()
  checks that its computed adler32 checksum is equal to that saved by the
  compressor and returns Z_STREAM_END only if the checksum is correct.

    inflate() returns Z_OK if some progress has been made (more input processed
  or more output produced), Z_STREAM_END if the end of the compressed data has
  been reached and all uncompressed output has been produced, Z_NEED_DICT if a
  preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
  corrupted (input stream not conforming to the zlib format or incorrect
  adler32 checksum), Z_STREAM_ERROR if the stream structure was inconsistent
  (for example if next_in or next_out was NULL), Z_MEM_ERROR if there was not
  enough memory, Z_BUF_ERROR if no progress is possible or if there was not
  enough room in the output buffer when Z_FINISH is used. In the Z_DATA_ERROR
  case, the application may then call inflateSync to look for a good
  compression block.
}


function inflateSetDictionary(var z : z_stream;
                              dictionary : pBytef; {const array of byte}
                              dictLength : uInt) : int;

{
     Initializes the decompression dictionary from the given uncompressed byte
   sequence. This function must be called immediately after a call of inflate
   if this call returned Z_NEED_DICT. The dictionary chosen by the compressor
   can be determined from the Adler32 value returned by this call of
   inflate. The compressor and decompressor must use exactly the same
   dictionary (see deflateSetDictionary).

     inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a
   parameter is invalid (such as NULL dictionary) or the stream state is
   inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the
   expected one (incorrect Adler32 value). inflateSetDictionary does not
   perform any decompression: this will be done by subsequent calls of
   inflate().
}

function inflateSync(var z : z_stream) : int;

{
  Skips invalid compressed data until a full flush point (see above the
  description of deflate with Z_FULL_FLUSH) can be found, or until all
  available input is skipped. No output is provided.

    inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR
  if no more input was provided, Z_DATA_ERROR if no flush point has been found,
  or Z_STREAM_ERROR if the stream structure was inconsistent. In the success
  case, the application may save the current current value of total_in which
  indicates where valid compressed data was found. In the error case, the
  application may repeatedly call inflateSync, providing more input each time,
  until success or end of the input data.
}


function inflateSyncPoint(var z : z_stream) : int;

{ Maximum size of dynamic tree.  The maximum found in a long but non-
  exhaustive search was 1004 huft structures (850 for length/literals
  and 154 for distances, the latter actually the result of an
  exhaustive search).  The actual maximum is not known, but the
  value below is more than safe. }
const
  MANY = 1440;


{$ifdef DEBUG}
var
  inflate_hufts : uInt;
{$endif}

function inflate_trees_bits(
  var c : array of uIntf;  { 19 code lengths }
  var bb : uIntf;          { bits tree desired/actual depth }
  var tb : pinflate_huft;  { bits tree result }
  var hp : array of Inflate_huft;      { space for trees }
  var z : z_stream         { for messages }
    ) : int;

function inflate_trees_dynamic(
    nl : uInt;                    { number of literal/length codes }
    nd : uInt;                    { number of distance codes }
    var c : Array of uIntf;           { that many (total) code lengths }
    var bl : uIntf;               { literal desired/actual bit depth }
    var bd : uIntf;               { distance desired/actual bit depth }
var tl : pInflate_huft;           { literal/length tree result }
var td : pInflate_huft;           { distance tree result }
var hp : array of Inflate_huft;   { space for trees }
var z : z_stream                  { for messages }
     ) : int;

function inflate_trees_fixed (
    var bl : uInt;                { literal desired/actual bit depth }
    var bd : uInt;                { distance desired/actual bit depth }
    var tl : pInflate_huft;       { literal/length tree result }
    var td : pInflate_huft;       { distance tree result }
    var z : z_stream              { for memory allocation }
     ) : int;


?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品国产欧美一区二区| 欧美福利电影网| 97se狠狠狠综合亚洲狠狠| 国产一区二区精品久久| 国产精品影视在线| 黑人巨大精品欧美一区| 国产九九视频一区二区三区| 国产精品一区2区| 91小视频在线观看| 欧美精品第一页| 亚洲国产精品高清| 国产精品久久久久久福利一牛影视| 国产精品久久久久久久久免费樱桃| 亚洲视频一二三| 日本不卡一二三| 大尺度一区二区| 欧美色倩网站大全免费| 久久久久久久一区| 亚洲成av人片一区二区梦乃| 国产综合色产在线精品| 欧美区视频在线观看| 国产欧美一区二区在线| 青青青伊人色综合久久| 国产精品一区二区黑丝| 777色狠狠一区二区三区| 国产日韩高清在线| 久久国产免费看| 欧美日韩免费一区二区三区视频| 久久网站热最新地址| 亚洲成人www| 欧美综合视频在线观看| 国产精品成人一区二区艾草 | 色综合色狠狠天天综合色| 久久影院电视剧免费观看| 视频一区二区三区在线| 91污片在线观看| 中文字幕电影一区| 丰满亚洲少妇av| 国产精品人人做人人爽人人添| 另类专区欧美蜜桃臀第一页| 91精品国产色综合久久不卡蜜臀| 蜜桃一区二区三区在线| 欧美色区777第一页| 亚洲永久免费视频| 欧美视频一区二区三区四区| 亚洲视频在线一区二区| 在线观看一区二区精品视频| 亚洲精品免费在线| 欧美老女人在线| 九一久久久久久| 国产精品久久国产精麻豆99网站| 不卡一区二区在线| 亚洲综合色丁香婷婷六月图片| 欧美日韩在线播放一区| 美腿丝袜在线亚洲一区| 久久久久久一级片| 色婷婷亚洲一区二区三区| 午夜免费久久看| 久久久高清一区二区三区| 成人午夜精品一区二区三区| 亚洲国产一区二区三区| 亚洲国产视频a| 免费一级欧美片在线观看| 五月天国产精品| 免费看欧美美女黄的网站| 国产精品嫩草影院com| 成人蜜臀av电影| 丁香桃色午夜亚洲一区二区三区| 久久不见久久见免费视频7| 九色综合国产一区二区三区| 日韩av中文字幕一区二区| 免费在线欧美视频| 国产精品系列在线观看| 懂色中文一区二区在线播放| 国产成人av电影在线| a亚洲天堂av| 51精品久久久久久久蜜臀| 精品国产亚洲一区二区三区在线观看| 欧美日韩五月天| 制服丝袜激情欧洲亚洲| 日韩欧美国产小视频| 精品国产3级a| 久久久久久97三级| 亚洲综合在线视频| 婷婷国产v国产偷v亚洲高清| 免费成人在线影院| 国产91高潮流白浆在线麻豆| 成人激情免费网站| 欧美婷婷六月丁香综合色| 欧美大黄免费观看| 国产欧美一区二区在线| 亚洲欧美日韩在线不卡| 亚洲高清三级视频| 国产精华液一区二区三区| 92精品国产成人观看免费| 欧美精品1区2区3区| 久久天天做天天爱综合色| 亚洲欧洲三级电影| 日韩国产精品91| 成人精品视频网站| 欧美日本国产视频| 亚洲品质自拍视频| 精久久久久久久久久久| 欧美猛男超大videosgay| 欧美日韩综合不卡| 国产精品毛片大码女人| 免费看欧美女人艹b| 欧美性猛交xxxx乱大交退制版| 2欧美一区二区三区在线观看视频| 综合欧美亚洲日本| 国产成人午夜视频| 26uuu国产一区二区三区| 亚洲人午夜精品天堂一二香蕉| 国产一区二区三区香蕉| 91麻豆精品国产91久久久资源速度 | 国产精品亲子伦对白| 久久99蜜桃精品| 91精品国产欧美日韩| 亚洲午夜电影网| 在线观看免费亚洲| 亚洲第一综合色| 欧美日韩国产123区| 亚洲自拍偷拍网站| 一本到不卡免费一区二区| 国产精品成人免费在线| 一本色道久久综合亚洲aⅴ蜜桃| 国产精品美女久久久久久 | 日韩欧美国产一区二区三区| 日日夜夜精品免费视频| 91精品婷婷国产综合久久性色| 婷婷久久综合九色国产成人| 欧美唯美清纯偷拍| 日本中文一区二区三区| 国产喷白浆一区二区三区| 波多野结衣在线一区| 三级欧美在线一区| 亚洲最新视频在线播放| 国产欧美一区二区三区沐欲| 精品国产免费视频| 99久久久久久99| 国产一区二区成人久久免费影院| 亚洲激情成人在线| 亚洲一区视频在线| 中文字幕不卡在线观看| 欧美精品日日鲁夜夜添| 成人午夜激情片| 免费高清在线视频一区·| 中文字幕在线观看一区| 这里只有精品电影| 欧美综合一区二区| 激情深爱一区二区| 青青草97国产精品免费观看| 亚洲午夜在线观看视频在线| 欧美激情一区二区三区全黄| 91精品国产91久久综合桃花 | 欧美极品xxx| 日韩免费视频一区| 欧美视频第二页| av一区二区不卡| 国产福利精品导航| 久久国产综合精品| 国产精品亚洲а∨天堂免在线| 91福利视频在线| 国产清纯在线一区二区www| 日韩欧美成人午夜| 久久久久久黄色| 亚洲人妖av一区二区| 亚洲女性喷水在线观看一区| 国产91精品在线观看| 成人福利电影精品一区二区在线观看 | 国产在线视频一区二区三区| 国产精品一区二区黑丝| 一本色道久久综合精品竹菊| 欧美日韩综合在线免费观看| 日韩欧美二区三区| 最新日韩在线视频| 美女免费视频一区二区| 99精品欧美一区二区三区综合在线| 欧美影视一区在线| 2023国产精品| 视频一区免费在线观看| 成人性生交大片免费看中文网站| 日韩美女精品在线| 亚洲电影一级黄| 中文字幕免费观看一区| 日韩欧美成人激情| www.亚洲国产| 国产伦精品一区二区三区免费迷| 国产精品丝袜久久久久久app| 色久优优欧美色久优优| 成人午夜短视频| 精品一区二区三区在线观看 | 欧美本精品男人aⅴ天堂| 99精品久久免费看蜜臀剧情介绍| 国产精品一区二区无线| 蜜臀av国产精品久久久久| 亚洲chinese男男1069| 亚洲国产精品视频| 亚洲综合免费观看高清完整版| 国产精品美女久久福利网站|