mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-11 05:29:28 -04:00
0fea79cc8f
Likely some new bugs were introduced by this change. The long term goal is clean compilation by g++.
27 lines
638 B
C
27 lines
638 B
C
#ifndef EL__DOCUMENT_RENDERER_H
|
|
#define EL__DOCUMENT_RENDERER_H
|
|
|
|
#include "document/document.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct conv_table;
|
|
struct document_options;
|
|
struct document_view;
|
|
struct session;
|
|
struct view_state;
|
|
struct screen_char;
|
|
|
|
void render_document(struct view_state *, struct document_view *, struct document_options *);
|
|
void render_document_frames(struct session *ses, int no_cache);
|
|
struct conv_table *get_convert_table(char *head, int to_cp, int default_cp, int *from_cp, enum cp_status *cp_status, int ignore_server_cp);
|
|
void sort_links(struct document *document);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|