Missing return.
[apps/madmutt.git] / lib-mx / mbox.h
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
4  * Copyright (C) 1999-2002 Thomas Roessler <roessler@does-not-exist.org>
5  *
6  * This file is part of mutt-ng, see http://www.muttng.org/.
7  * It's licensed under the GNU General Public License,
8  * please see the file GPL in the top level source directory.
9  */
10
11 /*
12  * functions for dealing with mbox style mailboxes
13  */
14
15 #ifndef _MBOX_H
16 #define _MBOX_H
17
18 #include "mx.h"
19
20 extern mx_t const mbox_mx;
21
22 /* TODO all of these must disappear to achieve good information hiding */
23
24 int mbox_close_mailbox (CONTEXT *);
25 int mbox_lock_mailbox (CONTEXT *, int, int);
26 int mbox_check_empty (const char*);
27 int mbox_is_magic (const char*, struct stat*);
28
29 #endif