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

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

?? uemf.h

?? 開發板bios源碼 開發板bios源碼
?? 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.4 2002/06/11 21:31:20 mstone 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 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一区二区三区免费野_久草精品视频
精品国产免费人成电影在线观看四季| 国产精品91xxx| 精品视频在线看| 亚洲成人tv网| 欧美一三区三区四区免费在线看| 日韩电影一二三区| 26uuu欧美| 成人午夜免费视频| 一区二区三区四区五区视频在线观看| 欧美在线一区二区| 久久国产乱子精品免费女| 精品卡一卡二卡三卡四在线| 国产精品一区二区久久不卡| 中文字幕不卡在线观看| 一本色道久久综合亚洲91| 五月开心婷婷久久| 久久久国产精品不卡| 91麻豆精品在线观看| 午夜精品久久久久影视| 精品剧情在线观看| 色婷婷国产精品久久包臀| 日本成人超碰在线观看| 久久久高清一区二区三区| 欧洲国产伦久久久久久久| 久久97超碰色| 亚洲伦理在线免费看| 精品美女一区二区| 日本精品一区二区三区四区的功能| 日韩福利电影在线| 中文字幕一区二区在线播放| 欧美日韩精品福利| 豆国产96在线|亚洲| 天天操天天综合网| 中文字幕欧美激情一区| 欧美日韩高清一区二区不卡| 国产麻豆午夜三级精品| 亚洲一区在线视频| 久久精品日韩一区二区三区| 91久久精品网| 国产白丝精品91爽爽久久| 亚洲国产日韩综合久久精品| 国产精品入口麻豆原神| 欧美xxxxxxxx| 欧美日韩在线播放| 99久久综合精品| 国产一区二区三区在线观看免费视频| 伊人婷婷欧美激情| 国产精品女人毛片| 精品久久人人做人人爰| 欧美日韩国产综合一区二区| 成人91在线观看| 国产麻豆成人精品| 日本视频中文字幕一区二区三区 | 欧美日韩精品高清| 不卡av电影在线播放| 免费观看30秒视频久久| 香港成人在线视频| 亚洲欧美一区二区三区孕妇| 国产日韩高清在线| 欧美精品一区二区三区蜜臀 | 日韩一区二区在线观看视频播放| 波多野结衣中文字幕一区| 九九国产精品视频| 青青草成人在线观看| 亚洲一级电影视频| 亚洲欧美激情小说另类| 综合久久国产九一剧情麻豆| 中文字幕av免费专区久久| 国产欧美在线观看一区| 久久婷婷一区二区三区| 久久香蕉国产线看观看99| 欧美成人欧美edvon| 日韩一区二区三| 欧美一区二区三区不卡| 日韩欧美中文字幕一区| 欧美v日韩v国产v| 欧美va天堂va视频va在线| 欧美一区二区三区爱爱| 日韩欧美高清一区| 精品国产伦一区二区三区免费 | 在线中文字幕不卡| 欧美自拍丝袜亚洲| 欧美日韩一区在线观看| 欧美精品v国产精品v日韩精品| 欧美精品一二三| 在线综合亚洲欧美在线视频| 欧美一区二区私人影院日本| 日韩午夜电影在线观看| 亚洲精品在线三区| 国产女人水真多18毛片18精品视频| 国产日韩成人精品| 一色屋精品亚洲香蕉网站| 亚洲影院理伦片| 美女尤物国产一区| 国产精品69久久久久水密桃| 成人黄色电影在线| 欧美日韩一区在线| 亚洲精品一区二区三区香蕉| 国产亚洲成年网址在线观看| 国产欧美1区2区3区| 亚洲自拍偷拍欧美| 美女被吸乳得到大胸91| 成人小视频在线| 欧美日本不卡视频| 久久精品免视看| 一个色在线综合| 麻豆国产精品视频| 91在线观看污| 日韩三级伦理片妻子的秘密按摩| 欧美经典三级视频一区二区三区| 亚洲品质自拍视频| 美女在线一区二区| 99精品视频免费在线观看| 欧美日韩色一区| 久久精品亚洲麻豆av一区二区 | www.综合网.com| 在线成人小视频| 国产日韩欧美精品一区| 五月综合激情婷婷六月色窝| 国产福利一区在线| 欧美三级日本三级少妇99| 久久众筹精品私拍模特| 亚洲成人福利片| 波多野洁衣一区| 精品日韩成人av| 亚洲高清免费观看高清完整版在线观看| 久久av中文字幕片| 在线日韩一区二区| 国产欧美日韩亚州综合| 青青草国产精品97视觉盛宴| 色婷婷激情综合| 中文字幕免费在线观看视频一区| 一区二区三区日韩精品视频| 国产精品一二三四| 欧美精品久久久久久久多人混战 | 国产精品2024| 51午夜精品国产| 亚洲免费三区一区二区| 国产综合久久久久影院| 精品婷婷伊人一区三区三| 欧美国产日产图区| 蜜桃传媒麻豆第一区在线观看| 91浏览器入口在线观看| 国产调教视频一区| 久久精品99久久久| 欧美精品久久久久久久久老牛影院| 国产午夜精品福利| 国产一区视频在线看| 日韩欧美高清dvd碟片| 丝袜美腿亚洲一区| 欧美系列日韩一区| 夜夜揉揉日日人人青青一国产精品| 成人永久免费视频| 国产亚洲精品超碰| 国产91丝袜在线播放0| 久久综合网色—综合色88| 青娱乐精品视频| 欧美理论片在线| 亚洲国产精品久久人人爱| 在线一区二区三区做爰视频网站| 亚洲视频图片小说| 99久久久国产精品免费蜜臀| 国产精品丝袜一区| 成年人午夜久久久| 亚洲欧美激情视频在线观看一区二区三区 | 成人午夜在线免费| 久久久久久久综合| 高清不卡一二三区| 国产精品毛片久久久久久| 成人一级视频在线观看| 亚洲欧洲韩国日本视频| 91在线视频播放地址| 一区二区成人在线| 欧美日韩一区二区三区在线看 | 欧美另类一区二区三区| 亚洲高清三级视频| 91精品国产欧美一区二区18| 秋霞午夜鲁丝一区二区老狼| 精品99久久久久久| 成人免费看视频| 亚洲欧洲制服丝袜| 欧美日韩国产三级| 精品一区二区三区av| 国产三级欧美三级| av成人老司机| 午夜精品福利视频网站| 精品欧美一区二区在线观看| 国产精品一区二区在线观看不卡| 国产精品沙发午睡系列990531| 色欧美88888久久久久久影院| 亚洲成av人片一区二区| 日韩视频免费直播| 国产aⅴ综合色| 亚洲精品视频一区| 91精品福利在线一区二区三区| 国产在线精品不卡| 亚洲乱码国产乱码精品精可以看| 欧美精品vⅰdeose4hd| 国产一级精品在线| 亚洲国产精品视频|