remove reallocs, free and fix makedoc compilation
[apps/madmutt.git] / buffy.h
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9 #ifndef _BUFFY_H
10 #define _BUFFY_H
11
12 /*parameter to mutt_parse_mailboxes*/
13 #define M_MAILBOXES   1
14 #define M_UNMAILBOXES 2
15
16 typedef struct buffy_t {
17   char *path;
18   short new;                    /* mailbox has new mail */
19   short has_new;                /* set it new if new and not read */
20   int msgcount;                 /* total number of messages */
21   int msg_unread;               /* number of unread messages */
22   int msg_flagged;              /* number of flagged messages */
23   short notified;               /* user has been notified */
24   short magic;                  /* mailbox type */
25   short newly_created;          /* mbox or mmdf just popped into existence */
26 } BUFFY;
27 DO_ARRAY_TYPE(BUFFY, buffy);
28
29 /* folders with incomming mail (via mailboxes command) */
30 WHERE buffy_array Incoming;
31 WHERE short BuffyTimeout INITVAL (3);
32 extern time_t BuffyDoneTime;    /* last time we knew for sure how much mail there was */
33
34 /* looks up a path in Incoming list (returns index) */
35 int buffy_lookup (const char*);
36 /* handles mailboxes commands */
37 int buffy_parse_mailboxes (BUFFER*, BUFFER*, unsigned long, BUFFER*);
38 /* from given path, gets next mailbox in Incoming with new mail */
39 void buffy_next (char*, size_t);
40 /* checks mailboxes for new mail (returns number) */
41 int buffy_check (int);
42 /* lists mailboxes with new mail */
43 int buffy_list (void);
44 /* wrapper around buffy_list() */
45 int buffy_notify (void);
46
47 #endif /* !_BUFFY_H */