2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__DIALOGS_DOWNLOAD_H
|
|
|
|
#define EL__DIALOGS_DOWNLOAD_H
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
struct file_download;
|
|
|
|
struct session;
|
|
|
|
struct terminal;
|
|
|
|
|
|
|
|
void init_download_display(struct file_download *file_download);
|
|
|
|
void done_download_display(struct file_download *file_download);
|
|
|
|
|
|
|
|
void display_download(struct terminal *, struct file_download *, struct session *);
|
|
|
|
void download_manager(struct session *ses);
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|