X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=buffy.h;h=469ac463bbfb13e990af0269dc821ef8949218cc;hp=0a64a787c39b0174ca148a8a40a07ecaba1eb93f;hb=9aa2b46502673125013fc62fd125ff039f213c11;hpb=c3e57678c8be193fc137854020f3a90887be97c9 diff --git a/buffy.h b/buffy.h index 0a64a78..469ac46 100644 --- a/buffy.h +++ b/buffy.h @@ -6,6 +6,10 @@ * It's licensed under the GNU General Public License, * please see the file GPL in the top level source directory. */ +#ifndef _BUFFY_H +#define _BUFFY_H + +#include "lib/list.h" /*parameter to mutt_parse_mailboxes*/ #define M_MAILBOXES 1 @@ -16,8 +20,6 @@ typedef struct buffy_t { #ifdef BUFFY_SIZE long size; #endif /* BUFFY_SIZE */ - struct buffy_t *next; - struct buffy_t *prev; short new; /* mailbox has new mail */ short has_new; /* set it new if new and not read */ int msgcount; /* total number of messages */ @@ -28,12 +30,21 @@ typedef struct buffy_t { short newly_created; /* mbox or mmdf just popped into existence */ } BUFFY; -WHERE BUFFY *Incoming INITVAL (0); +WHERE list2_t* Incoming; WHERE short BuffyTimeout INITVAL (3); +/* + * looks up a path in Incoming list + * there needs to be an extra function since we have everything but + * object of type BUFFY when we want to a do a lookup ;-( + */ +int buffy_lookup (const char*); + extern time_t BuffyDoneTime; /* last time we knew for sure how much mail there was */ #ifdef BUFFY_SIZE BUFFY *mutt_find_mailbox (const char *path); void mutt_update_mailbox (BUFFY * b); #endif + +#endif /* !_BUFFY_H */