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
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
bool textplain_create(struct content *c, const char *params[]);
|
|
|
|
bool textplain_convert(struct content *c, int width, int height);
|
2003-02-09 15:58:15 +03:00
|
|
|
|
|
|
|
#endif
|