0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-10-21 19:54:04 -04:00
Files
elinks/src/document/renderer.h
Petr Baudis 0f6d4310ad Initial commit of the HEAD branch of the ELinks CVS repository, as of
Thu Sep 15 15:57:07 CEST 2005. The previous history can be added to this
by grafting.
2005-09-15 15:58:31 +02:00

20 lines
576 B
C

/* $Id: renderer.h,v 1.5 2004/07/13 15:09:16 jonas Exp $ */
#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;
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);
#endif