aboutsummaryrefslogtreecommitdiff
path: root/src/codeconv.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-03-14 11:11:50 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-03-14 11:11:50 +0000
commitbdb6a57dffe028e673708ae1bd26207c6a8ad08e (patch)
tree588d104215ac3e6fb7fc2daac09e805a1073deb4 /src/codeconv.h
parent136e1e02a3c4f5fb7b7e96e2bc88ac7d5fe9f779 (diff)
do a strict check for code conversion when sending.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@167 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/codeconv.h')
-rw-r--r--src/codeconv.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/codeconv.h b/src/codeconv.h
index e2b3edda..4ffa10ec 100644
--- a/src/codeconv.h
+++ b/src/codeconv.h
@@ -187,15 +187,21 @@ gint conv_convert (CodeConverter *conv,
gchar *conv_codeset_strdup (const gchar *inbuf,
const gchar *src_code,
const gchar *dest_code);
+gchar *conv_codeset_strdup_full (const gchar *inbuf,
+ const gchar *src_code,
+ const gchar *dest_code,
+ gint *error);
CodeConvFunc conv_get_code_conv_func (const gchar *src_charset_str,
const gchar *dest_charset_str);
gchar *conv_iconv_strdup (const gchar *inbuf,
const gchar *src_code,
- const gchar *dest_code);
+ const gchar *dest_code,
+ gint *error);
gchar *conv_iconv_strdup_with_cd (const gchar *inbuf,
- iconv_t cd);
+ iconv_t cd,
+ gint *error);
const gchar *conv_get_charset_str (CharSet charset);
CharSet conv_get_charset_from_str (const gchar *charset);