2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
2004-03-11 05:19:14 +03:00
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_RENDER_TEXTPLAIN_H_
|
|
|
|
#define _NETSURF_RENDER_TEXTPLAIN_H_
|
|
|
|
|
2004-03-11 05:19:14 +03:00
|
|
|
struct content;
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2003-12-27 23:15:23 +03:00
|
|
|
void textplain_create(struct content *c, const char *params[]);
|
2003-02-09 15:58:15 +03:00
|
|
|
int textplain_convert(struct content *c, unsigned int width, unsigned int height);
|
|
|
|
|
|
|
|
#endif
|