mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-03 03:56:32 -04:00
6564aec93f
It also adds a Link info entry in the link contextual menu. No key is associated for now, action was named ACT_MAIN_LINK_INFO.
13 lines
376 B
C
13 lines
376 B
C
#ifndef EL__DIALOGS_DOCUMENT_H
|
|
#define EL__DIALOGS_DOCUMENT_H
|
|
|
|
#include "session/session.h"
|
|
|
|
void nowhere_box(struct terminal *term, unsigned char *title);
|
|
void link_info_dialog(struct session *ses);
|
|
void document_info_dialog(struct session *);
|
|
void cached_header_dialog(struct session *ses, struct cache_entry *cached);
|
|
void protocol_header_dialog(struct session *);
|
|
|
|
#endif
|