globhist.h

来自「一个很有名的浏览器」· C头文件 代码 · 共 38 行

H
38
字号
/* $Id: globhist.h,v 1.21 2004/07/15 00:45:07 jonas Exp $ */#ifndef EL__GLOBHIST_GLOBHIST_H#define EL__GLOBHIST_GLOBHIST_H#include "util/lists.h"#include "util/object.h"#include "util/ttime.h"struct listbox_item;struct input_history;struct global_history_item {	LIST_HEAD(struct global_history_item);	struct listbox_item *box_item;	unsigned char *title;	unsigned char *url;	ttime last_visit;	struct object object; /* No direct access, use provided macros for that. */};extern struct input_history global_history;extern unsigned char *gh_last_searched_title;extern unsigned char *gh_last_searched_url;extern struct module global_history_module;void delete_global_history_item(struct global_history_item *);struct global_history_item *get_global_history_item(unsigned char *);void add_global_history_item(unsigned char *, unsigned char *, ttime);int globhist_simple_search(unsigned char *, unsigned char *);#endif

⌨️ 快捷键说明

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