ELinks 0.12pre1
[elinks/images.git] / src / document / renderer.h
blob350d7964b090fb48486f544a9993f9782cb7d97e
1 #ifndef EL__DOCUMENT_RENDERER_H
2 #define EL__DOCUMENT_RENDERER_H
4 #include "document/document.h"
6 struct conv_table;
7 struct document_options;
8 struct document_view;
9 struct session;
10 struct view_state;
11 struct screen_char;
13 void render_document(struct view_state *, struct document_view *, struct document_options *);
14 void render_document_frames(struct session *ses, int no_cache);
15 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);
16 void sort_links(struct document *document);
18 #endif