xref: /haiku/headers/private/mail/MailPrivate.h (revision 72156a402f54ea4be9dc3e3e9704c612f7d9ad16)
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 
13 namespace BPrivate {
14 
15 BPath default_mail_directory();
16 BPath default_mail_in_directory();
17 BPath default_mail_out_directory();
18 
19 status_t WriteMessageFile(const BMessage& archive, const BPath& path,
20 	const char* name);
21 
22 }	// namespace BPrivate
23 
24 
25 #endif	// MAIL_PRIVATE_H
26