common.h

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

H
30
字号
/* $Id: common.h,v 1.5 2004/11/21 13:23:58 zas Exp $ */#ifndef EL__BFU_COMMON_H#define EL__BFU_COMMON_Hstruct dialog_data;struct widget_data;/* Event handlers return this values */typedef enum t_handler_event_status {	EVENT_PROCESSED	= 0,	EVENT_NOT_PROCESSED = 1} t_handler_event_status;/* Handler type for widgets. */typedef t_handler_event_status (t_widget_handler)(struct dialog_data *, struct widget_data *);/* Type of widgets. */enum widget_type {	WIDGET_CHECKBOX,	WIDGET_FIELD,	WIDGET_FIELD_PASS,	WIDGET_BUTTON,	WIDGET_LISTBOX,	WIDGET_TEXT,};#endif /* EL__BFU_COMMON_H */

⌨️ 快捷键说明

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