1/*
2 * Copyright 2011, Haiku Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef MAIL_PRIVATE_H
6#define MAIL_PRIVATE_H
7
8
9#include <Message.h>
10#include <Path.h>
11
12
13namespace BPrivate {
14
15BPath default_mail_directory();
16BPath default_mail_in_directory();
17BPath default_mail_out_directory();
18
19status_t WriteMessageFile(const BMessage& archive, const BPath& path,
20	const char* name);
21
22}	// namespace BPrivate
23
24
25#endif	// MAIL_PRIVATE_H
26