2000-12-12 Christopher James Lahey <clahey@helixcode.com> * component/e-summary-callbacks.c: Added #include <e-summary-callbacks.h>. (destroy_prefs_cb): Added a cast. (configure_summary): Added a cast. * component/e-summary-callbacks.h: Added #include "e-summary.h" * component/e-summary-url.c (e_summary_url_click): Removed an unused variable. * component/e-summary-util.c: Added #include <e-summary-util.h> * component/e-summary.c: Added #include <gtkhtml/htmlselection.h>. (e_summary_queue_rebuild): Added a cast. * component/main.c: Added #include <glade/glade.h>. * test-service/main.c: Changed some variable types to make casting easier. * test-service/rdf-summary.c: Changed some variable types to make casting easier. svn path=/trunk/; revision=6953
13 lines
296 B
C
13 lines
296 B
C
#ifndef __E_SUMMARY_CALLBACKS_H__
|
|
#define __E_SUMMARY_CALLBACKS_H__
|
|
|
|
#include "e-summary.h"
|
|
|
|
void embed_service (GtkWidget *widget,
|
|
ESummary *esummary);
|
|
void new_mail (GtkWidget *widget,
|
|
ESummary *esummary);
|
|
void configure_summary (GtkWidget *widget,
|
|
ESummary *esummary);
|
|
#endif
|