aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-debug.h
Commit message (Collapse)AuthorAgeFilesLines
* use camel debug to add some debug here.Not Zed2004-03-231-0/+46
2004-03-23 Not Zed <NotZed@Ximian.com> * camel-exception.c (camel_exception_setv): use camel debug to add some debug here. * camel.c (camel_init): call camel_debug_init(). * camel-debug.c (camel_debug_init, camel_debug): new util stuff for extended debug options. * providers/imap/camel-imap-folder.c (imap_get_message): if we're supposed to be online, check we are online before proceeding. Actually major restructure so we re-try the fetch a couple of times first before failing. i.e. silent reconnect. See #55381. svn path=/trunk/; revision=25153
style="color:#a020f0">#define _EM_FORMAT_HTML_PRINT_H #include "em-format-html.h" struct _GnomePrintConfig; typedef struct _EMFormatHTMLPrint EMFormatHTMLPrint; typedef struct _EMFormatHTMLPrintClass EMFormatHTMLPrintClass; struct _CamelFolder; struct _EMFormatHTMLPrint { EMFormatHTML formathtml; struct _GtkWidget *window; /* used to realise the gtkhtml in a toplevel, i dont know why */ struct _GnomePrintConfig *config; struct _EMFormatHTML *source; /* used for print_message */ int preview:1; }; struct _EMFormatHTMLPrintClass { EMFormatHTMLClass formathtml_class; }; GType em_format_html_print_get_type(void); EMFormatHTMLPrint *em_format_html_print_new(void); int em_format_html_print_print(EMFormatHTMLPrint *efhp, EMFormatHTML *source, struct _GnomePrintConfig *print_config, int preview); int em_format_html_print_message(EMFormatHTMLPrint *efhp, EMFormatHTML *source, struct _GnomePrintConfig *print_config, struct _CamelFolder *folder, const char *uid, int preview); #endif /* ! _EM_FORMAT_HTML_PRINT_H */