aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/MH/mh-uid.h
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@aful.org>1999-09-07 23:45:57 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-09-07 23:45:57 +0800
commit598dc5e5564a6a04c0714ab480651261fe9f3c9a (patch)
tree45de64ab131517768562c3a89be2721d32db22c0 /camel/providers/MH/mh-uid.h
parent9043c1aa7a31915129d14f913c9126557ca49402 (diff)
downloadgsoc2013-evolution-598dc5e5564a6a04c0714ab480651261fe9f3c9a.tar
gsoc2013-evolution-598dc5e5564a6a04c0714ab480651261fe9f3c9a.tar.gz
gsoc2013-evolution-598dc5e5564a6a04c0714ab480651261fe9f3c9a.tar.bz2
gsoc2013-evolution-598dc5e5564a6a04c0714ab480651261fe9f3c9a.tar.lz
gsoc2013-evolution-598dc5e5564a6a04c0714ab480651261fe9f3c9a.tar.xz
gsoc2013-evolution-598dc5e5564a6a04c0714ab480651261fe9f3c9a.tar.zst
gsoc2013-evolution-598dc5e5564a6a04c0714ab480651261fe9f3c9a.zip
correct parameter decl (const)
1999-09-07 bertrand <Bertrand.Guiheneuf@aful.org> * camel/md5-utils.c (md5_get_digest_from_file): correct parameter decl (const) * camel/md5-utils.h: typo. * camel/providers/MH/mh-uid.c More work on UID stuff for MH. (mh_save_uid_list): (mh_load_uid_list): (mh_generate_uid_list): new funcs. Manage on-disk uid list. * camel/providers/MH/mh-utils.c (mh_is_a_message_file): Util routines live here now. svn path=/trunk/; revision=1190
Diffstat (limited to 'camel/providers/MH/mh-uid.h')
-rw-r--r--camel/providers/MH/mh-uid.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/camel/providers/MH/mh-uid.h b/camel/providers/MH/mh-uid.h
index 32fe138a53..63dfe5b159 100644
--- a/camel/providers/MH/mh-uid.h
+++ b/camel/providers/MH/mh-uid.h
@@ -24,5 +24,17 @@
#define MH_UID_H 1
#include <glib.h>
+#include "camel-mh-folder.h"
+
+
+typedef struct {
+ gchar uid[16];
+ guint file_number;
+} MhUidCouple;
+
+void mh_uid_get_for_file (gchar *filename, guchar uid[16]);
+void mh_save_uid_list (CamelMhFolder *mh_folder);
+gint mh_load_uid_list (CamelMhFolder *mh_folder);
+gint mh_generate_uid_list (CamelMhFolder *mh_folder);
#endif /* MH_UID_H */