mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
38db20b776
Preparation for using struct terminal in formating functions. By now distinguish between formating widgets and formating widgets with displaying was done with term == NULL and term != NULL. I hope I'am not wrong.
15 lines
299 B
C
15 lines
299 B
C
#ifndef EL__BFU_GROUP_H
|
|
#define EL__BFU_GROUP_H
|
|
|
|
struct dialog_data;
|
|
struct terminal;
|
|
struct widget_data;
|
|
|
|
void dlg_format_group(struct terminal *term,
|
|
struct widget_data *widget_data,
|
|
int n, int x, int *y, int w, int *rw, int format_only);
|
|
|
|
void group_layouter(struct dialog_data *);
|
|
|
|
#endif
|