aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-tohtml.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-12-17 03:36:35 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-12-17 03:36:35 +0800
commit9d70bad4944b3f00c7b6e0a214e8c5ed9566e8ac (patch)
tree003b299901d5c449ef95ad8384415597b111cbf6 /camel/camel-mime-filter-tohtml.h
parentaed127b4f487bc6026b1c89eeb7034973511ba6b (diff)
downloadgsoc2013-evolution-9d70bad4944b3f00c7b6e0a214e8c5ed9566e8ac.tar
gsoc2013-evolution-9d70bad4944b3f00c7b6e0a214e8c5ed9566e8ac.tar.gz
gsoc2013-evolution-9d70bad4944b3f00c7b6e0a214e8c5ed9566e8ac.tar.bz2
gsoc2013-evolution-9d70bad4944b3f00c7b6e0a214e8c5ed9566e8ac.tar.lz
gsoc2013-evolution-9d70bad4944b3f00c7b6e0a214e8c5ed9566e8ac.tar.xz
gsoc2013-evolution-9d70bad4944b3f00c7b6e0a214e8c5ed9566e8ac.tar.zst
gsoc2013-evolution-9d70bad4944b3f00c7b6e0a214e8c5ed9566e8ac.zip
New convenience function to replace calls to e_text_to_html() in the
2002-12-16 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-filter-tohtml.c (camel_text_to_html): New convenience function to replace calls to e_text_to_html() in the mailer/composer etc. svn path=/trunk/; revision=19128
Diffstat (limited to 'camel/camel-mime-filter-tohtml.h')
-rw-r--r--camel/camel-mime-filter-tohtml.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/camel/camel-mime-filter-tohtml.h b/camel/camel-mime-filter-tohtml.h
index 2c1c07e5e3..de8690a1e0 100644
--- a/camel/camel-mime-filter-tohtml.h
+++ b/camel/camel-mime-filter-tohtml.h
@@ -44,6 +44,7 @@ extern "C" {
#define CAMEL_MIME_FILTER_TOHTML_ESCAPE_8BIT (1 << 6)
#define CAMEL_MIME_FILTER_TOHTML_CITE (1 << 7)
#define CAMEL_MIME_FILTER_TOHTML_PRESERVE_8BIT (1 << 8)
+#define CAMEL_MIME_FILTER_TOHTML_FORMAT_FLOWED (1 << 9)
typedef struct _CamelMimeFilterToHTMLClass CamelMimeFilterToHTMLClass;
typedef struct _CamelMimeFilterToHTML CamelMimeFilterToHTML;
@@ -69,6 +70,11 @@ CamelType camel_mime_filter_tohtml_get_type (void);
CamelMimeFilter *camel_mime_filter_tohtml_new (guint32 flags, guint32 colour);
+
+/* utility functions to replace e_text_to_html shit */
+
+char *camel_text_to_html (const char *in, guint32 flags, guint32 colour);
+
#ifdef __cplusplus
}
#endif /* __cplusplus */