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

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

?? png.h

?? 一個非常有用的開源代碼
?? H
?? 第 1 頁 / 共 5 頁
字號:
 * *       Glenn Randers-Pehrson *       libpng maintainer *       PNG Development Group */#ifndef PNG_H#define PNG_H/* This is not the place to learn how to use libpng.  The file libpng.txt * describes how to use libpng, and the file example.c summarizes it * with some code on which to build.  This file is useful for looking * at the actual function definitions and structure components. *//* Version information for png.h - this should match the version in png.c */#define PNG_LIBPNG_VER_STRING "1.2.8"#define PNG_HEADER_VERSION_STRING \   " libpng version 1.2.8 - December 3, 2004 (header)\n"#define PNG_LIBPNG_VER_SONUM   0#define PNG_LIBPNG_VER_DLLNUM  13/* These should match the first 3 components of PNG_LIBPNG_VER_STRING: */#define PNG_LIBPNG_VER_MAJOR   1#define PNG_LIBPNG_VER_MINOR   2#define PNG_LIBPNG_VER_RELEASE 8/* This should match the numeric part of the final component of * PNG_LIBPNG_VER_STRING, omitting any leading zero: */#define PNG_LIBPNG_VER_BUILD  0/* Release Status */#define PNG_LIBPNG_BUILD_ALPHA    1#define PNG_LIBPNG_BUILD_BETA     2#define PNG_LIBPNG_BUILD_RC       3#define PNG_LIBPNG_BUILD_STABLE   4#define PNG_LIBPNG_BUILD_RELEASE_STATUS_MASK 7  /* Release-Specific Flags */#define PNG_LIBPNG_BUILD_PATCH    8 /* Can be OR'ed with                                       PNG_LIBPNG_BUILD_STABLE only */#define PNG_LIBPNG_BUILD_PRIVATE 16 /* Cannot be OR'ed with                                       PNG_LIBPNG_BUILD_SPECIAL */#define PNG_LIBPNG_BUILD_SPECIAL 32 /* Cannot be OR'ed with                                       PNG_LIBPNG_BUILD_PRIVATE */#define PNG_LIBPNG_BUILD_BASE_TYPE PNG_LIBPNG_BUILD_STABLE/* Careful here.  At one time, Guy wanted to use 082, but that would be octal. * We must not include leading zeros. * Versions 0.7 through 1.0.0 were in the range 0 to 100 here (only * version 1.0.0 was mis-numbered 100 instead of 10000).  From * version 1.0.1 it's    xxyyzz, where x=major, y=minor, z=release */#define PNG_LIBPNG_VER 10208 /* 1.2.8 */#ifndef PNG_VERSION_INFO_ONLY/* include the compression library's header */#include "zlib.h"#endif/* include all user configurable info, including optional assembler routines */#include "pngconf.h"/* * Added at libpng-1.2.8 *//* Ref MSDN: Private as priority over Special * VS_FF_PRIVATEBUILD File *was not* built using standard release * procedures. If this value is given, the StringFileInfo block must * contain a PrivateBuild string.  * * VS_FF_SPECIALBUILD File *was* built by the original company using * standard release procedures but is a variation of the standard * file of the same version number. If this value is given, the * StringFileInfo block must contain a SpecialBuild string.  */#if defined(PNG_USER_PRIVATEBUILD)#  define PNG_LIBPNG_BUILD_TYPE PNG_LIBPNG_BUILD_BASE_TYPE | \          PNG_LIBPNG_BUILD_PRIVATE#else#  if defined(PNG_LIBPNG_SPECIALBUILD)#    define PNG_LIBPNG_BUILD_TYPE PNG_LIBPNG_BUILD_BASE_TYPE | \            PNG_LIBPNG_BUILD_SPECIAL#  else#    define PNG_LIBPNG_BUILD_TYPE PNG_LIBPNG_BUILD_BASE_TYPE#  endif#endif#ifndef PNG_VERSION_INFO_ONLY/* Inhibit C++ name-mangling for libpng functions but not for system calls. */#ifdef __cplusplusextern "C" {#endif /* __cplusplus *//* This file is arranged in several sections.  The first section contains * structure and type definitions.  The second section contains the external * library functions, while the third has the internal library functions, * which applications aren't expected to use directly. */#ifndef PNG_NO_TYPECAST_NULL#define int_p_NULL                (int *)NULL#define png_bytep_NULL            (png_bytep)NULL#define png_bytepp_NULL           (png_bytepp)NULL#define png_doublep_NULL          (png_doublep)NULL#define png_error_ptr_NULL        (png_error_ptr)NULL#define png_flush_ptr_NULL        (png_flush_ptr)NULL#define png_free_ptr_NULL         (png_free_ptr)NULL#define png_infopp_NULL           (png_infopp)NULL#define png_malloc_ptr_NULL       (png_malloc_ptr)NULL#define png_read_status_ptr_NULL  (png_read_status_ptr)NULL#define png_rw_ptr_NULL           (png_rw_ptr)NULL#define png_structp_NULL          (png_structp)NULL#define png_uint_16p_NULL         (png_uint_16p)NULL#define png_voidp_NULL            (png_voidp)NULL#define png_write_status_ptr_NULL (png_write_status_ptr)NULL#else#define int_p_NULL                NULL#define png_bytep_NULL            NULL#define png_bytepp_NULL           NULL#define png_doublep_NULL          NULL#define png_error_ptr_NULL        NULL#define png_flush_ptr_NULL        NULL#define png_free_ptr_NULL         NULL#define png_infopp_NULL           NULL#define png_malloc_ptr_NULL       NULL#define png_read_status_ptr_NULL  NULL#define png_rw_ptr_NULL           NULL#define png_structp_NULL          NULL#define png_uint_16p_NULL         NULL#define png_voidp_NULL            NULL#define png_write_status_ptr_NULL NULL#endif/* variables declared in png.c - only it needs to define PNG_NO_EXTERN */#if !defined(PNG_NO_EXTERN) || defined(PNG_ALWAYS_EXTERN)/* Version information for C files, stored in png.c.  This had better match * the version above. */#ifdef PNG_USE_GLOBAL_ARRAYSPNG_EXPORT_VAR (const char) png_libpng_ver[18];  /* need room for 99.99.99beta99z */#else#define png_libpng_ver png_get_header_ver(NULL)#endif#ifdef PNG_USE_GLOBAL_ARRAYS/* This was removed in version 1.0.5c *//* Structures to facilitate easy interlacing.  See png.c for more details */PNG_EXPORT_VAR (const int FARDATA) png_pass_start[7];PNG_EXPORT_VAR (const int FARDATA) png_pass_inc[7];PNG_EXPORT_VAR (const int FARDATA) png_pass_ystart[7];PNG_EXPORT_VAR (const int FARDATA) png_pass_yinc[7];PNG_EXPORT_VAR (const int FARDATA) png_pass_mask[7];PNG_EXPORT_VAR (const int FARDATA) png_pass_dsp_mask[7];#ifdef PNG_HAVE_ASSEMBLER_COMBINE_ROWPNG_EXPORT_VAR (const int FARDATA) png_pass_width[7];#endif/* This isn't currently used.  If you need it, see png.c for more details.PNG_EXPORT_VAR (const int FARDATA) png_pass_height[7];*/#endif#endif /* PNG_NO_EXTERN *//* Three color definitions.  The order of the red, green, and blue, (and the * exact size) is not important, although the size of the fields need to * be png_byte or png_uint_16 (as defined below). */typedef struct png_color_struct{   png_byte red;   png_byte green;   png_byte blue;} png_color;typedef png_color FAR * png_colorp;typedef png_color FAR * FAR * png_colorpp;typedef struct png_color_16_struct{   png_byte index;    /* used for palette files */   png_uint_16 red;   /* for use in red green blue files */   png_uint_16 green;   png_uint_16 blue;   png_uint_16 gray;  /* for use in grayscale files */} png_color_16;typedef png_color_16 FAR * png_color_16p;typedef png_color_16 FAR * FAR * png_color_16pp;typedef struct png_color_8_struct{   png_byte red;   /* for use in red green blue files */   png_byte green;   png_byte blue;   png_byte gray;  /* for use in grayscale files */   png_byte alpha; /* for alpha channel files */} png_color_8;typedef png_color_8 FAR * png_color_8p;typedef png_color_8 FAR * FAR * png_color_8pp;/* * The following two structures are used for the in-core representation * of sPLT chunks. */typedef struct png_sPLT_entry_struct{   png_uint_16 red;   png_uint_16 green;   png_uint_16 blue;   png_uint_16 alpha;   png_uint_16 frequency;} png_sPLT_entry;typedef png_sPLT_entry FAR * png_sPLT_entryp;typedef png_sPLT_entry FAR * FAR * png_sPLT_entrypp;/*  When the depth of the sPLT palette is 8 bits, the color and alpha samples *  occupy the LSB of their respective members, and the MSB of each member *  is zero-filled.  The frequency member always occupies the full 16 bits. */typedef struct png_sPLT_struct{   png_charp name;           /* palette name */   png_byte depth;           /* depth of palette samples */   png_sPLT_entryp entries;  /* palette entries */   png_int_32 nentries;      /* number of palette entries */} png_sPLT_t;typedef png_sPLT_t FAR * png_sPLT_tp;typedef png_sPLT_t FAR * FAR * png_sPLT_tpp;#ifdef PNG_TEXT_SUPPORTED/* png_text holds the contents of a text/ztxt/itxt chunk in a PNG file, * and whether that contents is compressed or not.  The "key" field * points to a regular zero-terminated C string.  The "text", "lang", and * "lang_key" fields can be regular C strings, empty strings, or NULL pointers. * However, the * structure returned by png_get_text() will always contain * regular zero-terminated C strings (possibly empty), never NULL pointers, * so they can be safely used in printf() and other string-handling functions. */typedef struct png_text_struct{   int  compression;       /* compression value:                             -1: tEXt, none                              0: zTXt, deflate                              1: iTXt, none                              2: iTXt, deflate  */   png_charp key;          /* keyword, 1-79 character description of "text" */   png_charp text;         /* comment, may be an empty string (ie "")                              or a NULL pointer */   png_size_t text_length; /* length of the text string */#ifdef PNG_iTXt_SUPPORTED   png_size_t itxt_length; /* length of the itxt string */   png_charp lang;         /* language code, 0-79 characters                              or a NULL pointer */   png_charp lang_key;     /* keyword translated UTF-8 string, 0 or more                              chars or a NULL pointer */#endif} png_text;typedef png_text FAR * png_textp;typedef png_text FAR * FAR * png_textpp;#endif/* Supported compression types for text in PNG files (tEXt, and zTXt). * The values of the PNG_TEXT_COMPRESSION_ defines should NOT be changed. */#define PNG_TEXT_COMPRESSION_NONE_WR -3#define PNG_TEXT_COMPRESSION_zTXt_WR -2#define PNG_TEXT_COMPRESSION_NONE    -1#define PNG_TEXT_COMPRESSION_zTXt     0#define PNG_ITXT_COMPRESSION_NONE     1#define PNG_ITXT_COMPRESSION_zTXt     2#define PNG_TEXT_COMPRESSION_LAST     3  /* Not a valid value *//* png_time is a way to hold the time in an machine independent way. * Two conversions are provided, both from time_t and struct tm.  There * is no portable way to convert to either of these structures, as far * as I know.  If you know of a portable way, send it to me.  As a side * note - PNG has always been Year 2000 compliant! */typedef struct png_time_struct{   png_uint_16 year; /* full year, as in, 1995 */   png_byte month;   /* month of year, 1 - 12 */   png_byte day;     /* day of month, 1 - 31 */   png_byte hour;    /* hour of day, 0 - 23 */   png_byte minute;  /* minute of hour, 0 - 59 */   png_byte second;  /* second of minute, 0 - 60 (for leap seconds) */} png_time;typedef png_time FAR * png_timep;typedef png_time FAR * FAR * png_timepp;#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)/* png_unknown_chunk is a structure to hold queued chunks for which there is * no specific support.  The idea is that we can use this to queue * up private chunks for output even though the library doesn't actually * know about their semantics. */typedef struct png_unknown_chunk_t{

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩电影在线| 成人91在线观看| 高清不卡一二三区| 色爱区综合激月婷婷| 国产在线播放一区三区四| 国产精品自拍网站| www.日本不卡| 精品精品欲导航| 亚洲品质自拍视频| 国产成人av影院| 日韩视频在线你懂得| 亚洲免费在线视频| 成人精品鲁一区一区二区| 欧美一区二区黄色| 亚洲国产精品一区二区www | 91精品国产综合久久福利软件| 国产亚洲精品久| 精一区二区三区| 欧美一卡在线观看| 日韩高清国产一区在线| 欧美网站一区二区| 亚洲国产精品天堂| 欧美日韩一区二区在线观看视频| 日韩一区欧美小说| 99久久精品免费看国产免费软件| 亚洲国产经典视频| 粉嫩欧美一区二区三区高清影视| 久久久青草青青国产亚洲免观| 蜜桃精品视频在线观看| 91精品国产综合久久国产大片| 亚洲h在线观看| 欧美日韩国产片| 视频在线观看一区| 欧美精品18+| 美国十次了思思久久精品导航| 日韩一区二区在线观看视频 | 欧美精品1区2区| 日韩精品高清不卡| 在线综合+亚洲+欧美中文字幕| 午夜精品一区二区三区三上悠亚| 欧美日韩黄视频| 蜜臀a∨国产成人精品| 日韩一区二区三区观看| 韩国欧美一区二区| 欧美高清在线一区二区| 色综合激情五月| 午夜成人免费视频| 欧美变态口味重另类| 国产成人午夜精品影院观看视频| 国产女主播一区| 成人av资源在线观看| 一区二区三区四区在线播放| 欧美日韩成人一区| 久久国产免费看| 国产精品视频一二| 色欲综合视频天天天| 日本不卡一二三区黄网| 国产视频亚洲色图| 色94色欧美sute亚洲13| 久久国产精品72免费观看| 亚洲国产电影在线观看| 欧美色大人视频| 国内成人自拍视频| 一区二区三区在线视频免费| 日韩欧美国产一区二区在线播放 | 美女免费视频一区二区| 国产精品欧美综合在线| 欧美日韩一区小说| 国产91精品一区二区| 亚洲国产日韩精品| 国产亚洲成年网址在线观看| 日本韩国欧美在线| 国内精品国产成人| 亚洲精品美国一| 精品国产免费人成在线观看| 91丨porny丨户外露出| 美日韩一级片在线观看| 亚洲男人的天堂av| 久久久久久久久久久久久久久99 | 免费在线观看一区二区三区| 国产精品久久毛片a| 精品日韩在线一区| 在线一区二区三区四区| 国产丶欧美丶日本不卡视频| 日韩主播视频在线| 亚洲精选免费视频| 国产欧美日韩另类一区| 日韩欧美一卡二卡| 欧美日韩极品在线观看一区| 色综合天天综合色综合av | 国产真实乱子伦精品视频| 亚洲精品乱码久久久久久久久 | 2021久久国产精品不只是精品| 色综合久久中文综合久久97 | 欧美精品日韩综合在线| 91美女精品福利| 国产精品一区二区你懂的| 婷婷久久综合九色国产成人| 一区二区三区在线观看欧美| 国产日韩欧美高清在线| 欧美成人一区二区| 日韩一区二区精品葵司在线| 欧美日本精品一区二区三区| 一本大道av伊人久久综合| av电影天堂一区二区在线| 成人精品视频.| 成人一级片在线观看| 激情都市一区二区| 蜜臀精品一区二区三区在线观看 | 成人免费av网站| 大桥未久av一区二区三区中文| 国产麻豆一精品一av一免费| 看电视剧不卡顿的网站| 久久精品国产澳门| 麻豆成人久久精品二区三区小说| 美女任你摸久久| 国产在线播放一区三区四| 国产乱国产乱300精品| 国产一区二区三区在线观看精品 | 精品一区二区三区的国产在线播放| 天使萌一区二区三区免费观看| 亚洲 欧美综合在线网络| 亚洲小说春色综合另类电影| 亚洲五码中文字幕| 丝袜美腿亚洲一区二区图片| 五月天中文字幕一区二区| 奇米亚洲午夜久久精品| 国精产品一区一区三区mba桃花 | 国产成人在线色| 成人国产亚洲欧美成人综合网 | 国产成人在线看| 成人精品免费看| 色老汉av一区二区三区| 欧美日本视频在线| 国产午夜精品一区二区三区嫩草| 久久伊人中文字幕| 亚洲激情自拍视频| 琪琪久久久久日韩精品| 国产99久久久国产精品潘金网站| 波多野结衣一区二区三区 | 日韩**一区毛片| 国产精品99久久久久久久女警| 波多野结衣91| 欧美理论片在线| 久久久噜噜噜久久中文字幕色伊伊| 中文字幕欧美激情| 亚洲第一会所有码转帖| 久久激五月天综合精品| 97aⅴ精品视频一二三区| 91精品欧美久久久久久动漫| 国产精品美女一区二区| 天堂成人免费av电影一区| 风间由美一区二区av101 | 91精彩视频在线| 日韩免费观看高清完整版| 亚洲女人****多毛耸耸8| 捆绑调教美女网站视频一区| 99视频热这里只有精品免费| 777a∨成人精品桃花网| 成人免费一区二区三区视频| 六月丁香综合在线视频| 欧美在线短视频| 国产网站一区二区三区| 天天综合网天天综合色| 99精品热视频| 精品国产sm最大网站免费看| 亚洲国产一区二区三区| 成人app在线| 久久影院午夜片一区| 日韩二区三区在线观看| 色综合久久六月婷婷中文字幕| 亚洲精品一区二区三区四区高清 | 一区二区三区精品视频| 国产成人自拍高清视频在线免费播放| 欧美日韩国产一级片| 亚洲欧洲日韩一区二区三区| 国内精品在线播放| 日韩欧美黄色影院| 丝袜亚洲另类欧美| 欧美私人免费视频| 亚洲免费av高清| 91在线观看视频| 国产精品初高中害羞小美女文| 韩国精品在线观看| 日韩美女视频在线| 美女脱光内衣内裤视频久久影院| 欧美日韩视频在线一区二区| 亚洲男同性视频| 色老汉一区二区三区| 亚洲伦在线观看| 91小视频免费观看| 综合久久久久综合| av电影在线不卡| 亚洲欧美国产77777| 在线中文字幕不卡| 亚洲影视在线播放| 欧美日韩国产精选| 美女一区二区在线观看| 精品国产凹凸成av人网站| 国产一区二区三区在线观看免费 |