summaryrefslogtreecommitdiff
path: root/render/textplain.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-09-13 22:18:51 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-09-13 22:18:51 +0000
commit73f43994189d92e43616548f8a1f8b92de3b8887 (patch)
tree634cdce8bd7b0b76876f17a30fdfe5fb0eac793c /render/textplain.h
parent0285ab5e915068c764050ba102e2158ca4d6bdc0 (diff)
downloadnetsurf-73f43994189d92e43616548f8a1f8b92de3b8887.tar.gz
netsurf-73f43994189d92e43616548f8a1f8b92de3b8887.tar.bz2
Replace use of iconv with a parserutils inputstream
svn path=/trunk/netsurf/; revision=10770
Diffstat (limited to 'render/textplain.h')
-rw-r--r--render/textplain.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/render/textplain.h b/render/textplain.h
index 2a80f1619..c94b18074 100644
--- a/render/textplain.h
+++ b/render/textplain.h
@@ -25,7 +25,6 @@
#define _NETSURF_RENDER_TEXTPLAIN_H_
#include <stddef.h>
-#include <iconv.h>
#include "desktop/mouse.h"
struct content;
@@ -39,8 +38,7 @@ struct textplain_line {
struct content_textplain_data {
char *encoding;
- iconv_t iconv_cd;
- size_t converted;
+ void *inputstream;
char *utf8_data;
size_t utf8_data_size;
size_t utf8_data_allocated;