#ifndef IMAP_SYNC_PRIVATE_H
#define IMAP_SYNC_PRIVATE_H
#include "imap-sync.h"
struct imap_client_sync_context {
/* if multiple commands are in progress, we may need to wait for them
to finish before syncing mailbox. */
unsigned int counter;
const char *tagline;
};
struct imap_sync_context {
struct mailbox_transaction_context *t;
unsigned int search_update_idx;
unsigned int messages_count;
/* Module-specific contexts. */
};
#endif