1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-17 01:16:16 -04:00
elinks/src/bfu/common.h
Jonas Fonseca acf2ec806b Remove empty lines in start of header files
A left over from the CVS Id removal. Also, for a few files, normalize the
order in which things are declared in headers.
2005-11-15 11:33:27 +01:00

28 lines
528 B
C

#ifndef EL__BFU_COMMON_H
#define EL__BFU_COMMON_H
struct dialog_data;
struct widget_data;
/* Event handlers return this values */
typedef enum {
EVENT_PROCESSED = 0,
EVENT_NOT_PROCESSED = 1
} widget_handler_status_T;
/* Handler type for widgets. */
typedef widget_handler_status_T (widget_handler_T)(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 */