* folder-browser-factory.c: rename "send" to "send_msg", to avoid name clash with the tcp function. Connect the "forward" button. * mail-ops.c: rename "send" to "send_msg", to avoid name clash with the tcp function. Add forward_msg function. * mail-format.c (mail_generate_forward): support function for forward_msg. Pretty much a big kludge right now, pending the attachment/attachment-bar changes. svn path=/trunk/; revision=2562
6 lines
291 B
C
6 lines
291 B
C
void fetch_mail (GtkWidget *button, gpointer user_data);
|
|
void send_msg (GtkWidget *button, gpointer user_data);
|
|
void forward_msg (GtkWidget *button, gpointer user_data);
|
|
void reply_to_sender (GtkWidget *button, gpointer user_data);
|
|
void reply_to_all (GtkWidget *button, gpointer user_data);
|