initial message templates support
[claws.git] / src / mh.h
blob646727948328da995c4c82570586478120655db8
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2001 Hiroyuki Yamamoto
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #ifndef __MH_H__
21 #define __MH_H__
23 #include <glib.h>
25 #include "folder.h"
26 #include "procmsg.h"
28 GSList *mh_get_msg_list (Folder *folder,
29 FolderItem *item,
30 gboolean use_cache);
31 gchar *mh_fetch_msg (Folder *folder,
32 FolderItem *item,
33 gint num);
34 gint mh_add_msg (Folder *folder,
35 FolderItem *dest,
36 const gchar *file,
37 gboolean remove_source);
38 gint mh_move_msg (Folder *folder,
39 FolderItem *dest,
40 MsgInfo *msginfo);
41 gint mh_move_msgs_with_dest (Folder *folder,
42 FolderItem *dest,
43 GSList *msglist);
44 gint mh_copy_msg (Folder *folder,
45 FolderItem *dest,
46 MsgInfo *msginfo);
47 gint mh_copy_msgs_with_dest (Folder *folder,
48 FolderItem *dest,
49 GSList *msglist);
50 gint mh_remove_msg (Folder *folder,
51 FolderItem *item,
52 gint num);
53 gint mh_remove_all_msg (Folder *folder,
54 FolderItem *item);
55 gboolean mh_is_msg_changed (Folder *folder,
56 FolderItem *item,
57 MsgInfo *msginfo);
59 void mh_scan_folder (Folder *folder,
60 FolderItem *item);
61 void mh_scan_tree (Folder *folder);
63 gint mh_create_tree (Folder *folder);
64 FolderItem *mh_create_folder (Folder *folder,
65 FolderItem *parent,
66 const gchar *name);
67 gint mh_rename_folder (Folder *folder,
68 FolderItem *item,
69 const gchar *name);
70 gint mh_remove_folder (Folder *folder,
71 FolderItem *item);
73 #endif /* __MH_H__ */