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

📄 opttypes.h

📁 一个很有名的浏览器
💻 H
字号:
/* $Id: opttypes.h,v 1.12 2004/12/16 14:43:41 zas Exp $ */#ifndef EL__CONFIG_OPTTYPES_H#define EL__CONFIG_OPTTYPES_H#include "config/options.h"#include "util/string.h"struct option_type_info {	unsigned char *name;	unsigned char *(*cmdline)(struct option *, unsigned char ***, int *);	unsigned char *(*read)(struct option *, unsigned char **, int *);	void (*write)(struct option *, struct string *);	void (*dup)(struct option *, struct option *);	int (*set)(struct option *, unsigned char *);	int (*add)(struct option *, unsigned char *);	unsigned char *help_str;};/* enum option_type is index in this array */extern const struct option_type_info option_types[];extern int commandline;unsigned char *get_option_type_name(enum option_type type);#endif

⌨️ 快捷键说明

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