diff options
author | Matthew Loper <mloper@src.gnome.org> | 2000-01-26 08:53:53 +0800 |
---|---|---|
committer | Matthew Loper <mloper@src.gnome.org> | 2000-01-26 08:53:53 +0800 |
commit | f2122c69d6fd23776cf1574af7a6d42596db3bdf (patch) | |
tree | 1e1d93edad9135ad42ca510af28215ce4e4b904a /camel/camel-formatter.h | |
parent | 20c404d3abe04218f925311f03f613f5865a7a3f (diff) | |
download | gsoc2013-evolution-f2122c69d6fd23776cf1574af7a6d42596db3bdf.tar gsoc2013-evolution-f2122c69d6fd23776cf1574af7a6d42596db3bdf.tar.gz gsoc2013-evolution-f2122c69d6fd23776cf1574af7a6d42596db3bdf.tar.bz2 gsoc2013-evolution-f2122c69d6fd23776cf1574af7a6d42596db3bdf.tar.lz gsoc2013-evolution-f2122c69d6fd23776cf1574af7a6d42596db3bdf.tar.xz gsoc2013-evolution-f2122c69d6fd23776cf1574af7a6d42596db3bdf.tar.zst gsoc2013-evolution-f2122c69d6fd23776cf1574af7a6d42596db3bdf.zip |
+ * camel/camel-formatter.c: By looking up a mimetype in a
+ hashtable, we can now get a handler function for an arbitrary
+ mimetype.
svn path=/trunk/; revision=1641
Diffstat (limited to 'camel/camel-formatter.h')
-rw-r--r-- | camel/camel-formatter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/camel-formatter.h b/camel/camel-formatter.h index 1bcbb2d01a..30dbc2008e 100644 --- a/camel/camel-formatter.h +++ b/camel/camel-formatter.h @@ -61,9 +61,9 @@ CamelFormatter* camel_formatter_new (void); /* The main job of CamelFormatter is to take a mime message, and produce html from it. */ -void camel_formatter_make_html (CamelFormatter* cmf, - CamelMimeMessage *msg, - CamelStream* stream_out); +void camel_formatter_mime_message_to_html (CamelFormatter* formatter, + CamelMimeMessage* mime_message, + CamelStream* stream); #ifdef __cplusplus |