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

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

?? unzpriv.h

?? zip壓縮
?? H
?? 第 1 頁 / 共 5 頁
字號:
/*  Copyright (c) 1990-2002 Info-ZIP.  All rights reserved.  See the accompanying file LICENSE, version 2000-Apr-09 or later  (the contents of which are also included in unzip.h) for terms of use.  If, for some reason, all these files are missing, the Info-ZIP license  also may be found at:  ftp://ftp.info-zip.org/pub/infozip/license.html*//*---------------------------------------------------------------------------  unzpriv.h  This header file contains private (internal) macros, typedefs, prototypes  and global-variable declarations used by all of the UnZip source files.  In a prior life it was part of the main unzip.h header, but now it is only  included by that header if UNZIP_INTERNAL is defined.  ---------------------------------------------------------------------------*/#ifndef __unzpriv_h   /* prevent multiple inclusions */#define __unzpriv_h/* First thing: Signal all following code that we compile UnZip utilities! */#ifndef UNZIP#  define UNZIP#endif/* GRR 960204:  MORE defined here in preparation for removal altogether */#ifndef MORE# ifndef RISCOS#  define MORE# endif#endif/* fUnZip should never need to be reentrant */#ifdef FUNZIP#  ifdef REENTRANT#    undef REENTRANT#  endif#  ifdef DLL#    undef DLL#  endif#  ifdef SFX    /* fUnZip is NOT the sfx stub! */#    undef SFX#  endif#endif#ifdef NO_DEFLATE64   /* disable support for Deflate64(tm) */#  ifdef USE_DEFLATE64#    undef USE_DEFLATE64#  endif#else   /* enable Deflate64(tm) support unless compiling for SFX stub */#  if (!defined(USE_DEFLATE64) && !defined(SFX))#    define USE_DEFLATE64#  endif#endif#if (defined(NO_VMS_TEXT_CONV) || defined(VMS))#  ifdef VMS_TEXT_CONV#    undef VMS_TEXT_CONV#  endif#else#  if (!defined(VMS_TEXT_CONV) && !defined(SFX))#    define VMS_TEXT_CONV#  endif#endif#if (defined(DLL) && !defined(REENTRANT))#  define REENTRANT#endif#if (!defined(DYNAMIC_CRC_TABLE) && !defined(FUNZIP))#  define DYNAMIC_CRC_TABLE#endif#if (defined(DYNAMIC_CRC_TABLE) && !defined(REENTRANT))#  ifndef DYNALLOC_CRCTAB#    define DYNALLOC_CRCTAB#  endif#endif/*---------------------------------------------------------------------------    OS-dependent configuration for UnZip internals  ---------------------------------------------------------------------------*//* bad or (occasionally?) missing stddef.h: */#if (defined(M_XENIX) || defined(DNIX))#  define NO_STDDEF_H#endif#if (defined(M_XENIX) && !defined(M_UNIX))   /* SCO Xenix only, not SCO Unix */#  define SCO_XENIX#  define NO_LIMITS_H        /* no limits.h, but MODERN defined */#  define NO_UID_GID         /* no uid_t/gid_t */#  define size_t int#endif#ifdef realix   /* Modcomp Real/IX, real-time SysV.3 variant */#  define SYSV#  define NO_UID_GID         /* no uid_t/gid_t */#endif#if (defined(_AIX) && !defined(_ALL_SOURCE))#  define _ALL_SOURCE#endif#if defined(apollo)          /* defines __STDC__ */#    define NO_STDLIB_H#endif#ifdef DNIX#  define SYSV#  define SHORT_NAMES         /* 14-char limitation on path components *//* #  define FILENAME_MAX  14 */#  define FILENAME_MAX  NAME_MAX    /* GRR:  experiment */#endif#if (defined(SYSTEM_FIVE) || defined(__SYSTEM_FIVE))#  ifndef SYSV#    define SYSV#  endif#endif /* SYSTEM_FIVE || __SYSTEM_FIVE */#if (defined(M_SYSV) || defined(M_SYS5))#  ifndef SYSV#    define SYSV#  endif#endif /* M_SYSV || M_SYS5 *//* __SVR4 and __svr4__ catch Solaris on at least some combos of compiler+OS */#if (defined(__SVR4) || defined(__svr4__) || defined(sgi) || defined(__hpux))#  ifndef SYSV#    define SYSV#  endif#endif /* __SVR4 || __svr4__ || sgi || __hpux */#if (defined(LINUX) || defined(__QNX__))#  ifndef SYSV#    define SYSV#  endif#endif /* LINUX || __QNX__ */#if (defined(ultrix) || defined(__ultrix) || defined(bsd4_2))#  if (!defined(BSD) && !defined(SYSV))#    define BSD#  endif#endif /* ultrix || __ultrix || bsd4_2 */#if (defined(sun) || defined(pyr) || defined(CONVEX))#  if (!defined(BSD) && !defined(SYSV))#    define BSD#  endif#endif /* sun || pyr || CONVEX */#ifdef pyr  /* Pyramid:  has BSD and AT&T "universes" */#  ifdef BSD#    define pyr_bsd#    define USE_STRINGS_H  /* instead of more common string.h */#    define ZMEM           /* ZMEM now uses bcopy/bzero: not in AT&T universe */#  endif                   /* (AT&T memcpy claimed to be very slow, though) */#  define DECLARE_ERRNO#endif /* pyr *//* stat() bug for Borland, VAX C RTL, and Atari ST MiNT on TOS * filesystems:  returns 0 for wildcards!  (returns 0xffffffff on Minix * filesystem or `U:' drive under Atari MiNT.)  Watcom C was previously * included on this list; it would be good to know what version the problem * was fixed at, if it did exist.  */#if (defined(__TURBOC__) || defined(VMS) || defined(__MINT__))#  define WILD_STAT_BUG#endif/*---------------------------------------------------------------------------    OS-dependent includes  ---------------------------------------------------------------------------*/#ifdef EFT#  define LONGINT off_t  /* Amdahl UTS nonsense ("extended file types") */#else#  define LONGINT long#endif#ifdef MODERN#  ifndef NO_STDDEF_H#    include <stddef.h>#  endif#  ifndef NO_STDLIB_H#    include <stdlib.h>  /* standard library prototypes, malloc(), etc. */#  endif   typedef size_t extent;#else /* !MODERN */#  ifndef AOS_VS         /* mostly modern? */     LONGINT lseek();#    ifdef VAXC          /* not fully modern, but does have stdlib.h and void */#      include <stdlib.h>#    else       char *malloc();#    endif /* ?VAXC */#  endif /* !AOS_VS */   typedef unsigned int extent;#endif /* ?MODERN */#ifndef MINIX            /* Minix needs it after all the other includes (?) */#  include <stdio.h>#endif#include <ctype.h>       /* skip for VMS, to use tolower() function? */#include <errno.h>       /* used in mapname() */#ifdef USE_STRINGS_H#  include <strings.h>   /* strcpy, strcmp, memcpy, index/rindex, etc. */#else#  include <string.h>    /* strcpy, strcmp, memcpy, strchr/strrchr, etc. */#endif#if (defined(MODERN) && !defined(NO_LIMITS_H))#  include <limits.h>    /* GRR:  EXPERIMENTAL!  (can be deleted) */#endif/* this include must be down here for SysV.4, for some reason... */#include <signal.h>      /* used in unzip.c, fileio.c *//*---------------------------------------------------------------------------    API (DLL) section:  ---------------------------------------------------------------------------*/#ifdef DLL#  define MAIN   UZ_EXP UzpMain   /* was UzpUnzip */#  ifdef OS2DLL#    undef Info#    define REDIRECTC(c)             varputchar(__G__ c)#    define REDIRECTPRINT(buf,size)  varmessage(__G__ buf, size)#    define FINISH_REDIRECT()        finish_REXX_redirect(__G)#  else#    define REDIRECTC(c)#    define REDIRECTPRINT(buf,size)  0#    define FINISH_REDIRECT()        close_redirect(__G)#  endif#endif/*---------------------------------------------------------------------------    Acorn RISCOS section:  ---------------------------------------------------------------------------*/#ifdef RISCOS#  include "acorn/riscos.h"#endif/*---------------------------------------------------------------------------    Amiga section:  ---------------------------------------------------------------------------*/#ifdef AMIGA#  include "amiga/amiga.h"#endif/*---------------------------------------------------------------------------    AOS/VS section (somewhat similar to Unix, apparently):  ---------------------------------------------------------------------------*/#ifdef AOS_VS#  ifdef __FILEIO_C#    include "aosvs/aosvs.h"#  endif#endif/*---------------------------------------------------------------------------    Atari ST section:  ---------------------------------------------------------------------------*/#ifdef ATARI#  include <time.h>#  include <stat.h>#  include <fcntl.h>#  include <limits.h>#  define SYMLINKS#  define EXE_EXTENSION  ".tos"#  ifndef DATE_FORMAT#    define DATE_FORMAT  DF_DMY#  endif#  define DIR_END        '/'#  define INT_SPRINTF#  define timezone      _timezone#  define lenEOL        2#  define PutNativeEOL  {*q++ = native(CR); *q++ = native(LF);}#  undef SHORT_NAMES#  if (!defined(NOTIMESTAMP) && !defined(TIMESTAMP))#    define TIMESTAMP#  endif#endif/*---------------------------------------------------------------------------    BeOS section:  ---------------------------------------------------------------------------*/#ifdef __BEOS__#  include <sys/types.h>          /* [cjh]:  This is pretty much a generic  */#  include <sys/stat.h>           /* POSIX 1003.1 system; see beos/ for     */#  include <fcntl.h>              /* extra code to deal with our extra file */#  include <sys/param.h>          /* attributes. */#  include <unistd.h>#  include <utime.h>#  define DIRENT#  include <time.h>#  ifndef DATE_FORMAT#    define DATE_FORMAT DF_MDY  /* GRR:  customize with locale.h somehow? */#  endif#  define lenEOL        1#  define PutNativeEOL  *q++ = native(LF);#  define SCREENSIZE(ttrows, ttcols)  screensize(ttrows, ttcols)#  define SCREENWIDTH 80#  define USE_EF_UT_TIME#  define SET_DIR_ATTRIB#  if (!defined(NOTIMESTAMP) && !defined(TIMESTAMP))#    define TIMESTAMP#  endif#  define RESTORE_UIDGID#  define NO_STRNICMP             /* not in the x86 headers at least */#  define INT_SPRINTF#  define SYMLINKS#  define MAIN main_stub          /* now that we're using a wrapper... */#endif/*---------------------------------------------------------------------------    Human68k/X680x0 section:  ---------------------------------------------------------------------------*/#ifdef __human68k__   /* DO NOT DEFINE DOS_OS2 HERE!  If Human68k is so much */   /*  like MS-DOS and/or OS/2, create DOS_H68_OS2 macro. */#  ifndef _MBCS#    define _MBCS#  endif#  include <time.h>#  include <fcntl.h>#  include <io.h>#  include <conio.h>#  include <sys/stat.h>#  ifdef HAVE_MBSTRING_H#    include <mbstring.h>#  endif#  ifdef HAVE_MBCTYPE_H#    include <mbctype.h>#  else#    ifndef _ismbblead#      define _ismbblead(c) (0x80 <= (c) && ((c) < 0xa0 || 0xe0 <= (c)))#    endif#  endif#  ifndef DATE_FORMAT#    define DATE_FORMAT DF_YMD   /* Japanese standard */#  endif#  define lenEOL        1#  define PutNativeEOL  *q++ = native(LF);#  define INT_SPRINTF#  define SYMLINKS#  ifdef SFX#    define MAIN main_sfx#  endif#endif/*---------------------------------------------------------------------------    Mac section:  ---------------------------------------------------------------------------*/#ifdef MACOS#  include "maccfg.h"#endif /* MACOS *//*---------------------------------------------------------------------------    MS-DOS, OS/2, FLEXOS section:  ---------------------------------------------------------------------------*/#ifdef WINDLL#  ifdef MORE#    undef MORE#  endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品国产一区二区精华液| 中文字幕成人网| 欧美白人最猛性xxxxx69交| 久久久精品一品道一区| 一区二区视频在线| 欧美成人一级视频| 青青草国产成人av片免费| 国产精品久久三| 91小宝寻花一区二区三区| 亚洲免费在线视频| 欧美午夜精品一区二区蜜桃| 亚洲三级理论片| 色偷偷88欧美精品久久久| 亚洲丝袜另类动漫二区| 精品国产3级a| 国产精品久久久久久久浪潮网站| 亚洲午夜精品网| 成人app在线观看| 久久婷婷一区二区三区| 日韩精品久久久久久| 色av一区二区| 亚洲人精品午夜| 91伊人久久大香线蕉| 久久久精品免费网站| 久久机这里只有精品| 制服丝袜成人动漫| 亚欧色一区w666天堂| 欧美色精品在线视频| 亚洲欧美日韩国产综合在线 | 国产精品午夜久久| 激情综合网av| 精品粉嫩超白一线天av| 久久黄色级2电影| 日韩欧美国产综合一区| 石原莉奈一区二区三区在线观看| 欧美性大战久久| 亚洲国产精品嫩草影院| 欧美三区在线观看| 亚洲一区二区在线视频| 欧美视频中文字幕| 亚洲国产成人porn| 欧美一区二区三区免费在线看| 亚洲成人av一区二区三区| 欧美三级资源在线| 奇米影视在线99精品| 日韩一级黄色片| 狠狠色丁香久久婷婷综| 国产网站一区二区| 不卡欧美aaaaa| 亚洲综合清纯丝袜自拍| 欧美日韩国产一区| 久久99精品国产麻豆婷婷| 久久美女高清视频| 91丨九色丨尤物| 亚洲综合999| 制服.丝袜.亚洲.另类.中文| 日本视频在线一区| www亚洲一区| 97精品国产露脸对白| 亚洲国产成人av好男人在线观看| 韩国v欧美v日本v亚洲v| 91美女在线视频| 亚洲欧美国产77777| 亚洲精品免费在线观看| 日韩精品亚洲专区| 国产99久久久久久免费看农村| 国产jizzjizz一区二区| 欧美精选在线播放| 欧美大片顶级少妇| 久久久久9999亚洲精品| 视频一区在线播放| 韩国v欧美v日本v亚洲v| 欧美一级黄色录像| 高清日韩电视剧大全免费| 亚洲免费av在线| 日韩欧美中文字幕精品| 不卡区在线中文字幕| 奇米精品一区二区三区在线观看| 国产三级一区二区| 欧美色中文字幕| 国产精品亚洲第一区在线暖暖韩国| 一区二区三区高清| 久久精品视频一区二区| 5月丁香婷婷综合| 99久久免费视频.com| 美国av一区二区| 亚洲图片欧美视频| 中文字幕一区二区三区精华液| 欧美一级xxx| 精品视频在线免费| 99久久精品国产导航| 国产精品一品二品| 青娱乐精品在线视频| 一区二区三区在线视频播放| 久久精品水蜜桃av综合天堂| 欧美一级欧美三级| 欧美性生活大片视频| jlzzjlzz国产精品久久| 国产一区中文字幕| 蜜桃视频一区二区三区| 午夜不卡在线视频| 一区二区视频免费在线观看| 国产精品久久久久7777按摩| 久久久久久久久蜜桃| 欧美va在线播放| 日韩一区二区三区电影在线观看 | 国产精品久久久久久久岛一牛影视 | 亚洲男人天堂av网| 日本一区二区三区久久久久久久久不| 日韩视频免费观看高清在线视频| 欧美性猛片aaaaaaa做受| 色999日韩国产欧美一区二区| 成人动漫一区二区三区| 国产高清亚洲一区| 国产精品一区二区x88av| 韩国毛片一区二区三区| 激情图区综合网| 极品少妇xxxx精品少妇| 国产精品白丝jk黑袜喷水| 奇米影视在线99精品| 狠狠v欧美v日韩v亚洲ⅴ| 1区2区3区国产精品| 欧美一级免费观看| av中文字幕不卡| 美女网站在线免费欧美精品| 亚洲精品久久久久久国产精华液| 在线91免费看| 国产毛片一区二区| 精品影院一区二区久久久| 美女视频一区二区| 久久久www免费人成精品| 欧美一区在线视频| 91精品麻豆日日躁夜夜躁| 欧美大度的电影原声| 国产亚洲精品久| 中文字幕 久热精品 视频在线| 国产精品久久久久影院色老大| 国产精品第五页| 亚洲一二三四区| 日韩电影在线观看一区| 国产精品一区在线观看你懂的| 成人av免费观看| 欧美性色aⅴ视频一区日韩精品| 在线不卡一区二区| 久久无码av三级| 亚洲免费看黄网站| 琪琪久久久久日韩精品| 成人网在线播放| 欧美日韩国产bt| 国产日韩精品一区| 亚洲欧美日韩中文播放| 人妖欧美一区二区| 粉嫩av一区二区三区在线播放| 在线影院国内精品| 日韩女优av电影| 亚洲美女淫视频| 国内精品伊人久久久久影院对白| 99久久国产综合精品色伊| 91精品国产欧美一区二区| 国产精品麻豆欧美日韩ww| 丝袜美腿亚洲一区二区图片| 国产成人精品亚洲日本在线桃色 | 国产精品 日产精品 欧美精品| 91蝌蚪国产九色| 欧美mv日韩mv国产网站app| 日韩久久一区二区| 免费视频一区二区| 99国内精品久久| 久久影音资源网| 石原莉奈在线亚洲二区| 91视频www| 久久久午夜精品| 日韩av网站免费在线| 99在线热播精品免费| 精品国产乱码久久久久久浪潮| 一片黄亚洲嫩模| 色综合久久六月婷婷中文字幕| 精品久久久久久久久久久久包黑料 | 一区二区三区免费在线观看| 91丨九色丨国产丨porny| 亚洲综合一区二区| 成人午夜av在线| 亚洲丝袜制服诱惑| 色婷婷综合久久久中文字幕| 欧美高清一级片在线观看| 国产一区不卡精品| 久久这里只有精品6| 久久99精品国产| 欧美乱妇一区二区三区不卡视频| 亚洲精品国产一区二区精华液 | 日韩三级电影网址| ㊣最新国产の精品bt伙计久久| 久久精品免费观看| 91精品午夜视频| 日韩精品亚洲一区| 在线不卡a资源高清| 婷婷亚洲久悠悠色悠在线播放| 91在线观看地址| 亚洲精品成人少妇| 在线精品亚洲一区二区不卡|