aboutsummaryrefslogtreecommitdiff
path: root/src/printing.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-11-30 07:44:59 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-11-30 07:44:59 +0000
commita07a513dcca1b9a8a90499658a27a528660ade40 (patch)
tree405e2051422fd1b7a3e8a71a65d2e30ba56b5664 /src/printing.h
parent4cc3707180ec49e18d83fd72c4f3eea541eb40ea (diff)
implemented printing of MIME part. Code cleanups.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1386 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/printing.h')
-rw-r--r--src/printing.h19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/printing.h b/src/printing.h
index bd6ce832..7e9e8a58 100644
--- a/src/printing.h
+++ b/src/printing.h
@@ -22,12 +22,25 @@
#include <gtk/gtkversion.h>
-#if GTK_CHECK_VERSION(2, 10, 0)
#include <glib.h>
-gint printing_print_messages (GSList *mlist,
- gboolean all_headers);
+#include "procmsg.h"
+#include "procmime.h"
+#if GTK_CHECK_VERSION(2, 10, 0)
+gint printing_print_messages_gtk (GSList *mlist,
+ gboolean all_headers);
#endif
+gint printing_print_messages_with_command (GSList *mlist,
+ gboolean all_headers,
+ const gchar *cmdline);
+
+gint printing_print_messages (GSList *mlist,
+ gboolean all_headers);
+gint printing_print_message (MsgInfo *msginfo,
+ gboolean all_headers);
+gint printing_print_message_part (MsgInfo *msginfo,
+ MimeInfo *partinfo);
+
#endif /* __PRINTING_H__ */