⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ucdomap.h

📁 基于rtos开发的浏览器!
💻 H
字号:
#ifndef UCDOMAP_H#define UCDOMAP_H/* *  [old comments: - KW ] *  consolemap.h * *  Interface between console.c, selection.c  and UCmap.c */#define LAT1_MAP 0#define GRAF_MAP 1#define IBMPC_MAP 2#define USER_MAP 3/* *  Some conventions I try to follow (loosely): *	[a-z]* only internal, names from linux driver code. *	UC_* to be only known internally. *	UC[A-Z]* to be exported to other parts of Lynx. -KW */extern void UC_Charset_Setup PARAMS((	CONST char *		UC_MIMEcharset,	CONST char *		UC_LYNXcharset,	u8 *			unicount,	u16 *			unitable,	int			nnuni,	struct unimapdesc_str	replacedesc,	int			lowest_eight,	int			UC_rawuni));char *UC_GNsetMIMEnames[4] =	{"iso-8859-1", "x-dec-graphics", "cp437", "x-transparent"};int UC_GNhandles[4] = {-1, -1, -1, -1};struct UC_charset {	CONST char *MIMEname;	CONST char *LYNXname;	u8* unicount;	u16* unitable;	int num_uni;	struct unimapdesc_str replacedesc;	int uc_status;	int LYhndl;	int GN;	int lowest_eight;	int enc;};extern int UCNumCharsets;extern void UCInit NOARGS;#endif /* UCDOMAP_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -