diff options
Diffstat (limited to 'src/lib-storage/index/pop3c/pop3c-sync.h')
-rw-r--r-- | src/lib-storage/index/pop3c/pop3c-sync.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lib-storage/index/pop3c/pop3c-sync.h b/src/lib-storage/index/pop3c/pop3c-sync.h new file mode 100644 index 0000000..bf3c802 --- /dev/null +++ b/src/lib-storage/index/pop3c/pop3c-sync.h @@ -0,0 +1,14 @@ +#ifndef POP3C_SYNC_H +#define POP3C_SYNC_H + +struct mailbox; +struct pop3c_mailbox; + +struct mailbox_sync_context * +pop3c_storage_sync_init(struct mailbox *box, enum mailbox_sync_flags flags); +int pop3c_sync(struct pop3c_mailbox *mbox); + +int pop3c_sync_get_sizes(struct pop3c_mailbox *mbox); +int pop3c_sync_get_uidls(struct pop3c_mailbox *mbox); + +#endif |