2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__DIALOGS_DOCUMENT_H
|
|
|
|
#define EL__DIALOGS_DOCUMENT_H
|
|
|
|
|
|
|
|
#include "session/session.h"
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-01-02 10:20:27 -05:00
|
|
|
void nowhere_box(struct terminal *term, char *title);
|
2007-10-10 04:47:24 -04:00
|
|
|
void link_info_dialog(struct session *ses);
|
2005-09-15 09:58:31 -04:00
|
|
|
void document_info_dialog(struct session *);
|
|
|
|
void cached_header_dialog(struct session *ses, struct cache_entry *cached);
|
|
|
|
void protocol_header_dialog(struct session *);
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|