📄 globhist.h
字号:
/* $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -