2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__BFU_GROUP_H
|
|
|
|
#define EL__BFU_GROUP_H
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
struct dialog_data;
|
|
|
|
struct terminal;
|
|
|
|
struct widget_data;
|
|
|
|
|
2008-09-07 12:27:06 -04:00
|
|
|
void dlg_format_group(struct dialog_data *dlg_data,
|
2005-09-15 09:58:31 -04:00
|
|
|
struct widget_data *widget_data,
|
2006-03-06 00:01:12 -05:00
|
|
|
int n, int x, int *y, int w, int *rw, int format_only);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
void group_layouter(struct dialog_data *);
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|