X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=buffy.h;h=0662b9414cfd750937034cd5932aea89875962b6;hp=0a64a787c39b0174ca148a8a40a07ecaba1eb93f;hb=f3cbb9f51357972f6e74244494236a41dc4d84cd;hpb=c3e57678c8be193fc137854020f3a90887be97c9 diff --git a/buffy.h b/buffy.h index 0a64a78..0662b94 100644 --- a/buffy.h +++ b/buffy.h @@ -6,6 +6,8 @@ * 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 /*parameter to mutt_parse_mailboxes*/ #define M_MAILBOXES 1 @@ -13,11 +15,6 @@ typedef struct buffy_t { char *path; -#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 */ @@ -27,13 +24,24 @@ typedef struct buffy_t { short magic; /* mailbox type */ short newly_created; /* mbox or mmdf just popped into existence */ } BUFFY; +DO_ARRAY_TYPE(BUFFY, buffy); -WHERE BUFFY *Incoming INITVAL (0); +/* 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 */ -#ifdef BUFFY_SIZE -BUFFY *mutt_find_mailbox (const char *path); -void mutt_update_mailbox (BUFFY * b); -#endif +/* 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*); +/* from given path, gets next mailbox in Incoming with new mail */ +void buffy_next (char*, size_t); +/* checks mailboxes for new mail (returns number) */ +int buffy_check (int); +/* lists mailboxes with new mail */ +int buffy_list (void); +/* wrapper around buffy_list() */ +int buffy_notify (void); + +#endif /* !_BUFFY_H */