X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=buffy.h;h=625ade8d938122a5a04f6a7df8bb5891904e3da1;hb=c9f72ab0cd65f517a2047feb942ad85025c1b7e8;hp=0662b9414cfd750937034cd5932aea89875962b6;hpb=284454918cc95058b026d057195eaa5279135c36;p=apps%2Fmadmutt.git diff --git a/buffy.h b/buffy.h index 0662b94..625ade8 100644 --- a/buffy.h +++ b/buffy.h @@ -24,17 +24,25 @@ typedef struct buffy_t { short magic; /* mailbox type */ short newly_created; /* mbox or mmdf just popped into existence */ } BUFFY; + +DO_INIT(BUFFY, buffy); +static inline void buffy_wipe(BUFFY *p) { + p_delete(&p->path); +} +DO_NEW(BUFFY, buffy); +DO_DELETE(BUFFY, buffy); + DO_ARRAY_TYPE(BUFFY, buffy); +DO_ARRAY_FUNCS(BUFFY, buffy, buffy_delete); + +#include "buffy.li" /* folders with incomming mail (via mailboxes command) */ -WHERE buffy_array Incoming; -WHERE short BuffyTimeout INITVAL (3); -extern time_t BuffyDoneTime; /* last time we knew for sure how much mail there was */ +extern buffy_array Incoming; -/* looks up a path in Incoming list (returns index) */ int buffy_lookup (const char*); -/* handles mailboxes commands */ -int buffy_parse_mailboxes (BUFFER*, BUFFER*, unsigned long, BUFFER*); +void buffy_do_mailboxes(const char *s, int add); + /* from given path, gets next mailbox in Incoming with new mail */ void buffy_next (char*, size_t); /* checks mailboxes for new mail (returns number) */