2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__DIALOGS_STATUS_H
|
|
|
|
#define EL__DIALOGS_STATUS_H
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
struct download;
|
|
|
|
struct session;
|
|
|
|
struct terminal;
|
|
|
|
|
|
|
|
void print_screen_status(struct session *);
|
|
|
|
|
|
|
|
void update_status(void);
|
|
|
|
|
2021-01-02 10:20:27 -05:00
|
|
|
char *
|
2005-09-15 09:58:31 -04:00
|
|
|
get_download_msg(struct download *download, struct terminal *term,
|
2022-02-17 15:14:36 -05:00
|
|
|
int wide, int full, const char *separator);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|