mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
db9431465f
We will need to include it from options.h and the include chain just wouldn't work. And it feels like a hack to have it in renderer.h anyway.
19 lines
578 B
C
19 lines
578 B
C
#ifndef EL__DOCUMENT_RENDERER_H
|
|
#define EL__DOCUMENT_RENDERER_H
|
|
|
|
#include "document/document.h"
|
|
|
|
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(unsigned 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);
|
|
|
|
#endif
|