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

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

?? libmng_conf.h

?? 一款最完整的工業組態軟源代碼
?? H
字號:
/* ************************************************************************** */
/* *                                                                        * */
/* * project   : libmng                                                     * */
/* * file      : libmng_conf.h             copyright (c) G.Juyn 2000-2004   * */
/* * version   : 1.0.7                                                      * */
/* *                                                                        * */
/* * purpose   : main configuration file                                    * */
/* *                                                                        * */
/* * author    : G.Juyn                                                     * */
/* *                                                                        * */
/* * comment   : The configuration file. Change this to include/exclude     * */
/* *             the options you want or do not want in libmng.             * */
/* *                                                                        * */
/* * changes   : 0.5.2 - 06/02/2000 - G.Juyn                                * */
/* *             - separated configuration-options into this file           * */
/* *             - changed to most likely configuration (?)                 * */
/* *             0.5.2 - 06/03/2000 - G.Juyn                                * */
/* *             - changed options to create a standard so-library          * */
/* *               with everything enabled                                  * */
/* *             0.5.2 - 06/04/2000 - G.Juyn                                * */
/* *             - changed options to create a standard win32-dll           * */
/* *               with everything enabled                                  * */
/* *                                                                        * */
/* *             0.9.2 - 08/05/2000 - G.Juyn                                * */
/* *             - changed file-prefixes                                    * */
/* *                                                                        * */
/* *             0.9.3 - 08/12/2000 - G.Juyn                                * */
/* *             - added workaround for faulty PhotoShop iCCP chunk         * */
/* *             0.9.3 - 09/16/2000 - G.Juyn                                * */
/* *             - removed trace-options from default SO/DLL builds         * */
/* *                                                                        * */
/* *             1.0.4 - 06/22/2002 - G.Juyn                                * */
/* *             - B526138 - returned IJGSRC6B calling convention to        * */
/* *               default for MSVC                                         * */
/* *                                                                        * */
/* *             1.0.5 - 09/14/2002 - G.Juyn                                * */
/* *             - added event handling for dynamic MNG                     * */
/* *             - added 'supports' call to check function availability     * */
/* *                                                                        * */
/* *             1.0.6 - 06/22/2002 - G.R-P                                 * */
/* *             - added MNG_NO_INCLUDE_JNG conditional                     * */
/* *             - added MNG_SKIPCHUNK_evNT conditional                     * */
/* *             1.0.6 - 07/14/2002 - G.R-P                                 * */
/* *             - added MNG_NO_SUPPORT_FUNCQUERY conditional               * */
/* *                                                                        * */
/* *             1.0.7 - 03/07/2004 - G.R-P                                 * */
/* *             - added MNG_VERSION_QUERY_SUPPORT_ conditional             * */
/* *                                                                        * */
/* ************************************************************************** */


#if defined(__BORLANDC__) && defined(MNG_STRICT_ANSI)
#pragma option -A                      /* force ANSI-C */
#endif

#ifndef _libmng_conf_h_
#define _libmng_conf_h_

#ifdef MNG_MOZILLA_CFG
#include "special\mozcfg\mozlibmngconf.h"
#endif

/* ************************************************************************** */
/* *                                                                        * */
/* *  User-selectable compile-time options                                  * */
/* *                                                                        * */
/* ************************************************************************** */

/* enable exactly one(1) of the MNG-(sub)set selectors */
/* use this to select which (sub)set of the MNG specification you wish
   to support */
/* generally you'll want full support as the library provides it automatically
   for you! if you're really strung on memory-requirements you can opt
   to enable less support (but it's just NOT a good idea!) */
/* NOTE that this isn't actually implemented yet */

#if !defined(MNG_SUPPORT_FULL) && !defined(MNG_SUPPORT_LC) && !defined(MNG_SUPPORT_VLC)
#define MNG_SUPPORT_FULL
/* #define MNG_SUPPORT_LC */
/* #define MNG_SUPPORT_VLC */
#endif

/* ************************************************************************** */

/* enable JPEG support if required */
/* use this to enable the JNG support routines */
/* this requires an external jpeg package;
   currently only IJG's jpgsrc6b is supported! */
/* NOTE that the IJG code can be either 8- or 12-bit (eg. not both);
   so choose the one you've defined in jconfig.h; if you don't know what
   the heck I'm talking about, just leave it at 8-bit support (thank you!) */

#ifndef MNG_NO_INCLUDE_JNG
#ifdef MNG_SUPPORT_FULL                /* full support includes JNG */
#define MNG_SUPPORT_IJG6B
#endif

#ifndef MNG_SUPPORT_IJG6B
#if defined(MNG_BUILD_SO) || defined(MNG_USE_SO) || defined(MNG_BUILD_DLL) || defined(MNG_USE_DLL)
#define MNG_SUPPORT_IJG6B
#endif
#endif

#if defined(MNG_SUPPORT_IJG6B) && !defined(MNG_SUPPORT_JPEG8) && !defined(MNG_SUPPORT_JPEG12)
#define MNG_SUPPORT_JPEG8
/* #define MNG_SUPPORT_JPEG12 */
#endif

/* The following is required to export the IJG routines from the DLL in
   the Windows-standard calling convention;
   currently this only works for Borland C++ !!! */

#if defined(MNG_BUILD_DLL) || defined(MNG_USE_DLL)
#if defined(MNG_SUPPORT_IJG6B) && defined(__BORLANDC__)
#define MNG_DEFINE_JPEG_STDCALL
#endif
#endif
#endif

/* ************************************************************************** */

/* enable required high-level functions */
/* use this to select the high-level functions you require */
/* if you only need to display a MNG, disable write support! */
/* if you only need to examine a MNG, disable write & display support! */
/* if you only need to copy a MNG, disable display support! */
/* if you only need to create a MNG, disable read & display support! */
/* NOTE that turning all options off will be very unuseful! */

#if !defined(MNG_SUPPORT_READ) && !defined(MNG_SUPPORT_WRITE) && !defined(MNG_SUPPORT_DISPLAY)
#define MNG_SUPPORT_READ
#if defined(MNG_BUILD_SO) || defined(MNG_USE_SO) || defined(MNG_BUILD_DLL) || defined(MNG_USE_DLL)
#define MNG_SUPPORT_WRITE
#endif
#define MNG_SUPPORT_DISPLAY
#endif

/* ************************************************************************** */

/* enable chunk access functions */
/* use this to select whether you need access to the individual chunks */
/* useful if you want to examine a read MNG (you'll also need MNG_STORE_CHUNKS !)*/
/* required if you need to create & write a new MNG! */

#ifndef MNG_ACCESS_CHUNKS
#if defined(MNG_BUILD_SO) || defined(MNG_USE_SO) || defined(MNG_BUILD_DLL) || defined(MNG_USE_DLL)
#define MNG_ACCESS_CHUNKS
#endif
#endif

/* ************************************************************************** */

/* enable exactly one(1) of the color-management functionality selectors */
/* use this to select the level of automatic color support */
/* MNG_FULL_CMS requires the lcms (little cms) external package ! */
/* if you want your own app (or the OS) to handle color-management
   select MNG_APP_CMS */

#define MNG_GAMMA_ONLY
/* #define MNG_FULL_CMS */
/* #define MNG_APP_CMS */

/* ************************************************************************** */

/* enable automatic dithering */
/* use this if you need dithering support to convert high-resolution
   images to a low-resolution output-device */
/* NOTE that this is not supported yet */

/* #define MNG_AUTO_DITHER */

/* ************************************************************************** */

/* enable whether chunks should be stored for reference later */
/* use this if you need to examine the chunks of a MNG you have read,
   or (re-)write a MNG you have read */
/* turn this off if you want to reduce memory-consumption */

#ifndef MNG_STORE_CHUNKS
#if defined(MNG_BUILD_SO) || defined(MNG_USE_SO) || defined(MNG_BUILD_DLL) || defined(MNG_USE_DLL)
#define MNG_STORE_CHUNKS
#endif
#endif

/* ************************************************************************** */

/* enable internal memory management (if your compiler supports it) */
/* use this if your compiler supports the 'standard' memory functions
   (calloc & free), and you want the library to use these functions and not
   bother your app with memory-callbacks */

/* #define MNG_INTERNAL_MEMMNGMT */

/* ************************************************************************** */

/* enable internal tracing-functionality (manual debugging purposes) */
/* use this if you have trouble location bugs or problems */
/* NOTE that you'll need to specify the trace callback function! */

/* #define MNG_SUPPORT_TRACE */

/* ************************************************************************** */

/* enable extended error- and trace-telltaling */
/* use this if you need explanatory messages with errors and/or tracing */

#if !defined(MNG_ERROR_TELLTALE) && !defined(MNG_TRACE_TELLTALE)
#if defined(MNG_BUILD_SO) || defined(MNG_USE_SO) || defined(MNG_BUILD_DLL) || defined(MNG_USE_DLL)
#define MNG_ERROR_TELLTALE
#define MNG_TRACE_TELLTALE
#endif
#endif

/* ************************************************************************** */

/* enable big-endian support  */
/* enable this if you're on an architecture that supports big-endian reads
   and writes that aren't word-aligned */
/* according to reliable sources this only works for PowerPC (bigendian mode)
   and 680x0 */

/* #define MNG_BIGENDIAN_SUPPORTED */

/* ************************************************************************** */
/* enable 'version' functions */
#if !defined(MNG_VERSION_QUERY_SUPPORT) && \
    !defined(MNG_NO_VERSION_QUERY_SUPPORT)
#define MNG_VERSION_QUERY_SUPPORT
#endif

/* enable 'supports' function */
/* use this if you need to query the availability of functions at runtime;
   useful for apps that dynamically load the library and that need specific
   functions */

#if !defined(MNG_NO_SUPPORT_FUNCQUERY) && !defined(MNG_SUPPORT_FUNCQUERY)
#if defined(MNG_BUILD_SO) || defined(MNG_USE_SO) || \
    defined(MNG_BUILD_DLL) || defined(MNG_USE_DLL)
#define MNG_SUPPORT_FUNCQUERY
#endif
#endif

/* ************************************************************************** */

/* enable dynamic MNG features */
/* use this if you would like to have dynamic support for specifically
   designed MNGs; eg. this is useful for 'rollover' effects such as common
   on the world wide web */

#ifndef MNG_SUPPORT_DYNAMICMNG
#if defined(MNG_BUILD_SO) || defined(MNG_USE_SO) || defined(MNG_BUILD_DLL) || defined(MNG_USE_DLL)
#define MNG_SUPPORT_DYNAMICMNG
#endif
#endif
#ifndef MNG_SUPPORT_DYNAMICMNG
#ifndef MNG_SKIPCHUNK_evNT
#define MNG_SKIPCHUNK_evNT
#endif
#endif

#ifdef MNG_INCLUDE_JNG
#ifndef MNG_NO_ACCESS_JPEG
#ifndef MNG_ACCESS_JPEG
#define MNG_ACCESS_JPEG
#endif
#endif
#endif

#ifdef MNG_INCLUDE_ZLIB
#ifndef MNG_NO_ACCESS_ZLIB
#ifndef MNG_ACCESS_ZLIB
#define MNG_ACCESS_ZLIB
#endif
#endif
#endif

/* ************************************************************************** */
/* *                                                                        * */
/* *  End of user-selectable compile-time options                           * */
/* *                                                                        * */
/* ************************************************************************** */

#endif /* _libmng_conf_h_ */

/* ************************************************************************** */
/* * end of file                                                            * */
/* ************************************************************************** */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产99久久久久| 欧美成人一区二区三区| 欧美一区二视频| 亚洲欧美另类在线| 久久国产麻豆精品| 在线免费不卡视频| 国产日韩精品一区二区三区在线| 亚洲成人av福利| 色综合av在线| 国产嫩草影院久久久久| 男女男精品视频| 欧美人与性动xxxx| 亚洲激情男女视频| 成人黄色电影在线| 久久精品视频一区二区三区| 免费观看一级欧美片| 在线视频欧美区| 亚洲区小说区图片区qvod| 国产精品18久久久久久久网站| 欧美伦理影视网| 一区二区三区高清| 99re热视频这里只精品| 中文字幕成人网| 国产成人亚洲精品狼色在线| 久久午夜电影网| 国产精品自在在线| 久久九九全国免费| 国产精品亚洲一区二区三区在线| 精品国产91九色蝌蚪| 美日韩黄色大片| 欧美一级精品在线| 日韩国产精品久久久| 欧美另类一区二区三区| 日韩精品三区四区| 欧美一区二区三区在线观看视频| 天堂蜜桃一区二区三区| 正在播放亚洲一区| 麻豆91精品91久久久的内涵| 91精品国产福利| 国产精品资源在线观看| 久久久久久久国产精品影院| 高清国产午夜精品久久久久久| 国产精品麻豆视频| 色综合久久天天| 午夜精品在线看| 4hu四虎永久在线影院成人| 免费观看久久久4p| 久久婷婷色综合| 成人福利在线看| 亚洲一区二区三区四区五区黄 | 日韩精品中文字幕在线不卡尤物 | 亚洲一区二区三区在线播放| 欧美日韩精品一区二区三区蜜桃| 亚洲成av人影院| 久久综合资源网| 99久久精品免费看国产免费软件| 亚洲欧美电影一区二区| 欧美男男青年gay1069videost | 色综合久久精品| 五月天网站亚洲| 久久久久久毛片| 日本道在线观看一区二区| 日本亚洲最大的色成网站www| 精品剧情v国产在线观看在线| 粉嫩欧美一区二区三区高清影视| 亚洲精品成a人| 精品国产麻豆免费人成网站| a在线播放不卡| 青青草91视频| 亚洲视频免费看| 精品理论电影在线| 在线视频你懂得一区二区三区| 久久激情综合网| 亚洲精品视频一区| 久久综合色婷婷| 欧美午夜电影网| 国产成人免费在线视频| 日韩—二三区免费观看av| 欧美韩日一区二区三区四区| 欧美精品乱码久久久久久按摩| 成人在线视频一区| 热久久久久久久| 亚洲综合丝袜美腿| 亚洲国产精品二十页| 日韩一区二区高清| 91久久精品一区二区| 国产成人免费在线| 麻豆视频观看网址久久| 亚洲高清视频的网址| 国产精品盗摄一区二区三区| 精品va天堂亚洲国产| 欧美日本在线观看| 在线亚洲一区观看| jizz一区二区| 国产福利精品一区| 国产一区 二区 三区一级| 日韩av一级电影| 亚洲第一主播视频| 一区二区在线电影| 欧美国产日产图区| 久久久久亚洲蜜桃| 欧美va亚洲va| 91精品国产高清一区二区三区| 欧美日韩精品一区二区三区| 欧美性xxxxxxxx| 欧美性猛片xxxx免费看久爱| 91伊人久久大香线蕉| 94-欧美-setu| 91亚洲资源网| 一本到不卡精品视频在线观看| 成人免费av在线| 99久久久免费精品国产一区二区| 成人在线一区二区三区| 丁香一区二区三区| 成人综合激情网| av在线免费不卡| 97精品久久久久中文字幕| 91社区在线播放| 欧美视频日韩视频| 欧美男男青年gay1069videost| 欧美日韩国产免费一区二区| 欧美伦理影视网| 欧美一级xxx| 精品国产制服丝袜高跟| 久久久一区二区三区捆绑**| 亚洲国产成人午夜在线一区 | 欧美精品一区二区三区久久久| 久久新电视剧免费观看| 国产三区在线成人av| 国产精品久久久久久福利一牛影视 | 一区二区国产盗摄色噜噜| 亚洲综合丝袜美腿| 天天色综合成人网| 免费三级欧美电影| 国产在线精品一区二区| 成人av网站在线观看免费| 日本韩国精品在线| 制服丝袜亚洲色图| 国产午夜精品美女毛片视频| 亚洲丝袜精品丝袜在线| 天天色天天操综合| 国产成a人无v码亚洲福利| av电影在线观看一区| 欧美日韩免费一区二区三区视频| 欧美一级久久久| 中文字幕一区二区视频| 视频在线观看一区| 国产成人精品影视| 欧美日韩一区高清| 欧美国产视频在线| 日日夜夜免费精品视频| 懂色av一区二区三区蜜臀| 欧美日韩国产另类不卡| 久久久久久久综合| 亚洲成人www| 成人成人成人在线视频| 在线成人av网站| 中文字幕一区二区三区乱码在线| 日一区二区三区| 91麻豆成人久久精品二区三区| 日韩一区二区三区四区五区六区| 国产精品萝li| 韩国女主播一区| 欧美视频一区二| 亚洲欧美日韩在线| 国产黑丝在线一区二区三区| 精品视频免费在线| 国产精品乱码妇女bbbb| 青青草原综合久久大伊人精品 | 色综合中文字幕国产 | 久久久噜噜噜久噜久久综合| 亚洲一区二区不卡免费| 成人综合日日夜夜| 精品国产伦一区二区三区观看体验| 亚洲精品国产无套在线观| 国产真实乱子伦精品视频| 欧美色国产精品| 亚洲色图欧美激情| 国产成人精品一区二| 欧美精品一区二区在线观看| 香蕉av福利精品导航| 在线视频你懂得一区| 亚洲欧美综合另类在线卡通| 国产剧情一区二区| 日韩亚洲欧美成人一区| 亚洲国产精品久久人人爱蜜臀 | 亚洲综合图片区| 一本色道a无线码一区v| 国产精品久久毛片av大全日韩| 国产一区二区三区黄视频 | 亚洲人精品一区| 高清国产一区二区三区| 国产亚洲成av人在线观看导航 | 麻豆免费精品视频| 在线综合+亚洲+欧美中文字幕| 亚洲综合久久久| 欧美日韩在线播| 视频在线在亚洲| 欧美一区二区精品| 奇米综合一区二区三区精品视频|