aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/mbox/camel-mbox-summary.h
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-06-14 13:10:54 +0800
committerDan Winship <danw@src.gnome.org>2000-06-14 13:10:54 +0800
commit9f197c605b64fb2ac740df9445897c5d3bb62447 (patch)
tree723d16a197aac2683b666bb54fb4d6ddbc28da5a /camel/providers/mbox/camel-mbox-summary.h
parenta18691c17e9d49d75775d32a4d25dab9147b2ead (diff)
downloadgsoc2013-evolution-9f197c605b64fb2ac740df9445897c5d3bb62447.tar
gsoc2013-evolution-9f197c605b64fb2ac740df9445897c5d3bb62447.tar.gz
gsoc2013-evolution-9f197c605b64fb2ac740df9445897c5d3bb62447.tar.bz2
gsoc2013-evolution-9f197c605b64fb2ac740df9445897c5d3bb62447.tar.lz
gsoc2013-evolution-9f197c605b64fb2ac740df9445897c5d3bb62447.tar.xz
gsoc2013-evolution-9f197c605b64fb2ac740df9445897c5d3bb62447.tar.zst
gsoc2013-evolution-9f197c605b64fb2ac740df9445897c5d3bb62447.zip
Renamed from camel_mbox_summary_expunge. Takes a gboolean saying whether
* providers/mbox/camel-mbox-summary.c (camel_mbox_summary_sync): Renamed from camel_mbox_summary_expunge. Takes a gboolean saying whether to expunge or just sync the mbox file. Change some g_errors to g_warning so we don't abort. Make the quick X-Evolution updating code lseek around correctly. Update the mbox mtime in the summary file even in the quick case. * providers/mbox/camel-mbox-summary.h: make CAMEL_MESSAGE_FOLDER_NOXEV not conflict with CAMEL_MESSAGE_FOLDER_FLAGGED defined in camel-mime-message.h * providers/mbox/camel-mbox-folder.c (mbox_close): call camel_mbox_summary_sync to save flag state if not expunging. (mbox_expunge): Update for camel_mbox_summary_expunge rename. svn path=/trunk/; revision=3558
Diffstat (limited to 'camel/providers/mbox/camel-mbox-summary.h')
-rw-r--r--camel/providers/mbox/camel-mbox-summary.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/camel/providers/mbox/camel-mbox-summary.h b/camel/providers/mbox/camel-mbox-summary.h
index 6d98fd051d..ad7af33e91 100644
--- a/camel/providers/mbox/camel-mbox-summary.h
+++ b/camel/providers/mbox/camel-mbox-summary.h
@@ -35,8 +35,7 @@ typedef struct _CamelMboxSummaryClass CamelMboxSummaryClass;
/* extra summary flags */
enum {
- CAMEL_MESSAGE_FOLDER_NOXEV = 1<<16,
-/* CAMEL_MESSAGE_FOLDER_FLAGGED = 1<<17,*/
+ CAMEL_MESSAGE_FOLDER_NOXEV = 1<<17,
};
typedef struct _CamelMboxMessageContentInfo {
@@ -72,7 +71,7 @@ CamelMboxSummary *camel_mbox_summary_new (const char *filename, const char
int camel_mbox_summary_load(CamelMboxSummary *mbs, int forceindex);
/* incremental update */
int camel_mbox_summary_update(CamelMboxSummary *mbs, off_t offset);
-/* perform a folder expunge */
-int camel_mbox_summary_expunge(CamelMboxSummary *mbs);
+/* perform a folder sync or expunge, if needed */
+int camel_mbox_summary_sync (CamelMboxSummary *mbs, gboolean expunge);
#endif /* ! _CAMEL_MBOX_SUMMARY_H */