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

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

?? uemf.h

?? 在嵌入式移動設備上實現動態網頁
?? H
?? 第 1 頁 / 共 3 頁
字號:
/*
 * uemf.h -- GoAhead Micro Embedded Management Framework Header
 *
 * Copyright (c) GoAhead Software Inc., 1995-2000. All Rights Reserved.
 *
 * See the file "license.txt" for usage and redistribution license requirements
 *
 * $Id: uemf.h,v 1.8 2003/11/25 21:48:13 hwolff Exp $
 */

#ifndef _h_UEMF
#define _h_UEMF 1

/******************************** Description *********************************/

/* 
 *	GoAhead Web Server header. This defines the Web public APIs
 */

/******************************* Per O/S Includes *****************************/

#ifdef WIN
	#include	<direct.h>
	#include	<io.h>
	#include	<sys/stat.h>
	#include	<limits.h>
	#include	<tchar.h>
	#include	<windows.h>
	#include	<winnls.h>
	#include	<time.h>
	#include	<sys/types.h>
	#include	<stdio.h>
	#include	<stdlib.h>
	#include	<fcntl.h>
	#include	<errno.h>
#endif /* WIN */

#ifdef CE
	/*#include	<errno.h>*/
	#include	<limits.h>
	#include	<tchar.h>
	#include	<windows.h>
	#include	<winsock.h>
	#include	<winnls.h>
	#include	"CE/wincompat.h"
	#include	<winsock.h>
#endif /* CE */

#ifdef NW
	#include	<direct.h>
	#include	<io.h>
	#include	<sys/stat.h>
	#include	<time.h>
	#include	<sys/types.h>
	#include	<stdio.h>
	#include	<stdlib.h>
	#include	<fcntl.h>
	#include	<errno.h>
	#include	<niterror.h>
	#define		EINTR EINUSE
	#define		 WEBS	1
	#include	<limits.h>
	#include	<netdb.h>
	#include	<process.h>
	#include	<tiuser.h>
	#include	<sys/time.h>
	#include	<arpa/inet.h>
	#include	<sys/types.h>
	#include	<sys/socket.h>
	#include	<sys/filio.h>
	#include	<netinet/in.h>
#endif /* NW */

#ifdef SCOV5 
	#include	<sys/types.h>
	#include	<stdio.h>
	#include	"sys/socket.h"
	#include	"sys/select.h"
	#include	"netinet/in.h"
	#include 	"arpa/inet.h"
	#include 	"netdb.h"
#endif /* SCOV5 */

#ifdef UNIX
	#include	<stdio.h>
#endif /* UNIX */

#ifdef LINUX
	#include	<sys/types.h>
	#include	<sys/stat.h>
	#include	<sys/param.h>
	#include	<limits.h>
	#include	<stdio.h>
	#include	<stdlib.h>
	#include	<unistd.h>
	#include	<sys/socket.h>
	#include	<sys/select.h>
	#include	<netinet/in.h>
	#include 	<arpa/inet.h>
	#include 	<netdb.h>
	#include	<time.h>
	#include	<fcntl.h>
	#include	<errno.h>
#endif /* LINUX */

#ifdef LYNX
	#include	<limits.h>
	#include	<stdarg.h>
	#include	<stdio.h>
	#include	<stdlib.h>
	#include	<unistd.h>
	#include	<socket.h>
	#include	<netinet/in.h>
	#include 	<arpa/inet.h>
	#include 	<netdb.h>
	#include	<time.h>
	#include	<fcntl.h>
	#include	<errno.h>
#endif /* LYNX */

#ifdef MACOSX
	#include	<sys/stat.h>
	#include	<stdio.h>
	#include	<stdlib.h>
	#include	<unistd.h>
	#include	<sys/socket.h>
	#include	<netinet/in.h>
	#include 	<arpa/inet.h>
	#include 	<netdb.h>
	#include	<fcntl.h>
	#include	<errno.h>
#endif /* MACOSX */

#ifdef UW
	#include	<stdio.h>
#endif /* UW */

#ifdef VXWORKS
	#include	<vxWorks.h>
	#include	<sockLib.h>
	#include	<selectLib.h>
	#include	<inetLib.h>
	#include	<ioLib.h>
	#include	<stdio.h>
	#include	<stat.h>
	#include	<time.h>
	#include	<usrLib.h>
	#include	<fcntl.h>
	#include	<errno.h>
#endif /* VXWORKS */

#ifdef sparc
# define __NO_PACK
#endif /* sparc */

#ifdef SOLARIS
	#include	<sys/types.h>
	#include	<limits.h>
	#include	<stdio.h>
	#include	<stdlib.h>
	#include	<unistd.h>
	#include	<socket.h>
	#include	<sys/select.h>
	#include	<netinet/in.h>
	#include 	<arpa/inet.h>
	#include 	<netdb.h>
	#include	<time.h>
	#include	<fcntl.h>
	#include	<errno.h>
#endif /* SOLARIS */

#ifdef QNX4
	#include	<sys/types.h>
	#include	<stdio.h>
	#include	<sys/socket.h>
	#include	<sys/select.h>
	#include	<netinet/in.h>
	#include 	<arpa/inet.h>
	#include 	<netdb.h>
    #include    <stdlib.h>
    #include    <unistd.h>
    #include    <sys/uio.h>
    #include    <sys/wait.h>
#endif /* QNX4 */

#ifdef ECOS
	#include	<limits.h>
	#include	<cyg/infra/cyg_type.h>
	#include	<cyg/kernel/kapi.h>
	#include	<time.h>
	#include	<network.h>
	#include	<errno.h>
#endif /* ECOS */

/********************************** Includes **********************************/

#include	<ctype.h>
#include	<stdarg.h>
#include	<string.h>

#ifndef WEBS
#include	"messages.h"
#endif /* ! WEBS */

/******************************* Per O/S Defines *****************************/

#ifdef UW
	#define		__NO_PACK		1
#endif /* UW */

#if (defined (SCOV5) || defined (VXWORKS) || defined (LINUX) || defined (LYNX) || defined (MACOSX))
#ifndef O_BINARY
#define O_BINARY 		0
#endif /* O_BINARY */
#define	SOCKET_ERROR	-1
#endif /* SCOV5 || VXWORKS || LINUX || LYNX || MACOSX */

#if (defined (WIN) || defined (CE))
/*
 *	__NO_FCNTL means can't access fcntl function.  Fcntl.h is still available.
 */
#define		__NO_FCNTL		1

#undef R_OK
#define R_OK	4
#undef W_OK
#define W_OK	2
#undef X_OK
#define X_OK	1
#undef F_OK
#define F_OK	0
#endif /* WIN || CE */

#if (defined (LINUX) && !defined (_STRUCT_TIMEVAL))
struct timeval
{
	time_t	tv_sec;		/* Seconds.  */
	time_t	tv_usec;	/* Microseconds.  */
};
#define _STRUCT_TIMEVAL 1
#endif /* LINUX && ! _STRUCT_TIMEVAL */

#ifdef ECOS
	#define		O_RDONLY		1
	#define		O_BINARY		2

	#define		__NO_PACK		1
	#define		__NO_EJ_FILE	1
	#define		__NO_CGI_BIN	1
	#define		__NO_FCNTL		1

/*
 *	#define LIBKERN_INLINE to avoid kernel inline functions
 */
	#define		LIBKERN_INLINE

#endif /* ECOS */

#ifdef QNX4
    typedef long        fd_mask;
    #define NFDBITS (sizeof (fd_mask) * NBBY)   /* bits per mask */
#endif /* QNX4 */

#ifdef NW
	#define fd_mask			fd_set
	#define INADDR_NONE		-1l
	#define Sleep			delay

	#define __NO_FCNTL		1

	#undef R_OK
	#define R_OK    4
	#undef W_OK
	#define W_OK    2
	#undef X_OK
	#define X_OK    1
	#undef F_OK
	#define F_OK    0
#endif /* NW */

/********************************** Unicode ***********************************/
/* 
 *	Constants and limits. Also FNAMESIZE and PATHSIZE are currently defined 
 *	in param.h to be 128 and 512
 */
#define TRACE_MAX			(4096 - 48)
#define VALUE_MAX_STRING	(4096 - 48)
#define SYM_MAX				(512)
#define XML_MAX				4096			/* Maximum size for tags/tokens */
#define BUF_MAX				4096			/* General sanity check for bufs */
#define FMT_STATIC_MAX		256				/* Maximum for fmtStatic calls */

#if (defined (LITTLEFOOT) || defined (WEBS))
#define LF_BUF_MAX		(510)
#define LF_PATHSIZE		LF_BUF_MAX
#else
#define	LF_BUF_MAX		BUF_MAX
#define LF_PATHSIZE		PATHSIZE
#define UPPATHSIZE		PATHSIZE
#endif /* LITTLEFOOT || WEBS */

#ifndef CHAR_T_DEFINED
#define CHAR_T_DEFINED 1
#ifdef UNICODE
/*
 *	To convert strings to UNICODE. We have a level of indirection so things
 *	like T(__FILE__) will expand properly.
 */
#define	T(x)				__TXT(x)
#define	__TXT(s)			L ## s
typedef unsigned short 		char_t;
typedef unsigned short		uchar_t;

/*
 *	Text size of buffer macro. A buffer bytes will hold (size / char size) 
 *	characters. 
 */
#define	TSZ(x)				(sizeof(x) / sizeof(char_t))

/*
 *	How many ASCII bytes are required to represent this UNICODE string?
 */
#define	TASTRL(x)			((wcslen(x) + 1) * sizeof(char_t))

#else
#define	T(s) 				s
typedef char				char_t;
#define	TSZ(x)				(sizeof(x))
#define	TASTRL(x)			(strlen(x) + 1)
#ifdef WIN
typedef unsigned char		uchar_t;
#endif /* WIN */

#endif /* UNICODE */

#endif /* ! CHAR_T_DEFINED */

/*
 *	"Boolean" constants
 */

#ifndef TRUE
#define TRUE 1
#endif

#ifndef FALSE
#define FALSE 0
#endif

/*
 *	GoAhead Copyright.
 */
#define GOAHEAD_COPYRIGHT \
	T("Copyright (c) GoAhead Software Inc., 1995-2000. All Rights Reserved.")

/*
 *	The following include has to be after the unicode defines.  By putting it
 *	here, many modules in various parts of the tree are cleaner.
 */
#if (defined (LITTLEFOOT) && defined (INMEM))
	#include	"lf/inmem.h"
#endif /* LITTLEFOOT && INMEM */

/*
 *	Type for unicode systems

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲综合色网站| 国产成人在线免费观看| 狠狠色狠狠色合久久伊人| 国产高清亚洲一区| 91精品国产福利| 亚洲制服欧美中文字幕中文字幕| 久久se这里有精品| 欧美日韩国产另类一区| 亚洲四区在线观看| 美国毛片一区二区| 91黄色免费版| 国产成人8x视频一区二区| 一区二区三区av电影| 亚洲综合自拍偷拍| 日韩精品高清不卡| 国产麻豆精品在线| 成人国产免费视频| 在线观看亚洲专区| 久久伊人中文字幕| 亚洲欧美另类久久久精品| 亚洲www啪成人一区二区麻豆| 美日韩一区二区| 成人sese在线| 91麻豆国产精品久久| 欧美日韩精品二区第二页| 欧美xfplay| 一区二区中文字幕在线| 日韩av电影免费观看高清完整版| 激情综合色播激情啊| 亚洲免费观看高清完整版在线 | 成人av一区二区三区| 99久久99久久精品国产片果冻| 欧美日韩国产小视频在线观看| 亚洲乱码国产乱码精品精小说| 亚洲电影你懂得| 国产成人亚洲综合a∨猫咪 | 亚洲高清三级视频| 国产成人小视频| 欧美精选午夜久久久乱码6080| 久久久久亚洲蜜桃| 亚洲成在人线免费| 99久免费精品视频在线观看| 日韩一区二区不卡| 亚洲精品免费在线| 国产成人精品综合在线观看| 欧美日韩高清在线播放| 日韩美女视频一区| 国产呦萝稀缺另类资源| 欧美日韩久久一区二区| 亚洲同性gay激情无套| 蜜乳av一区二区三区| 欧美日韩综合一区| 亚洲免费视频中文字幕| 国产成人啪午夜精品网站男同| 3d成人动漫网站| 洋洋成人永久网站入口| www.久久精品| 久久精品视频网| 久久99精品国产| 91麻豆精品国产无毒不卡在线观看| 国产精品久久久久久久久免费相片| 激情综合色综合久久综合| 91精品久久久久久久91蜜桃| 美女视频黄 久久| 欧美精品第一页| 三级欧美韩日大片在线看| 欧美日韩一区二区电影| 亚洲综合色网站| 欧洲精品在线观看| 亚洲永久免费视频| 欧美中文字幕亚洲一区二区va在线| 中文字幕免费不卡在线| 国产suv精品一区二区三区| 久久女同性恋中文字幕| 国产精品夜夜嗨| 日本一区二区三区视频视频| 成人综合激情网| 国产精品久久久久aaaa| 99re视频精品| 亚洲伦理在线精品| 欧美日韩一区二区三区高清| 午夜欧美电影在线观看| 日韩欧美亚洲国产另类| 国产综合色视频| 国产精品三级av在线播放| 99国内精品久久| 亚洲地区一二三色| 欧美本精品男人aⅴ天堂| 国产成人综合在线播放| 亚洲欧美偷拍卡通变态| 欧美日韩在线三级| 免费成人深夜小野草| 国产亚洲精品7777| 色偷偷久久人人79超碰人人澡| 亚洲一区二区在线免费观看视频| 91.成人天堂一区| 国产精品亚洲一区二区三区在线 | 精品av久久707| 成人黄色国产精品网站大全在线免费观看| 国产精品狼人久久影院观看方式| 日本韩国精品在线| 免费在线成人网| 国产精品久久夜| 欧美剧情片在线观看| 国产成人免费视频精品含羞草妖精 | 蜜桃一区二区三区四区| 国产清纯美女被跳蛋高潮一区二区久久w| 成人丝袜视频网| 亚洲成国产人片在线观看| 精品国产免费一区二区三区四区 | 国产精品动漫网站| 欧美日韩国产一级| 成人免费的视频| 欧美aaa在线| 亚洲欧美自拍偷拍| 精品国产免费一区二区三区四区| 91在线观看高清| 国产高清久久久久| 天天色综合成人网| 亚洲少妇屁股交4| 2023国产精品自拍| 在线播放视频一区| 91国在线观看| 成人黄色在线视频| 韩国成人福利片在线播放| 亚洲国产精品一区二区尤物区| 欧美高清在线一区二区| 日韩亚洲欧美一区| 欧美欧美欧美欧美首页| 91在线观看下载| 丁香五精品蜜臀久久久久99网站| 五月激情综合色| 亚洲午夜国产一区99re久久| 国产精品第一页第二页第三页| 欧美精品一区二区久久久| 9191成人精品久久| 欧美日韩和欧美的一区二区| 91丨九色丨蝌蚪丨老版| 成人免费观看视频| 国产福利精品一区二区| 精品中文字幕一区二区| 日韩高清国产一区在线| 图片区日韩欧美亚洲| 亚洲国产综合91精品麻豆| 亚洲综合激情另类小说区| 亚洲乱码国产乱码精品精98午夜| 中文字幕 久热精品 视频在线| 精品少妇一区二区三区在线播放| 日韩亚洲欧美成人一区| 欧美一区二区在线不卡| 日韩一级完整毛片| 欧美不卡激情三级在线观看| 日韩色在线观看| 久久综合久久久久88| 久久久久久99久久久精品网站| 久久一夜天堂av一区二区三区| 欧美精品一区二区三区在线播放| 欧美成人免费网站| 国产蜜臀97一区二区三区| 国产日本一区二区| 亚洲欧美中日韩| 亚洲一区二区三区小说| 日本视频一区二区三区| 免费美女久久99| 国产精品一区二区久久精品爱涩 | 国产成a人亚洲| 国产91露脸合集magnet| 91麻豆swag| 91精品国模一区二区三区| 精品精品国产高清a毛片牛牛| 久久久国际精品| 色欧美乱欧美15图片| 欧美理论片在线| 亚洲综合av网| 91色porny在线视频| 国产亚洲美州欧州综合国| 欧美日韩一卡二卡三卡 | 欧美在线视频你懂得| 欧美区视频在线观看| 精品播放一区二区| 亚洲日穴在线视频| 免费成人av在线播放| 成人av综合在线| 在线播放中文字幕一区| 风间由美一区二区三区在线观看| 一本到高清视频免费精品| 日韩欧美一区二区在线视频| 久久久精品日韩欧美| 亚洲欧美另类小说| 不卡欧美aaaaa| 国产婷婷一区二区| 国产一区 二区 三区一级| 欧美电视剧在线观看完整版| 国产mv日韩mv欧美| 欧美一区在线视频| 自拍视频在线观看一区二区| 麻豆国产精品777777在线| 一本高清dvd不卡在线观看| 精品美女一区二区| 亚洲国产另类av|