diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-08-11 01:46:03 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-08-11 01:46:03 +0800 |
commit | b5c6181c26ea0960c63fecdfd25c0d51cb16f3a5 (patch) | |
tree | 405b104a8a89539ae2281fb92d10499e498dc452 | |
parent | c9e3992d9685a8bf8765d71631181ce108685861 (diff) | |
download | gsoc2013-evolution-b5c6181c26ea0960c63fecdfd25c0d51cb16f3a5.tar gsoc2013-evolution-b5c6181c26ea0960c63fecdfd25c0d51cb16f3a5.tar.gz gsoc2013-evolution-b5c6181c26ea0960c63fecdfd25c0d51cb16f3a5.tar.bz2 gsoc2013-evolution-b5c6181c26ea0960c63fecdfd25c0d51cb16f3a5.tar.lz gsoc2013-evolution-b5c6181c26ea0960c63fecdfd25c0d51cb16f3a5.tar.xz gsoc2013-evolution-b5c6181c26ea0960c63fecdfd25c0d51cb16f3a5.tar.zst gsoc2013-evolution-b5c6181c26ea0960c63fecdfd25c0d51cb16f3a5.zip |
triple oops
svn path=/trunk/; revision=4691
-rw-r--r-- | mail/mail-ops.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/mail/mail-ops.h b/mail/mail-ops.h new file mode 100644 index 0000000000..e603912419 --- /dev/null +++ b/mail/mail-ops.h @@ -0,0 +1,69 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ + +/* + * Author : + * Peter Williams <peterw@helixcode.com> + * + * Copyright 2000 Helix Code, Inc. (http://www.helixcode.com) + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + * USA + */ + +#include <camel/camel.h> +#include "mail-threads.h" +#include "evolution-storage.h" /*EvolutionStorage */ +#include "composer/e-msg-composer.h" /*EMsgComposer */ +#include "message-list.h" /*MessageList */ + +void mail_do_fetch_mail (const gchar * source_url, gboolean keep_on_server, + CamelFolder * destination, + gpointer hook_func, gpointer hook_data); +void mail_do_send_mail (const char *xport_uri, + CamelMimeMessage * message, + const char * from, + CamelFolder * done_folder, + const char *done_uid, + + guint32 done_flags, GtkWidget * composer); +void mail_do_expunge_folder (CamelFolder * folder); +void mail_do_refile_messages (CamelFolder * source, GPtrArray * uids, + + gchar * dest_uri); +void mail_do_flag_messages (CamelFolder * source, GPtrArray * uids, + gboolean invert, + guint32 mask, guint32 set); +void mail_do_scan_subfolders (const gchar * source_uri, gboolean add_INBOX, + EvolutionStorage * storage); +void mail_do_attach_message (CamelFolder * folder, const char *uid, + EMsgComposer * composer); +void mail_do_forward_message (CamelMimeMessage * basis, CamelFolder * source, + GPtrArray * uids, /*array of allocated gchar *, will all be freed */ + EMsgComposer * composer); +void mail_do_load_folder (FolderBrowser * fb, const char *url); +void mail_do_create_folder (const Evolution_ShellComponentListener listener, + const char *uri, const char *type); +void mail_do_sync_folder (CamelFolder * folder); +void mail_do_display_message (MessageList * ml, const char *uid, + gint (*timeout) (gpointer)); +void mail_do_edit_messages (CamelFolder * folder, GPtrArray *uids, + GtkSignalFunc signal); +void mail_do_setup_draftbox (void); +void mail_do_view_messages (CamelFolder * folder, GPtrArray *uids, + FolderBrowser *fb); + +/* This actually lives in message-list.c */ +void mail_do_regenerate_messagelist (MessageList * list, + const gchar * search); |