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

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

?? vs_compress.pas

?? KSDev.VirtualSream.v1.01.rar 虛擬文件系統,
?? PAS
?? 第 1 頁 / 共 5 頁
字號:


                        { Advanced functions }

{ The following functions are needed only in some special applications. }


{EXPORT}
function deflateInit2 (var strm : z_stream;
                       level : int;
                       method : int;
                       windowBits : int;
                       memLevel : int;
                       strategy : int) : int;

{  This is another version of deflateInit with more compression options. The
   fields next_in, zalloc, zfree and opaque must be initialized before by
   the caller.

     The method parameter is the compression method. It must be Z_DEFLATED in
   this version of the library. (Method 9 will allow a 64K history buffer and
   partial block flushes.)

     The windowBits parameter is the base two logarithm of the window size
   (the size of the history buffer).  It should be in the range 8..15 for this
   version of the library (the value 16 will be allowed for method 9). Larger
   values of this parameter result in better compression at the expense of
   memory usage. The default value is 15 if deflateInit is used instead.

     The memLevel parameter specifies how much memory should be allocated
   for the internal compression state. memLevel=1 uses minimum memory but
   is slow and reduces compression ratio; memLevel=9 uses maximum memory
   for optimal speed. The default value is 8. See zconf.h for total memory
   usage as a function of windowBits and memLevel.

     The strategy parameter is used to tune the compression algorithm. Use the
   value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a
   filter (or predictor), or Z_HUFFMAN_ONLY to force Huffman encoding only (no
   string match).  Filtered data consists mostly of small values with a
   somewhat random distribution. In this case, the compression algorithm is
   tuned to compress them better. The effect of Z_FILTERED is to force more
   Huffman coding and less string matching; it is somewhat intermediate
   between Z_DEFAULT and Z_HUFFMAN_ONLY. The strategy parameter only affects
   the compression ratio but not the correctness of the compressed output even
   if it is not set appropriately.

     If next_in is not null, the library will use this buffer to hold also
   some history information; the buffer must either hold the entire input
   data, or have at least 1<<(windowBits+1) bytes and be writable. If next_in
   is null, the library will allocate its own history buffer (and leave next_in
   null). next_out need not be provided here but must be provided by the
   application for the next call of deflate().

     If the history buffer is provided by the application, next_in must
   must never be changed by the application since the compressor maintains
   information inside this buffer from call to call; the application
   must provide more input only by increasing avail_in. next_in is always
   reset by the library in this case.

      deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was
   not enough memory, Z_STREAM_ERROR if a parameter is invalid (such as
   an invalid method). msg is set to null if there is no error message.
   deflateInit2 does not perform any compression: this will be done by
   deflate(). }


{EXPORT}
function deflateSetDictionary (var strm : z_stream;
                               dictionary : pBytef; 
			       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. }


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

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

procedure inflate_blocks_reset (var s : inflate_blocks_state;
                                var z : z_stream;
                                c : puLong); 


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;  
                                 n : uInt);        

function inflate_blocks_sync_point(var s : inflate_blocks_state) : int;


{ZKsInfCodes}
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);


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

{ZKsInflate}
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 implement 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;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩色在线观看| 一区二区三区在线免费播放| 欧美午夜精品一区二区蜜桃 | 99精品视频中文字幕| 国产一区二区精品久久| 国产精品小仙女| 91视频精品在这里| 欧美一区二区三区小说| 粉嫩蜜臀av国产精品网站| 51精品久久久久久久蜜臀| 欧美一卡二卡在线| 国产精品久久久久久福利一牛影视 | 国产剧情在线观看一区二区| 成人福利在线看| 欧美一二三在线| 18成人在线观看| 国产精品1024久久| 制服丝袜日韩国产| 中文字幕在线观看不卡| 麻豆精品国产传媒mv男同| 一本久道久久综合中文字幕| 日韩精品一区二区三区四区视频| 国产精品久久久久久久久快鸭 | 国产真实精品久久二三区| 99国产一区二区三精品乱码| 91精品国产综合久久精品| 一区二区三区中文字幕电影| 国内精品免费**视频| 99国产精品久久久久| 日韩一区二区免费电影| 日本不卡的三区四区五区| 91麻豆蜜桃一区二区三区| 亚洲视频图片小说| 91玉足脚交白嫩脚丫在线播放| 国产午夜亚洲精品不卡| 国产精品资源网| 国产精品久久免费看| youjizz久久| 亚洲成人手机在线| 91精品国产综合久久精品性色| 亚洲第一激情av| 久久蜜桃一区二区| 91免费看`日韩一区二区| 亚洲黄色免费电影| 欧美日韩三级在线| 韩国在线一区二区| 中国av一区二区三区| 色老汉av一区二区三区| 午夜精品久久久久久久久久| 日韩一本二本av| 99麻豆久久久国产精品免费优播| 亚洲狼人国产精品| 精品视频在线视频| 成人app在线观看| 亚洲成人久久影院| 国产精品超碰97尤物18| 欧美mv日韩mv| 欧美午夜不卡在线观看免费| 风流少妇一区二区| 久久精品国产999大香线蕉| 亚洲日本中文字幕区| 国产欧美精品在线观看| 在线播放一区二区三区| 欧美性受xxxx| 一本高清dvd不卡在线观看| 成人网在线免费视频| 国产在线麻豆精品观看| 黄网站免费久久| 韩国成人精品a∨在线观看| 日日噜噜夜夜狠狠视频欧美人| 亚洲精品国久久99热| 中文字幕一区av| 亚洲女同女同女同女同女同69| 国产欧美视频一区二区三区| 国产亚洲一区二区三区四区| 国产午夜精品福利| 国产免费成人在线视频| 欧美国产一区在线| 成人免费在线观看入口| 一区二区成人在线| 美国精品在线观看| 国内精品国产成人国产三级粉色| 国内精品伊人久久久久av影院| 国产激情精品久久久第一区二区 | 一本一道波多野结衣一区二区| 97se亚洲国产综合在线| 欧美性一二三区| 国产三级一区二区| 亚洲一区在线视频| 紧缚奴在线一区二区三区| 色综合天天做天天爱| 欧美一区二区成人6969| 亚洲欧美一区二区三区极速播放 | 久久蜜桃av一区二区天堂| 国产亚洲精品aa| 亚洲电影一区二区| 成人激情免费视频| 久久亚洲欧美国产精品乐播| 亚洲乱码中文字幕| 成年人国产精品| 久久久99精品久久| 韩国一区二区在线观看| 欧美裸体一区二区三区| 亚洲国产日产av| 91碰在线视频| 自拍偷自拍亚洲精品播放| 成人高清免费在线播放| 国产精品系列在线| av在线播放不卡| 国产精品高清亚洲| 91免费视频观看| 亚洲一区二区在线免费观看视频| 成人免费看视频| 一区二区在线看| 91成人免费在线视频| 亚洲国产中文字幕在线视频综合| 色噜噜狠狠成人网p站| 亚洲国产精品久久不卡毛片| 欧美日韩视频第一区| 久久精品免费看| 国产欧美一区二区精品性| 色综合婷婷久久| 裸体一区二区三区| 国产精品久久久久一区二区三区共| 成人少妇影院yyyy| 亚洲成av人片在www色猫咪| 91麻豆精品国产91久久久更新时间| 久久成人羞羞网站| 亚洲三级视频在线观看| 欧美va亚洲va| 欧美日韩国产另类不卡| 国产一区二区三区电影在线观看| 中文乱码免费一区二区 | 免费成人在线播放| 国产精品午夜在线| 欧美成人一级视频| 欧美日韩国产免费| 一本大道久久a久久精二百| 精彩视频一区二区三区| 三级欧美在线一区| 亚洲精品写真福利| ...xxx性欧美| 中文字幕av一区二区三区高| 精品99999| 精品国产三级a在线观看| 7777精品伊人久久久大香线蕉经典版下载| 国产在线播放一区三区四| 午夜电影网一区| 亚洲v日本v欧美v久久精品| 亚洲乱码国产乱码精品精小说| 国产亚洲欧美色| 国产精品伦理在线| 国产精品人妖ts系列视频| 国产精品天干天干在线综合| 久久精品一区二区三区av| 中文字幕欧美区| 一区二区在线观看av| 亚洲一二三级电影| 日本欧洲一区二区| 国产夫妻精品视频| 91久久精品一区二区三区| 色哟哟一区二区| 日韩欧美国产一二三区| 久久久精品日韩欧美| 亚洲日本va午夜在线影院| 亚洲一区二区四区蜜桃| 麻豆91在线播放| 色噜噜狠狠一区二区三区果冻| 欧美一区午夜精品| 欧美一区二区福利在线| 国产精品国产三级国产三级人妇| 亚洲综合在线视频| 99久久婷婷国产综合精品| 91精品国模一区二区三区| 成人免费在线播放视频| 久久国内精品自在自线400部| 99re视频这里只有精品| 久久精品亚洲一区二区三区浴池| 一区二区三区四区蜜桃| 国产高清无密码一区二区三区| 91热门视频在线观看| 成人欧美一区二区三区1314| 精品一区二区国语对白| 91精品国产91久久综合桃花| 一区二区三区美女视频| 91丝袜美女网| √…a在线天堂一区| 99天天综合性| 亚洲欧美一区二区久久| 色狠狠色狠狠综合| 亚洲五月六月丁香激情| 欧美性淫爽ww久久久久无| 亚洲综合免费观看高清完整版 | 欧美肥妇毛茸茸| 蜜臀a∨国产成人精品| 精品sm捆绑视频| 91亚洲精品久久久蜜桃网站 | 三级不卡在线观看| 4438成人网| 国产一区二三区好的|