Imported version 1.0
[claws.git] / src / mh.h
blob05711ba0935c801c8fe013a6ab620d03dcc0edbd
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 gint mh_move_msg (Folder *folder,
38 FolderItem *dest,
39 MsgInfo *msginfo);
40 gint mh_move_msgs_with_dest (Folder *folder,
41 FolderItem *dest,
42 GSList *msglist);
43 gint mh_copy_msg (Folder *folder,
44 FolderItem *dest,
45 MsgInfo *msginfo);
46 gint mh_copy_msgs_with_dest (Folder *folder,
47 FolderItem *dest,
48 GSList *msglist);
49 gint mh_remove_msg (Folder *folder,
50 FolderItem *item,
51 gint num);
52 gint mh_remove_all_msg (Folder *folder,
53 FolderItem *item);
54 gboolean mh_is_msg_changed (Folder *folder,
55 FolderItem *item,
56 MsgInfo *msginfo);
58 void mh_scan_folder (Folder *folder,
59 FolderItem *item);
60 void mh_scan_tree (Folder *folder);
62 gint mh_create_tree (Folder *folder);
63 FolderItem *mh_create_folder (Folder *folder,
64 FolderItem *parent,
65 const gchar *name);
66 gint mh_rename_folder (Folder *folder,
67 FolderItem *item,
68 const gchar *name);
69 gint mh_remove_folder (Folder *folder,
70 FolderItem *item);
72 #endif /* __MH_H__ */