]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Forgot to add test-mail-storage.h in an earlier comment.
authorTimo Sirainen <tss@iki.fi>
Tue, 9 Jun 2009 18:14:51 +0000 (11:14 -0700)
committerTimo Sirainen <tss@iki.fi>
Tue, 9 Jun 2009 18:14:51 +0000 (11:14 -0700)
--HG--
branch : HEAD

src/lib-storage/test-mail-storage.h [new file with mode: 0644]

diff --git a/src/lib-storage/test-mail-storage.h b/src/lib-storage/test-mail-storage.h
new file mode 100644 (file)
index 0000000..4d68eab
--- /dev/null
@@ -0,0 +1,16 @@
+#ifndef TEST_MAIL_STORAGE_H
+#define TEST_MAIL_STORAGE_H
+
+struct mail_storage *test_mail_storage_create(void);
+
+struct mailbox *
+test_mailbox_open(struct mail_storage *storage, struct mailbox_list *list,
+                 const char *name, struct istream *input,
+                 enum mailbox_open_flags flags);
+
+struct mail *
+test_mailbox_mail_alloc(struct mailbox_transaction_context *t,
+                       enum mail_fetch_field wanted_fields,
+                       struct mailbox_header_lookup_ctx *wanted_headers);
+
+#endif