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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? uclconf.h

?? 給程序加密(upx)
?? H
字號(hào):
/* uclconf.h -- configuration for the UCL data compression library   This file is part of the UCL data compression library.   Copyright (C) 2003 Markus Franz Xaver Johannes Oberhumer   Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer   Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer   Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer   Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer   Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer   Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer   Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer   All Rights Reserved.   The UCL library is free software; you can redistribute it and/or   modify it under the terms of the GNU General Public License as   published by the Free Software Foundation; either version 2 of   the License, or (at your option) any later version.   The UCL library is distributed in the hope that it will be useful,   but WITHOUT ANY WARRANTY; without even the implied warranty of   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   GNU General Public License for more details.   You should have received a copy of the GNU General Public License   along with the UCL library; see the file COPYING.   If not, write to the Free Software Foundation, Inc.,   59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.   Markus F.X.J. Oberhumer   <markus@oberhumer.com>   http://www.oberhumer.com/opensource/ucl/ */#ifndef __UCLCONF_H_INCLUDED#define __UCLCONF_H_INCLUDED#define UCL_VERSION             0x010200L#define UCL_VERSION_STRING      "1.02"#define UCL_VERSION_DATE        "Dec 18 2003"/* internal Autoconf configuration file - only used when building UCL */#if defined(UCL_HAVE_CONFIG_H)#  include <config.h>#endif#include <limits.h>#ifdef __cplusplusextern "C" {#endif/***********************************************************************// UCL requires a conforming <limits.h>************************************************************************/#if !defined(CHAR_BIT) || (CHAR_BIT != 8)#  error "invalid CHAR_BIT"#endif#if !defined(UCHAR_MAX) || !defined(UINT_MAX) || !defined(ULONG_MAX)#  error "check your compiler installation"#endif#if (USHRT_MAX < 1) || (UINT_MAX < 1) || (ULONG_MAX < 1)#  error "your limits.h macros are broken"#endif/* workaround a compiler bug under hpux 10.20 */#define UCL_0xffffL             65535ul#define UCL_0xffffffffL         4294967295ul#if !defined(UCL_UINT32_C)#  if (UINT_MAX < UCL_0xffffffffL)#    define UCL_UINT32_C(c)     c ## UL#  else#    define UCL_UINT32_C(c)     ((c) + 0U)#  endif#endif/***********************************************************************// architecture defines************************************************************************/#if (defined(__CYGWIN__) || defined(__CYGWIN32__)) && defined(__GNUC__)#  define UCL_OS_CYGWIN         1#elif defined(__EMX__) && defined(__GNUC__)#  define UCL_OS_EMX            1#elif defined(__BORLANDC__) && defined(__DPMI32__) && (__BORLANDC__ >= 0x0460)#  define UCL_OS_DOS32          1#elif defined(__BORLANDC__) && defined(__DPMI16__)#  define UCL_OS_DOS16          1#elif defined(__ZTC__) && defined(DOS386)#  define UCL_OS_DOS32          1#elif defined(__OS2__) || defined(__OS2V2__)#  if (UINT_MAX == UCL_0xffffL)#    define UCL_OS_OS216        1#  elif (UINT_MAX == UCL_0xffffffffL)#    define UCL_OS_OS2          1#  else#    error "check your limits.h header"#  endif#elif defined(__WIN64__) || defined(_WIN64) || defined(WIN64)#  define UCL_OS_WIN64          1#elif defined(__WIN32__) || defined(_WIN32) || defined(WIN32) || defined(__WINDOWS_386__)#  define UCL_OS_WIN32          1#elif defined(__MWERKS__) && defined(__INTEL__)#  define UCL_OS_WIN32          1#elif defined(__WINDOWS__) || defined(_WINDOWS) || defined(_Windows)#  if (UINT_MAX == UCL_0xffffL)#    define UCL_OS_WIN16        1#  elif (UINT_MAX == UCL_0xffffffffL)#    define UCL_OS_WIN32        1#  else#    error "check your limits.h header"#  endif#elif defined(__DOS__) || defined(__MSDOS__) || defined(_MSDOS) || defined(MSDOS) || (defined(__PACIFIC__) && defined(DOS))#  if (UINT_MAX == UCL_0xffffL)#    define UCL_OS_DOS16        1#  elif (UINT_MAX == UCL_0xffffffffL)#    define UCL_OS_DOS32        1#  else#    error "check your limits.h header"#  endif#elif defined(__WATCOMC__)#  if defined(__NT__) && (UINT_MAX == UCL_0xffffL)     /* wcl: NT host defaults to DOS target */#    define UCL_OS_DOS16        1#  elif defined(__NT__) && (__WATCOMC__ < 1100)     /* wcl386: Watcom C 11 defines _WIN32 */#    define UCL_OS_WIN32        1#  else#    error "please specify a target using the -bt compiler option"#  endif#elif defined(__palmos__)#  if (UINT_MAX == UCL_0xffffL)#    define UCL_OS_PALMOS       1#  else#    error "check your limits.h header"#  endif#elif defined(__TOS__) || defined(__atarist__)#  define UCL_OS_TOS            1#elif defined(macintosh)#  define UCL_OS_MACCLASSIC     1#elif defined(__VMS)#  define UCL_OS_VMS            1#else#  define UCL_OS_POSIX          1#endif/* memory checkers */#if !defined(__UCL_CHECKER)#  if defined(__BOUNDS_CHECKING_ON)#    define __UCL_CHECKER       1#  elif defined(__CHECKER__)#    define __UCL_CHECKER       1#  elif defined(__INSURE__)#    define __UCL_CHECKER       1#  elif defined(__PURIFY__)#    define __UCL_CHECKER       1#  endif#endif/* fix ancient compiler versions */#if (UINT_MAX == UCL_0xffffL)#if (defined(__MSDOS__) && defined(__TURBOC__) && (__TURBOC__ < 0x0410)) || (defined(MSDOS) && defined(_MSC_VER) && (_MSC_VER < 700))#  if !defined(__cdecl)#    define __cdecl cdecl#  endif#  if !defined(__far)#    define __far far#  endif#  if !defined(__huge)#    define __huge huge#  endif#  if !defined(__near)#    define __near near#  endif#endif#endif/***********************************************************************// integral and pointer types************************************************************************//* Integral types with 32 bits or more */#if !defined(UCL_UINT32_MAX)#  if (UINT_MAX >= UCL_0xffffffffL)     typedef unsigned int       ucl_uint32;     typedef int                ucl_int32;#    define UCL_UINT32_MAX      UINT_MAX#    define UCL_INT32_MAX       INT_MAX#    define UCL_INT32_MIN       INT_MIN#  elif (ULONG_MAX >= UCL_0xffffffffL)     typedef unsigned long      ucl_uint32;     typedef long               ucl_int32;#    define UCL_UINT32_MAX      ULONG_MAX#    define UCL_INT32_MAX       LONG_MAX#    define UCL_INT32_MIN       LONG_MIN#  else#    error "ucl_uint32"#  endif#endif/* ucl_uint is used like size_t */#if !defined(UCL_UINT_MAX)#  if (UINT_MAX >= UCL_0xffffffffL)     typedef unsigned int       ucl_uint;     typedef int                ucl_int;#    define UCL_UINT_MAX        UINT_MAX#    define UCL_INT_MAX         INT_MAX#    define UCL_INT_MIN         INT_MIN#  elif (ULONG_MAX >= UCL_0xffffffffL)     typedef unsigned long      ucl_uint;     typedef long               ucl_int;#    define UCL_UINT_MAX        ULONG_MAX#    define UCL_INT_MAX         LONG_MAX#    define UCL_INT_MIN         LONG_MIN#  else#    error "ucl_uint"#  endif#endif/* Memory model that allows to access memory at offsets of ucl_uint. */#if !defined(__UCL_MMODEL)#  if (UCL_UINT_MAX <= UINT_MAX)#    define __UCL_MMODEL#  elif defined(UCL_OS_DOS16) || defined(UCL_OS_OS216) || defined(UCL_OS_WIN16)#    define __UCL_MMODEL_HUGE   1#    define __UCL_MMODEL        __huge#    define ucl_uintptr_t       unsigned long#  else#    define __UCL_MMODEL#  endif#endif/* no typedef here because of const-pointer issues */#define ucl_bytep               unsigned char __UCL_MMODEL *#define ucl_charp               char __UCL_MMODEL *#define ucl_voidp               void __UCL_MMODEL *#define ucl_shortp              short __UCL_MMODEL *#define ucl_ushortp             unsigned short __UCL_MMODEL *#define ucl_uint32p             ucl_uint32 __UCL_MMODEL *#define ucl_int32p              ucl_int32 __UCL_MMODEL *#define ucl_uintp               ucl_uint __UCL_MMODEL *#define ucl_intp                ucl_int __UCL_MMODEL *#define ucl_voidpp              ucl_voidp __UCL_MMODEL *#define ucl_bytepp              ucl_bytep __UCL_MMODEL */* deprecated - use `ucl_bytep' instead of `ucl_byte *' */#define ucl_byte                unsigned char __UCL_MMODELtypedef int ucl_bool;/***********************************************************************// function types************************************************************************//* name mangling */#if !defined(__UCL_EXTERN_C)#  ifdef __cplusplus#    define __UCL_EXTERN_C      extern "C"#  else#    define __UCL_EXTERN_C      extern#  endif#endif/* calling convention */#if !defined(__UCL_CDECL)#  if defined(__GNUC__)#    define __UCL_CDECL#  elif defined(UCL_OS_DOS16) || defined(UCL_OS_OS216) || defined(UCL_OS_WIN16)#    define __UCL_CDECL         __far __cdecl#  elif defined(UCL_OS_DOS32) || defined(UCL_OS_OS2) || defined(UCL_OS_WIN32) || defined(UCL_OS_WIN64)#    define __UCL_CDECL         __cdecl#  else#    define __UCL_CDECL#  endif#endif/* DLL export information */#if !defined(__UCL_EXPORT1)#  define __UCL_EXPORT1#endif#if !defined(__UCL_EXPORT2)#  define __UCL_EXPORT2#endif/* __cdecl calling convention for public C and assembly functions */#if !defined(UCL_PUBLIC)#  define UCL_PUBLIC(_rettype)  __UCL_EXPORT1 _rettype __UCL_EXPORT2 __UCL_CDECL#endif#if !defined(UCL_EXTERN)#  define UCL_EXTERN(_rettype)  __UCL_EXTERN_C UCL_PUBLIC(_rettype)#endif#if !defined(UCL_PRIVATE)#  define UCL_PRIVATE(_rettype) static _rettype __UCL_CDECL#endif/* C++ exception specification for extern "C" function types */#if !defined(__cplusplus)#  undef UCL_NOTHROW#  define UCL_NOTHROW#elif !defined(UCL_NOTHROW)#  define UCL_NOTHROW#endif/* function types */typedef int(__UCL_CDECL *ucl_compress_t)   ( const ucl_bytep src, ucl_uint  src_len,                                        ucl_bytep dst, ucl_uintp dst_len,                                        ucl_voidp wrkmem );typedef int(__UCL_CDECL *ucl_decompress_t) ( const ucl_bytep src, ucl_uint  src_len,                                        ucl_bytep dst, ucl_uintp dst_len,                                        ucl_voidp wrkmem );typedef int(__UCL_CDECL *ucl_optimize_t)   (       ucl_bytep src, ucl_uint  src_len,                                        ucl_bytep dst, ucl_uintp dst_len,                                        ucl_voidp wrkmem );typedef int(__UCL_CDECL *ucl_compress_dict_t)(const ucl_bytep src, ucl_uint  src_len,                                        ucl_bytep dst, ucl_uintp dst_len,                                        ucl_voidp wrkmem,                                  const ucl_bytep dict, ucl_uint dict_len );typedef int(__UCL_CDECL *ucl_decompress_dict_t)(const ucl_bytep src, ucl_uint  src_len,                                        ucl_bytep dst, ucl_uintp dst_len,                                        ucl_voidp wrkmem,                                  const ucl_bytep dict, ucl_uint dict_len );/* a progress indicator callback function */typedef struct{    void (__UCL_CDECL *callback) (ucl_uint, ucl_uint, int, ucl_voidp);    ucl_voidp user;}ucl_progress_callback_t;#define ucl_progress_callback_p ucl_progress_callback_t __UCL_MMODEL */***********************************************************************// error codes and prototypes************************************************************************//* Error codes for the compression/decompression functions. Negative * values are errors, positive values will be used for special but * normal events. */#define UCL_E_OK                    0#define UCL_E_ERROR                 (-1)#define UCL_E_INVALID_ARGUMENT      (-2)#define UCL_E_OUT_OF_MEMORY         (-3)/* compression errors */#define UCL_E_NOT_COMPRESSIBLE      (-101)/* decompression errors */#define UCL_E_INPUT_OVERRUN         (-201)#define UCL_E_OUTPUT_OVERRUN        (-202)#define UCL_E_LOOKBEHIND_OVERRUN    (-203)#define UCL_E_EOF_NOT_FOUND         (-204)#define UCL_E_INPUT_NOT_CONSUMED    (-205)#define UCL_E_OVERLAP_OVERRUN       (-206)/* ucl_init() should be the first function you call. * Check the return code ! * * ucl_init() is a macro to allow checking that the library and the * compiler's view of various types are consistent. */#define ucl_init() __ucl_init2(UCL_VERSION,(int)sizeof(short),(int)sizeof(int),\    (int)sizeof(long),(int)sizeof(ucl_uint32),(int)sizeof(ucl_uint),\    (int)-1,(int)sizeof(char *),(int)sizeof(ucl_voidp),\    (int)sizeof(ucl_compress_t))UCL_EXTERN(int) __ucl_init2(ucl_uint32,int,int,int,int,int,int,int,int,int);/* version functions (useful for shared libraries) */UCL_EXTERN(ucl_uint32) ucl_version(void);UCL_EXTERN(const char *) ucl_version_string(void);UCL_EXTERN(const char *) ucl_version_date(void);UCL_EXTERN(const ucl_charp) _ucl_version_string(void);UCL_EXTERN(const ucl_charp) _ucl_version_date(void);/* string functions */UCL_EXTERN(int)ucl_memcmp(const ucl_voidp _s1, const ucl_voidp _s2, ucl_uint _len);UCL_EXTERN(ucl_voidp)ucl_memcpy(ucl_voidp _dest, const ucl_voidp _src, ucl_uint _len);UCL_EXTERN(ucl_voidp)ucl_memmove(ucl_voidp _dest, const ucl_voidp _src, ucl_uint _len);UCL_EXTERN(ucl_voidp)ucl_memset(ucl_voidp _s, int _c, ucl_uint _len);/* checksum functions */UCL_EXTERN(ucl_uint32)ucl_adler32(ucl_uint32 _adler, const ucl_bytep _buf, ucl_uint _len);UCL_EXTERN(ucl_uint32)ucl_crc32(ucl_uint32 _c, const ucl_bytep _buf, ucl_uint _len);UCL_EXTERN(const ucl_uint32p)ucl_get_crc32_table(void);/* memory allocation hooks */typedef ucl_voidp (__UCL_CDECL *ucl_malloc_hook_t) (ucl_uint);typedef void (__UCL_CDECL *ucl_free_hook_t) (ucl_voidp);UCL_EXTERN(void)ucl_set_malloc_hooks(ucl_malloc_hook_t, ucl_free_hook_t);UCL_EXTERN(void)ucl_get_malloc_hooks(ucl_malloc_hook_t*, ucl_free_hook_t*);/* memory allocation functions */UCL_EXTERN(ucl_voidp) ucl_malloc(ucl_uint);UCL_EXTERN(ucl_voidp) ucl_alloc(ucl_uint, ucl_uint);UCL_EXTERN(void) ucl_free(ucl_voidp);/* misc. */UCL_EXTERN(ucl_bool) ucl_assert(int _expr);UCL_EXTERN(int) _ucl_config_check(void);typedef union { ucl_bytep p; ucl_uint u; } __ucl_pu_u;typedef union { ucl_bytep p; ucl_uint32 u32; } __ucl_pu32_u;/* align a char pointer on a boundary that is a multiple of `size' */UCL_EXTERN(unsigned) __ucl_align_gap(const ucl_voidp _ptr, ucl_uint _size);#define UCL_PTR_ALIGN_UP(_ptr,_size) \    ((_ptr) + (ucl_uint) __ucl_align_gap((const ucl_voidp)(_ptr),(ucl_uint)(_size)))#ifdef __cplusplus} /* extern "C" */#endif#endif /* already included */

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品一区二区三区在线观看| 亚洲综合激情另类小说区| 欧美日韩黄色影视| 欧洲在线/亚洲| 在线精品视频一区二区| 欧洲另类一二三四区| 欧美性受极品xxxx喷水| 欧美影院一区二区| 欧美精品视频www在线观看| 欧美韩日一区二区三区四区| 久久新电视剧免费观看| 久久久久久电影| 国产精品全国免费观看高清| 中文字幕亚洲欧美在线不卡| 亚洲三级电影网站| 性做久久久久久免费观看| 图片区日韩欧美亚洲| 美女精品自拍一二三四| 国产美女娇喘av呻吟久久| 国产成+人+日韩+欧美+亚洲| aaa欧美日韩| 欧美日韩在线播放一区| 日韩一区二区在线看| 久久久电影一区二区三区| 国产精品高潮呻吟久久| 亚洲一区二区美女| 日本成人中文字幕| 国产成人亚洲精品狼色在线| av中文字幕一区| 欧美午夜精品理论片a级按摩| 69p69国产精品| xfplay精品久久| 中文字幕中文字幕在线一区 | 国产99久久精品| 成人一区二区三区视频| 在线观看欧美黄色| 日韩精品中文字幕一区| 国产精品入口麻豆九色| 亚洲成人精品在线观看| 精品一区二区三区在线视频| 99国产精品国产精品毛片| 欧美日本在线看| 久久久久久**毛片大全| 亚洲小说春色综合另类电影| 极品少妇xxxx精品少妇偷拍 | 欧美日韩国产电影| 2020国产精品自拍| 亚洲最大的成人av| 国产资源精品在线观看| 在线亚洲精品福利网址导航| 久久在线免费观看| 亚洲一区二区成人在线观看| 韩国理伦片一区二区三区在线播放| 99精品黄色片免费大全| 日韩亚洲国产中文字幕欧美| 亚洲三级电影网站| 国产又粗又猛又爽又黄91精品| 色999日韩国产欧美一区二区| 日韩午夜小视频| 亚洲人吸女人奶水| 国产乱码一区二区三区| 欧美色精品在线视频| 亚洲国产成人在线| 另类小说综合欧美亚洲| 91天堂素人约啪| 2024国产精品| 青青草国产成人av片免费| 色婷婷综合久久久中文字幕| 国产亚洲精品久| 五月婷婷综合在线| 99久久99精品久久久久久| 久久综合九色综合97婷婷女人| 亚洲第一搞黄网站| 99精品视频中文字幕| 久久久蜜桃精品| 美女在线视频一区| 欧美久久久一区| 日韩久久一区二区| 大白屁股一区二区视频| 欧美精品一区二区三区蜜臀| 婷婷亚洲久悠悠色悠在线播放| 免费高清视频精品| 韩国一区二区在线观看| 91福利国产成人精品照片| 国产欧美日韩亚州综合 | 亚洲国产婷婷综合在线精品| 99麻豆久久久国产精品免费 | 亚洲图片另类小说| 国产成人av资源| 久久久久久一级片| 国内精品伊人久久久久av影院 | 亚洲综合久久久| heyzo一本久久综合| 国产精品人人做人人爽人人添| 国内精品第一页| 精品美女一区二区| 日本大胆欧美人术艺术动态| 91精品在线麻豆| 午夜精品久久久久久久蜜桃app| 色综合天天在线| 亚洲日本在线天堂| 色系网站成人免费| 亚洲自拍偷拍九九九| 色成年激情久久综合| 一二三区精品福利视频| 91官网在线免费观看| 一区二区三区四区高清精品免费观看| 97久久超碰国产精品| 日韩一区日韩二区| 91免费看片在线观看| 亚洲精品一二三| 欧美系列在线观看| 天天综合色天天| 日韩一区二区精品| 精品午夜久久福利影院| 久久久久久久久久看片| 成人高清免费观看| 亚洲美女免费在线| 欧美日韩一区二区三区高清| 日本一道高清亚洲日美韩| 日韩精品一区二区三区四区视频| 国产一区二区在线电影| 国产免费成人在线视频| 91亚洲精华国产精华精华液| 一区二区久久久久久| 欧美精品黑人性xxxx| 久久99精品久久久久久| 国产日韩欧美a| 色综合亚洲欧洲| 午夜精品在线视频一区| 精品少妇一区二区三区 | 欧美老女人在线| 久久se这里有精品| 国产精品国产精品国产专区不蜜| 在线精品观看国产| 久久精品国产免费| 中国av一区二区三区| 欧美日韩亚洲综合| 国内成人精品2018免费看| 亚洲日本在线a| 欧美一区二区三区四区久久| 国产成人无遮挡在线视频| 亚洲制服丝袜av| 欧美mv日韩mv国产网站| 色综合天天综合网天天看片| 免费成人av在线| 18欧美乱大交hd1984| 欧美精品久久久久久久久老牛影院| 国产一区二区三区精品欧美日韩一区二区三区| 国产精品免费aⅴ片在线观看| 欧美三级电影精品| 韩国av一区二区三区四区 | 成人综合在线视频| 亚洲国产精品自拍| 亚洲国产精品精华液ab| 欧美精品粉嫩高潮一区二区| 风流少妇一区二区| 丝瓜av网站精品一区二区| 国产日韩欧美精品综合| 91精品中文字幕一区二区三区| 99免费精品在线| 国产一区二区三区四区五区入口 | 9l国产精品久久久久麻豆| 日韩极品在线观看| 最近中文字幕一区二区三区| 日韩亚洲欧美中文三级| 91国内精品野花午夜精品| 国产一区999| 午夜精品在线视频一区| 中文字幕亚洲在| 精品国精品国产尤物美女| 精品视频123区在线观看| www.欧美日韩国产在线| 久久99精品久久只有精品| 亚洲午夜在线视频| 国产精品久久久久7777按摩| 欧美成人高清电影在线| 欧美日韩亚洲综合在线 欧美亚洲特黄一级| 成人永久aaa| 久久99国产精品久久99果冻传媒| 亚洲成人动漫一区| 一区二区三区免费看视频| 国产精品美女一区二区三区| 精品国产髙清在线看国产毛片| 欧美偷拍一区二区| 91片黄在线观看| 粉嫩av一区二区三区在线播放 | 欧美高清视频一二三区| 91九色最新地址| 99国产精品一区| 风间由美一区二区av101| 国产精品自拍av| 久久99国产精品久久99 | 在线观看成人免费视频| 99国产麻豆精品| av亚洲产国偷v产偷v自拍| 粗大黑人巨茎大战欧美成人| 国产成+人+日韩+欧美+亚洲| 国产福利视频一区二区三区| 国产在线观看免费一区|