2003-06-30 12:44:03 +00: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 02:19:14 +00:00
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2003-02-09 12:58:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_RENDER_TEXTPLAIN_H_
|
|
|
|
#define _NETSURF_RENDER_TEXTPLAIN_H_
|
|
|
|
|
2004-03-11 02:19:14 +00:00
|
|
|
struct content;
|
2003-02-09 12:58:15 +00:00
|
|
|
|
2004-06-10 20:41:26 +00:00
|
|
|
bool textplain_create(struct content *c, const char *params[]);
|
|
|
|
bool textplain_convert(struct content *c, int width, int height);
|
2003-02-09 12:58:15 +00:00
|
|
|
|
|
|
|
#endif
|