mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-03 03:56:32 -04:00
0fea79cc8f
Likely some new bugs were introduced by this change. The long term goal is clean compilation by g++.
21 lines
436 B
C
21 lines
436 B
C
#ifndef EL__DIALOGS_DOCUMENT_H
|
|
#define EL__DIALOGS_DOCUMENT_H
|
|
|
|
#include "session/session.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void nowhere_box(struct terminal *term, 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 *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|